/*`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) {
	/*.offcanvas{
		background-color: var(--red);
	}*/
	.navbar-nav .nav-item .nav-link{
		color: #000;
	}
	.offcanvas{
		max-width: 70%;
	}

	.name-company{
		font-size: 24px;
	}
	.name-company-us{
		font-size: 15px;
	}
	.card-blog.border-end{
		border-right: none !important;
	}

	.footer .bg-cover{
		height: 105px;
	}

}
/*`md` applies to small devices (landscape phones, less than 768px)*/
@media (max-width: 767.98px) {
	.block{
		padding-top: 20px;
		padding-bottom: 20px;
	}

	.navbar .dropdown-menu .dropdown-item{
		white-space: unset;
	}

	.main-title:before{
		height: 1px;
	}
	.main-title:after{
		height: 2px;
	}

	.card-row-larger .thumbnail{
		width: 130px;
		height: 130px;
	}

	.card-blog{
		flex-direction: column;
	}
	.card-blog .thumbnail{
		width: 100%;
	}

	.box-time{
		width: 60px;
		height: 60px;
		font-size: 12px;
	}
	.box-time .year{
		font-size: 16px;
	}

	.box-leader .thumbnail{
		width: 90px;
		height: 90px;
	}
	.footer .bg-cover {
	    height: 80px;
	}
	.footer-bottom{
		font-size: 10px;
	}
}
/*`sm` applies to x-small devices (portrait phones, less than 576px)*/
@media (max-width: 575.98px) {
	.logo{
		width: 70px;
	}
	.name-company{
		font-size: 20px;
	}
	.name-company-us{
		font-size: 11px;
	}
}

/* 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) {  }
/* X-Large devices (large desktops, 1200px and up)*/
@media (min-width: 1200px) {  }
/* XX-Large devices (larger desktops, 1400px and up)*/
@media (min-width: 1400px) {  }