/*--------------------------------------------------------------
# General styles
--------------------------------------------------------------*/
.fc-white , .fc-white *{
	color: var(--bs-white);
  }
  .fc-black {
	color: var(--bs-black);
  }
  .fc-red {
	color: var(--bs-red);
  }
  .fc-gray {
	color: var(--bs-gray);
  }
  .fc-light-gray {
	color: var(--bs-light-gray);
  }
  .bg-red {
	background-color:var(--bs-red);
  }
  .bg-white {
	background-color:var(--bs-white);
  }
  .bg-blue {
	background-color:var(--bs-blue);
  }
  .bg-light-blue {
	background-color:var(--bs-light-blue);
  }
  .bg-light-gray {
	background-color:var(--bs-light-gray);
  }  
  .bg-gray-dark {
	background-color:var(--bs-gray-dark);
  }
  .mw-900 {
	max-width:900px;
  }
  .mw-500 {
	max-width:500px;
  }
  /* responsive styles */
  html { 
	font-size: 62.5%;
  }
  @media only screen and (max-width: 1024px) {
  html {
	font-size: 55%;
  }
  }
  @media only screen and (max-width: 991px) {
  html {
	font-size: 48.5%;
  }
  }
  @media only screen and (max-width: 767px) {
  html {
	font-size: 42%;
  }
  }
  /*--------------------------------------------------------------
  # Back to top button
  --------------------------------------------------------------*/
  .back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: var(--bs-red);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
  }
  
  .back-to-top i {
  font-size: 28px;
  color: var(--bs-white);
  line-height: 0;
  }
  
  .back-to-top:hover {
  background: var(--bs-red-dark);
  color: var(--bs-white);
  }
  
  .back-to-top.active {
  visibility: visible;
  opacity: 1;
  }
  
  /*--------------------------------------------------------------
  # Disable aos animation delay on mobile devices
  --------------------------------------------------------------*/
  @media screen and (max-width: 768px) {
  [data-aos-delay] {
	transition-delay: 0 !important;
  }
  }
  
  /* -------------- header styles ---------------*/
  .header-top {
  background: var(--bs-red);
  }
  .header-bottom {
  background: var(--bs-white);
  }
  .phone {
	padding: 4px 0;
	margin: 0px;
  }
  ul.phone li {
  display:inline-block;
	padding: 0 5px;
  }
  ul.phone li a:hover {
	color: var(--bs-black);
  }
  ul.social-icons li {
	display: inline-block;
  }
  ul.social-icons li a {
	color:var(--bs-white);
	padding-right:5px;
  }
  ul.social-icons li a i.fa {
	width: 26px;
	line-height: 26px;
	border-radius: 50%;
	text-align: center;
	color: var(--bs-white);
	font-size: 15px;
	-webkit-transition: all 0.4s linear 0s;
	-moz-transition: all 0.4s linear 0s;
	-ms-transition: all 0.4s linear 0s;
	-o-transition: all 0.4s linear 0s;
	transition: all 0.4s linear 0s;
  }
  ul.social-icons li a i.fa:hover {
	background-color: var(--bs-white);
	color: var(--bs-black);
  }
  
  @media (min-width: 992px) {
  body.down #header {
	  -webkit-transform: translate(0,0);
	  -ms-transform: translate(0,0);
	  -moz-transform: translate(0,0);
	  transform: translate(0,0);
  }
  body.down #header.header-scrolled {
	  -webkit-transform: translate(0,-35px);
	  -ms-transform: translate(0,-35px);
	  -moz-transform: translate(0,-35px);
	  transform: translate(0,-35px);
	  background:#FFF;
	  box-shadow: 0 0.5rem 1rem rgb(0 0 0 / 15%);
  }
  .logo-img {
	  -webkit-transition: all 0.5s;
	  -moz-transition: all 0.5s;
	  -o-transition: all 0.5s;
	  -ms-transition: all 0.5s;
	  transition: all 0.5s;
  }
  body.down #header.header-scrolled .logo-img {
	 /* width:80%;*/
  }
  body.up #header {
	  -webkit-transform: translate(0,-170px);
	  -ms-transform: translate(0,-170px);
	  -moz-transform: translate(0-170px);
	  transform: translate(0,-170px);
  }
  #header {
	  position:fixed !important;
	  width:100%;
	  top:0;
	  -webkit-transition: all 0.5s;
	  -moz-transition: all 0.5s;
	  -o-transition: all 0.5s;
	  -ms-transition: all 0.5s;
	  transition: all 0.5s;
  }
  #main {
	margin-top: 100px;
  }
  }
  
  /*--------------------------------------------------------------
  # Header
  --------------------------------------------------------------*/
  #header {
  transition: all 0.5s;
  z-index: 997;
  }
  
  /*--------------------------------------------------------------
  # Navigation Menu
  --------------------------------------------------------------*/
  /**
  * Desktop Navigation 
  */
  .navbar {
  padding: 0;
  }
  
  .navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
  }
  
  .navbar>ul>li {
	position: relative;
	padding:0.5rem 1rem;
  }
  
  .navbar li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-transform: uppercase;
  font-size: 16px;
  color: var(--bs-black);
  white-space: nowrap;
  padding:0;
	line-height:40px;
  transition: 0.3s;
	position:relative;
  }
  
  .navbar a i {
  font-size: 14px;
  line-height: 0;
  margin-left: 5px;
  }
  .navbar>ul>li>a::before {
	  background-color: var(--bs-red);
  }
  .navbar>ul>li>a.active::before, .navbar>ul>li:hover a::before {
	  -webkit-transform: scale3d(1,1,1);
	  transform: scale3d(1,1,1);
	  -webkit-transform-origin: 0 50%;
	  -ms-transform-origin: 0 50%;
	  transform-origin: 0 50%;
  }
  .navbar>ul>li>a:before {
	  position: absolute;
	  bottom: 0;
	  left: 0;
	  margin: auto;
	  width: 100%;
	  height: 3px;
	  background: var(--bs-red);
	  content: "";
	  -webkit-transition: -webkit-transform 1s cubic-bezier(.2,1,.3,1);
	  transition: -webkit-transform 1s cubic-bezier(.2,1,.3,1);
	  -o-transition: transform 1s cubic-bezier(.2,1,.3,1);
	  transition: transform 1s cubic-bezier(.2,1,.3,1);
	  transition: transform 1s cubic-bezier(.2,1,.3,1),-webkit-transform 1s cubic-bezier(.2,1,.3,1);
	  -webkit-transform-origin: 100% 50%;
	  -ms-transform-origin: 100% 50%;
	  transform-origin: 100% 50%;
	  -webkit-transform: scale3d(0,1,1);
	  transform: scale3d(0,1,1);
  }
  .navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 30px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: var(--bs-white);
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  }
  
  .navbar .dropdown ul li {
  min-width: 200px;
  }
  
  .navbar .dropdown ul a {
  padding:0 20px;
  font-size: 14px;
  }
  
  .navbar .dropdown ul a i {
  font-size: 12px;
  }
  
  .navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
  background-color: var(--bs-red);
  color: var(--bs-white);
  }
  
  .navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
  }
  
  .navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
  }
  
  .navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
  }
  
  @media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
	left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
	left: -100%;
  }
  }
  
  /**
  * Mobile Navigation 
  */
  .mobile-nav-toggle {
  color: var(--bs-black);
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
  }
  
  .mobile-nav-toggle.fa-times {
  color: var(--bs-white);
  }
  
  @media (max-width: 991px) {
  .mobile-nav-toggle {
	display: block;
  }
  .navbar ul {
	display: none;
  }
  }
  
  .navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  transition: 0.3s;
  z-index: 999;
  }
  
  .navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
  }
  
  .navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: var(--bs-white);
  overflow-y: auto;
  transition: 0.3s;
  }
  
  .navbar-mobile a {
  padding: 10px 20px;
  font-size: 15px;
  color: var(--bs-black);
  }
  
  .navbar-mobile a:hover, .navbar-mobile li:hover > a {
  color: var(--bs-red);
  }
  .navbar-mobile .active {
  color:var(--bs-black) !important;
  }
  
  .navbar-mobile .getstarted {
  margin: 15px;
  }
  
  .navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: var(--bs-white);
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  }
  
  .navbar-mobile .dropdown ul li {
  min-width: 200px;
  }
  
  .navbar-mobile .dropdown ul a {
  padding: 10px 20px;
  }
  
  .navbar-mobile .dropdown ul a i {
  font-size: 12px;
  }
  
  .navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
  color: var(--bs-red);
  }
  
  .navbar-mobile .dropdown > .dropdown-active {
  display: block;
  }
  
  /*--------------------------------------------------------------
  # Tabs
  --------------------------------------------------------------*/
  .services .icon-box .row .icon-blk {
  display:flex;
  align-items:center;
  }
  .services .icon-box i {
  padding-right: 15px;
  color: var(--bs-red);
  }
  .services .icon-box i:before {
  font-size: 4rem;
  }
  .services .icon-box h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  }
  .services .icon-box h4 span{
  font-size:14px;
  padding-top: 5px;
	display: block;
	line-height: 1.5;
  }
  
  /*--------------------------------------------------------------
  # Freight
  --------------------------------------------------------------*/
  .freight .info-box {
  /*box-shadow: 0 0 10px rgba(214, 215, 216, 0.8);*/
  padding: 30px 15px 30px 15px;
  border-radius: 4px;
  border-top:1px solid rgba(214, 215, 216, 0.5);
  border-right:1px solid rgba(214, 215, 216, 0.5);
  border-left:1px solid rgba(214, 215, 216, 0.5);
  border-bottom:3px solid var(--bs-red);
  }
  
  .freight .info-box > i:before{
  font-size: 50px;
  color: var(--bs-red);
  margin-bottom:10px;
  }
  
  .freight .info-box h3 {
  font-size: 17px;
  font-weight: 700;
  margin: 15px 0;
  }
  
  /* why slider style */
  .why-choose-us-slider .info-box{
  padding:4.5rem 2rem;
  border-radius: 5px;
  background-color:var(--bs-white);
  }
  .why-choose-us-slider i:before {
  font-size:4.5rem;
  color: var(--bs-red);
  }
  .why-choose-us-slider p {
	color: var(--bs-black);
  }
  
  /* why-choose-us */
  .why-choose-us {
	background-image:url(../img/medical-conference.jpg);
	background-position:top center;
	background-repeat:no-repeat;
	background-size:cover;
	padding-top:8rem;
  }
  .swiper-button-prev, .swiper-container-rtl .swiper-button-next {
	left: -35px !important;
	top:70% !important;
	color:var(--bs-red) !important;
  }
  .swiper-button-next, .swiper-container-rtl .swiper-button-prev {
	right: -35px !important;
	top:70% !important;
	color:var(--bs-red) !important;
  }
  .freight-slider .fa-arrow-right {
  padding-left: 5px;
  }
  
  
  /* reliable */
  .reliable-right {
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	position:relative;
  }
  .reliable-right:before {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(27, 26, 26, 0)), color-stop(0%, rgba(27, 26, 26, 0)), color-stop(91%, #1b1a1a));
  background-image: -o-linear-gradient(top, rgba(27, 26, 26, 0) 0%, rgba(27, 26, 26, 0) 0%, #1b1a1a 91%);
  background-image: linear-gradient(180deg, rgba(27, 26, 26, 0) 0%, rgba(27, 26, 26, 0) 0%, #1b1a1a 91%);
  opacity: .6;
  content: "";
	display: inline-block;
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 1;
  }
  
  @media only screen and (min-width:768px) {
	.reliable-left {
		padding-right:60px;
	}
  }
  @media only screen and (max-width:767px) {
	.reliable-right {
		background-image: none !important;
		max-width:375px;
		margin:0 auto;
	}
	.reliable-right:before {
		background-image: none !important;
	}
	.reliable-right img {
		position: relative;
	}
	.reliable-right img:after {
	  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(27, 26, 26, 0)), color-stop(0%, rgba(27, 26, 26, 0)), color-stop(91%, #1b1a1a));
	  background-image: -o-linear-gradient(top, rgba(27, 26, 26, 0) 0%, rgba(27, 26, 26, 0) 0%, #1b1a1a 91%);
	  background-image: linear-gradient(180deg, rgba(27, 26, 26, 0) 0%, rgba(27, 26, 26, 0) 0%, #1b1a1a 91%);
	  opacity: .6;
	  content: "";
		display: inline-block;
		height: 100%;
		left: 0;
		position: absolute;
		top: 0;
		width: 100%;
		z-index: 1;
	}
  }
  @media only screen and (max-width:767px) {
	.reliable-right {
		padding-left:35px;
	}
	.deliver-info {
		left:5px;
	}
  }
  
  /* footer */
  .btn {
  font-size:1.5rem;
  }
  .footer-top {
  padding:5rem 0;
  }
  .footer-top ul {
  padding:4rem 0 0 0;
  }
  .footer-top ul li {
  list-style:none;
  padding:0;
  line-height:1.9;
  }
  .footer-top ul li a{
  color:var(--bs-gray);
  }
  .footer-social-icons {
  padding:0 !important;
  }
  .footer-social-icons li {
  float:left;
  }
  .footer-social-icons li a {
  display:block;
  padding-right:20px;
  }
  .footer-top a {
	color: var(--bs-gray) !important;	
  }
  .footer-top a:hover {
  color: var(--bs-red) !important;	
  }
  .footer-top p {
  color:var(--bs-gray);
  }
  .footer-top h6 {
  position:relative;
  color:var(--bs-white);
  }
  .footer-top h6:before {
  content:'';
  background:var(--bs-white);
  width:50px;
  height:2px;
  position:absolute;
  bottom:-1.5rem;
  left:0;
  }
  
  .services-bar {
  margin: 0;
  padding: 0;
  overflow:visible;
  z-index: 1;
  position: relative
  }
  
  .services-bar .row {
  -webkit-box-shadow: 0 5px 83px 0 rgba(40, 40, 40, .11);
  box-shadow: 0 5px 83px 0 rgba(40, 40, 40, .11);
  /*-webkit-transform: translateY(-62px);
  -ms-transform: translateY(-62px);
  transform: translateY(-62px);*/
  border-radius: 3px;
 overflow:hidden;
  }
  
  .services-bar .services-bar-card{
  height: 125px;
  padding: 0 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  background-color: var(--bs-white);
  border-right: 3px solid #eaeaea
  }
  
  @media screen and (max-width:991.98px) {
  .services-bar .services-bar-card{
	border-bottom: 3px solid #eaeaea
  }
  }
  
  @media screen and (max-width:767.98px) {
  .services-bar .services-bar-cardk{
	border-right: 0
  }
  }
  
  .services-bar .services-bar-card:hover,
  .services-bar .services-bar-card.active{
  background-color: var(--bs-red);
  border-color: var(--bs-red);
  }
  
  .services-bar .services-bar-card:hover .thumb-icon,
  .services-bar .services-bar-card.active .thumb-icon {
  color: var(--bs-white);
  }
  
  .services-bar .services-bar-card:hover .thumb-body p,
  .services-bar .services-bar-card.active .thumb-body p {
  color: var(--bs-white);
  }
  
  .services-bar .services-bar-card:hover .thumb-body h3,
  .services-bar .services-bar-card.active .thumb-body h3{
  color: var(--bs-white);
  }
  
  .services-bar .services-bar-card:hover .thumb-body h3 a,
  .services-bar .services-bar-card.active .thumb-body h3 a {
  color: var(--bs-white);
  }
  
  .services-bar .services-bar-card:last-child {
  border-right: 0
  }
  
  .services-bar .services-bar-card .thumb-icon {
  margin-right: 20px;
  color: var(--bs-red);
  -webkit-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out
  }
  
  .services-bar .services-bar-card .thumb-icon::before {
  font-size: 5.8rem;
  margin-left: 0
  }
  
  .services-bar .services-bar-card .thumb-body p {
  font-weight: 400;
  font-size: 12.4px;
  color: #1c1c1c;
  /* text-transform: capitalize; */
  margin-bottom: 0;
  -webkit-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out
  }
  
  .services-bar .services-bar-card .thumb-body h3 {
  font-weight: 500;
  font-size: 18px;
  line-height: 25px;
  color: var(--bs-black);
  text-transform: capitalize;
  margin-bottom: 0;
  -webkit-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out
  }
  
  .services-bar .services-bar-card .thumb-body h3 a{
  color: var(--bs-black);
  }
  
  /* banner tab styles */
  /*myTab , #myTabContent{
  -webkit-box-shadow: 0 5px 83px 0 rgba(40, 40, 40, .11);
  box-shadow: 0 5px 83px 0 rgba(40, 40, 40, .11);
  border-radius: 3px;
  overflow: hidden;
  background: var(--bs-white);
  }
  #myTabContent{
  padding: 1.5rem;
  }
  #myTab .nav-item{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
	flex-grow: 1;
  }
  #myTab .nav-link{
	display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  background-color: var(--bs-white);
  border-right: 3px solid #eaeaea;
	width:100%;
	line-height:1.3;
	padding: 1rem 0;
  }
  .carousel-caption input[type='submit'] {
  margin-top:5px;
  background:var(--bs-red);
  color:var(--bs-white);
  border:1px solid var(--bs-red);
  -webkit-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  padding:0.3rem 5rem;
  border-radius:5px;
  }
  .carousel-caption input[type='submit']:hover {
  background:var(--bs-white);
  color:var(--bs-red);
  }
  .carousel-caption #start , .carousel-caption #end ,.carousel-caption select{
  width:100%;
  border:1px solid #dfdfdf;
  padding:5px;
  border-radius:5px;
  color:#757575 !important;
  }
  
  @media screen and (max-width:991.98px) {
  #myTab .nav-link{
	border-bottom: 3px solid #eaeaea
  }
  }
  @media screen and (max-width:767.98px) {
  #myTab .nav-link{
	border-right: 0
  }
  }
  #myTab .nav-link:hover , #myTab .nav-link.active{
  background-color: var(--bs-red);
  border-color: var(--bs-red);
  }
  #myTab .nav-link:hover , #myTab .nav-link.active{
  color: var(--bs-white);
  }
  #myTab .nav-link{
  color: var(--bs-black);
  }*/
  
  #home-banner {
	position: relative;
  }
  .carousel-caption {
  text-align:left !important;
  color: var(--bs-black);
  top:6rem;
  left:0;
  width:100%;
	z-index:1;
  }
  .carousel-caption .form-label {
  font-weight:500;
  }
  .carousel-caption .nav-item {
  flex-grow:1;
  }
  .carousel-caption .panel-primary {
	border-color: var(--bs-red);
  }
  .carousel-caption .panel {
	background-color: var(--bs-white);
	max-width:420px;
	float:right;
  }
  .carousel-caption .panel-heading {
	padding: 5px 5px 0 5px;   
	background-color: var(--bs-red);
	border-top-left-radius: 3px;
	border-top-right-radius: 3px;
  }
  .carousel-caption .nav-link {
	border: 0;
	color: var(--bs-white);
	line-height:1.2;
	padding-bottom:8px;
	margin-bottom:0;
	text-align:left;
	width:100%;
  }
  .carousel-caption h6 {
  line-height:1.1;
  }
  .carousel-caption .nav-tabs {
  border:0 !important;
  }
  .carousel-caption .nav-tabs > .open > .nav-link, .carousel-caption .nav-tabs > .open > .nav-link:hover, .carousel-caption .nav-tabs > li > .nav-link:hover {
	color: var(--bs-white);
	background-color: #05305a;
	border-color: transparent;
  }
  .carousel-caption li.active > .nav-link , .carousel-caption li.active > .nav-link:hover , .carousel-caption li.active > .nav-link:focus{
	color: var(--bd-black);
	background-color: var(--bs-white);
	border-bottom-color: transparent;
	border:0;
  }
  .carousel-caption .btn-primary {
  background:var(--bs-blue);
  color:var(--bs-white);
  border:0;
  width:100%;
  }
  .carousel-caption .btn-primary:hover {
  background:var(--bs-light-blue);
  }
  .carousel-caption .form-check {
	padding-left: 1.8em;
  }
  .carousel-caption .form-select {
	font-size:1.5rem;
  }
  .carousel-control-next, .carousel-control-prev {
  width:5%;
  }
  
  /* resources style */
  .resources img {
  border-radius: 10px;
  }
  .resources {
  position:relative;
  background-color: #EDF1FC;
  padding: 6rem 0rem 6rem 0rem;
  }
  .resources-overlay {
  background-image: url(../img/resources-bg.png);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	opacity: 0.3;
	transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
	position: absolute;
	z-index:0;
  }
  .resources .container {
  position:relative;
  z-index:1;
  }
  .resources-right-inner {
	box-shadow: 0px 10px 20px 0px rgb(0 0 0 / 10%);
	transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
	margin: 5em 0em 0em -5em;
	padding: 3em 3em 3em 3em;
	border-radius: 10px;
  }
  .btn-primary {
	 background-color:var(--bs-blue);
	 border:0;
	 color:var(--bs-white) !important;
	 text-transform: uppercase;
	  font-size: 16px;
	  white-space: nowrap;
	  padding: 0.5rem 1rem;
	  border-radius:0;
  }
  .btn-primary:hover {
  background-color:var(--bs-light-blue);
  }
  
  @media only screen and (max-width:1024px) {
  .carousel-caption {
	display:none;
  }
  }
  .swiper-wrapper {
	padding-top: 24px;
  }
  
  /* air-freight page styles */
  .bg-parallax {
	  background-attachment: fixed;
  }
  .inside-banner {
	  padding: 10rem 0 8rem;
  }
  .bg-img {
	  position: relative;
	  z-index: 1;
  }
  .bg-overlay:before {
	  content: "";
	  position: absolute;
	  top: 0;
	  right: 0;
	  bottom: 0;
	  left: 0;
	  width: 100%;
	  height: 100%;
	  z-index: -1;
	  background-color: rgba(27, 26, 26, 0.15);
  }
  .page-title .breadcrumb-item.active , .breadcrumb-item+.breadcrumb-item::before{
	  color: #f4f4f4;
  }
  
  /** sidebar styles **/
  .sidebar {
	  margin-right: 2rem;
  }
  .widget {
	  position: relative;
	  background-color: #f4f4f4;
	  padding: 3rem 1.5rem;
	  margin-bottom: 2.5rem;
	  border-radius: 5px;
  }
  .bg-overlay-grdient-secondary:before {
	  background-color: rgba(18, 28, 69, 0.75);
	  background-image: -webkit-linear-gradient(
  -90deg
  , rgba(27, 26, 26, 0) 0%, rgba(5, 16, 59, 0) 0%, #05103b 65%);
	  background-image: -moz-linear-gradient(-90deg, rgba(27, 26, 26, 0) 0%, rgba(5, 16, 59, 0) 0%, #05103b 65%);
	  background-image: -ms-linear-gradient(-90deg, rgba(27, 26, 26, 0) 0%, rgba(5, 16, 59, 0) 0%, #05103b 65%);
  }
  .widget .widget__title {
	  font-size: 2rem;
	  letter-spacing: 0.5px;
	  line-height: 1;
	  font-weight: 700;
	  margin-bottom: 2rem;
  }
  .widget-categories ul {
	  background-color: var(--bs-white);
	  border-radius: 3px;
  }
  .widget-categories ul li a.active, .widget-categories ul li a:hover {
	  background-color: var(--bs-red);
	  color: var(--bs-white);
  }
  .widget-categories ul li a {
	  position: relative;
	  display: block;
	  padding: 1rem 2rem;
	  color: var(--bs-black);
	  line-height: 1.2;
	  font-weight: 700;
	  text-transform: capitalize;
	  border-bottom: 2px solid #f4f4f4;
	  -webkit-transition: all 0.3s linear;
	  -moz-transition: all 0.3s linear;
	  -ms-transition: all 0.3s linear;
	  -o-transition: all 0.3s linear;
	  transition: all 0.3s linear;
  }
  .widget-help {
	  overflow: hidden;
  }
  .widget-help .btn {
	  padding: 0.5rem;
	  font-weight:bold;
  }
  .btn_primary.btn_hover {
	  background-color: var(--bs-red);
	  color: var(--bs-white);
	  border: 2px solid var(--bs-red);
  }
  .btn_primary.btn_hover:active, .btn_primary.btn_hover:focus, .btn_primary.btn_hover:hover {
	  background-color: var(--bs-white);
	  color: var(--bs-red);
	  border-color: var(--bs-white);
  }
  .btn_secondary {
	  background-color: #121c45;
	  color: var(--bs-white);
	  border: 2px solid #121c45;
  }
  .widget-download .btn:hover {
	  background-color: var(--bs-white);
	  border-color: var(--bs-white);
  }
  .widget-download .btn:hover span {
	  color: var(--bs-red) !important;
  }
  .widget:last-child {
	  margin-bottom: 0;
  }
  .widget-download {
	  overflow: hidden;
	  box-shadow: 0px 5px 83px 0px rgb(40 40 40 / 8%);
	  background-color: var(--bs-red) !important;
  }
  .widget-download .btn {
	  display: -webkit-flex;
	  display: flex;
	  align-items: center;
	  padding: 1rem;
	  position: relative;
	  z-index: 2;
  }
  .widget-download .btn img {
	  width: 22px;
	  height: 24px;
	  margin-right: 10px;
  }
  .icon-blk-sty1 .col-md-6{
	padding: 15px;
}

  .icon-blk-sty1 .white-box{
	  background: var(--bs-white);
	  margin: 0;
  }
  .icon-blk-sty1 i{
	  font-size: 4.5rem;
	  color: var(--bs-red);	 
	 
  }

.info-box {
    border-radius: 5px;
    background-color: #fff;
    transition: all 0.3s ease-in-out;
    padding:1rem;
}
.info-box:hover {
    box-shadow: 0 1px 7px rgb(0 0 0 / 25%);
}

table {
  border-collapse: collapse;
  width: 100%;
}
.ie-tabs-content {
  max-width:810px;
  margin: -6rem auto 3rem auto !important;
  background:#FFFF;
  padding:4rem;
}
#import td, #export td, #import th, #export th {
  border: 1px solid #dddddd;
  text-align: left;
  padding: 8px;
}
#import tr:nth-child(even), #export tr:nth-child(even) {
  background-color: #dddddd;
}
.ie-tabs {
  padding-left:6rem;
  padding-bottom:6rem;
  background: #000;
}
.ie-tabs li {
  padding: 2rem 2rem 0 2rem;
}
.ie-tabs li a {
  color:#FFF !important;
  font-weight:bold;
  border:0 !important;
  padding:0 0 2rem 0 !important;
}
.ie-tabs li a.active {
  color:var(--bs-red) !important;
  background:none !important;
  border-bottom:3px solid var(--bs-red) !important;
}
.form-control {
  padding:0.8rem 1rem !important;
  font-size:1.3rem !important;
}

.err {
	color:red;
}