/*`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 .nav-item .nav-link{
		padding: 2rem 0.5rem;
	}
}

/*`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-main{
	    padding-top: 0.5rem;
	    padding-bottom: 0.5rem;
	}

	.logo{
	    width: 120px;
	}

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

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

	.main-slide {
	    height: 600px;
	}

	.wrapper-schedule{
		background-color: transparent;
	}
	
	.wrapper-schedule .schedule-item{
		padding: 1rem;
	}

	.wrapper-schedule .label-name{
		font-size: var(--fs-18s);
	}
}
/*`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: 120px;
	}

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

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

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

	.wrapper-form-filter-tour{
		padding: 5%;
		background-color:#F8F8F8;
	}

	.card-product .content{
	    padding: 0.5rem 0.5rem 0.25rem;
	    display: flex;
	    flex-direction: column;
	    text-align: center;
	    background-color: #F8F8F8;
	}

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

/* 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 .nav-item{
	    position: relative;
	}

	.navbar-nav .nav-item:not(.navbar-nav .nav-item:last-child):after{
	    content: "";
	    position: absolute;
	    right: -0.25rem;
	    top: 0;
	    bottom: 0;
	    width: 0.5rem;
	    background-color: #E7E6E6;
	    clip-path: polygon(50% 0, 0% 100%, 100% 0);
	}

	.navbar-nav .dropdown .dropdown-menu{
	    max-width: 320px;
	    width: 320px;
	}
	
	.navbar-brand{
		position: absolute;
		left: 0;
		bottom: 0;
		padding: 0.5rem 6rem 0.5rem 2rem;
		width: auto;
		background-image: url('../images/bg-logo.png');
		background-repeat: no-repeat;
		background-position: right center;
		background-size: cover;
	}
	.navbar-fixed .navbar-brand-mobile{
		display: block !important;
		position: unset;
		background-image: unset;
	}
}
/* X-Large devices (large desktops, 1200px and up)*/
@media (min-width: 1200px) {  }
/* XX-Large devices (larger desktops, 1400px and up)*/
@media (min-width: 1400px) {  }