/*
Theme Name:   All Aboard US
Theme URI:    https://allaboardus.com/
Author:       M.Bilal Zaheer
Description:  Truck Dispatch Service Company.
Version:      1.0.0
License:      GNU General Public License v2 or later
License URI:  https://www.gnu.org/licenses/gpl-2.0.html
Text Domain:  all-aboard-us
*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: "Inter";
  src: url("./assets/fonts/Inter-VariableFont_opsz\,wght.ttf")
    format("truetype");
}

:root {
  --grid-columns: 12;
  --grid-margin: 106px;
  --grid-gutter: 20px;
  --font-18: clamp(16px, 1.1vw, 18px);
  --font-36px: clamp(26px, 2.2vw, 36px);
  --font-64px: clamp(30px, 4.4vw, 64px);
  --font-22px: clamp(14px, 1.8vw, 22px);
  --font-28px: clamp(18px, 2.2vw, 28px);
}
html {
  margin-top: 0 !important;
}
body {
  font-family: "Inter";
}
ul {
/*   list-style: none; */
}
a {
  color: inherit;
  text-decoration: none;
}
footer ul{
	list-style:none;
}
.grid-col-12 {
  display: grid;
  grid-template-columns: repeat(var(--grid-columns), 1fr);
  column-gap: var(--grid-gutter);
  padding: 0 var(--grid-margin);
}
header {
  position: absolute;
  top: 0;
  z-index: 9999;
  left: 0;
  width: 100%;
  padding-top: 1rem;
}
header .grid-col-12 {
  align-items: center;
}
.logo__section__header {
  grid-column: 1/3;
}
.logo__section__header img {
  width: 70%;
}
#menu-header-menu-1{
	list-style:none;
}
nav {
  grid-column: 4/10;
}
nav ul {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  justify-content: center;
}
.animator__container {
  position: fixed;
  pointer-events: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: transparent;
  z-index: 9999999;
  display: grid;
  grid-template-rows: repeat(2, 1fr);
}
.animator__container__top {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  width: 100%;
  height: 100%;
}
.animator__container__bottom {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  width: 100%;
  height: 100%;
}
.block_top {
  background-color: #195a6a;
  width: 100%;
  transform: scaleY(0);
  transform-origin: top;
  grid-column: span 1;
}
.block_bottom {
  background-color: #195a6a;
  width: 100%;
  transform: scaleY(0);
  transform-origin: bottom;
  grid-column: span 1;
}
nav ul li a {
  font-size: var(--font-18);
  font-weight: 400;
  color: white;
  position: relative;
  transition: color 0.3s ease;
}
nav ul li a::after {
  content: "";
  transition: 0.3s ease;
  position: absolute;
  bottom: -0.3rem;
  width: 0%;
  height: 2px;
  right: 0;
  background: #195a6a;
}
nav ul li a:hover {
  color: #195a6a;
}
nav ul li a:hover::after {
  left: 0;
  width: 100%;
}
.call__to__action__button__header {
  grid-column: 10/-1;
}
.call__to__action__button__header a {
  font-size: var(--font-18);
  font-weight: 600;
  color: black;
  background: white;
  padding: 0.5rem 0.8rem;
  border-radius: 5px;
  transition: 0.3s ease-in-out;
}
.call__to__action__button__header a:hover {
  background: #195a6a;
  color: white;
}
.hero__section__home {
  height: 100vh;
  background: var(--background, url("./assets/Images/hero.png"));
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.background__video__hero__home {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.black__overlay__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}
.background__video__hero__home video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__section__home .grid-col-12 {
  height: 100%;
  position: relative;
  z-index: 999;
}
.hero__info__part__home {
  grid-column: 2/12;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
.hero__line__first p {
  text-align: center;
  text-transform: uppercase;
  font-size: var(--font-36px);
  color: white;
  font-weight: 400;
  letter-spacing: 16px;
}
.hero__line__second p {
  text-align: center;
  font-size: var(--font-64px);
  color: white;
  font-weight: 600;
}
.hero__line__subtitle {
  margin-top: 1rem;
  max-width: 70%;
}
.hero__line__subtitle p {
  font-size: var(--font-22px);
  text-align: center;
  margin: 0 auto;
  font-weight: 400;
  color: white;
}
.hero__button__container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
  column-gap: 1.5rem;
}
.hero__button__container a {
  color: white;
  background: #195a6a;
  padding: 0.5rem 0.8rem;
  border-radius: 5px;
  font-size: var(--font-18);
  font-weight: 600;
}

.hero__button__container a:last-child {
  background: white;
  color: black;
}
.we__are__with__you__section__home {
  background: #195a6a;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding-top: 8rem;
  padding-bottom: 8rem;
}

.section__we__are__title__subtitle {
  grid-column: 1/-1;
}
.section__we__are__title p {
  color: white;
  font-size: var(--font-36px);
  font-weight: 600;
}
.section__we__are__subtitle {
  max-width: 50%;
  margin-top: 1rem;
}
.section__we__are__subtitle p {
  color: white;
  font-weight: 400;
  font-size: var(--font-18);
}
.three__blocks__section__we__are__with__container {
  grid-column: 1/-1;
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.we__are__with__you__section__home {
  position: relative;
}
.left__side__poliycon__we__ar {
  position: absolute;
  bottom: 0;
  left: 0;
  pointer-events: none;
}
.left__side__poliycon__we__ar img {
  width: 100%;
}
.single__block__section__we__are__with {
  grid-column: span 1;
  border: 1px solid #195a6a;
  padding: 2rem 1rem;
  background: rgba(0, 0, 0, 0.11);
  backdrop-filter: blur(50.79999923706055px);
  border-radius: 8px;
}
.icon__block__single__we__are__with img {
  width: 18%;
  object-fit: contain;
}
.title__block__single__we__are__with {
  margin-top: 1rem;
}
.title__block__single__we__are__with p {
  font-size: var(--font-22px);
  color: white;
  font-weight: 600;
}
.subtitle__block__single__we__are__with {
  margin-top: 1rem;
}
.subtitle__block__single__we__are__with p {
  font-size: var(--font-18);
  font-weight: 400;
  color: white;
}

.top__team__carrier__section__home {
  padding-top: 8rem;
  padding-bottom: 2rem;
}
.left__side__top__team__car {
  grid-column: 1/6;
}
.right__side__top__team__car {
  grid-column: 6/-1;
  overflow: hidden;
  display: flex;
  border-radius: 12px;
}
.right__side__top__team__car img {
  width: 100%;
  object-fit: cover;
}
.about__text__top__team__section p {
  font-size: var(--font-18);
  font-weight: 400;
  color: black;
  letter-spacing: 6px;
  text-transform: uppercase;
}
.top__team__text__sectino p {
  font-size: var(--font-36px);
  font-weight: 600;
  color: black;
}
.top__team__text__section__subtitl {
  margin-top: 1rem;
}
.top__team__text__section__subtitl p {
  font-size: var(--font-18);
  font-weight: 400;
  color: black;
  line-height: 1.5;
}

.top__team__label__bottom {
  background-color: rgba(209, 183, 70, 0.2);
  padding: 0.8rem;
  margin-top: 1.5rem;
  border-radius: 5px;
}
.top__team__label__bottom p {
  font-size: var(--font-22px);
  color: black;
  font-weight: 600;
}
.hambergur__menu__mobile {
  display: none;
}
.mobile__menu__container {
  display: none;
}
.preloader__home__container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  background-color: black;
}
.the__best__logistic__section {
  padding-top: 2rem;
  padding-bottom: 5rem;
}
.left__side__the__best__log {
  grid-column: 1/7;
  position: relative;
}
.left__side__the__best__log img {
  width: 100%;
  max-width: 80%;
  height: 100%;
  display: flex;
  border-radius: 12px;
  overflow: hidden;
  object-fit: cover;
}
.block__info__the__best__log__section {
  position: absolute;
  top: 2rem;
  left: 40%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.single__block__info__the__best__log {
  display: flex;
  column-gap: 1rem;
  padding: 0.8rem 1rem;
  padding-right: 5rem;
  border-radius: 8px;
  align-items: center;
  border: 1px solid rgba(172, 136, 41, 1);
  background: rgba(255, 255, 255, 0.61);
  backdrop-filter: blur(50.79999923706055px);
}
.single__block__info__the__best__log img {
  width: 20%;
  border-radius: none;
  overflow: visible;
  object-fit: contain;
}
.info__single__block__info__the__best__log p:first-child {
  font-size: var(--font-28px);
  font-weight: 600;
  color: black;
}
.info__single__block__info__the__best__log p:last-child {
  font-size: var(--font-18);
  font-weight: 400;
  color: black;
}
.right__side__the__best__log__section {
  grid-column: 7/-1;
}
.the__best__info__tile p {
  font-size: var(--font-36px);
  font-weight: 600;
  color: black;
}
.the__best__info__log__subtitle p {
  font-size: var(--font-18);
  font-weight: 400;
  color: black;
  margin-top: 1rem;
  line-height: 1.5;
}
.the__best__action__button__container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-top: 2rem;
  column-gap: 1.5rem;
}
.the__best__action__button__container a {
  color: black;
  background: rgba(209, 183, 70, 1);
  padding: 0.5rem 0.8rem;
  border-radius: 5px;
  font-size: var(--font-18);
  font-weight: 600;
}
.the__best__action__button__container a:last-child {
  background: black;
  color: white;
}
.our__service__area__section__home {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background: #195a6a;
}
.our__service__area__section__home .grid-col-12 {
  position: relative;
}
.map__image__area__service {
  grid-column: 3/11;
}
.map__image__area__service img {
  width: 100%;
  mix-blend-mode: overlay;
}
.title__subtitle__box__with__two__button__container {
  position: absolute;
  display: flex;
  top: 0;
  left: 0;
  text-align: center;
  grid-column: 4/10;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.title__our__service__area p {
  font-size: var(--font-36px);
  font-weight: 600;
  color: white;
}
.subtitle__our__service__area p {
  margin-top: 1rem;
  font-size: var(--font-18);
  font-weight: 400;
  color: white;
  text-align: center;
}

.two__button__our__service__area {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 1.5rem;
}
.two__button__our__service__area a {
  color: black;
  background: rgba(209, 183, 70, 1);
  padding: 1rem 1.5rem;
  border-radius: 5px;
  font-size: var(--font-18);
  font-weight: 600;
}
.two__button__our__service__area a:last-child {
  background: black;
  color: white;
}

footer {
  overflow: hidden;
  position: relative;
  background: #01172f;
  padding-top: 4rem;
  color: white;
}
.background__map__image__footer {
  position: absolute;
  top: 0;
  right: -2%;
  width: 40%;
  z-index: 1;
}
.background__map__image__footer img {
  width: 100%;
}
.left__info__block__footer {
  grid-column: 1/5;
  position: relative;
  z-index: 999;
}

.good__carrer__btn__footer a {
  font-size: var(--font-22px);
  color: black;
  font-weight: 600;
  background: white;
  padding: 0.5rem 0.8rem;
  border-radius: 3px;
  width: max-content;
  display: block;
}
.info__text__left__footer {
  margin-top: 1rem;
}
.info__text__left__footer p:first-child {
  font-size: var(--font-18);
  font-weight: 600;
  color: white;
}
.info__text__left__footer p:last-child {
  font-size: var(--font-18);
  font-weight: 400;
  color: white;
  margin-top: 0.5rem;
}
.footer__social__icon__container {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.single__footer__social__icon img{
  width: 1.5rem;
  height: 1.5rem;
  object-fit: contain;
}
.terms__block__footer {
  grid-column: 6/8;
  position: relative;
  z-index: 999;
}
.terms__block__footer p {
  font-size: calc(var(--font-28px) - 4px);
  font-weight: 600;
  color: white;
}
.terms__block__footer ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.terms__block__footer ul li a {
  font-weight: 400;
  font-size: calc(var(--font-22px) - 4px);
  color: white;
}
.links__block__footer {
  grid-column: 9/11;
  position: relative;
  z-index: 999;
}

.links__block__footer p {
  font-size: calc(var(--font-28px) - 4px);
  font-weight: 600;
  color: white;
}
.links__block__footer ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.links__block__footer ul li a {
  font-weight: 400;
  font-size: calc(var(--font-22px) - 4px);
  color: white;
}

.contact__block__footer {
  grid-column: 11/-1;
  position: relative;
  z-index: 999;
}

.contact__block__footer p {
  font-size: calc(var(--font-28px) - 4px);
  font-weight: 600;
  color: white;
}
.contact__block__footer ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.contact__block__footer ul li a {
  font-weight: 400;
  font-size: calc(var(--font-22px) - 4px);
  color: white;
}
.bottom__center__text__footer {
  grid-column: 1/-1;
  position: relative;
  z-index: 999;
  margin-top: 5rem;
  text-align: center;
  border-top: 1px solid #ffffff42;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.bottom__center__text__footer p {
  font-size: calc(var(--font-18) - 2px);
  font-weight: 400;
  color: #ffffff94;
}
.preplaining__bus__section__home {
  padding: var(--grid-margin) 0;
}
.right__side__landscape__image__plaining img {
  width: 100%;
}
.single__block__plaing__section__icon img {
  width: 100%;
}
.left__image__plaing__section img {
  width: 100%;
}
img {
  display: flex;
}
.top__section__preloiang {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: repeat(var(--grid-columns), 1fr);
}
.left__plaining__info__text__block {
  grid-column: 1/7;
  background-color: #f2f0e6;
  padding: 2.5rem;
}

.footer__disclamer__home {
  width: 100%;
  background: #195a6a;
}
.footer__disclamer__home .block {
  grid-column: 1/-1;
  color: white;
  padding: 4rem 0;
  font-size: var(--font-22px);
}

.right__side__landscape__image__plaining {
  grid-column: 7/-1;
}
.left__plaining__info__text__title p {
  font-size: var(--font-36px);
  color: black;
  font-weight: 600;
}
.left__plaining__info__text__sutitle {
  margin-top: 1rem;
}
.left__plaining__info__text__sutitle p {
  font-size: var(--font-18);
  color: black;
  font-weight: 400;
}
.four__blocks__plaining__section__container {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: repeat(var(--grid-columns), 1fr);
}
.single__block__plainig__secetion {
  grid-column: span 3;
  display: flex;
  padding: 1.5rem 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.single__block__plainig__secetion:nth-child(1) {
  background: #d1b746;
}
.single__block__plainig__secetion:nth-child(2) {
  background: #d1b746bf;
}
.single__block__plainig__secetion:nth-child(3) {
  background: #d1b7468c;
}
.single__block__plainig__secetion:nth-child(4) {
  background: #d1b74659;
}

.single__block__plainig__secetion p {
  font-size: var(--font-28px);
  font-weight: 600;
  color: black;
}
.single__block__plaing__section__icon {
  width: 20%;
}

.left__image__plaing__section {
  grid-column: 1/7;
}
.right__content__block__plaingin__section {
  grid-column: 7/-1;
  padding: 2.5rem;
}
.right__content__block__plaingin__title p {
  font-size: var(--font-36px);
  color: black;
  font-weight: 600;
}
.right__content__block__plaingin__subtitle {
  margin-top: 1rem;
}
.right__content__block__plaingin__subtitle p {
  font-size: var(--font-18);
  color: black;
  font-weight: 400;
}
.fixed__background__section__home {
  padding: 10rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--fixedbackground, url("./assets/Images/Truck-Image-10.jpg"));
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.fixed__background__section__home .grid-col-12 {
  align-items: center;
}
.left__side__fixed__background__section {
  grid-column: 2/6;
}
.left__side__fixed__background__section p:first-child {
  font-size: calc(var(--font-36px) + 12px);
  color: white;
  font-weight: 600;
}
.left__side__fixed__background__section p:last-child {
  margin-top: 0.6rem;
  font-size: var(--font-22px);
  color: white;
  font-weight: 400;
}
.right__side__fixed__background__section {
  grid-column: 9/-1;
}
.right__side__fixed__background__section a {
  font-size: var(--font-18);
  font-weight: 600;
  color: white;
  background: black;
  display: block;
  width: max-content;
  padding: 1rem;
  border-radius: 3px;
}
.ctd__qualification__section__home {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  /* max-height: 100%; */
  /* height: 100vh; */
}
.ctd__qualification__section__home .grid-col-12 {
  align-items: center;
  height: 100%;
}
.left__side__image__ctd__qual {
  position: absolute;
  top: 0;
  left: 0;
}
.left__side__image__ctd__qual img {
  width: 100%;
}
.left__side__ctd__qual {
  grid-column: 1/7;
  position: relative;
  z-index: 990;
  /* top: 35%; */
}
.ctd__qual__right {
  grid-column: 7/-1;
  padding: 5rem 0;
  /* position: relative; */
  /* top: 35%; */
}
.apply__box__ctd__qual {
  background: #ffffffb5;
  backdrop-filter: blur(35.5px);
  border-radius: 6px;
  padding: 3rem;
}
.apply__box__ctd__title p {
  font-size: var(--font-36px);
  font-weight: 600;
  color: black;
}
.apply__box__ctd__info {
  margin-top: 2rem;
}
.apply__box__ctd__info p {
  font-size: var(--font-18);
  font-weight: 400;
  color: black;
}
.apply__box__ctd__book__btn a {
  color: white;
  font-size: var(--font-18);
  font-weight: 600;
  background: black;
  border-radius: 5px;
  padding: 1rem 8rem;
  display: block;
  margin-top: 2rem;
  width: max-content;
}
.single__accordigion__application {
  border: 1px solid #989898;
  border-radius: 6px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}
.single__accordigion__application.active .body__single__accordion__application {
  margin-top: 2rem;
}
.header__single__accordioin__application p {
  font-size: calc(var(--font-22px) + 2px);
  font-weight: 500;
  color: black;
}
.body__single__accordion__application {
  height: 0px;
  overflow: hidden;
  transition: height 0.3s ease;
}

.body__single__accordion__application p {
  font-size: var(--font-18);
  color: black;
  font-weight: 400;
}
.accordion__application__criteria__container {
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
}

.request__trial__week__section__home .grid-col-12 {
  padding-right: 0;
}
.request__trial__week__section__home {
  background: #f7f6f2;
}
.left__side__form__of__trail__week {
  grid-column: 1/6;
  align-self: center;
  padding: 5rem 0;
}
.title__left__side__form__trail__week p:first-child {
  font-size: var(--font-36px);
  color: #195a6a;
  font-weight: 300;
}
.title__left__side__form__trail__week p:last-child {
  font-size: var(--font-64px);
  color: black;
  font-weight: 600;
}
.subtitle__left__side__form__trail__week {
  margin-top: 2rem;
}
.subtitle__left__side__form__trail__week p {
  font-size: var(--font-18);
  color: black;
  font-weight: 400;
}
.form__container__week__trail {
  margin-top: 2rem;
}
.form__container__week__trail input {
  padding: 0.8rem 1rem;
  outline: none;
  border: 1px solid #195a6a3b;
  font-size: calc(var(--font-18) - 3px);
  color: grey;
  width: 100%;
  font-weight: 400;
  border-radius: 8px;
  margin-top: 0rem;
}
.form__container__week__trail textarea {
  padding: 0.8rem 1rem;
  outline: none;
  width: 100%;
  border: 1px solid #195a6a3b;
  font-size: calc(var(--font-18) - 3px);
  color: grey;
  font-weight: 400;
  border-radius: 8px;
  margin-top: 1rem;
}
.form__container__week__trail select {
  padding: 0.8rem 1rem;
  outline: none;
  width: 100%;
  border: 1px solid #195a6a3b;
  font-size: calc(var(--font-18) - 3px);
  color: grey;
  font-weight: 400;
  border-radius: 8px;
/*   margin-top: 1rem; */
}
.form__container__week__trail input[type="checkbox"] {
  width: 1rem;
  height: 1rem;
  cursor: pointer;
}
.form__container__week__trail select option {
  color: grey;
}
.name__email__field__box__week__trail {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.form__container__week__trail button {
  margin-top: 2rem;
  padding: 1rem 2rem;
  border-radius: 50px;
  background: #01172fa0;
  color: white;
  border: none;
  cursor: pointer;
  transition: 0.3s ease-in-out;
}
.form__container__week__trail button:hover {
  background: #01172f;
}
.phone__type__field__box__week__trail {
  display: flex;
  align-items: center;
  gap: 1rem;
	margin-top:1rem;
}
.temp{
	margin-top:2rem;
}
.temp h3{
	color: grey;
    user-select: none;
    font-weight: 600;
}
.temp p{
	margin-top:1rem;
	font-size: calc(var(--font-18) - 3px);
    color: grey;
    user-select: none;
    font-weight: 300;
}
.agree__form__week__trail {
  display: flex;
  align-items: start;
  gap: 1rem;
	margin-top:1rem;
}

.agree__form__week__trail label {
  font-size: calc(var(--font-18) - 3px);
  color: grey;
  user-select: none;
  font-weight: 300;
}
.right__side__week__trail {
  grid-column: 7/-1;
  overflow: hidden;
}
.right__side__week__trail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testimonals__section__home {
  padding: 5rem 0;
}
.testimonals__section__home .grid-col-12 {
  align-items: center;
}
.title__testimonal__part {
  grid-column: 1/-1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 1rem;
}
.title__testimonal__part p:first-child {
  font-size: calc(var(--font-18) - 2px);
  color: #195a6a;
  font-weight: 400;
}
.title__testimonal__part p:last-child {
  font-size: calc(var(--font-64px) - 12px);
  color: black;
  font-weight: 600;
}
.slider__testimonial__container {
  grid-column: 2/12;
  margin-top: 2rem;
  overflow: hidden;
  max-width: 100%;
}
.slider__wrapper__testinmoa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.swiper {
  width: 100%;
  max-width: 100%;
}
.swiper-wrapper {
  max-width: 100%;
}
.single__testinonal__slide {
  background: #f7f6f2;
  padding: 2rem;
  border-radius: 12px;
  width: calc(50% - 2rem) !important;
  flex-shrink: 0;
  position: relative;
}
.quote__testimonal {
  position: absolute;
  top: 2rem;
  right: 2rem;
}
.single__slide__testimon__info__text p {
  font-size: calc(var(--font-18));
  color: gray;
  font-weight: 400;
  line-height: 1.4;
}
.profile__image__name__single__testimon {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 1rem;
  gap: 1rem;
}
.profile__image__test__container {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid white;
}
.profile__image__test__container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.name__testimonnal__single__profile p:first-child {
  font-size: calc(var(--font-18));
  color: black;
  font-weight: 400;
}
.name__testimonnal__single__profile p:last-child {
  font-size: calc(var(--font-18) - 5px);
  color: gray;
  font-weight: 300;
}
.our__partners__section__home {
  padding: 5rem 0;
}
.our__partners__title {
  display: flex;
  justify-content: center;
  align-items: center;
  grid-column: 1/-1;
}
.our__partners__title p {
  font-size: calc(var(--font-64px) - 12px);
  font-weight: 600;
  color: black;
}
.our__partner__slider__1__wrapper {
  grid-column: 3/11;
  margin-top: 3rem;
  overflow: hidden;
}
.our__partner__slider__1__container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.our__partner__slider__2__wrapper {
  grid-column: 3/11;
  margin-top: 3rem;
  overflow: hidden;
}
.our__partner__slider__2__container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.single__our__partner__company__logo {
  flex-shrink: 0;
  width: 20%;
}
.single__our__partner__company__logo img {
  width: 100%;
  object-fit: contain;
}

.services__section__sesrvice__page {
  padding: 5rem 0;
  /* background: #195a6a; */
}

.services__title__servie__page {
  grid-column: 1/-1;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
}

.services__title__servie__page p:first-child {
  font-size: calc(var(--font-18) - 2px);
  font-weight: 400;
  color: black;
}

.services__title__servie__page p:last-child {
  font-size: calc(var(--font-64px) - 16px);
  font-weight: 600;
  color: black;
}
.services__truck__type__container {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  row-gap: 4rem;
  margin-top: 4rem;
}
.services__truck__type__single {
  grid-column: span 1;
}
.services__truck__type__single__imagebox {
  border-radius: 10px;
  overflow: hidden;
  height: 20rem;
}
.services__truck__type__single__imagebox:hover img {
  transform: scale(1.2);
}
.services__truck__type__single__imagebox img {
  transition: 0.5s ease-in-out;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.services__truck__type__single__title {
  margin-top: 1rem;
}
.services__truck__type__single__info {
  margin-top: 0.5rem;
}
.services__truck__type__single__title p {
  font-size: var(--font-22px);
  font-weight: 600;
  color: black;
  font-style: italic;
}
.services__truck__type__single__info p {
  font-size: calc(var(--font-18) - 1px);
  font-weight: 400;
  color: black;
  line-height: 1.4;
  font-style: italic;
}
.services__truck__type__single__info .text-block {
  font-size: calc(var(--font-18) - 1px);
  font-weight: 400;
  color: black;
  line-height: 1.4;
  font-style: italic;
  display: -webkit-box;
  -webkit-line-clamp: 3; /* 👈 number of lines to show */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.form__didicated__dispatcher {
  padding: var(--grid-margin) 0;
  padding-top: 10rem;
}
.title__form__didicated__dispacter {
  grid-column: 1/-1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.title__form__didicated__dispacter p {
  font-size: var(--font-64px);
  color: black;
  font-weight: 600;
}
.form__didicated__dispatcher {
  background: #f7f6f2;
}
.form__dedicated__disp__container {
  grid-column: 3/11;
  margin-top: 5rem;
}
.form__dedicated__disp__container form {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.form__dedicated__disp__container label {
  font-size: calc(var(--font-18) - 3px);
  color: gray;
  font-weight: 400;
}
.form__dedicated__disp__container input {
  width: 100%;
  padding: 0.8rem 1rem;
  border: none;
  font-size: calc(var(--font-18) - 4px);
  color: gray;
  font-weight: 400;
  outline: none;
  border-radius: 4px;
}
.form__dedicated__disp__container select {
  width: 100%;
  padding: 0.8rem 1rem;
  border: none;
  font-size: calc(var(--font-18) - 4px);
  color: gray;
  font-weight: 400;
  outline: none;
  border-radius: 4px;
}
.single__field__input__ded__dis {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  width: 100%;
}
.name__field__ded__dis__container {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 1rem;
}
.radio__btn__input__ded__dis {
  display: flex;
/*   flex-direction: column; */
  gap: 1rem;
}
.single__field__input__ded__dis p{
	    font-size: calc(var(--font-18) - 3px);
    color: gray;
    font-weight: 400;
}
.radio__btn__input__ded__dis label {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  cursor: pointer;
}
.radio__btn__input__ded__dis input[type="radio"] {
  width: 1rem;
  height: 1rem;
  cursor: pointer;
}
.single__field__input__name__dis__ded {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.disclaimer__ded__dis {
  margin-top: 1rem;
	align-self:start;
}
.sms-privacy{
	margin-top: 1rem;
    align-self: start;
    font-size: calc(var(--font-18) - 2px);
    font-weight: 400;
    color: gray;
}
.sms-privacy a{
	    text-decoration: underline;
    font-weight: 700;
}
.disclaimer__ded__dis p {
  font-size: calc(var(--font-18) - 2px);
  font-weight: 400;
  color: gray;
}
.form__dedicated__disp__container button {
  padding: 0.8rem 2rem;
  margin-top: 2rem;
  border: none;
  outline: none;
  background: #d1b746;
  font-size: var(--font-18);
  font-weight: 400;
  color: black;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s ease-in-out;
}
.form__dedicated__disp__container button:hover {
  background: #195a6a;
  color: white;
}
.go__back__home__btn {
  position: absolute;
  top: 2rem;
  cursor: pointer;
  left: 2rem;
}
.content__terms__page {
  grid-column: 2/12;
  margin-top: 5rem;
}
#smsConsent{
	width: 1rem;
    height: 1rem;
}
.content__terms__page ul li {
/*   margin-top: 2rem; */
/*   display: flex; */
  flex-direction: column;
  gap: 1rem;
}
/* .content__terms__page p{
  color: white;
}
.content__terms__page h3{
  color: white;
}
.content__terms__page li{
  color: white;
} */
.contact__section__contact .grid-col-12 {
  padding-left: 0;
}
.left__side__map__location__container {
  grid-column: 1/7;
}
.left__side__map__location__container iframe {
  width: 100%;
  height: 100%;
}
.right__side__contact__form__contact__page {
  grid-column: 8/-1;
  padding: 10rem 0;
}
.contact__form__title__contact__page p {
  font-size: calc(var(--font-36px) + 4px);
  color: black;
  font-weight: 600;
}
.right__side__contact__form__contact__page form {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.right__side__contact__form__contact__page input {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid #989898;
  color: gray;
  outline: none;
  font-size: calc(var(--font-18) - 4px);
  font-weight: 400;
  border-radius: 6px;
}
.right__side__contact__form__contact__page textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid #989898;
  color: gray;
  outline: none;
  font-size: calc(var(--font-18) - 4px);
  font-weight: 400;
  border-radius: 6px;
}
.right__side__contact__form__contact__page
  .input__field__name__phone__first__row {
  display: flex;
  align-items: center;
  gap: 2rem;
  justify-content: center;
}
.check__box__contact__form__contact__page {
  display: flex;
  align-items: start;
  justify-content: center;
  gap: 1rem;
}
.check__box__contact__form__contact__page input[type="checkbox"] {
  width: 2rem;
  height: 2rem;
  cursor: pointer;
}
.check__box__contact__form__contact__page p {
  font-size: calc(var(--font-18) - 4px);
  color: gray;
  font-weight: 400;
}
.right__side__contact__form__contact__page button {
  width: max-content;
  padding: 1rem 2rem;
  border: none;
  outline: none;
  background: #195a6a;
  color: white;
  font-size: calc(var(--font-18) - 3px);
  font-weight: 500;
  border-radius: 50px;
  cursor: pointer;
}
.right__side__contact__form__contact__page button:hover {
  background: #01172f;
}

.single__service__section__truck {
  padding-top: 10rem;
  background-color: #01172f;
  padding-bottom: 5rem;
}
.single__service__section__truck p {
  color: white;
  font-weight: 400;
  font-size: calc(var(--font-22px));
}
.single__service__section__truck h1 {
  color: white;
  font-weight: 400;
  font-size: calc(var(--font-36px));
}

.single__image__service {
  grid-column: 1/-1;
}
.single__image__service img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.single__title__truck {
  grid-column: 1/-1;
  margin-top: 1rem;
}
.single__content__service {
  grid-column: 1/-1;
  margin-top: 2rem;
}
@media (max-width: 1224px) {
  .contact__section__contact .grid-col-12 {
    padding-left: 1.5rem;
  }
  .left__side__map__location__container iframe {
    width: 100%;
    height: 65vh;
    padding-bottom: 2rem;
  }
  .left__side__map__location__container {
    grid-column: 1/-1;
    grid-row: 2;
  }
  .right__side__contact__form__contact__page {
    grid-column: 1/-1;
  }
  .content__terms__page {
    grid-column: 1/-1;
  }
  .form__dedicated__disp__container {
    grid-column: 1/-1;
  }
  .services__truck__type__single {
    grid-column: span 3;
  }
  .our__partner__slider__1__wrapper {
    grid-column: 1/-1;
  }
  .our__partner__slider__2__wrapper {
    grid-column: 1/-1;
  }
  .request__trial__week__section__home .grid-col-12 {
    padding-right: 1.5rem;
  }
  .slider__testimonial__container {
    grid-column: 1/-1;
  }
  .single__testinonal__slide {
    width: calc(100% - 2rem) !important;
  }
  .right__side__week__trail {
    display: none;
  }
  .left__side__form__of__trail__week {
    grid-column: 1/-1;
  }
  .left__side__ctd__qual {
    grid-column: 1/-1;
  }
  .ctd__qual__right {
    grid-column: 1/-1;
  }
  .apply__box__ctd__qual {
    padding: 1rem;
    margin-top: 2rem;
  }
  .left__side__image__ctd__qual {
    display: none;
  }
  .left__side__fixed__background__section {
    grid-column: 1/-1;
  }
  .right__side__fixed__background__section {
    grid-column: 1/-1;
    margin-top: 2rem;
  }
  .left__plaining__info__text__block {
    grid-column: 1/-1;
    padding: 0;
    margin-bottom: 2rem;
    background-color: white;
  }
  .right__side__landscape__image__plaining {
    grid-column: 1/-1;
  }
  .single__block__plainig__secetion {
    grid-column: span 6;
  }
  .left__image__plaing__section {
    grid-column: 1/-1;
  }
  .right__content__block__plaingin__section {
    grid-column: 1/-1;
    padding: 0;
    margin-top: 2rem;
  }
  .left__side__the__best__log {
    grid-column: 1/-1;
    margin-top: 2rem;
    grid-row: 2;
  }
  .left__info__block__footer {
    grid-column: 1/-1;
    margin-bottom: 2rem;
  }
  .terms__block__footer {
    grid-column: 1/3;
  }
  .links__block__footer {
    grid-column: 3/5;
  }
  .contact__block__footer {
    grid-column: 6/-1;
  }
  .background__map__image__footer {
    width: 100%;
  }
  .our__service__area__section__home .grid-col-12 {
    height: 40vh;
  }
  .map__image__area__service {
    grid-column: 1/-1;
  }
  .title__subtitle__box__with__two__button__container {
    grid-column: 1/-1;
  }
  .two__button__our__service__area {
    flex-direction: column;
    gap: 1rem;
  }
  .block__info__the__best__log__section {
    display: none;
  }
  .left__side__the__best__log img {
    max-width: 100%;
  }
  .right__side__the__best__log__section {
    grid-column: 1/-1;
  }
  .hambergur__menu__mobile {
    display: block;
    grid-column: 6/-1;
    justify-self: end;
    cursor: pointer;
  }
  .mobile__menu__container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    transition: height 0.5s ease;
    overflow: hidden;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
  }
  .close__mobile__menu {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
  }
  .mobile__menu__container ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
  .mobile__menu__container ul li a {
    color: white;
    font-size: 30px;
  }
  .grid-col-12 {
    grid-template-columns: repeat(6, 1fr);
    padding: 0 20px;
  }
  .logo__section__header {
    grid-column: 1/3;
    width: 100%;
    grid-row: 1;
  }
  .the__best__action__button__container {
    gap: 1rem;
  }
  .hero__button__container {
    flex-direction: column;
    gap: 1rem;
  }
  .hero__info__part__home {
    grid-column: 1/-1;
    gap: 0.5rem;
  }
  .hero__line__subtitle {
    max-width: 100%;
  }
  .hero__info__part__home p {
    /* font-size: 10px !important; */
  }
  nav {
    display: none;
  }
  .call__to__action__button__header {
    display: none;
  }
  .section__we__are__subtitle {
    max-width: 100%;
  }
  .three__blocks__section__we__are__with__container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .left__side__top__team__car {
    grid-column: 1/-1;
  }
  .right__side__top__team__car {
    grid-column: 1/-1;
    margin-top: 2rem;
  }
}

@media (max-width:1600px){
	.services__truck__type__container{
		grid-template-columns:repeat(4,1fr);
	}
	.services__truck__type__single {
    grid-column: span 2;
}
}
