/*`xxl` applies to x-large devices (large desktops, less than 1400px)*/
@media (max-width: 1399.98px) { ... }

@media (max-width: 1299.98px) {

	:root{
	    --px-content: 5%;
	    --py-content: 28px;
	}

	.navbar-nav{
		gap: 1rem;
	}
}

/*`xl` applies to large devices (desktops, less than 1200px)*/
@media (max-width: 1199.98px) {
	.navbar-nav{
		gap: 0.5rem;
	}
}

/*lg` applies to medium devices (tablets, less than 992px)*/
@media (max-width: 991.98px) {
	:root{
	    --px-content: 3%;
	    --py-content: 28px;
	}

	.navbar-main{
	    padding-top: 0.5rem;
	    padding-bottom: 0.5rem;
	}

	.logo{
	    width: 80px;
	}

	.navbar-fixed .logo{
	    width: 70px;
	}

	.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;
	}

	.offcanvas{
		max-width: 40%;
		background-color: #fff;
	}

	.btn-popup-search svg{
	    fill: #fff;
	}

	.main-slide {
	    height: 400px;
	}

	.slide_thumb{
		height: 120px;
	}

}
/*`md` applies to small devices (landscape phones, less than 768px)*/
@media (max-width: 767.98px) {
	:root{
	    --px-content: 1%;
	    --py-content: 24px;
	}

	body{
	  	font-size: 14px;
	}

	.navbar-main{
	    padding-top: 0.5rem;
	    padding-bottom: 0.5rem;
	}

	.logo{
	    width: 60px;
	}

	.navbar-fixed .logo{
	    width: 50px;
	}

	.offcanvas{
		max-width: 60%;
	}
	
	.main-slide {
	    height: 200px;
	}

	.wrapper{
		transform: scale(0.8);
	}
	/**/

	.slide_thumb{
		height: 80px;
	}
		
}
/*`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-brand{
		z-index: 1;
	}

	.navbar-brand:after{
		content: "";
		position: absolute;
		top: 0;
		bottom: 0;
		left: 0;
		width: 20%;
		z-index: -1;
		background-color: #fff;
		clip-path: polygon(0 0, 90% 0, 100% 51%, 90% 100%, 0 100%);
		pointer-events: none;
	}

}
/* X-Large devices (large desktops, 1200px and up)*/
@media (min-width: 1200px) {
	.navbar-brand:after{
    	width: 16%;
    }
}
	    
@media (min-width: 1400px) {

}