/********** Template CSS **********/
:root {
  /*--primary: #06A3DA;*/
  --primary: #e84523;
  --secondary: #091e3e;
  --light: #eef9ff;
  --dark: #091e3e;
}

body {
  font-family: "Montserrat", sans-serif;
}

/*** Spinner ***/
.spinner {
  width: 40px;
  height: 40px;
  background: var(--primary);
  margin: 100px auto;
  -webkit-animation: sk-rotateplane 1.2s infinite ease-in-out;
  animation: sk-rotateplane 1.2s infinite ease-in-out;
}
.minhgt {
  max-height: 90vh;
}
@-webkit-keyframes sk-rotateplane {
  0% {
    -webkit-transform: perspective(120px);
  }
  50% {
    -webkit-transform: perspective(120px) rotateY(180deg);
  }
  100% {
    -webkit-transform: perspective(120px) rotateY(180deg) rotateX(180deg);
  }
}

@keyframes sk-rotateplane {
  0% {
    transform: perspective(120px) rotateX(0deg) rotateY(0deg);
    -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg);
  }
  50% {
    transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
    -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
  }
  100% {
    transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
  }
}

#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
  z-index: 99999;
}

#spinner.show {
  transition: opacity 0.5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}

/*** Heading ***/
h1,
h2,
.fw-bold {
  font-weight: 500 !important;
}

h3,
h4,
.fw-semi-bold {
  font-weight: 500 !important;
}

h5,
h6,
.fw-medium {
  font-weight: 500 !important;
}

/*** Button ***/
.btn {
  font-weight: 600;
  transition: 0.5s;
}
.bdr-color {
  border-color: var(--dark) !important;
}
.btn-primary,
.btn-secondary {
  color: #ffffff;
  box-shadow: inset 0 0 0 50px transparent;
}

.btn-primary:hover {
  box-shadow: inset 0 0 0 0 var(--primary);
}

.btn-secondary:hover {
  box-shadow: inset 0 0 0 0 var(--secondary);
}

.btn-square {
  width: 36px;
  height: 36px;
}

.btn-sm-square {
  width: 30px;
  height: 30px;
}

.btn-lg-square {
  width: 48px;
  height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}
.mandatory::after {
  content: "*";
  position: absolute;
  color: #ff5050;
  padding-left: 5px;
  font-size: 1.1rem;
}
.orangebg{display: none;}
/*** Navbar ***/
.navbar-dark .navbar-nav .nav-link {
  position: relative;
  margin-left:15px;
  padding: 15px 0;
  color: #ffffff;
  font-size: 18px;
  font-weight: 400;
  outline: none;
  transition: 0.5s;
}
.navbar-dark .navbar-brand img.navbarLogo {
  width: 207px;
  position: absolute;
  top: 5px;
  transition: width 1s;
}
.sticky-top.navbar-dark .navbar-brand img.navbarLogo {
  width:6.2%;
  transition: width 1s;
  position: absolute;
  top: 5px;
}
.sticky-top.navbar-dark .navbar-nav .nav-link {
  padding: 20px 0;
  color: var(--light);
}

.navbar-dark .navbar-nav .nav-link:hover {
  color: var(--primary);
}
.navbar-dark .navbar-nav .nav-link.active {
  color: var(--primary);
  font-weight: bold;
}

.navbar-dark .navbar-brand h1 {
  color: #ffffff;
}

