/*`xxl` applies to x-large devices (large desktops, less than 1400px)*/
@media (max-width: 1399.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;
	}

	.logo{
		width: 150px;
		padding: 0;
	}
	
	.nav-top{
		padding-top: 0.5rem;
		padding-bottom: 0.5rem;
	}

	.nav-main{
		margin: 0;
		padding-top: 0;
		padding-bottom: 0;
	}

	.box-search-header,
	.box-search-header select,
	.box-search-header input,
	.box-search-header button{
		font-size: 14px;
	}

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

	.navbar-nav{
		align-items: flex-start;
		gap: 12px;
	}
	.navbar-nav .nav-item .nav-link{
		padding: 0.2rem 0;
		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: #f6f6f6;
	}

	.banner {
	    height: 350px;
	}



}
/*`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-brand{
		margin-right: 0.5rem;
	}

	.offcanvas{
		max-width: 80%;
		background-color: #f6f6f6;
	}

	.logo{
		width: 120px;
		padding: 0;
	}

	.cart-shopping{
		font-size: 12px;
	}
	
	.banner {
	    height: 200px;
	}

	.banner-page{
		height: 150px;
	}

	.card-vertical{
		flex-direction: column;
	}
	.card-vertical .thumbnail{
		width: 100%;
		height: 200px;
	}


	.card-project .card-title{
	    padding: 0.5rem;
	    font-size: 1rem;
	}
	.project-prev, .project-next {
	    padding: 0.25rem 1.25rem;

	}

	.logo-footer{
	    width: 50%;
	}

	.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) {
	.block-client .bg-cover{
	    left: 10%;
	}
	.block-client .row{
	    /*overflow-y: hidden;*/
	}
	.block-client .col-cover-title{
	    position: relative;
	    z-index: 1;
	}
	.block-client .col-cover-title:after{
	    content: "";
	    position: absolute;
	    right: 0;
	    top: 50%;
	    bottom: 0;
	    transform: translateY(-50%);
	    z-index: -1;
	    width: 200%;
	    height: 100px;
	    background: #1C77B8;
	}
	.block-client .col-cover-title .main-title{
		color: #fff !important;
	}

}
/* X-Large devices (large desktops, 1200px and up)*/
@media (min-width: 1200px) {  }
/* XX-Large devices (larger desktops, 1400px and up)*/
@media (min-width: 1400px) {  }