/*`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;
	}
}

/*`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;
	}

	.navbar-nav .nav-item .nav-link{
		padding: 1.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;
	}

	.logo{
	    width: 200px;
	}

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

	.dropdown-item{
		white-space: normal;
	}

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

	.navbar-nav .nav-item.dropdown .dropdown-menu{
	    animation: menu 0.3s;
	    background-color: #FDF4F3;
	}

	.review-next{
	    transform: translateX(50%);
	}

	.review-prev{
	    transform: translateX(-50%);
	}

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

	body{
	  	font-size: 14px;
	}

	.btn-custom{
		padding: 0.35rem 1rem;
	}

	.logo{
	    width: 150px;
	}

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

	.btn-booking-header{
		font-size: var(--fs-14);
		padding: 0.25rem 0.5rem;
	}

	.offcanvas{
		max-width: 60%;
	}

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

	.review-slide{
		padding: 0 5rem;
	}

	.review-slide .swiper-slide{
		transform: scale(0.9);
		transition: all .5s ease-in-out;
		filter: opacity(0.7);
	}

	.review-slide .swiper-slide-active{
		transform: scale(1);
		filter: opacity(1);
	}

	.review-btn-slide{
		display: none;
	}

	.review-next{
	    transform: translateX(0);
	}

	.review-prev{
	    transform: translateX(0);
	}

	.card-service .title{
		height: unset;
	}

}
/*`sm` applies to x-small devices (portrait phones, less than 576px)*/
@media (max-width: 575.98px) {
	.review-slide{
		padding: 0 2rem;
	}
}

/* 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;
	}*/
	.block-achievement .box-video{
		--bs-aspect-ratio: 100%;
	}
}
/* X-Large devices (large desktops, 1200px and up)*/
@media (min-width: 1200px) {  }
/* XX-Large devices (larger desktops, 1400px and up)*/
@media (min-width: 1400px) {  }