.navbar-dark .navbar-toggler {
  color: var(--primary) !important;
  border-color: var(--primary) !important;
}
.text-primary {
  color: var(--primary) !important;
}
.bg-primary {
  background-color: var(--primary) !important;
}
.bg-light {
  background-color: #f1f1f1 !important;
}
.orange-light {
  background-color: #fff7f0 !important;
}
.text-secondary {
  color: var(--secondary) !important;
}
.wf-label-title {
  color: #091e3e;
  font-size: 1.3rem;
}
.callusnow {
  position: fixed;
  /* right: -2.7%; */
  right: 0%;
  top: 50%;
  z-index: 1;
  transform: rotate(360deg);
  /* transform: rotate(90deg); */
}
.btn-outline-primary {
  border-color: var(--primary);
  color: var(--primary);
}
.btn-outline-primary:hover {
  background-color: var(--primary);
  border-color: #fd7e14;
  color: var(--light);
}
.form-heading {
  font-weight: bolder !important;
}
@media (max-width: 991.98px) {
  .navbar-dark {background-color: #0a152c;position: relative;top: 0;}
  .sticky-top.navbar-dark {
    position: relative;
    /* background: #FFFFFF; */
    background-color: #091e3e !important;
  }

  .navbar-dark .navbar-nav .nav-link,
  .navbar-dark .navbar-nav .nav-link.show,
  .sticky-top.navbar-dark .navbar-nav .nav-link {
    padding: 10px 0;
    /*    color: var(--dark);*/
    color: var(--light);
  }

  .navbar-dark .navbar-brand h1 {
    color: var(--primary);
  }
}

@media (min-width: 992px) {
  .form-head-size {
    font-size: 2rem;
  }
  .navbar-dark {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    /* border-bottom: 1px solid rgba(256, 256, 256, 0.1); */
    z-index: 999;
    background-color: #0a152c61;
    backdrop-filter: blur(10px);
    padding: 1.71rem 1rem 1.69rem !important;
  }

  .sticky-top.navbar-dark {
    position: fixed;
    /* background: #ffffff; */
    background-color: #091e3e !important;
    /* background-image: -webkit-repeating-radial-gradient(center center, rgba(256, 256, 256, 0.2), rgba(256, 256, 256, 0.2) 1px, transparent 1px, transparent 100%);
    background-image: -moz-repeating-radial-gradient(center center, rgba(256, 256, 256, 0.2), rgba(256, 256, 256, 0.2) 1px, transparent 1px, transparent 100%);
    background-image: -ms-repeating-radial-gradient(center center, rgba(256, 256, 256, 0.2), rgba(256, 256, 256, 0.2) 1px, transparent 1px, transparent 100%);
    background-image: -o-repeating-radial-gradient(center center, rgba(256, 256, 256, 0.2), rgba(256, 256, 256, 0.2) 1px, transparent 1px, transparent 100%);
    background-image: repeating-radial-gradient(center center, rgba(256, 256, 256, 0.2), rgba(256, 256, 256, 0.2) 1px, transparent 1px, transparent 100%); */
    /* background-size: 3px 3px; */
  }
  .navbar-dark .navbar-nav .nav-link{font-size:16px;}
  .navbar-dark .navbar-nav .nav-link::before {
    position: absolute;
    content: "";
    width: 0;
    height: 2px;
    bottom: -1px;
    left: 50%;
    background: var(--primary);
    transition: 0.5s;
  }

  .navbar-dark .navbar-nav .nav-link:hover::before,
  .navbar-dark .navbar-nav .nav-link.active::before {
    width: 100%;
    left: 0;
  }

  .navbar-dark .navbar-nav .nav-link.nav-contact::before {
    display: none;
  }

  .sticky-top.navbar-dark .navbar-brand h1 {
    color: var(--primary);
  }
/*------24-07-2024------*/
/*.navbar-expand-lg .navbar-collapse{margin-top: 9px;}
.sticky-top.navbar-dark .navbar-collapse{margin-top: 3px;}*/
.navbar-dark .navbar-brand img.navbarLogo{top: 9px;}
.sticky-top.navbar-dark .navbar-brand img.navbarLogo{width:135px;top: 15px;}
.sticky-top.navbar-dark{padding: 0.69rem 1rem 0.69rem !important;}
}

@media (min-width:992px) and (max-width:1200px){
  .navbar.navbar-expand-lg .navbar-nav{justify-content: flex-end;align-items: center;}
}

@media only screen and (max-width: 1500px) and (min-width: 960px) {
  .facts {
    margin-top: -25px !important;
  }
  #BiginWebToRecordForm453394000000284068 {
    font-size: 14px !important;
  }

  .wf-form-wrapper > .pb-2 {
    padding-bottom: 5px !important;
  }
  #BiginWebToRecordForm453394000000284068 .wf-form-wrapper .wf-label {
    padding: 0 0 2px 0 !important;
  }
  .carousal-txt {
    font-size: 2.3rem !important;
  }
}
.btn-primary {
  color: #fff;
  background-color: var(--primary);
  border-color: var(--primary);
}
.btn-primary:hover {
  color: var(--primary);
  background-color: var(--light);
  border-color: var(--light);
}
.quotebox {
  top: 88px;
}
/*** Carousel ***/
.carousel-caption {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(9, 30, 62, 0.7);
  z-index: 1;
}

