@font-face {
  font-family: Inter;
  src: url(../font/Inter-Regular.ttf);
}

@font-face {
  font-family: Inter-Medium;
  src: url(../font/Inter-Medium.ttf);
}
.dark-light-switch {
  position: fixed !important;
}

.navbar.bg-dark {
  backdrop-filter: blur(8px);
  background-color: rgba(0, 0, 0, 0.3) !important;
}

.light-mode .bg-dark {
  backdrop-filter: blur(8px);
  background-color: rgba(255, 255, 255, 0.3) !important;
}

@font-face {
  font-family: Inter-Bold;
  src: url(../font/Inter-Bold.ttf);
}

@font-face {
  font-family: Inter-Semibold;
  src: url(../font/Inter-SemiBold.ttf);
}

@font-face {
  font-family: Inter-Light;
  src: url(../font/Inter-Light.ttf);
}

@font-face {
  font-family: Inter-ExtraLight;
  src: url(../font/Inter-ExtraLight.ttf);
}

@font-face {
  font-family: Inter-Thin;
  src: url(../font/Inter-Thin.ttf);
}

@font-face {
  font-family: Thunder-L;
  src: url(../font/Thunder-LightLC.ttf);
  font-weight: 200;
}

@font-face {
  font-family: Thunder-M;
  src: url(../font/Thunder-MediumLC.ttf);
  font-weight: 200;
}

@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap");

body {
  background-color: #111214;
}

body::-webkit-scrollbar {
  display: none; /* for Chrome, Safari, and Opera */
}

* {
  font-family: "Inter", sans-serif;
  /* font-family: 'ThunderExtLt'; */
}

a {
  color: white;
  text-decoration: none;
}

:root {
  --primary: #eaa636;
  --secondary: #545454;
  --light: #fdf5eb;
  --dark: #1e1916;
  --select-button-clr: white;
  --select-text-color: black;
}

:root .dark-mode {
  color-scheme: dark;

  --select-button-clr: #545454;
  --select-text-color: white;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
}

.py-6 {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.my-6 {
  margin-top: 6rem;
  margin-bottom: 6rem;
}

.back-to-top {
  position: fixed;
  display: none;
  right: 30px;
  bottom: 30px;
  z-index: 99;
}

/*** Spinner ***/
#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;
}

/*** Button ***/
.btn {
  font-weight: 500;
  transition: 0.5s;
}

.btn.btn-primary {
  color: #ffffff;
}

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

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

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

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
}

.navbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-size: 20px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  vertical-align: middle;
  margin-left: 8px;
}

.navbar .navbar-nav .nav-link {
  padding: 60px 15px;
  font-size: 19px;
  color: var(--light);
  outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
  color: var(--primary);
}

.navbar.fixed-top {
  transition: 0.5s;
}

/*** Header ***/
.header-carousel .owl-carousel-inner {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  background: rgba(44, 44, 44, 0.3);
}

.header-carousel .owl-nav {
  position: relative;
  width: 80px;
  height: 80px;
  margin: -40px auto 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.header-carousel .owl-nav::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #ffffff;
  transform: rotate(45deg);
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
  position: relative;
  font-size: 40px;
  color: var(--primary);
  transition: 0.5s;
  z-index: 1;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
  color: var(--dark);
}

.page-header {
  margin-bottom: 6rem;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url(../img/carousel-1.jpg) center center no-repeat;
  background-size: cover;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: var(--light);
}

/*** Facts ***/
.fact-item {
  transition: 0.5s;
}

/* .fact-item:hover { */
/* margin-top: -10px; */
/* background: #FFFFFF !important; */
/* box-shadow: 0 0 45px rgba(0, 0, 0, .07); */
/* } */

/*** About ***/
.img-twice::before {
  position: absolute;
  content: "";
  width: 60%;
  height: 80%;
  top: 10%;
  left: 20%;
  background: var(--primary);
  border: 25px solid var(--light);
  border-radius: 6px;
  z-index: -1;
}

/*** Product ***/
.product-item {
  transition: 0.5s;
}

.product-item:hover {
  background: var(--primary) !important;
}

.product-item:hover * {
  color: var(--light);
}

.product-item:hover .border-primary {
  border-color: var(--light) !important;
}

.product-item .product-overlay {
  position: absolute;
  width: 100%;
  height: 0;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  overflow: hidden;
  opacity: 0;
  transition: 0.5s;
}

.product-item:hover .product-overlay {
  height: 100%;
  opacity: 1;
}

/*** Team ***/
.team-item .team-text {
  position: relative;
  height: 100px;
  overflow: hidden;
}

.team-item .team-title {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--light);
  transition: 0.5s;
}

.team-item:hover .team-title {
  top: -100px;
}

.team-item .team-social {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 100px;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  transition: 0.5s;
}

.team-item .team-social .btn {
  margin: 0 3px;
}

.team-item:hover .team-social {
  top: 0;
}

/*** Testimonial ***/
.testimonial-carousel .owl-item .testimonial-item img {
  width: 60px;
  height: 60px;
}

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

