/*`xxl` applies to x-large devices (large desktops, less than 1400px)*/
@media (max-width: 1366.98px) {
	:root{
	    --px-content: 0%;
	}

	.navbar-nav .nav-item .nav-link{
		font-size: 14px;
		padding: 0.5rem 0.5rem;
	}

}

@media (max-width: 1299.98px) {

}

/*`xl` applies to large devices (desktops, less than 1200px)*/
@media (max-width: 1199.98px) { ... }

/*lg` applies to medium devices (tablets, less than 992px)*/
@media (max-width: 991.98px) {
	/*:root{
	    --px-content: 3%;
	    --py-content: 28px;
	}*/

	p{
		margin-bottom: 0.5rem;
	}

	.navbar-main{
	    padding-top: 0.5rem;
	    padding-bottom: 0.5rem;
	}

	.logo{
	    width: 150px;
	}

	.navbar-fixed .logo{
	    width: 100px;
	}

	.navbar-nav{
		align-items: flex-start;
		gap: 12px;
	}

	.navbar-nav .nav-item .nav-link{
		padding: 0.2rem;
		color: #000;
		justify-content: flex-start;
	}

	.navbar-nav .nav-item .nav-link a{
		color: #000;
	}

	.navbar-nav .nav-item .nav-link.active:before{
		content: unset;
	}

	.dropdown-item{
		white-space: normal;
	}

	.navbar .offcanvas{
		max-width: 40%;
		background-color: #efede7;
	}

	.navbar .offcanvas .btn-close{
		position: absolute;
		left: 0;
		top: 0.5rem;
		transform: translateX(-100%);
	}


	.main-slide {
	    height: 400px;
	}

	.block-marine-design .block-2 .content-6 img{
	    width: 100%;
	}



}
/*`md` applies to small devices (landscape phones, less than 768px)*/
@media (max-width: 767.98px) {
	:root{
	    --px-content: 0%;
	    --py-content: 24px;
	}


	/*.block .container-fluid{
		--bs-gutter-x: 0rem;
	}*/

	body{
	  	font-size: 14px;
	}

	.navbar-main{
	    padding-top: 0.5rem;
	    padding-bottom: 0.5rem;
	}

	.logo{
	    width: 100px;
	}

	.navbar-fixed .logo{
	    width: 80px;
	}

	.offcanvas{
		max-width: 60%;
	}
	
	.main-slide {
	    height: 240px;
	}

	.wrapper{
		transform: scale(0.8);
	}
	/**/
		
}
/*`sm` applies to x-small devices (portrait phones, less than 576px)*/
@media (max-width: 575.98px) {

}

/* Small devices (landscape phones, 576px and up)*/
@media (min-width: 576px) {  }
/* Medium devices (tablets, 768px and up)*/
@media (min-width: 768px) {  }
/* Large devices (desktops, 992px and up)*/
@media (min-width: 992px) {
	.navbar-nav .dropdown .dropdown-menu{
	    max-width: 320px;
	    width: 320px;
	}
		
	/*.navbar{
		position: fixed;
	    top: 0;
	    left: 0;
	    right: 0;
	    animation: animate 1s;
	    transition: all 2s ease-in-out;
	    z-index: 30;
	}*/

}
/* X-Large devices (large desktops, 1200px and up)*/
@media (min-width: 1200px) {  }

/*`xxl` applies to x-large devices (large desktops, less than 1400px)*/
@media (min-width: 1366.98px) {
	.navbar-toggler{
		display: none;
	}

	.navbar-nav{
		flex-direction: row;
	}

	.navbar .offcanvas{
		position: static;
        z-index: auto;
        flex-grow: 1;
        width: auto !important;
        height: auto !important;
        visibility: visible !important;
        background-color: transparent !important;
        border: 0 !important;
        transform: none !important;
        transition: none;
	}
	.navbar .offcanvas .offcanvas-header {
        display: none;
    }

    .navbar .offcanvas .offcanvas-body{
    	display: flex;
        flex-grow: 0;
        padding: 0;
        overflow-y: visible;
    }

}

/* XX-Large devices (larger desktops, 1400px and up)*/
@media (min-width: 1400px) {  }