@media (max-width: 576px) {
  .carousel-caption h5 {
    font-size: 14px;
    font-weight: 500 !important;
  }

  .carousel-caption h1 {
    font-size: 25px;
    font-weight: 600 !important;
  }
}

.carousel-control-prev,
.carousel-control-next {
  width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 3rem;
  height: 3rem;
}
.mr-3,
.mx-3 {
  margin-right: 1rem !important;
}
/*** Section Title ***/
.section-title::before {
  position: absolute;
  content: "";
  width: 150px;
  height: 5px;
  left: 0;
  bottom: 0;
  background: var(--primary);
  border-radius: 2px;
}

.section-title.text-center::before {
  left: 50%;
  margin-left: -75px;
}

.section-title.section-title-sm::before {
  width: 90px;
  height: 3px;
}

.section-title::after {
  position: absolute;
  content: "";
  width: 6px;
  height: 5px;
  bottom: 0px;
  /* background: #ffffff;
  -webkit-animation: section-title-run 5s infinite linear;
  animation: section-title-run 5s infinite linear; */
}

.section-title.section-title-sm::after {
  width: 4px;
  height: 3px;
}

.section-title.text-center::after {
  -webkit-animation: section-title-run-center 5s infinite linear;
  animation: section-title-run-center 5s infinite linear;
}

.section-title.section-title-sm::after {
  -webkit-animation: section-title-run-sm 5s infinite linear;
  animation: section-title-run-sm 5s infinite linear;
}

@-webkit-keyframes section-title-run {
  0% {
    left: 0;
  }
  50% {
    left: 145px;
  }
  100% {
    left: 0;
  }
}

@-webkit-keyframes section-title-run-center {
  0% {
    left: 50%;
    margin-left: -75px;
  }
  50% {
    left: 50%;
    margin-left: 45px;
  }
  100% {
    left: 50%;
    margin-left: -75px;
  }
}

@-webkit-keyframes section-title-run-sm {
  0% {
    left: 0;
  }
  50% {
    left: 85px;
  }
  100% {
    left: 0;
  }
}

/*** Our Service ***/
.service-sec {
  position: relative;
  height: 100%;
  padding: 0 10px;
  transition: 0.5s;
}
.service-title {
  font-size: 14px !important;
  top: -30px !important;
  border: 1px solid #a3b2c8;
}
.service-category {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  display: block;
  margin: 0 auto;
  position: relative;
  z-index: 0;
  margin-bottom: 20px;
}
/*** Service ***/
.service-item {
  position: relative;
  height: 250px;
  padding: 0 10px;
  transition: 0.5s;
}

.service-item .service-icon {
  margin-bottom: 30px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  border-radius: 2px;
  transform: rotate(-45deg);
}

.service-item .service-icon i {
  transform: rotate(45deg);
}

.service-item a.btn {
  position: absolute;
  width: 60px;
  bottom: -48px;
  left: 50%;
  margin-left: -30px;
  opacity: 0;
}

.service-item:hover a.btn {
  bottom: -24px;
  opacity: 1;
}