.testimonial-carousel .owl-item.center .testimonial-item {
  background: var(--primary) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item * {
  color: #ffffff !important;
}

.testimonial-carousel .owl-nav {
  margin-top: 30px;
  display: flex;
  justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
  margin: 0 12px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  font-size: 22px;
  color: var(--light);
  background: var(--primary);
  transition: 0.5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
  color: var(--primary);
  background: var(--dark);
}

/*** Footer ***/
.footer .btn.btn-link {
  display: block;
  margin-bottom: 5px;
  padding: 0;
  text-align: left;
  color: var(--light);
  font-weight: normal;
  text-transform: capitalize;
  transition: 0.3s;
}

.footer .btn.btn-link::before {
  position: relative;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: var(--light);
  margin-right: 10px;
}

.footer .btn.btn-link:hover {
  color: var(--primary);
  letter-spacing: 1px;
  box-shadow: none;
}

.copyright {
  background: #111111;
}

.copyright a {
  color: var(--primary);
}

.copyright a:hover {
  color: var(--light);
}

.banner-img {
  height: 100vh;
  object-fit: cover;
  /* object-position: bottom; */
}

.banner-text-one {
  font-size: 58px;
  font-family: Inter-Bold;
  font-weight: bold;
  margin-bottom: 18px !important;
}
.banner-text-two {
  font-size: 20px !important;
  margin-bottom: 10px !important;
}

.dark_mode {
  background-color: #111214;
  color: #ffffff;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
  color: #79ccd3;
}

.custom-btn {
  border-radius: 50px;
  padding: 6px 10px 6px 20px;
  background: transparent;
  border: 1px solid white;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
}

.custom-btn i {
  border: none;
  padding: 0px;
  margin: 0;
  border-radius: 50%;
  background: white;
  color: black;
  height: 35px;
  display: flex;
  width: 35px;
  justify-content: center;
  align-items: center;
  margin-left: 15px;
}

.apply-now-btn {
  background-color: #79ccd3 !important;
  color: black !important;
  /* font-weight: 100; */
  font-weight: 600;
  font-family: Inter-Semibold;
  height: 70px;
  width: 240px;
  border: none;
  font-size: 21px;
  line-height: 18px;
  padding: 4px 10px 4px 32px;
}
.apply-now-btn i {
  background-color: black !important;
  color: white !important;
  width: 60px;
  height: 60px;
  font-size: 20px;
}

.bannner-follow-us {
  display: flex;
  transform: rotate(-90deg);
  position: fixed;
  z-index: 9;
  top: 45vh;
  right: 10px;
  right: -40px;
  align-items: center;
}

.bannner-follow-us .follow-fb-icon,
.bannner-follow-us .follow-ig-icon {
  transform: rotate(90deg);
  margin: 0px 8px;
  border-radius: 50%;
  /* background: #ffffff59; */
  background: #ffffff1a;
  /* height: 30px; */
  display: flex;
  /* width: 30px; */
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
}

.bannner-follow-us .follow-fb-icon i,
.bannner-follow-us .follow-ig-icon i {
  /* font-size: 18px; */
  color: white;
}

.bannner-follow-us > svg {
  transform: rotate(-90deg);
}

.banner-follow-us-text {
  color: white;
  display: flex;
  align-items: center;
}

.our-services-section {
  padding-top: 64px !important;
  padding-bottom: 64px !important;
  height: 100%;
}
.our-services-section p.common-title,
.our-team-section .common-title {
  margin-bottom: 40px;
}
.our-services-section .card-img-overlay {
  background-image: linear-gradient(
    to bottom,
    rgba(255, 0, 0, 0),
    rgb(0 0 0 / 80%)
  );
  border-radius: 14px !important;
}

.our-services-section .card {
  background-color: transparent;
  border-radius: 14px;
}
.our-services-section .card .card-img {
  min-height: 375px !important;
  object-fit: cover;
  border-radius: 14px !important;
  object-position: left;
}
.our-services-section .more-details {
  border-bottom: 1px solid #79ccd3;
  color: #79ccd3;
}
.our-services-section .card-text {
  color: #b5b6b6;
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 28px;
}
.our-services-section .card-title {
  color: white;
  margin-bottom: 0;
  /* font-size: 26px; */
  font-size: 20px;
  line-height: 28px;
  font-weight: bold;
  margin-bottom: 8px;
}
.our-services-section .card-details {
  position: absolute;
  /* bottom: 15px; */
  /* left: 15px; */
  bottom: 20px;
  left: 20px;
}
.security-service-contact-size-sec {
  padding-top: 40px;
  padding-bottom: 40px;
}
.our-services-section .top-btn {
  float: right;
  border-radius: 40px;
  /* padding: 4px 15px; */
  /* backdrop-filter: blur(30px); */
  border: none;
  /* background: transparent; */
  color: white;
  /* font-size: 14px; */
  padding: 14px 16px;
  backdrop-filter: blur(5px);
  background: #00000033;
  font-size: 12px;
  line-height: 15px;
}
.our-services-section .detailed-title-two {
  color: #b5b6b6;
}

.padding-all {
  /* padding: 50px; */
  padding: 20px 50px;
  background: #2b2c2e;
  margin: 20px;
  border-radius: 14px;
}

.fleet-section {
  /* padding: 50px; */
  padding: 20px 50px;
  background: #f5f6f6;
  margin: 20px;
  border-radius: 14px;
}

.dark-mode .fleet-section {
  background: #1d1e20;
}

/* .padding-all {
    padding: 20px 120px;
    background: #2B2C2E;
    margin: 20px;
    border-radius: 12px;
} */

.our-partner-logo-section {
  background-color: transparent !important;
  padding-top: 44px !important;
  padding-bottom: 0px !important;
  margin-bottom: 0px !important;
}
.our-partner-logo-section .our-partner-logo {
  text-align: center;
  margin-bottom: 30px;
}
.our-partner-logo-section h6.small-titles {
  font-size: 26px;
  line-height: 36px;
  font-weight: 700;
}
.about-5qlogistics-section {
  background-color: transparent !important;
  padding-top: 0px !important;
  height: 120vh;
}
.about-5qlogistics-section > div,
.about-5qlogistics-section > div > .row,
.about-5qlogistics-section > div > .row > div > .row {
  height: 100%;
}
.about-5qlogistics-section video.about-video {
  margin-top: 12px;
}
.about-5qlogistics-section .accordions-div .accordion .accordion-item {
  margin: 30px 0px;
  /* margin: 10px 5px; */
  /* background-color: #F5F6F6; */
  background-color: #1d1e20;
  /* margin: 10px 5px; */
  border-radius: 10px;
  border-color: transparent;
  color: white;
}

.about-5qlogistics-section .accordions-div .accordion .accordion-button {
  padding: 24px 20px;
  /* padding: 8px 15px; */
  /* background-color: #F5F6F6; */
  /* font-weight: bold; */
  border-radius: 10px;
  color: white;
  font-size: 24px;
  font-family: Inter-Semibold;
  background-color: #1d1e20;
}

.accordion-button div div:first-child {
  font-weight: 900;
}

.accordions-div .accordion {
  --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");

  --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.about-5qlogistics-section .accordions-div .accordion .accordion-button::after {
  content: "+";
  position: absolute;
  display: block;
  background-image: unset;
  transform: translateY(-50%);
  top: 50%;
  right: 20px;
  font-size: 20px;
  /* width: 18px; */
  /* height: 18px; */
  background-size: contain;
}
.accordion .accordion-button:not(.collapsed) {
  box-shadow: none !important;
}

.about-5qlogistics-section .accordions-div .accordion .accordion-button svg {
  background: #2b2c2e;
  border-radius: 6px;
  padding: 10px;
  width: 50px;
  height: 50px;
  margin-right: 14px;
}
.common-title-main {
  font-family: "Thunder-L", sans-serif;
  color: #fea02f;
  font-size: 27px;
  font-weight: bold;
  display: flex;
  align-items: baseline;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.common-title-main .title-star {
  margin-right: 8px;
  position: relative;
  top: 2.8px;
}

.common-title {
  /* font-size: 44px; */
  font-size: 46px;
  line-height: 58px;
  font-weight: bold;
  color: white;
  /* margin-bottom: 40px; */
}

.common-para {
  color: #b5b6b6;
  font-size: 19px;
}

.small-titles {
  color: white;
  font-weight: bold;
}

.small-titles-1 {
  color: white;
  font-weight: bold;
}

/* .about-5qlogistics-section .about-5qlogistics-img{
    border-radius: 12px;
} */
.about-5qlogistics-section .about-5qlogistics-img {
  border-radius: 12px;
  height: 100vh;
  object-fit: cover;
  object-position: left;
}
.about-5qlogistics-right-section {
  padding: 0 40px 0 58px;
}
.about-5qlogistics-right-section .common-title-main {
  margin-top: 100px;
}
.about-5qlogistics-right-section .common-title,
.security-service-section .common-title,
section.our-service-eld-section .common-title {
  margin-bottom: 16px !important;
  width: 85%;
  font-family: Inter-Bold;
  font-size: 58px;
  line-height: 1.2em;
}
.about-5qlogistics-right-section p.common-para {
  width: 85%;
  font-size: 20px;
  line-height: 28px;
}
.account-manager-sec .common-title,
section.our-team-experience-section .common-title {
  font-size: 36px;
  line-height: 48px;
  margin-bottom: 16px !important;
}
section.car-hauling-section .account-manager-accordion {
  margin-left: 40px;
  margin-right: 50px;
}
.back-to-top-btn {
  background-color: #79ccd3;
  border: 1px solid #79ccd3;
}
.back-to-top-btn i {
  color: #2b2c2e;
}
.back-to-top-btn:hover {
  background-color: white;
  border: 1px solid black;
  color: #2b2c2e;
}

.number-counter-section .number-counter-box.ncb-1,
.number-counter-section .number-counter-box.ncb-3,
.number-counter-section .number-counter-box.ncb-5 {
  color: #79ccd3;
}

.number-counter-section .number-counter-box.ncb-2,
.number-counter-section .number-counter-box.ncb-4 {
  color: white;
}

.number-counter-section {
  /* padding: 10px 0px; */
  padding: 30px 0;
  margin-top: 20vh;
}
.number-counter-section h1 {
  font-weight: bold;
}

.number-counter-section .number-counter-box .fa-plus {
  font-size: 25px;
  font-weight: bold;
  margin-left: 10px;
}

.center-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.common-filter input[type="radio"]:checked + label {
  background-color: #79ccd3;
  color: black;
}

.plus-icon {
  font-size: 38px;
  font-weight: bold;
}

.our-team-card {
  border-radius: 15px;
  width: auto;
  display: flex;
  justify-content: center;
  align-items: end;
  height: 80%;
  background-color: #2b2c2e;
  position: relative;
  overflow: hidden;
}
.team-member-details {
  height: 20%;
  font-size: 18px;
}
.our-team-card img {
  z-index: 2;
  margin-bottom: -100px;
}

.our-team-bg {
  position: absolute;
  left: 12%;
  top: 40px;
  z-index: 1;
}

.our-team-section {
  background-color: transparent;
  padding-bottom: 30px;
  /* height: 140vh; */
}

.our-team-section > div {
  height: 100%;
}
.our-team-section > div > .row {
  height: 50%;
}

.our-team-section .our-team-main {
  margin: 0px 3px;
  height: 100%;
}
.our-team-section .our-team-card {
  width: 100%;
}

.our-team-section .common-title {
  font-family: Inter-Bold;
  font-size: 58px;
}

.team-member-details {
  /* margin: 5px; */
  margin: 18px 0 0;
}
.our-team-section .col-6.col-sm-6 {
  margin-bottom: 0 !important;
}
.team-member-details .team-designation {
  text-align: left;
  color: #b5b6b6;
  margin-bottom: 5px;
  font-size: 16px;
  line-height: 17px;
  font-family: Inter-Thin;
  font-weight: 400;
}
.team-member-details .team-member-name {
  text-align: left;
  margin-bottom: 5px;
  font-weight: bold;
  color: white;
  font-size: 1.625rem;
  font-family: Inter-Semibold;
  line-height: 1.25em;
}
.team-member-details .team-member-contact {
  text-align: left;
  color: #79ccd3;
  margin-bottom: 5px;
}

.faq-section {
  background-color: #79ccd3;
  padding-top: 30px;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 30px;
  margin-top: 15vh;
}
.faq-section .common-para {
  font-family: Inter-Medium;
  font-size: 20px;
}
.faq-section p.common-title {
  font-weight: bold !important;
  font-family: Inter-Bold;
  margin-bottom: 10px;
  font-size: 60px;
  letter-spacing: -0.04em;
}

.faq-section .common-title-main {
  font-size: 30px;
}
.faq-section button.get-in-touch-btn {
  margin-top: 20px !important;
}
.faq-section .accordion-faq {
  background-color: #111214;
  margin: 10px 5px;
}

.faq-section .accordion-faq {
  background-color: #111214;
  /* margin: 10px 5px; */
  margin: 0 0 10px;
  border-radius: 10px;
  border-color: transparent;
  color: white;
}

.faq-section .accordion-faq .accordion-header .accordion-button {
  border-radius: 10px;
  color: white;
  font-size: 18px;
  background-color: #111214;
  padding: 20px;
}
.faq-left-section {
  padding-left: 50px;
  padding-right: 50px;
}
.faq-right-section {
  padding-left: 80px;
  padding-right: 50px;
  padding-top: 15px;
}

.faq-section .accordion {
  --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");

  --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.faq-section .faq-img img {
  border-radius: 15px;
  height: 292px;
  display: block;
  width: 100%;
  object-fit: cover;
}
.get-in-touch-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 15px 30px;
  border-radius: 30px;
  border: none;
  background: #111214;
  color: white;
  position: relative;
  font-size: 20px;
  font-family: Inter-Semibold;
}

.get-in-touch-btn i {
  position: absolute;
  right: 3px;
  top: -8px;
  font-size: 53px;
  color: #79ccd3;
}

.spinner-color {
  color: #79ccd3 !important;
}

.contact-us-cmn-form {
  background-color: #111213;
  padding: 28px 30px;
  border-radius: 10px;
}

.contact-us-cmn-form .contact-us-title-one {
  color: #fea02f;
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 8px;
  text-transform: uppercase;
  font-family: Thunder-L;
  letter-spacing: 0.02em;
}

.contact-us-cmn-form .contact-us-title-second {
  font-size: 27px;
  line-height: 58px;
  font-weight: bold;
  color: white;
  margin-bottom: -20px !important;
}

.contact-us-cmn-form .floating-label {
  position: relative;
  /* margin-bottom: 45px; */
  margin-bottom: 60px;
  margin-top: 30px;
}
.contact-us-cmn-form .floating-input,
.contact-us-cmn-form .floating-select {
  font-size: 30px;
  padding: 4px 4px 4px 0px;
  display: block;
  width: 100%;
  /* height:30px; */
  height: 40px;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #3c3d3e;
}

.contact-us-cmn-form .floating-input:focus,
.contact-us-cmn-form .floating-select:focus {
  outline: none;
  /* border-bottom:2px solid #5264AE;  */
}

.contact-us-cmn-form label {
  color: #999;
  font-size: 20px;
  font-weight: normal;
  position: absolute;
  pointer-events: none;
  left: 0px;
  top: 0px;
  transition: 0.2s ease all;
  -moz-transition: 0.2s ease all;
  -webkit-transition: 0.2s ease all;
}

.contact-us-cmn-form input {
  color: white;
}

.contact-us-cmn-form .floating-input:focus ~ label,
.contact-us-cmn-form .floating-input:not(:placeholder-shown) ~ label {
  top: -18px;
  font-size: 14px;
  color: #79ccd3;
}

.contact-us-cmn-form .floating-select:focus ~ label,
.contact-us-cmn-form .floating-select:not([value=""]):valid ~ label {
  top: -18px;
  font-size: 14px;
  color: #79ccd3;
}

/* active state */
.contact-us-cmn-form .floating-input:focus ~ .bar:before,
.contact-us-cmn-form .floating-input:focus ~ .bar:after,
.contact-us-cmn-form .floating-select:focus ~ .bar:before,
.contact-us-cmn-form .floating-select:focus ~ .bar:after {
  width: 50%;
}

.submit-your-message-btn {
  width: 100%;
  /* border: 1px solid black; */
  border: 1px solid transparent;
  background: #79ccd3;
  font-weight: bold;
  font-size: 20px;
  display: flex;
  justify-content: space-between;
  padding: 15px 20px;
  border-radius: 30px;
  position: relative;
}

.submit-your-message-btn i {
  position: absolute;
  right: 3px;
  top: -10px;
  font-size: 55px;
}
.contact-us-cmn-form button.submit-your-message-btn {
  margin-top: 60px !important;
}
.reach-out-5q-section {
  padding: 35px 0 35px 18px;
  margin-bottom: 80px;
}

.reach-out-5q-section .common-title {
  margin-bottom: 16px;
}
.reach-out-5q-section .reach-out-quote {
  padding: 20px;
  padding-top: 30px;
  background-color: #79ccd33b;
  border-radius: 20px;
  border: 1px solid #79ccd3;
  position: relative;
  margin-bottom: 20px;
  margin-top: 105px !important;
}
.reach-out-5q-section .reach-out-quote .quote-mark-left {
  position: absolute;
  top: -15px;
  left: 30px;
}

.reach-out-5q-section .reach-out-quote .quote-mark-right {
  position: absolute;
  bottom: -15px;
  right: 30px;
}

.reach-out-5q-section .reach-out-quote .quote-text {
  color: white;
  font-size: 30px;
  margin-bottom: 0px;
  font-weight: 900;
  font-family: Inter-Light;
}

.reach-out-5q-section .reach-out-quote .quote-text-second {
  color: white;
  font-size: 22px;
}

.footer.padding-all {
  padding: 0px;
}

.footer .footer-b-radius {
  border-radius: 15px;
}

.footer .footer-fb-ig {
  display: flex;
}

.footer .footer-fb-link,
.footer .footer-ig-link {
  width: 50px;
  height: 50px;
  background-color: #3c3d3e;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  margin-right: 20px;
}

.footer .footer-contact-details .f-c-d-type {
  font-size: 14px;
  color: #b5b6b6;
  margin-bottom: 5px;
}

.footer .footer-contact-details .f-c-d-desc {
  font-size: 15px;
  color: white;
}

.footer .footer-quick-links-title {
  font-size: 13px;
  color: #b5b6b6;
  margin-bottom: 5px;
}

.footer .footer-quick-links {
  font-size: 15px;
  color: white;
  margin: 20px 0px;
}

.footer .footer-input-form .footer-input {
  position: relative;
}

.footer .footer-input-form .footer-input input {
  background-color: #2e3235;
  /* padding: 8px 16px; */
  border-radius: 5px;
  border: 1px solid #3b3f41;
  color: white;
  font-size: 14px;
  line-height: 17px !important;
  padding: 15px 20px;
  width: 100%;
}
.footer .footer-input-form .footer-input input::placeholder {
  color: #9e9da4;
  padding-left: 15px;
  font-size: 14px;
}

.footer .footer-input-form .footer-input i {
  position: absolute;
  left: 13px;
  /* top: 13px; */
  top: 16px;
  color: #9e9da4;
}

.footer .footer-input-form button.footer-input-button {
  background-color: #00c0f3;
  border-radius: 40px;
  color: white;
  padding: 6px 20px;
  border: none;
  position: absolute;
  /* left: 176px !important; */
  right: 5px;
  top: 6px;
}

.footer .footer-input-form > .footer-input:first-child {
  margin-bottom: -5px !important;
  /* padding-bottom: 10px; */
}
.footer .footer-input-form > .footer-input:first-child input {
  padding-bottom: 20px;
}
.footer .footer-input-form > .footer-input:last-child input {
  border-top-right-radius: 0px;
  border-top-left-radius: 0px;
}
.footer .footer-input-form > .footer-input input:focus-visible {
  outline: 0;
}
.fixed-top-other {
  position: sticky !important;
}

.footer-info {
  padding-left: 50px;
}
.footer-contact-details .f-c-d-desc {
  font-size: 16px !important;
}

.footer-quick-links {
  font-size: 18px !important;
  margin: 15px 0px !important;
}

.footer-quick-links-title {
  font-size: 16px !important;
}

.footer-contact-details {
  max-width: 220px;
  font-size: 40px;
}

.strategic-solutions-section .strategic-solutions-title {
  color: black;
  margin-bottom: 2px;
  font-weight: bold;
}

.strategic-solutions-section .common-title {
  font-size: 55px;
  font-family: Inter-Bold;
}

.strategic-solutions-section {
  height: 100vh;
}
.strategic-solutions-section > div,
.strategic-solutions-section > div > div {
  height: 100%;
}

.strategic-solutions-section > div > div > div > img {
  height: 100%;
}

.strategic-solutions-section .common-para {
  max-width: 450px;
}

.secondapply i {
  margin-left: 24px;
}

@media (max-width: 1200px) {
  .footer-hider {
    display: none;
  }
}

.strategic-solutions-small-box {
  background-color: white;
  border-radius: 12px;
  padding: 19px;
  padding-bottom: 9px;
  width: 360px;
}

.security-service-section {
  min-height: 110vh;
}

.security-service-section > div,
.security-service-section > div > div {
  height: 100%;
}

.security-service-section > div > div > div > img {
  height: 100%;
  max-width: 100%;
}

.second-security {
  padding-left: 4%;
}

.security-service-section .apply-now-btn i {
  margin-left: 25px;
}

.left-dispatchers {
  padding-left: 12%;
}

.professional-dispatchers {
  height: 110vh;
}

.professional-dispatchers > div,
.professional-dispatchers > div > div,
.right-dispatchers > div {
  height: 100%;
}

.right-dispatchers > div {
  float: right;
}

.right-dispatchers > div > img {
  height: 100%;
}

.strategic-solutions-small-box .col-12 {
  margin-bottom: 10px;
}

.strategic-solutions-small-box .common-para {
  letter-spacing: -0.02em;
  font-size: 18px;
  margin-top: -5px;
  color: #76767c;
  font-family: Inter-Medium;
}

.strategic-solutions-small-box-outer {
  position: absolute;
  left: 18%;
  top: 5%;
}

.experience-title-main p {
  font-family: Thunder-M !important;
  font-size: 90px !important;
  letter-spacing: 0.02em;
  line-height: 0.8em;
  margin-top: 15px;
}

.our-team-experience-section {
  padding: 0px 3%;
}
.our-team-experience-left-section {
  padding-right: 32% !important;
}

.our-team-experience-right-section {
  padding-left: 10% !important;
  padding-right: 5% !important;
}

.our-team-experience-left-section .common-title {
  font-size: 40px !important;
  font-family: Inter-Bold;
}

.strategic-solutions-title {
  font-size: 22px;
  font-family: Inter-Semibold;
}

.team-experience-box {
  padding: 15px 20px !important;
  margin: 15px !important;
}

.common-title-main {
  letter-spacing: 0.02em;
}

.testimonial-text .white-text {
  font-family: Inter-Thin !important;
  font-size: 20px;
  line-height: 1.8em;
  font-weight: 900;
}

.testimonial-section .common-title {
  font-family: Inter-Bold !important;
  font-size: 60px !important;
  line-height: 1.4em;
}

.testimonials-avatar div div:nth-child(2) div div:nth-child(2) {
  margin-left: -30px;
}

.testimonials-avatar div div:nth-child(2) div div:nth-child(2) .white-text {
  font-size: 20px;
  font-family: Inter-Light;
  letter-spacing: 0.02em;
}

.testimonials-avatar div div:nth-child(2) div div:nth-child(2) p:nth-child(2) {
  letter-spacing: -0.04em;
  font-size: 19px;
}

.map-section {
  padding: 0 4%;
}

.our-service-eld-section {
  height: 110vh;
}

.our-advantages-section {
  background: #1d1e20;
  margin: 5%;
  padding: 50px 0px !important;
}

.what-you-can-order-section {
  background-color: #1d1e20;
}

.what-you-can-order-section .common-title {
  font-family: Inter-Bold;
}

.what-you-can-order-section .common-para.text-center {
  font-size: 17px !important;
}

.arrow-element {
  transform: translateX(0.875rem);
}

.what-you-can-order-section .apply-now-btn i {
  font-size: 25px;
  height: 50px !important;
  width: 50px !important;
}

.what-you-can-order-section .apply-now-btn {
  padding: 10px 6px !important;
  line-height: 0.5em !important;
  height: 60px;
  padding-left: 20px !important;
  font-size: 18px !important;
}

.our-service-it-section {
  background: none;
  height: 110vh;
}

.our-service-it-section > div,
.our-service-it-section > div > div {
  height: 100%;
}

.our-service-it-section img:nth-child(1) {
  height: 100%;
}
.our-service-it-section img:nth-child(2) {
  width: 60% !important;
}

.our-service-it-section .common-title {
  font-family: Inter-Bold !important;
  margin-bottom: 10px !important;
  font-size: 55px !important;
}

.what-you-can-order-section .small-titles-1 {
  font-size: 24px !important;
}

/* .what-you-can-order-section .our-advantages-box {
  min-height: 350px !important;
} */

.what-you-can-order-section .common-para {
  font-size: 17px !important;
  line-height: 1.5em !important;
}

.our-advantages-section .common-title {
  font-family: Inter-Bold !important;
  font-size: 60px;
}

.dark-mode .our-advantages-box {
  background: #2b2c2e;
}

.our-advantages-box .common-para {
  max-width: 300px !important;
}

.what-you-can-order-section .our-advantages-box svg,
.our-advantages-section .our-advantages-box svg {
  padding: 5px;
  width: 60px !important;
  height: 60px !important;
}

.our-team-section-short {
  height: 70vh;
}

.our-advantages-box .small-titles {
  font-size: 21px !important;
}

.our-advantages-box .common-para {
  font-size: 18px;
  margin-bottom: 30px !important;
}

.our-service-eld-section > div,
.our-service-eld-section > div > div {
  height: 100%;
}
.our-service-eld-section > div > div img {
  height: 100% !important;
}

.our-team-experience-right-section
  > .row
  > div:nth-child(3)
  > .team-experience-box {
  width: 102%;
}

.our-team-experience-right-section
  > .row
  > div:nth-child(4)
  > .team-experience-box {
  margin-left: 50px !important;
}

.team-experience-box .small-titles {
  margin-bottom: 5px !important;
  font-size: 18px !important;
  font-family: Inter !important;
  letter-spacing: 0.05em;
}

.team-experience-box .common-para {
  font-family: Inter-Light;
}

.main-title-str {
  font-family: Inter-Bold;
}

/* .security-service-section */

.three-button-img {
  position: absolute;
  bottom: 20px;
  left: 60px;
}

.second-5q-section {
  margin-top: 15vh;
}

.account-manager-accordion .accordion-item {
  margin: 40px 10px !important;
}

.accordion-button .space-between div:nth-child(2) {
  color: gray !important;
  font-family: Inter-Medium;
}

.account-manager-accordion .accordion-button {
  font-size: 18px !important;
}

.account-manager-accordion .accordion-item:first-child,
.account-manager-accordion .accordion-item:last-child {
  margin: 20px 10px !important;
}

.account-manager-left-sec .common-para {
  max-width: 70%;
}

.account-manager-left-sec .common-title {
  font-size: 40px;
  font-family: Inter-Bold;
}

.account-manager {
  background-color: #1d1e20;
}

.about-5qlogistics-section .three-button-img {
  position: absolute;
  bottom: 0px;
  right: 10px;
  left: auto;
}

.about-5qlogistics-section .three-button {
  margin-bottom: 20px;
  text-align: right;
}

.three-button {
  margin-bottom: 20px;
}

.three-button button {
  border-radius: 30px;
  padding: 10px 15px;
  background-color: white;
  border: none;
  font-weight: bold;
}

.common-filter input[type="radio"] {
  display: none;
}
.common-filter label {
  float: left;
  text-align: center;
  background: #4a4a4a;
  color: white;
  cursor: pointer;
  padding: 10px 20px !important;
  margin-right: 10px;
  margin-bottom: 10px;
  border: none;
  border-radius: 5px;
}

.rounded {
  border-radius: 0.5rem;
}

/* .common-filter input[type="radio"][id="one"]:checked + label {
    background: #79CCD3;
    color: black;
}
.common-filter input[type="radio"][id="two"]:checked + label {
  background:#79CCD3;
  color: black;
}
.common-filter input[type="radio"][id="three"]:checked + label {
  background:#79CCD3;
  color: black;
}
.common-filter input[type="radio"][id="four"]:checked + label {
    background: #79CCD3;
    color: black;
}
.common-filter input[type="radio"][id="five"]:checked + label {
  background:#79CCD3;
  color: black;
}
.common-filter input[type="radio"][id="six"]:checked + label {
  background:#79CCD3;
  color: black;
}

.common-filter input[type="radio"][id="seven"]:checked + label {
    background:#79CCD3;
    color: black;
  }
  .common-filter input[type="radio"][id="eight"]:checked + label {
    background:#79CCD3;
    color: black;
  }
  .common-filter input[type="radio"][id="nine"]:checked + label {
    background:#79CCD3;
    color: black;
  }
  .common-filter input[type="radio"][id="ten"]:checked + label {
    background:#79CCD3;
    color: black;
  } */

.by-default-selected {
  background-color: rgb(121, 204, 211) !important;
  color: black !important;
}

.common-filter .common-filter-title {
  color: white;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 8px;
}

.common-form label {
  color: white;
  width: 100%;
}
.common-form input {
  background: #2b2c2e;
  border: none;
  width: 100%;
  padding: 10px;
}

.common-form textarea {
  background: #2b2c2e;
  border: none;
  width: 100%;
  padding: 10px;
  color: white;
}

.security-service-section {
  background-color: #1d1e20;
}
.security-service-section .common-para:nth-child(4) {
  margin-bottom: 30px !important;
}
.security-service-size-section {
  position: relative;
  border-bottom: 1px solid #3c3d3e;
  padding-bottom: 15px;
  margin-bottom: 25px;
}
/* .security-service-size-section::after {
    position: absolute;
    content: '';
    height: 80px;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    border: 1px solid #3C3D3E;
} */
.security-service-size-section .common-filter::after {
  position: absolute;
  content: "";
  height: 80px;
  bottom: 40px;
  left: 46%;
  transform: translateX(-46%);
  border: 1px solid #3c3d3e;
}
.security-service-section button.submit-your-message-btn {
  margin-top: 25px !important;
}
section.security-service-section.our-services-sec {
  padding-top: 65px;
  padding-bottom: 0px;
  background-color: #111214;
}
.get-in-touch-sec {
  padding-top: 50px;
  padding-bottom: 30px;
}
.account-manager-accordion {
  padding: 10px;
  background: #111214;
  border-radius: 10px;
}
.account-manager-sec {
  padding-top: 44px;
  padding-bottom: 44px;
}
.account-manager-sec .accordion-button {
  padding: 20px;
}
.account-manager-sec .security-service-left-section {
  padding-right: 36px;
}
.after-hours-right-section {
  padding-left: 36px;
}
.account-manager-sec .security-service-left-section .about-video,
.after-hours-right-section .about-video {
  margin-top: 14px;
  height: 290px;
  object-fit: cover;
  border-radius: 12px;
}
.account-manager-accordion .accordion-faq {
  background-color: #111214;
  margin: 10px 5px;
}
.account-manager-sec .container-xxl {
  padding-left: 12px !important;
  padding-right: 12px !important;
}
.account-manager-accordion .accordion-faq {
  background-color: #2b2c2e;
  margin: 10px;
  /* margin: 10px 5px; */
  border-radius: 10px;
  border-color: transparent;
  color: white;
}
.account-manager-sec .accordion-item.accordion-faq:not(:last-child) {
  margin-bottom: 20px;
}
.account-manager-accordion .accordion-faq .accordion-header .accordion-button {
  border-radius: 10px;
  color: white;
  font-size: 14px;
  background-color: #2b2c2e;
}

.dark-mode .account-manager-accordion .accordion {
  --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");

  --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

section.our-team-experience-section {
  padding-bottom: 40px;
}
.team-experience-box {
  background: #2b2c2e;
  padding: 10px 15px;
  border-radius: 10px;
  margin: 12px 2px 2px;
}
.experience-title-main p {
  color: white;
  font-size: 55px;
  margin-bottom: 0;
  font-weight: bold;
}
.team-experience-box .small-titles {
  margin-bottom: 12px;
}

.team-member-contact-text {
  color: #b5b6b6 !important;
}
.our-team-experience-left-section {
  height: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  padding: 60px 50px 60px 0;
}
/* .our-team-experience-right-section {
    padding-left: 50px;
} */
.testimonial-text {
  padding: 25px;
  /* padding: 15px; */
  background: #111214;
  border-radius: 10px;
  margin-bottom: 28px;
  position: relative;
}
section.testimonial-section p.common-title,
section.map-section .common-title {
  margin-bottom: 40px;
}
section.testimonial-section,
section.map-section {
  padding-top: 75px;
  padding-bottom: 75px;
}

.white-text {
  color: white;
  font-size: 15px;
  margin-bottom: 0px;
  font-weight: bold;
}

.text-area-fixed {
  resize: none;
}

.map-bottom {
  height: 350px;
  border-radius: 10px;
}

.map-bottom iframe {
  height: 100%;
  width: 100%;
  border-radius: 10px;
}

.common-form input {
  color: white;
}

.our-advantages-box {
  padding: 25px;
  background: #212529;
  border-radius: 10px;
  height: 100%;
  min-height: 234px;
}

.logistics-partner.owl-carousel .owl-item img {
  display: block;
  width: 210px;
}

.logistics-partner .owl-prev {
  background-color: #3f3f3f;
  color: white;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: -100px;
  right: 0px;
}

.logistics-partner .owl-next {
  background-color: #3f3f3f;
  color: white;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: -100px;
  left: 0px;
}
section.our-service-eld-section {
  background: #111214;
  padding-bottom: 70px;
}
section.our-service-eld-section .apply-now-btn {
  margin-top: 30px;
}
section.our-advantages-section,
.what-you-can-order-section {
  padding-top: 60px;
  padding-bottom: 40px;
  margin-bottom: 80px;
}
section.our-advantages-section .common-title,
.what-you-can-order-section .common-title {
  margin-bottom: 20px !important;
}
section.our-advantages-section .common-para {
  margin-bottom: 40px;
}
.our-team-section.our-safety-team-sec .logistics-partner .owl-nav {
  display: none;
}
.what-you-can-order-section .our-advantages-box {
  /* padding: 15px; */
  padding: 25px;
  background: #212529;
  border-radius: 10px;
  min-height: 295px;
  position: relative;
}
section.what-you-can-order-section .container-xxl {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.what-you-can-order-section .small-titles-1 {
  margin-bottom: 10px;
}
.what-you-can-order-section .common-para {
  margin-bottom: 40px !important;
  font-size: 14px;
  line-height: 26px;
}
.what-you-can-order-section .custom-btn {
  padding: 3px 5px 3px 15px;
  font-size: 14px;
  position: absolute;
  bottom: 25px;
}

.what-you-can-order-section .our-advantages-box .apply-now-btn {
  margin-top: 30px;
  width: calc(100% - 50px);
  justify-content: space-between;
  padding: 5px 5px 5px 25px;
  font-size: 16px;
  line-height: 20px;
}
.what-you-can-order-section .our-advantages-box .apply-now-btn i {
  height: 40px;
  width: 40px;
  transform: rotate(-45deg);
}

.header-ad-container .apply-now-btn i {
  margin-left: 25px;
}
.what-you-can-order-section .our-advantages-box svg,
.our-advantages-section .our-advantages-box svg {
  width: 50px;
  height: 50px;
  padding: 15px;
  border-radius: 8px;
  background: #3c3d3e;
  margin-bottom: 14px;
}
.it-service-absolute {
  position: absolute;
  bottom: 60px;
  left: -30px;
  outline: 5px solid black;
  border-radius: 5px;
}

.send-msg-btn {
  width: 75%;
  justify-content: center;
}

.footer-line {
  border: 1px solid #404040;
}

.footer-credit {
  color: white;
  font-size: 14px;
  margin-top: 15px;
  margin-bottom: 5px;
}

.footer-pages-link {
  float: right;
  display: flex;
  margin-top: 15px;
  margin-bottom: 0;
}

.footer-pages-link li {
  margin-right: 20px;
  margin-left: 20px;
  font-size: 14px;
}

.d-l-switch-mobile {
  display: none;
}

.our-advantages-box.need-help-box {
  min-height: 200px;
}

.faq-section .common-title-main,
.faq-section .common-title,
.faq-section .common-para {
  color: #111214;
}

button.custom-btn:hover {
  background: #ffffff24 !important;
}

.apply-now-btn.custom-btn:hover {
  background: #67b5bb !important;
}

.submit-your-message-btn:hover {
  background: #67b5bb !important;
}

.footer-input-button:hover {
  background-color: #0099c1 !important;
}

#dark.dark-light-mode-btn:hover {
  background-color: #67b5bb;
}

#light.dark-light-mode-btn:hover {
  background-color: #ffffff24;
}

.follow-icon-line {
  transform: rotate(-90deg);
}

.dark-light-switch .btn-group > .btn-group:not(:last-child) > .btn,
.dark-light-switch .btn-group > .btn.dropdown-toggle-split:first-child,
.dark-light-switch .btn-group > .btn:not(:last-child):not(.dropdown-toggle) {
  border-top-right-radius: inherit;
  border-bottom-right-radius: inherit;
}

.dark-light-switch .btn-group > .btn-group:not(:first-child) > .btn,
.dark-light-switch .btn-group > .btn:nth-child(n + 3),
.dark-light-switch .btn-group > :not(.btn-check) + .btn {
  border-top-left-radius: inherit;
  border-bottom-left-radius: inherit;
}

.our-team-section .team-member-details p.common-para {
  text-align: left;
  font-size: 14px;
}
.our-team-section .team-member-details h6.team-designation {
  /* font-weight: bold; */
  font-weight: 700;
}

.our-team-section.page-five .team-member-details h6.team-designation,
.our-team-section.page-four .team-member-details h6.team-designation {
  color: white;
}
section.our-team-experience-section .common-title {
  margin-bottom: 8px !important;
}
.tunnel {
  display: flex;
  margin-top: 20px;
  margin-bottom: 50px;
}
.account-manager-accordion .accordion-button::before {
  flex-shrink: 0;
  width: var(--bs-accordion-btn-icon-width);
  height: var(--bs-accordion-btn-icon-width);
  /* margin-left: auto; */
  margin-right: 10px;
  content: "";
  background-image: var(--bs-accordion-btn-icon);
  background-repeat: no-repeat;
  background-size: var(--bs-accordion-btn-icon-width);
  transition: var(--bs-accordion-btn-icon-transition);
}

.account-manager-accordion .accordion-button::after {
  display: none;
}

.space-between {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.my-100 {
  margin-top: 100px;
  margin-bottom: 100px;
}

.no-bg {
  background-color: transparent;
}

.common-form.page-three .common-title-main {
  font-size: 16px;
}

.common-form.page-three .common-title {
  font-size: 34px;
}

/* ************************************ Dark - Light mode Css Starts ************************************ */

.dark-light-switch {
  position: absolute;
  top: 45vh;
  z-index: 9;
  left: 0px;
  transform: rotate(-90deg);
  left: -40px;
}

.dark-light-switch .btn-group {
  border-radius: 100px;
}

.dark-light-switch .btn-group .btn + .btn {
  margin-left: 0;
}
.light-mode .apply-now-btn.custom-btn {
  padding: 6px 6px 6px 22px;
}
button.dark-light-mode-btn {
  padding: 10px 20px;
  font-size: 16px;
}

.btn.dark-light-mode-btn {
  border-radius: 100px;
}

.dark-light-mode-btn.btn:focus,
.dark-light-mode-btn.btn:active {
  outline: none;
  box-shadow: none;
}

.light-mode .dark-light-switch .btn-group {
  border: 7px solid white;
  transition: all 0.5s ease;
  background-color: white;
}

.light-mode .btn.dark-light-mode-btn {
  color: #707172;
  background-color: white;
}

.light-mode .quote-line-light {
  display: none;
}
.dark-mode .quote-line-dark {
  display: none;
}

.dark-mode .dark-light-switch .btn-group {
  /* border: 7px solid #3b3a3a; */
  transition: all 0.5s ease;
  /* background-color: #3b3a3a; */
  border: 7px solid #2b2c2e;
  transition: all 0.5s ease;
  background-color: #2b2c2e;
}

.dark-mode .dark-light-switch .btn {
  color: #b5b6b6;
  /* background-color: #363739; */
  background-color: #2b2c2e;
}

.dark-light-switch .btn.active {
  /* background-color: rgba(0,0,0,0); */
  /* background-color: #79CCD3; */
  background-color: #79ccd3 !important;
  color: #111214;
}

/* .light-mode .btn:hover,
.light-mode .btn:active {
	background-color: #bbb;
} */

/* .dark-mode {
	background-color: #111;
	color: #eee;
	transition: all 0.5s ease;
} */
.dark-mode .our-advantages-box.need-help-box .img-light {
  display: none;
}
.light-mode .our-advantages-box.need-help-box .img-dark {
  display: none;
}
.light-mode .padding-all {
  background: #f5f6f6;
}

body.light-mode {
  background: white;
}

.light-mode .common-title {
  color: #111214;
}

.light-mode .common-para {
  color: #707172;
}

.light-mode .small-titles {
  color: black;
  font-weight: bold;
}

.light-mode .small-titles-1 {
  color: black;
  font-weight: bold;
}

.light-mode .small-titles-1 {
  color: black;
  font-weight: bold;
}

.light-mode .number-counter-section .number-counter-box.ncb-1,
.light-mode .number-counter-section .number-counter-box.ncb-3,
.light-mode .number-counter-section .number-counter-box.ncb-5 {
  color: #111214;
}

.light-mode .number-counter-section .number-counter-box.ncb-2,
.light-mode .number-counter-section .number-counter-box.ncb-4 {
  color: #111214;
}

.light-mode .team-member-details .team-member-name {
  color: #111214;
}

.light-mode .team-member-details .team-designation {
  color: #707172;
}

.light-mode .faq-section {
  background-color: #79ccd3;
}

.light-mode .faq-section .common-title-main {
  color: #111214;
}

.light-mode .faq-section .common-para {
  color: #111214;
}

.light-mode .reach-out-5q-section .reach-out-quote .quote-text {
  color: #111214;
}

.light-mode .reach-out-5q-section .reach-out-quote .quote-text-second {
  color: #707172;
}

.light-mode .contact-us-cmn-form {
  background-color: #ececec;
}

.light-mode .contact-us-cmn-form .contact-us-title-second {
  color: #111214;
}

.light-mode .contact-us-cmn-form .floating-input,
.light-mode .contact-us-cmn-form .floating-select {
  border-bottom: 1px solid #c4c4c4;
}

.light-mode .our-services-section .common-para {
  color: #b5b6b6;
}

.light-mode .our-team-card {
  background-color: #ececec;
}

.light-mode .reach-out-5q-section .common-para {
  color: #707172;
}

.light-mode .navbar .navbar-nav .nav-link {
  color: #111214;
}

.light-mode .navbar .navbar-nav .nav-link:hover,
.light-mode .navbar .navbar-nav .nav-link.active {
  color: #79ccd3;
}

.light-mode .fixed-top-index .navbar-nav .nav-link {
  color: white;
}

.light-mode .bg-dark.fixed-top-index .nav-link {
  color: black;
}

.light-mode .white-text {
  color: black;
}

.light-mode .common-form label {
  color: black;
}

.light-mode .common-filter-title {
  color: black;
}

.light-mode .testimonial-text {
  background: white;
}

.light-mode .our-advantages-box {
  background: white;
}

footer.padding-all {
  background: #2b2c2e !important;
}

.light-mode .common-filter label {
  background: #ffffff;
  color: rgb(0, 0, 0);
}

.light-mode .banner-follow-us-text {
  color: black;
}
.light-mode .bannner-follow-us > svg rect {
  fill: #000000 !important;
}
.light-mode .bannner-follow-us .follow-fb-icon svg path,
.light-mode .bannner-follow-us .follow-ig-icon svg path {
  stroke: #000000;
}
.light-mode .account-manager-accordion {
  background: white;
}
.light-mode section.our-service-eld-section {
  background-color: white;
}
.light-mode
  .account-manager-accordion
  .accordion-faq
  .accordion-header
  .accordion-button {
  /* background-color: #dfdfdf; */
  background-color: #f5f6f6;
  color: black;
}
.light-mode
  .account-manager-accordion
  .accordion-faq
  .accordion-header
  .accordion-button
  .space-between
  div {
  color: #707172;
}
.light-mode .account-manager-accordion .accordion-faq .accordion-body {
  background-color: #f5f6f6;
}
.light-mode .account-manager-accordion .accordion-faq {
  /* background-color: #dfdfdf; */
  background-color: #f5f6f6;
  color: black;
}
.light-mode section.our-service-eld-section span.fw-bold.text-white {
  color: #111214 !important;
}
.light-mode .team-experience-box {
  background: #f5f6f6;
  padding: 10px 15px;
  border-radius: 10px;
}

.light-mode .experience-title-main p {
  color: black;
}

.light-mode .common-form input {
  background: white;
  color: black;
}

.light-mode .common-form textarea {
  background: white;
  color: black;
}

.light-mode .custom-btn {
  border-radius: 50px;
  padding: 6px 10px 6px 20px;
  background: transparent;
  /* border: 1px solid black; */
  color: #282828;
  display: flex;
  justify-content: center;
  align-items: center;
}

.custom-btn.index {
  border-radius: 50px;
  padding: 4px 4px 4px 20px;
  background: transparent;
  border: 1px solid white;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
}

.light-mode .bg-dark .custom-btn.index {
  border-radius: 50px;
  background: transparent;
  border: 1px solid black;
  color: #282828;
  display: flex;
  justify-content: center;
  align-items: center;
}

.light-mode .custom-btn i {
  background: #3c3d3e;
  color: white;
}

.light-mode .bannner-follow-us .follow-fb-icon i,
.light-mode .bannner-follow-us .follow-ig-icon i {
  color: black;
}

.light-mode .follow-icon-line {
  background: black;
}

.light-mode .bg-dark .custom-btn.index i {
  background: #3c3d3e;
  color: white;
}

.custom-btn.index i {
  border: none;
  padding: 0px;
  margin: 0;
  border-radius: 50%;
  background: white;
  color: black;
  height: 40px;
  display: flex;
  width: 40px;
  justify-content: center;
  align-items: center;
  margin-left: 10px;
}

.light-mode
  .about-5qlogistics-section
  .accordions-div
  .accordion
  .accordion-item {
  background-color: #f5f6f6;
  color: black;
}

.light-mode
  .about-5qlogistics-section
  .accordions-div
  .accordion
  .accordion-button {
  background-color: #f5f6f6;
  color: black;
}
.light-mode
  .about-5qlogistics-section
  .accordions-div
  .accordion
  .accordion-button
  svg {
  background: #e0e0e0;
}
.light-mode
  .about-5qlogistics-section
  .accordions-div
  .accordion
  .accordion-button
  svg
  path {
  stroke: #000000;
}
.light-mode .tunnel a {
  color: black;
}

.light-mode .space-between {
  color: black;
}

.light-mode .account-manager-accordion .accordion {
  --bs-accordion-color: var(--bs-body-color);
  --bs-accordion-bg: var(--bs-body-bg);
  --bs-accordion-transition: color 0.15s ease-in-out,
    background-color 0.15s ease-in-out, border-color 0.15s ease-in-out,
    box-shadow 0.15s ease-in-out, border-radius 0.15s ease;
  --bs-accordion-border-color: var(--bs-border-color);
  --bs-accordion-border-width: var(--bs-border-width);
  --bs-accordion-border-radius: var(--bs-border-radius);
  --bs-accordion-inner-border-radius: calc(
    var(--bs-border-radius) - (var(--bs-border-width))
  );
  --bs-accordion-btn-padding-x: 1.25rem;
  --bs-accordion-btn-padding-y: 1rem;
  --bs-accordion-btn-color: var(--bs-body-color);
  --bs-accordion-btn-bg: var(--bs-accordion-bg);
  --bs-accordion-btn-icon: url(
    data:image/svg + xml,
    %3csvgxmlns="http://www.w3.org/2000/svg"viewBox="0 0 16 16"fill="%23212529"%3e%3cpathfill-rule="evenodd"d="M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z"/%3e%3c/svg%3e
  );
  --bs-accordion-btn-icon-width: 1.25rem;
  --bs-accordion-btn-icon-transform: rotate(-180deg);
  --bs-accordion-btn-icon-transition: transform 0.2s ease-in-out;
  --bs-accordion-btn-active-icon: url(
    data:image/svg + xml,
    %3csvgxmlns="http://www.w3.org/2000/svg"viewBox="0 0 16 16"fill="%23052c65"%3e%3cpathfill-rule="evenodd"d="M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z"/%3e%3c/svg%3e
  );
  --bs-accordion-btn-focus-border-color: #86b7fe;
  --bs-accordion-btn-focus-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  --bs-accordion-body-padding-x: 1.25rem;
  --bs-accordion-body-padding-y: 1rem;
  --bs-accordion-active-color: var(--bs-primary-text-emphasis);
  --bs-accordion-active-bg: var(--bs-primary-bg-subtle);
}

.light-mode .space-between div:first-child {
  color: black !important;
}

.light-mode .our-team-section .team-member-details h6.team-designation {
  color: black;
}

.light-mode section.our-team-section {
  background: white;
}

.light-mode .security-service-size-section .common-filter::after,
.light-mode .security-service-size-section {
  border-color: #e0e0e0;
}
.light-mode section.security-service-section.our-services-sec {
  background-color: white;
}
.light-mode .what-you-can-order-section .our-advantages-box svg,
.light-mode .our-advantages-section .our-advantages-box svg {
  background: #f5f6f6;
}
.light-mode .what-you-can-order-section .our-advantages-box svg path,
.light-mode .our-advantages-section .our-advantages-box svg path {
  stroke: #111214;
}

.light-mode section.strategic-solutions-section,
.light-mode .security-service-section {
  background-color: white;
}
.light-mode .get-in-touch-sec {
  background: #f5f6f6;
}

/* ************************************ Dark - Light mode Css Starts ************************************ */

.security-service-section.get-in-touch-sec .common-para:nth-child(4) {
  margin-bottom: 0px !important;
}
@media screen and (max-width: 1400px) {
  .faq-left-section {
    padding-right: 0px;
  }
  .common-filter label {
    padding: 10px 16px;
  }
  section.security-service-section.our-services-sec {
    padding-top: 30px;
  }
  .security-service-section.account-manager-sec,
  .after-hours-section.account-manager-sec,
  section.car-hauling-section.account-manager-sec {
    margin-top: 50px;
    margin-bottom: 50px;
  }
  .after-hours-section.account-manager-sec .col-12.col-md-6 {
    margin: 0 !important;
  }
  section.our-team-experience-section {
    padding-bottom: 0;
  }
  section.testimonial-section,
  section.map-section {
    padding-top: 50px;
    padding-bottom: 30px;
  }
  .our-partner-logo-section {
    padding-top: 20px !important;
  }
  .our-advantages-box.need-help-box {
    min-height: 130px;
  }
}
@media (max-width: 1300px) and (min-width: 1400px) {
  .padding-all {
    padding: 20px 35px;
  }
}
@media (max-width: 1300px) {
  .our-services-section {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
  .about-5qlogistics-section .about-5qlogistics-img {
    height: 500px !important;
  }
  .our-services-section p.common-title,
  .our-team-section .common-title {
    margin-bottom: 20px;
    line-height: 40px;
  }
  .about-5qlogistics-right-section .common-title,
  .security-service-section .common-title,
  section.our-service-eld-section .common-title {
    margin-bottom: 16px !important;
    line-height: 40px;
  }
  .about-5qlogistics-right-section {
    padding: 0 0px 0 30px;
  }
  .about-5qlogistics-section .accordions-div .accordion .accordion-button {
    padding: 15px 15px;
  }
  .number-counter-section {
    padding: 20px 0;
  }
  .faq-section {
    padding-left: 20px;
    padding-right: 20px;
  }
  .faq-right-section {
    padding-left: 30px;
  }
  .common-title-main {
    font-size: 20px;
  }
  .faq-center-section,
  .reach-out-5q-center-section {
    display: none;
  }
  .faq-left-section,
  .reach-out-5q-left-section,
  .reach-out-5q-right-section {
    width: 50%;
  }
  .reach-out-5q-section {
    padding: 35px 18px 35px 18px;
  }
  .reach-out-5q-right-section {
    padding-left: 50px;
  }
  .contact-us-cmn-form .floating-label {
    margin-bottom: 40px;
  }
  .reach-out-5q-section .reach-out-quote .quote-text {
    font-size: 20px;
  }
  .reach-out-5q-section .reach-out-quote {
    margin-top: 80px !important;
  }
  .reach-out-5q-section .reach-out-quote .quote-text-second {
    font-size: 16px;
  }
  p.common-title br {
    display: none;
  }
  .reach-out-5q-section .common-title {
    max-width: 80%;
  }
  .faq-section .accordion-faq .accordion-header .accordion-button {
    padding: 18px;
  }
  .common-filter label {
    padding: 10px 14px;
    font-size: 14px;
  }
  section.car-hauling-section .account-manager-accordion {
    margin-right: 0px;
  }
  section.testimonial-section,
  section.map-section,
  .get-in-touch-sec {
    padding-top: 30px;
    padding-bottom: 20px;
  }
  section.car-hauling-section.account-manager-sec {
    margin-bottom: 20px;
  }
  .security-service-section.account-manager-sec,
  .after-hours-section.account-manager-sec,
  section.car-hauling-section.account-manager-sec {
    margin-top: 30px;
  }
  section.our-service-eld-section {
    background: #111214;
    padding-bottom: 30px;
  }
  section.our-advantages-section,
  .what-you-can-order-section {
    padding-top: 40px;
    margin-bottom: 50px;
  }
  .our-team-section,
  section.testimonial-section,
  section.our-advantages-section,
  .reach-out-5q-section {
    padding-left: 0px !important;
    padding-right: 0px !important;
  }
  .strategic-solutions-section {
    margin-top: 0;
    padding-top: 0 !important;
  }
  section.security-service-section.our-services-sec {
    padding-top: 0px;
  }
  .strategic-solutions-small-box-outer {
    left: 0%;
    top: 10%;
  }
  .our-services-sec-btn {
    display: flex;
    justify-content: center;
  }
  .security-service-section button.submit-your-message-btn {
    width: 100%;
  }
}
@media (max-width: 1279.98px) {
  .my-80 {
    margin-top: auto;
    margin-bottom: auto;
  }

  .common-title {
    font-size: 30px;
    line-height: 40px;
  }
  .common-title-main {
    font-size: 18px;
  }
  .banner-text-one {
    font-size: 42px;
  }
  .display-none-1280 {
    display: none;
  }

  .dark-light-switch {
    left: -60px;
  }

  .experience-title-main p {
    color: white;
    font-size: 40px;
    margin-bottom: 0;
    font-weight: bold;
  }
  .reach-out-5q-section {
    padding: 35px 0 35px 18px;
    margin-bottom: 30px;
  }
  .padding-all {
    padding: 20px 35px;
  }
  section.security-service-section.our-services-sec .container-xxl {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}

@media (max-width: 1200px) {
  section.our-team-experience-section,
  section.map-section {
    padding-left: 50px;
    padding-right: 50px;
  }
  .footer-pages-link li {
    margin-right: 12px;
    margin-left: 12px;
  }
  .our-team-experience-right-section {
    padding-left: 0;
  }
  section.our-advantages-section,
  .what-you-can-order-section {
    margin-bottom: 30px;
  }
}
@media (min-width: 992px) {
  .navbar-expand-lg .navbar-nav .dropdown-menu {
    top: 95px !important;
  }

  .bg-dark.navbar-expand-lg .navbar-nav .dropdown-menu {
    top: auto !important;
  }

  .px-lg-5rem {
    padding-right: 5rem !important;
    padding-left: 5rem !important;
  }
  .navbar .nav-item .dropdown-menu {
    display: block;
    visibility: hidden;
    top: 100%;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
    transition: 0.3s;
    opacity: 0;
  }

  .navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    transition: 0.5s;
    opacity: 1;
  }
}

@media (max-width: 991.98px) {
  .bannner-follow-us {
    display: none;
  }

  .d-l-switch-pc {
    display: none;
  }

  .d-l-switch-mobile {
    display: block;
  }

  .d-l-switch-mobile button.dark-light-mode-btn {
    padding: 3px 12px;
    font-size: 16px;
  }

  .d-l-switch-mobile .btn-group {
    border: 0px solid rgba(255, 255, 255, 0.05) !important;
  }

  .d-l-switch-mobile.dark-light-switch {
    position: relative;
    top: auto;
    z-index: 9;
    left: auto;
    transform: rotate(0deg);
  }

  .light-mode .navbar button.navbar-toggler {
    background-color: #cbcbcb !important;
  }

  .light-mode .navbar .navbar-nav {
    background: #f5f6f6 !important;
  }

  .our-team-card {
    height: auto;
  }
  .padding-all {
    padding: 0px;
    /* background: #2B2C2E; */
    margin: 0px;
    margin: 10px;
    border-radius: 12px;
  }
  .navbar .navbar-nav {
    margin-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    background: var(--dark);
  }

  .navbar .navbar-nav .nav-link {
    padding: 10px 0;
  }
  .our-partner-logo-section {
    padding-top: 10px !important;
  }
  .our-services-section {
    padding-top: 25px !important;
    padding-bottom: 25px !important;
  }
  .our-partner-logo-section .col-md-3 {
    margin-bottom: 20px;
  }
  .our-partner-logo-section .col-md-3,
  .our-partner-logo-section .col-md-9 {
    width: 100%;
    text-align: center;
  }
  .our-partner-logo-section .our-partner-logo {
    text-align: center;
    margin-bottom: 25px;
  }
  .about-5qlogistics-right-section {
    padding: 0 0px 0 0px;
  }
  .about-5qlogistics-section .accordions-div .accordion .accordion-button {
    padding: 10px;
  }
  .about-5qlogistics-section .accordions-div .accordion .accordion-button svg {
    padding: 7px;
    width: 35px;
    height: 35px;
  }
  .faq-left-section,
  .reach-out-5q-left-section,
  .reach-out-5q-right-section {
    width: 100%;
    text-align: center;
  }
  .security-service-section .common-title,
  .reach-out-5q-left-section .common-title,
  .strategic-solutions-section .common-title {
    max-width: 100%;
    font-size: 30px;
  }
  .faq-right-section,
  .reach-out-5q-right-section {
    padding-left: 12px;
  }
  .faq-left-section .common-title-main,
  .reach-out-5q-left-section .common-title-main {
    text-align: center;
    justify-content: center;
  }
  .footer-credit {
    font-size: 13px;
  }
  .footer-pages-link li {
    margin-right: 10px;
    margin-left: 10px;
    font-size: 13px;
  }
  section.our-team-experience-section,
  section.map-section,
  section.security-service-section.our-services-sec {
    padding-left: 15px;
    padding-right: 15px;
  }
  .common-filter label {
    padding: 8px 12px;
    font-size: 12px;
  }
  .our-team-experience-left-section {
    justify-content: unset;
    padding: 0px 0 10px 0;
    text-align: center;
  }
  section.our-team-experience-section .col-12.col-md-6,
  section.security-service-section.our-services-sec .col-12.col-md-5,
  section.security-service-section.our-services-sec .col-12.col-md-6 {
    width: 100%;
    text-align: center;
  }
  .our-team-experience-btn,
  .security-service-section.our-services-sec .common-title-main,
  .security-service-section.our-services-sec .apply-now-btn {
    display: flex;
    justify-content: center;
    text-align: center;
  }
  section.testimonial-section .col-2 {
    padding-right: 0;
  }
  section.testimonial-section,
  section.map-section {
    padding-top: 15px;
  }
  .account-manager-sec {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }
  .apply-now-btn i {
    width: 35px;
    height: 35px;
  }
  section.security-service-section.our-services-sec .col-12.col-md-1,
  section.our-service-eld-section .col-12.col-md-1 {
    display: none;
  }
  section.security-service-section.our-services-sec .col-12.col-md-6 img {
    width: 100%;
  }
  section.car-hauling-section.account-manager-sec .col-12.col-md-5,
  section.car-hauling-section.account-manager-sec .col-12.col-md-7,
  section.our-service-eld-section .col-12.col-md-4,
  section.our-service-eld-section .col-12.col-md-7 {
    width: 50%;
    margin: 0 !important;
  }
  section.car-hauling-section .account-manager-accordion {
    margin-left: 0;
  }
  .account-manager-sec .security-service-left-section {
    padding-right: 0px;
  }
  .after-hours-right-section {
    padding-left: 0px;
    margin-top: 20px;
    text-align: center;
  }
  .testimonial-text {
    padding: 15px;
    margin-bottom: 20px;
  }
  .footer-pages-link {
    padding: 0;
    float: unset;
    justify-content: center;
  }
  footer.footer .col-12.col-md-6 {
    width: 100%;
    text-align: center;
  }
  .reach-out-5q-section .reach-out-quote {
    margin-top: 50px !important;
    margin-bottom: 30px;
  }
  section.our-service-eld-section {
    padding-bottom: 0;
  }
  section.our-advantages-section,
  .what-you-can-order-section {
    padding-top: 25px;
    margin-bottom: 20px;
  }
  section.our-advantages-section,
  .what-you-can-order-section {
    padding-bottom: 30px;
  }
  section.our-service-eld-section .our-team-experience-btn {
    justify-content: left;
  }
  section.our-service-eld-section .col-12.col-md-7 {
    padding-left: 70px;
  }
  section.our-service-eld-section .col-12.col-md-7 .it-service-absolute {
    position: absolute;
    bottom: 100px;
    left: 0px;
    outline: 5px solid black;
    border-radius: 5px;
    width: 85%;
  }
  .our-logistics-sec .col-12.col-md-6 {
    order: 1;
  }
  .our-logistics-sec .col-12.col-md-5,
  section.security-service-section.our-services-sec .col-12.col-md-5 {
    order: 2;
    margin-top: 30px !important;
  }
  .strategic-solutions-small-box {
    width: 260px;
  }
  .strategic-solutions-section .strategic-solutions-title {
    font-size: 15px;
    line-height: 20px;
  }
  .strategic-solutions-small-box .common-para {
    font-size: 12px;
  }
  section.security-service-section.get-in-touch-sec {
    padding: 20px 10px !important;
  }
}

@media (max-width: 767.98px) {
  .apply-now-btn i {
    width: 35px;
    height: 35px;
  }
  .our-services-section,
  .about-5qlogistics-right-section {
    text-align: center;
  }
  .our-services-section p.common-title,
  .our-team-section .common-title,
  .about-5qlogistics-right-section .common-title {
    margin-bottom: 10px;
    line-height: 30px;
  }
  .three-button button {
    font-size: 13px;
  }

  .strategic-solutions-small-box-outer {
    display: none;
  }

  .padding-all {
    margin: 5px;
  }

  .logistics-partner .owl-prev {
    height: 35px;
    width: 35px;
    top: -40px;
    right: 0px;
  }

  .logistics-partner .owl-next {
    height: 35px;
    width: 35px;
    top: -40px;
    left: 0px;
  }

  .it-service-absolute {
    position: absolute;
    bottom: 30px;
    left: 30px;
    outline: 5px solid black;
    border-radius: 5px;
    width: 220px;
  }

  .footer-pages-link {
    float: left;
    display: block;
    margin-top: 10px;
    margin-bottom: 0;
    padding-left: 0;
  }
  footer.footer .col-12.col-md-6 {
    text-align: left;
  }
  .footer-pages-link li {
    margin-right: 10px;
    margin-left: 10px;
    font-size: 14px;
  }

  .footer-border-bottom {
    border-bottom: 1px solid #79ccd3;
  }

  .common-title {
    font-size: 20px;
  }

  .header-carousel .owl-carousel-item {
    position: relative;
    min-height: 600px;
  }

  .header-carousel .owl-carousel-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .header-carousel .owl-carousel-item p {
    font-size: 14px !important;
  }

  .our-services-section .top-btn {
    padding: 0 5px;
    font-size: 12px;
  }
  .common-title-main {
    justify-content: center;
    margin-bottom: 8px;
  }
  .security-service-size-section .common-filter::after {
    display: none;
  }
  section.car-hauling-section.account-manager-sec .col-12.col-md-5,
  section.car-hauling-section.account-manager-sec .col-12.col-md-7,
  section.car-hauling-section.account-manager-sec .col-12.col-md-7,
  section.our-service-eld-section .col-12.col-md-4,
  section.our-service-eld-section .col-12.col-md-7 {
    width: 100%;
    text-align: center;
  }
  section.testimonial-section p.common-title,
  section.map-section .common-title {
    margin-bottom: 20px;
  }
  .account-manager-sec .accordion-button {
    padding: 15px 13px;
  }
  .security-service-section.account-manager-sec {
    text-align: center;
  }
  section.security-service-section.our-services-sec .our-services-sec-btn {
    display: flex;
    justify-content: center;
  }
  .security-service-contact-size-sec .common-form p.common-title {
    text-align: center;
  }
  .account-manager-accordion .accordion-faq .accordion-body p {
    font-size: 14px;
  }
  .after-hours-section.account-manager-sec .col-12.col-md-6:first-child {
    order: 2;
  }
  section.our-service-eld-section .apply-now-btn {
    margin-top: 0;
    margin-bottom: 40px !important;
  }
  section.our-service-eld-section {
    text-align: center;
  }
  section.our-service-eld-section .our-team-experience-btn {
    justify-content: center;
  }
  section.our-service-eld-section .common-title,
  section.our-advantages-section .common-title,
  .what-you-can-order-section .common-title {
    margin-bottom: 10px !important;
    font-size: 30px !important;
  }
  section.our-team-experience-section .common-title {
    margin-bottom: 8px !important;
    font-size: 25px;
    line-height: 30px;
  }
  .our-advantages-box {
    text-align: center;
  }
  .what-you-can-order-section {
    padding-left: 15px;
    padding-right: 15px;
  }
  section.our-service-eld-section .col-12.col-md-7 .it-service-absolute {
    left: 10px;
    width: 60%;
  }
  section.our-team-experience-section {
    padding-top: 20px;
  }
  section.our-service-eld-section {
    padding-bottom: 30px;
  }
  .strategic-solutions-section {
    text-align: center;
  }
  .tunnel {
    margin-bottom: 25px;
  }
  section.security-service-section.get-in-touch-sec {
    padding: 15px 5px !important;
  }
}

@media (max-width: 575.98px) {
  .common-title-main {
    font-size: 14px;
  }
  .padding-all {
    margin: 3px;
  }

  .contact-us-cmn-form {
    padding: 20px 15px;
  }
  .banner-text-one {
    font-size: 32px;
  }
  .common-title-main .title-star {
    width: 15px;
  }
  .account-manager-accordion .accordion-button::before {
    width: 10px;
    height: 10px;
    margin-right: 5px;
    background-size: 10px;
  }
  .account-manager-accordion .accordion-faq {
    margin: 0px;
  }
  section.our-service-eld-section .col-12.col-md-7 .it-service-absolute {
    width: 50%;
  }
}

.bg-dark.navbar .navbar-nav .nav-link {
  padding: 25px 15px !important;
}

.footer-logo img {
  width: 80px;
}

.our-team-experience-right-section .common-para {
  font-size: 16px;
  margin-bottom: 0px !important;
}

.our-advantages-box .small-titles {
  font-size: 17px;
  margin-bottom: 0px !important;
}

.what-you-can-order-section .small-titles-1 {
  font-size: 19px;
}

.navbar .header-button {
  border-radius: 50px;
  padding: 4px 2px 4px 20px;
  background: transparent;
  border: 1px solid white;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 56px;
}

.navbar .header-button i {
  border: none;
  padding: 0px;
  margin: 0;
  border-radius: 50%;
  background: white;
  color: black;
  height: 50px;
  display: flex;
  width: 50px;
  justify-content: center;
  align-items: center;
  margin-left: 15px;
}

.video-header {
  display: grid;

  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
}

.video-header video {
  display: grid;

  object-fit: cover;

  filter: brightness(0.5);

  z-index: -1;
  grid-column-start: 1;
  grid-column-end: -1;
  grid-row-start: 1;
  grid-row-end: -1;

  width: 100vw;
  height: 100vh;
}

.video-header .header-ad-container {
  grid-column-start: 1;
  grid-column-end: -1;
  grid-row-start: 1;
  grid-row-end: -1;
}