/*** Testimonial ***/
.testimonial-carousel .owl-dots {
  margin-top: 15px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.testimonial-carousel .owl-dot {
  position: relative;
  display: inline-block;
  margin: 0 5px;
  width: 15px;
  height: 15px;
  background: #dddddd;
  border-radius: 2px;
  transition: 0.5s;
}

.testimonial-carousel .owl-dot.active {
  width: 30px;
  background: var(--primary);
}

.testimonial-carousel .owl-item.center {
  position: relative;
  z-index: 1;
}

.testimonial-carousel .owl-item .testimonial-item {
  transition: 0.5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
  background: #ffffff !important;
  box-shadow: 0 0 30px #dddddd;
}
/*** Accordion CSS ***/

.accordion-title {
  color: #3e4b62 !important;
  font-weight: 700 !important;
  background: none !important;
}
.accordion-button:focus {
  border-color: #ffffff !important;
  box-shadow: none !important;
}

.shadow-col {
  margin-bottom: 30px;
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.08);
  transform: scale(0.8);
  transition: 0.5s;
  text-align: center;
  padding: 20px;
}
.iconshadow-col {
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.08);
  transform: scale(0.8);
  transition: 0.5s;
  text-align: left;
  border-radius: 8px;
  display: flex;
  align-items: center;
}
/*** Why Choose Us ***/
.icon-box i {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  margin-right: 15px;
  font-size: 25px;
  width: 35px;
  height: auto;
  border-radius: 4px;
  line-height: 0;
  /* box-shadow: 0px 2px 30px rgba(0, 0, 0, 0.08);
    /* background-color: #fff; */
  transition: 0.3s;
}
.tab-section .tab-link .nav-tabs {
  display: flex;
  justify-content: left;
  flex-wrap: nowrap;
}
.tab-section .tab-link .nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
  border-color: #bfbfbf #bfbfbf #fff !important;
}
.tab-section .tab-link .nav-link {
  color: #091e3e !important;
  font-weight: 600;
  font-size: 1.2rem !important;
  padding: 10px 8px 10px;
  display: flex;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  text-align: left;
  line-height: 1.1;
}
.tab-section .tab-link .nav-link:hover,
.nav-link:focus {
  color: #e84523 !important;
  font-weight: 600;
}
.tab-section .tab-link .active {
  color: #e84523 !important;
  font-weight: 600;
}
.tab-section .tab-link .nav-tabs {
  border-bottom: 1px solid #bfbfbf !important;
}
.tab-section .tab-link p {
  font-size: 1.2rem !important;
}

/*** Team ***/
.tagborder {
  border-radius: 4px;
}
.item-divider {
  border-bottom: 1px solid #cad6eb;
}
.team-item {
  transition: 0.5s;
}

.team-social {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
}

.team-social a.btn {
  position: relative;
  margin: 0 3px;
  margin-top: 100px;
  opacity: 0;
}

.team-item:hover {
  box-shadow: 0 0 30px #dddddd;
}

.team-item:hover .team-social {
  background: rgba(9, 30, 62, 0.7);
}

.team-item:hover .team-social a.btn:first-child {
  opacity: 1;
  margin-top: 0;
  transition: 0.3s 0s;
}

.team-item:hover .team-social a.btn:nth-child(2) {
  opacity: 1;
  margin-top: 0;
  transition: 0.3s 0.05s;
}

.team-item:hover .team-social a.btn:nth-child(3) {
  opacity: 1;
  margin-top: 0;
  transition: 0.3s 0.1s;
}

.team-item:hover .team-social a.btn:nth-child(4) {
  opacity: 1;
  margin-top: 0;
  transition: 0.3s 0.15s;
}

.team-item .team-img img,
.blog-item .blog-img img {
  transition: 0.5s;
}

.team-item:hover .team-img img,
.blog-item:hover .blog-img img {
  transform: scale(1.15);
}
.border-box {
  border: 1px solid #ffa961;
}
.border-box h4 {
  font-size: 1.2rem !important;
}
.nav-dropbar {
  width: initial;
  width: 100%;
  flex: 2;
  display: flex;
  /* align-items: center; */
  justify-content: center;
}
/*** Fa Icon CSS ***/

.fa-color {
  font-size: 35px;
  color: #06a3da;
}
/*** Carousal CSS ***/
.carousal-txt {
  font-size: 2.5rem;
  font-weight: 800 !important;
}
/*** Miscellaneous ***/
@media (min-width: 991.98px) {
  .facts {
    position: relative;
    margin-top: -75px;
    z-index: 1;
  }
}
.back-to-top img {
  width: 25%;
}
.back-to-top {
  position: fixed;
  display:inline;
  right:-115px;
  bottom: 45px;
  z-index: 99;
}

.callusnow-bottom {
  position: fixed;
  display:inline;
  right:-375px;
  bottom: 45px;
  z-index: 99;
}
.callusnow-bottom img {
  width: 25%;
}


.bg-header {
  background: linear-gradient(rgba(9, 30, 62, 0.7), rgba(9, 30, 62, 0.7)),
    url(../img/carousel-1.jpg) center center no-repeat;
  background-size: cover;
}

.freight-header {
  background: linear-gradient(rgba(9, 30, 62, 0.7), rgba(9, 30, 62, 0.7)),
    url(../img/tfl_hero3.jpg) center center no-repeat;
  background-size: cover;
}

.contact-header {
  background: linear-gradient(rgba(9, 30, 62, 0.7), rgba(9, 30, 62, 0.7)),
    url(../img/contact-banner.jpg) center center no-repeat;
  background-size: cover;
}

.link-animated a {
  transition: 0.5s;
}

.link-animated a:hover {
  padding-left: 10px;
}
.footer-container {font-size: 14px;}

@media (min-width: 767.98px) {
  .footer-about {
    margin-bottom: -75px;
  }
}

@media only screen and (max-width: 560px) {
  .custom-class {
    flex-wrap: wrap !important;
  }
  .wf-wrapper {
    width: calc(100% - 10px) !important;
  }
  .tabnav-btn.nav-tabs .nav-link {
    width: 100%;
    margin-bottom: 0px;
    border: 1px solid #c7c7c7 !important;
  }
  .nav-dropbar {
    align-items: flex-start;
    padding-top: 2rem !important;
    margin-left:0%;
  }
  .mob-w-100 {
    min-width: 100% !important;
  }
  .minhgt {
    max-height: initial;
  }
  .navbar-dark .navbar-brand img.navbarLogo {
    width:20%;
    z-index: 2;
  }
  .mob-topnav.px-5 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
    margin-top: 1.5rem !important;
  }
  .pt-mb {
    padding-top: 5rem;
  }
  .callusnow {
    top: auto;
    bottom: 15%;
  }
}

@media only screen and  (max-width : 1366px) {
  .navbar-dark{padding: 15px 15px 15px !important;}
  .navbar-dark .navbar-brand img.navbarLogo{width: 162px;}
}

@media (min-width:1024px) {
  .nav-dropbar {margin-left:10%;}
}

@media screen and (max-width:991px){
.navbar.navbar-dark{padding: 9px 15px 9px !important;min-height: 105px;}
.navbar.navbar-dark .navbar-toggler{position: absolute;right: 18px;top: 27px;z-index: 100000;}
.navbar.navbar-dark .navbar-nav{padding-top: 50px !important;}
.navbar.navbar-dark .navbar-collapse{padding: 24px 0 24px;}
.navbar-dark .navbar-brand img.navbarLogo{top: 18px;}
} 
 
@media only screen and (max-width: 767px){
.our-services .iconshadow-col .img-fluid{max-width: 72px;height: auto;}
}

@media only screen and (max-width: 575px){
body.home .navbar.navbar-dark{min-height: 93px;}.navbar.navbar-dark{min-height: 93px;}
.navbar-dark .navbar-brand img.navbarLogo{width: 124px;top: 19px;}
.navbar.navbar-dark .navbar-toggler{top: 21px;}
}
@media only screen and (max-width: 435px){
.bg-primary small.me-3.text-light{font-size: 12px;}
}


