@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
:root {
  --light-black: #1B1B1B;
  --white: #FFFFFF;
  --dark-blue: #083A81;
  --mild-black: #363636;
  --light-gray: #F4F4F4;
  --red: #D62317;
  --mild-gray: #353535;
  --dark-black: #000000;
  --light-gray-opacity: #F4F4F480;
  --border-color: #AEAEAE;
  --gray-1: #F3F3F3;
  --gray-2: #FBFBFB;
  --medium-gray: #909090;
  --medium-light-gray: #D9D9D9;
  --bg-gray: #F4F4F4;
  --font-bold: "bold";
  --font-regular: "regular";
  --font-thin: 100;
  --font-light: 300;
  --font-regular-weight: 400;
  --font-light-medium: 500;
  --font-medium: 600;
  --font-bold-weight: 700;
  --font-extra-bold: 800;
}

@font-face {
  font-family: "bold";
  src: url("../fonts/Hermes.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "regular";
  src: url("../fonts/Hermes Regular.woff2") format("woff2");
  font-display: swap;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  scroll-behavior: smooth;
}

body.noscroll {
  overflow: hidden;
  height: 100%;
  position: fixed;
  width: 100%;
}

body {
  font-family: var(--font-regular);
  overflow-x: hidden;
  color: var(--light-black);
  padding-top: 74px;
  font-weight: var(--font-regular-weight);
  font-size: 16px;
  line-height: 22px;
  font-weight: var(--font-regular-weight);
}

body.search-active {
  overflow-y: hidden;
  position: fixed;
  width: 100%;
  height: 100%;
}

.header-search-box {
  position: fixed;
  display: none;
  top: 73px;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.5s ease-in-out 0s;
  z-index: 120;
}
.header-search-box .redbox-search {
  background: rgba(214, 35, 23, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 470px;
  width: 100%;
}
.header-search-box .redbox-search .wrapperContainer .close-search {
  position: absolute;
  right: 50px;
  top: 35px;
  background: url("../../assets/img/srch-cross.svg") no-repeat;
  height: 24px;
  width: 24px;
  cursor: pointer;
}
.header-search-box .redbox-search .wrapperContainer .search-wrapper {
  max-width: 100%;
  margin: 0 auto 50px;
}
.header-search-box .redbox-search .wrapperContainer .search-wrapper .heading-one {
  font-family: var(--font-bold);
  color: var(--white);
}
.header-search-box .redbox-search .wrapperContainer .search-wrapper .form-srch {
  margin-top: 40px;
}
.header-search-box .redbox-search .wrapperContainer .search-wrapper .form-srch form {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.header-search-box .redbox-search .wrapperContainer .search-wrapper .form-srch form input {
  width: 75%;
  border: none;
  border-bottom: 1px solid var(--white);
  padding-bottom: 10px;
  color: var(--white);
}
.header-search-box .redbox-search .wrapperContainer .search-wrapper .form-srch form input::-moz-placeholder {
  color: var(--white);
  font-size: 16px;
  line-height: 22px;
  font-weight: var(--font-regular-weight);
  font-weight: var(--font-light-medium);
}
.header-search-box .redbox-search .wrapperContainer .search-wrapper .form-srch form input::placeholder {
  color: var(--white);
  font-size: 16px;
  line-height: 22px;
  font-weight: var(--font-regular-weight);
  font-weight: var(--font-light-medium);
}
.header-search-box .redbox-search .wrapperContainer .search-wrapper .form-srch form .btn-default, .header-search-box .redbox-search .wrapperContainer .search-wrapper .form-srch form .btn-transparent, .header-search-box .redbox-search .wrapperContainer .search-wrapper .form-srch form .btn-white {
  background: var(--white);
  border-radius: 100px;
  height: 52px;
  padding: 0 47px 0 35px;
  max-width: 160px;
  font-family: var(--font-bold);
  color: var(--light-black);
  margin-left: 27px;
  position: relative;
}
.header-search-box .redbox-search .wrapperContainer .search-wrapper .form-srch form .btn-default:hover, .header-search-box .redbox-search .wrapperContainer .search-wrapper .form-srch form .btn-transparent:hover, .header-search-box .redbox-search .wrapperContainer .search-wrapper .form-srch form .btn-white:hover {
  color: white;
  background-color: unset;
}
.header-search-box .redbox-search .wrapperContainer .search-wrapper .form-srch form .btn-default:hover::after, .header-search-box .redbox-search .wrapperContainer .search-wrapper .form-srch form .btn-transparent:hover::after, .header-search-box .redbox-search .wrapperContainer .search-wrapper .form-srch form .btn-white:hover::after {
  filter: brightness(0.5) invert(1);
}
.header-search-box .redbox-search .wrapperContainer .search-wrapper .form-srch form .btn-default::before, .header-search-box .redbox-search .wrapperContainer .search-wrapper .form-srch form .btn-transparent::before, .header-search-box .redbox-search .wrapperContainer .search-wrapper .form-srch form .btn-white::before {
  background-color: var(--mild-black);
}
.header-search-box .redbox-search .wrapperContainer .search-wrapper .form-srch form .btn-default::after, .header-search-box .redbox-search .wrapperContainer .search-wrapper .form-srch form .btn-transparent::after, .header-search-box .redbox-search .wrapperContainer .search-wrapper .form-srch form .btn-white::after {
  content: "";
  position: absolute;
  bottom: 18px;
  right: 22px;
  background-color: unset;
  left: unset;
  background-image: url("../../assets/img/submitArrowIcon.svg");
  background-repeat: no-repeat;
  background-position: center;
  height: 16px;
  width: 16px;
  z-index: 999;
}
@media (max-width: 991px) {
  .header-search-box .redbox-search .wrapperContainer .search-wrapper {
    margin: 0 auto 0;
  }
  .header-search-box .redbox-search .wrapperContainer .search-wrapper .heading-one {
    font-size: 34px;
    font-weight: var(--font-regular-weight);
    line-height: 45px;
  }
  .header-search-box .redbox-search .wrapperContainer .search-wrapper .form-srch form input {
    width: 100%;
    margin-bottom: 54px;
  }
  .header-search-box .redbox-search .wrapperContainer .search-wrapper .form-srch form .btn-default, .header-search-box .redbox-search .wrapperContainer .search-wrapper .form-srch form .btn-transparent, .header-search-box .redbox-search .wrapperContainer .search-wrapper .form-srch form .btn-white {
    margin-left: unset;
  }
  .header-search-box .redbox-search .wrapperContainer .close-search {
    right: 19px;
    top: 23px;
  }
}
.header-search-box.searchactive {
  display: block;
}

p {
  font-family: var(--font-regular);
  font-size: 16px;
  line-height: 22px;
  font-weight: var(--font-regular-weight);
  color: var(--mild-black);
  line-height: 25px;
}
@media (max-width: 991px) {
  p {
    font-size: 14px;
    line-height: 22px;
    font-weight: var(--font-regular-weight);
  }
}

button {
  font-family: var(--font-bold);
  font-size: 16px;
  line-height: 22px;
  font-weight: var(--font-regular-weight);
  border: none;
}

img {
  max-width: 100%;
  height: 100%;
}

ul,
ol,
li {
  list-style-type: none;
}

a {
  font-family: var(--font-regular);
  font-size: 16px;
  line-height: 22px;
  font-weight: var(--font-regular-weight);
  text-decoration: none;
  color: var(--light-black);
  transition: all 0.5s ease-in-out;
  display: block;
}

table {
  border-collapse: collapse;
  border: 0;
}

tr {
  background-color: #e1e1e1;
  border: 1px solid #aeaeae;
  text-transform: uppercase;
}

.tableHeading {
  font-size: 18px;
  line-height: 28px;
  font-family: var(--font-bold);
  color: var(--dark-black);
}

input,
textarea,
button,
select {
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  border-radius: 0;
  box-sizing: border-box;
  background: none;
  outline: none;
  font-size: 18px;
  line-height: 28px;
}

input:focus,
textarea:focus,
button:focus,
select:focus {
  outline: none;
}

button {
  border: none;
  cursor: pointer;
}

.wrapperContainer {
  max-width: calc(100% - 40px);
  margin: auto;
}

.commonMargin {
  margin: 80px 0;
}
@media (max-width: 991px) {
  .commonMargin {
    margin: 48px 0;
  }
}

lottie-player {
  width: 300px;
  height: 300px;
  max-width: 300px;
  margin: auto;
}

#lottie-loader {
  position: fixed;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  height: 100%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.m-auto {
  margin: auto;
}

.detailedBanner {
  position: relative;
  padding-top: 36.3157894737%;
}
.detailedBanner img {
  position: absolute;
  top: 0;
  left: 0;
}

.com-pad {
  padding: 80px 0;
}
@media (max-width: 991px) {
  .com-pad {
    padding: 48px 0;
  }
}

.col-25 {
  width: 25%;
}

.col-33 {
  flex: 1;
}

.bg-blue {
  background-color: var(--dark-blue);
}

.lightGray {
  background-color: var(--light-gray);
}

.swiper-button-next {
  transition: all 0.5s ease-in-out;
}

.swiper-button-next::before,
.swiper-button-prev::before {
  content: "";
  height: 100%;
  width: 100%;
  background: #d62317;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  transform: scale(0);
  transition: all 0.5s ease;
  border-radius: 50%;
  z-index: -1;
}
.swiper-button-next:hover::before,
.swiper-button-prev:hover::before {
  transform: scale(1);
}

.desktop-div {
  display: block;
}
@media (max-width: 991px) {
  .desktop-div {
    display: none;
  }
}

.mobile-div {
  display: none;
}
@media (max-width: 991px) {
  .mobile-div {
    display: block;
  }
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.col-50 {
  width: 50%;
}
@media (max-width: 991px) {
  .col-50 {
    width: 100%;
  }
}

.img-hover {
  overflow: hidden;
  border-radius: 20px;
}
.img-hover img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.text-white {
  color: var(--white);
}

.date-tag {
  position: relative;
  padding-left: 30px;
}
.date-tag::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: url(../assets/img/calendar.svg) no-repeat;
  width: 24px;
  height: 24px;
}

.colorfulStrips {
  display: flex;
  flex-direction: column;
  gap: 1px;
  padding-bottom: 33px;
}
.colorfulStrips .fleetBlueStrip {
  background-color: var(--dark-blue);
  height: 6.1px;
}
.colorfulStrips .redStrip {
  background-color: var(--red);
  height: 6.1px;
}

.CommonVecsbanner {
  position: relative;
}
.CommonVecsbanner img {
  top: 0;
  left: 0;
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  height: auto;
}
@media (max-width: 991px) {
  .CommonVecsbanner {
    height: 80vh;
  }
}

.careerGrowthHeading {
  max-width: 1000px;
  padding: 80px 0 30px 0;
}
.careerGrowthHeading.careerTabsHeading {
  max-width: 900px;
}
.careerGrowthHeading h1 {
  line-height: 42px;
  font-weight: 700;
}
@media (max-width: 991px) {
  .careerGrowthHeading {
    padding: 0px 0 0px 0;
  }
  .careerGrowthHeading h1 {
    line-height: 33px;
  }
}

.wrapperRow {
  display: flex;
  gap: 40px;
  align-items: center;
}

.ServiceCommonSection .serviceCommonContent h1 {
  margin-bottom: 20px;
}
.ServiceCommonSection .serviceCommonContent p {
  font-size: 18px;
  line-height: 28px;
  line-height: 25px;
}
.ServiceCommonSection .serviceCommonContent p:nth-of-type(2) {
  padding-top: 20px;
}
@media (max-width: 991px) {
  .ServiceCommonSection .wrapperRow {
    flex-direction: column;
    gap: 10px;
  }
  .ServiceCommonSection .serviceCommonContent {
    padding-top: 20px;
  }
  .ServiceCommonSection .serviceCommonContent p {
    font-size: 16px;
    line-height: 22px;
    font-weight: var(--font-regular-weight);
    line-height: 26px;
  }
}

.ourFeatureHeading {
  text-align: center;
  max-width: 611px;
  margin: auto;
  padding-bottom: 25px;
}
.ourFeatureHeading h2 {
  margin-bottom: 20px;
}
.ourFeatureHeading p {
  font-size: 18px;
  line-height: 28px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: var(--font-bold-weight);
  color: var(--mild-black);
  font-family: var(--font-bold);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

label {
  font-family: var(--font-bold);
}

.heading-one {
  font-size: 42px;
  line-height: 52px;
  font-family: var(--font-bold);
  font-weight: var(--font-bold-weight);
  line-height: 1;
}
@media (max-width: 991px) {
  .heading-one {
    font-size: 22px;
    line-height: 30px;
  }
}
@media (max-width: 991px) and (max-width: 991px) {
  .heading-one {
    font-size: 22px;
  }
}

.heading-red {
  font-size: 40px;
  line-height: 50px;
  font-weight: var(--font-regular-weight);
}
@media (max-width: 991px) {
  .heading-red {
    font-size: 24px;
    line-height: 38px;
  }
}
.heading-red {
  font-family: var(--font-bold);
  font-weight: var(--font-bold-weight);
  text-transform: unset;
  margin-bottom: 10px;
}

.heading-red span {
  font-family: var(--font-regular);
  font-weight: var(--font-regular-weight);
  color: var(--red);
}

.heading-two {
  font-size: 22px;
  line-height: 30px;
}
@media (max-width: 991px) {
  .heading-two {
    font-size: 22px;
  }
}
.heading-two {
  font-family: var(--font-bold);
  font-weight: var(--font-bold-weight);
  margin-bottom: 20px;
}

.heading-three {
  font-size: 20px;
  line-height: 26px;
  font-family: var(--font-bold);
  font-weight: var(--font-bold-weight);
  margin-bottom: 20px;
}

.heading-four {
  font-size: 24px;
  line-height: 38px;
  font-family: var(--font-bold);
  font-weight: var(--font-bold-weight);
}
@media (max-width: 991px) {
  .heading-four {
    font-size: 16px;
    line-height: 22px;
    font-weight: var(--font-regular-weight);
  }
}

.heading-six {
  font-size: 22px;
  line-height: 30px;
}
@media (max-width: 991px) {
  .heading-six {
    font-size: 22px;
  }
}
.heading-six {
  font-family: var(--font-bold);
  font-weight: var(--font-bold-weight);
}

p,
.description {
  font-family: var(--font-regular);
  font-weight: var(--font-regular-weight);
}

.text-center {
  text-align: center;
}

.text-transform {
  text-transform: uppercase;
}

.tableFont {
  font-size: 16px;
  line-height: 22px;
  font-weight: var(--font-regular-weight);
  font-family: var(--font-bold);
  color: var(--dark-black);
}

.btn-default, .btn-transparent, .btn-white {
  font-size: 16px;
  line-height: 22px;
  font-weight: var(--font-regular-weight);
  line-height: 12px;
  color: var(--white);
  display: inline-block;
  text-align: center;
  padding: 20px 50px;
  border-radius: 100px;
  display: inline-block;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  font-family: var(--font-bold);
}
.btn-default:after, .btn-transparent:after, .btn-white:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--red);
  border-radius: 100px;
  z-index: -2;
}
.btn-default:before, .btn-transparent:before, .btn-white:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: var(--light-black);
  transition: all 0.3s;
  border-radius: 100px;
  z-index: -1;
}
.btn-default:hover, .btn-transparent:hover, .btn-white:hover {
  color: var(--white);
}
.btn-default:hover:before, .btn-transparent:hover:before, .btn-white:hover:before {
  width: 100%;
}

.btn-white {
  color: var(--mild-black);
}
.btn-white:after {
  background-color: var(--white);
}
.btn-white:before {
  background-color: var(--red);
}
.btn-white:hover {
  color: var(--white);
}

.btn-transparent {
  border: 1px solid var(--border-color);
  color: var(--light-black);
  padding: 13px 45px;
  line-height: 19px;
}
.btn-transparent:after {
  content: "";
  background-color: var(--white);
}
.btn-transparent:before {
  background-color: var(--red);
}

.small-btn {
  padding: 20px 30px;
}

.form-group:not(:last-child) {
  margin-bottom: 40px;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
}
.form-group select {
  border: none;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--border-color);
  background: url(../assets/img/chevrondown.svg) no-repeat right center;
}

.contact-form-box .form-group label {
  color: var(--mild-gray);
  margin-bottom: 20px;
  display: block;
  font-family: var(--font-bold);
}
.contact-form-box .form-group .form-input input, .contact-form-box .form-group .form-input textarea, .contact-form-box .form-group .form-input select {
  border: none;
  background: var(--white);
  border-radius: 8px;
  height: 50px;
  padding: 0 15px;
  font-family: var(--font-bold);
}
.contact-form-box .form-group .form-input input::-moz-placeholder, .contact-form-box .form-group .form-input textarea::-moz-placeholder, .contact-form-box .form-group .form-input select::-moz-placeholder {
  color: var(--border-color);
}
.contact-form-box .form-group .form-input input::placeholder, .contact-form-box .form-group .form-input textarea::placeholder, .contact-form-box .form-group .form-input select::placeholder {
  color: var(--border-color);
}
.contact-form-box .form-group .form-input textarea {
  height: 100px;
  resize: none;
  padding-top: 23px;
}
.contact-form-box .form-group .form-input select {
  color: var(--border-color);
  background: var(--white) url(../assets/img/chevrondown.svg) no-repeat 98% center;
}
.contact-form-box .form-group .form-input select option {
  color: var(--light-black);
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.common-col, .col-33 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

.col-33 {
  flex: 0 0 33.33%;
  max-width: 0 0 33.33%;
}
@media (max-width: 991px) {
  .col-33 {
    flex: 0 0 100%;
  }
}

.col-30 {
  width: 30%;
}
@media (max-width: 991px) {
  .col-30 {
    width: 100%;
  }
}

.col-70 {
  width: 70%;
}
@media (max-width: 991px) {
  .col-70 {
    width: 100%;
  }
}

.col-60 {
  width: 60%;
}
@media (max-width: 991px) {
  .col-60 {
    width: 100%;
  }
}

.col-40 {
  width: 40%;
}
@media (max-width: 991px) {
  .col-40 {
    width: 100%;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: var(--font-bold-weight);
  color: var(--mild-black);
  font-family: var(--font-bold);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

label {
  font-family: var(--font-bold);
}

.heading-one {
  font-size: 42px;
  line-height: 52px;
  font-family: var(--font-bold);
  font-weight: var(--font-bold-weight);
  line-height: 1;
}
@media (max-width: 991px) {
  .heading-one {
    font-size: 22px;
    line-height: 30px;
  }
}
@media (max-width: 991px) and (max-width: 991px) {
  .heading-one {
    font-size: 22px;
  }
}

.heading-red {
  font-size: 40px;
  line-height: 50px;
  font-weight: var(--font-regular-weight);
}
@media (max-width: 991px) {
  .heading-red {
    font-size: 24px;
    line-height: 38px;
  }
}
.heading-red {
  font-family: var(--font-bold);
  font-weight: var(--font-bold-weight);
  text-transform: unset;
  margin-bottom: 10px;
}

.heading-red span {
  font-family: var(--font-regular);
  font-weight: var(--font-regular-weight);
  color: var(--red);
}

.heading-two {
  font-size: 22px;
  line-height: 30px;
}
@media (max-width: 991px) {
  .heading-two {
    font-size: 22px;
  }
}
.heading-two {
  font-family: var(--font-bold);
  font-weight: var(--font-bold-weight);
  margin-bottom: 20px;
}

.heading-three {
  font-size: 20px;
  line-height: 26px;
  font-family: var(--font-bold);
  font-weight: var(--font-bold-weight);
  margin-bottom: 20px;
}

.heading-four {
  font-size: 24px;
  line-height: 38px;
  font-family: var(--font-bold);
  font-weight: var(--font-bold-weight);
}
@media (max-width: 991px) {
  .heading-four {
    font-size: 16px;
    line-height: 22px;
    font-weight: var(--font-regular-weight);
  }
}

.heading-six {
  font-size: 22px;
  line-height: 30px;
}
@media (max-width: 991px) {
  .heading-six {
    font-size: 22px;
  }
}
.heading-six {
  font-family: var(--font-bold);
  font-weight: var(--font-bold-weight);
}

p,
.description {
  font-family: var(--font-regular);
  font-weight: var(--font-regular-weight);
}

.text-center {
  text-align: center;
}

.text-transform {
  text-transform: uppercase;
}

.tableFont {
  font-size: 16px;
  line-height: 22px;
  font-weight: var(--font-regular-weight);
  font-family: var(--font-bold);
  color: var(--dark-black);
}

@font-face {
  font-family: "HermesFB";
  src: url("../../assets/fonts/HermesFB-Thin.eot");
  src: url("../../assets/fonts/HermesFB-Thin.eot?#iefix") format("embedded-opentype"), url("../../assets/fonts/HermesFB-Thin.woff2") format("woff2"), url("../../assets/fonts/HermesFB-Thin.woff") format("woff"), url("../../assets/fonts/HermesFB-Thin.ttf") format("truetype"), url("../../assets/fonts/HermesFB-Thin.svg#HermesFB-Thin") format("svg");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "HermesFB";
  src: url("../../assets/fonts/HermesFB-Regular.eot");
  src: url("../../assets/fonts/HermesFB-Regular.eot?#iefix") format("embedded-opentype"), url("../../assets/fonts/HermesFB-Regular.woff2") format("woff2"), url("../../assets/fonts/HermesFB-Regular.woff") format("woff"), url("../../assets/fonts/HermesFB-Regular.ttf") format("truetype"), url("../../assets/fonts/HermesFB-Regular.svg#HermesFB-Regular") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "HermesFB";
  src: url("../../assets/fonts/HermesFB-ThinItalic.eot");
  src: url("../../assets/fonts/HermesFB-ThinItalic.eot?#iefix") format("embedded-opentype"), url("../../assets/fonts/HermesFB-ThinItalic.woff2") format("woff2"), url("../../assets/fonts/HermesFB-ThinItalic.woff") format("woff"), url("../../assets/fonts/HermesFB-ThinItalic.ttf") format("truetype"), url("../../assets/fonts/HermesFB-ThinItalic.svg#HermesFB-ThinItalic") format("svg");
  font-weight: 100;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "HermesFB";
  src: url("../../assets/fonts/HermesFB-BoldItalic.eot");
  src: url("../../assets/fonts/HermesFB-BoldItalic.eot?#iefix") format("embedded-opentype"), url("../../assets/fonts/HermesFB-BoldItalic.woff2") format("woff2"), url("../../assets/fonts/HermesFB-BoldItalic.woff") format("woff"), url("../../assets/fonts/HermesFB-BoldItalic.ttf") format("truetype"), url("../../assets/fonts/HermesFB-BoldItalic.svg#HermesFB-BoldItalic") format("svg");
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "HermesFB";
  src: url("../../assets/fonts/HermesFB-Bold.eot");
  src: url("../../assets/fonts/HermesFB-Bold.eot?#iefix") format("embedded-opentype"), url("../../assets/fonts/HermesFB-Bold.woff2") format("woff2"), url("../../assets/fonts/HermesFB-Bold.woff") format("woff"), url("../../assets/fonts/HermesFB-Bold.ttf") format("truetype"), url("../../assets/fonts/HermesFB-Bold.svg#HermesFB-Bold") format("svg");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "HermesFB";
  src: url("../../assets/fonts/HermesFB-BlackItalic.eot");
  src: url("../../assets/fonts/HermesFB-BlackItalic.eot?#iefix") format("embedded-opentype"), url("../../assets/fonts/HermesFB-BlackItalic.woff2") format("woff2"), url("../../assets/fonts/HermesFB-BlackItalic.woff") format("woff"), url("../../assets/fonts/HermesFB-BlackItalic.ttf") format("truetype"), url("../../assets/fonts/HermesFB-BlackItalic.svg#HermesFB-BlackItalic") format("svg");
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "HermesFB RegularItalic";
  src: url("../../assets/fonts/HermesFB-RegularItalic.eot");
  src: url("../../assets/fonts/HermesFB-RegularItalic.eot?#iefix") format("embedded-opentype"), url("../../assets/fonts/HermesFB-RegularItalic.woff2") format("woff2"), url("../../assets/fonts/HermesFB-RegularItalic.woff") format("woff"), url("../../assets/fonts/HermesFB-RegularItalic.ttf") format("truetype"), url("../../assets/fonts/HermesFB-RegularItalic.svg#HermesFB-RegularItalic") format("svg");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "HermesFB";
  src: url("../../assets/fonts/HermesFB-Black.eot");
  src: url("../../assets/fonts/HermesFB-Black.eot?#iefix") format("embedded-opentype"), url("../../assets/fonts/HermesFB-Black.woff2") format("woff2"), url("../../assets/fonts/HermesFB-Black.woff") format("woff"), url("../../assets/fonts/HermesFB-Black.ttf") format("truetype"), url("../../assets/fonts/HermesFB-Black.svg#HermesFB-Black") format("svg");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
.footerSection {
  background-color: var(--dark-black);
  margin-top: 100px;
}
.footerSection .footerBorder {
  border-bottom: 1px solid var(--mild-black);
}
.footerSection .footerBorder .footerTop {
  border-bottom: 1px solid var(--mild-black);
}
.footerSection .contactDetails {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
}
.footerSection .contactDetails .locationDetails {
  background-color: var(--mild-black);
}
.footerSection .contactDetails .details {
  flex: 0 0 25%;
  border-right: 1px solid var(--mild-black);
  align-items: center;
  padding: 35px 15px 35px 0;
  max-width: 25%;
}
.footerSection .contactDetails .details .childDetails {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}
.footerSection .contactDetails .details:first-child .childDetails {
  padding-left: 0;
  justify-content: start;
}
.footerSection .contactDetails .details img {
  display: block;
}
.footerSection .contactDetails .details span {
  display: block;
  position: relative;
  font-family: var(--font-bold);
  font-weight: 700;
  font-size: 24px;
  color: var(--white);
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: uppercase;
}
.footerSection .contactDetails .details span a {
  font-family: var(--font-bold);
  font-weight: 700;
  font-size: 24px;
  color: var(--white);
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: uppercase;
}
.footerSection .contactDetails .details:last-child {
  border-right: none;
}
.footerSection .contactDetails::before {
  content: "";
  background: #363636;
  height: 100%;
  width: 100%;
  position: absolute;
  left: -100%;
  top: 0;
  border-bottom: 1px solid #363636;
}
.footerSection .menuItemsList {
  display: flex;
  align-items: start;
  gap: 70px;
  padding-top: 85px;
  padding-left: 21px;
  padding-right: 21px;
}
.footerSection .menuItemsList .col-25 .menuItemsNames {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}
.footerSection .menuItemsList .col-25 .menuItemsNames span {
  display: block;
  font-family: var(--font-bold);
  font-weight: 700;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0%;
  color: var(--white);
}
.footerSection .menuItemsList .col-25 .menuItemsNames ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footerSection .menuItemsList .col-25 .menuItemsNames ul li a {
  display: inline;
  font-family: var(--font-regular);
  font-weight: 400;
  font-size: 16px;
  color: var(--white);
  line-height: 100%;
  letter-spacing: 0%;
  background: linear-gradient(90deg, #d62317, #d62317, 50%, #fff 50%);
  color: var(--mild-black);
  text-decoration: none;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-size: 200% 100%;
  background-position: 100%;
  transition: background-position 0.4s ease;
}
.footerSection .menuItemsList .col-25 .menuItemsNames ul li a:hover {
  background-position: 0%;
}
.footerSection .menuItemsList .col-25 .menuItemsNames::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  height: 270px;
  border: 0.2px solid var(--mild-black);
}
.footerSection .menuItemsList .col-25:last-child {
  border-right: none;
}
.footerSection .connectWithUs {
  padding: 40px 20px 25px 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footerSection .connectWithUs span {
  display: block;
  font-family: var(--font-bold);
  font-weight: 700;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0%;
  color: var(--white);
}
.footerSection .connectWithUs .socialMediaIcons {
  display: flex;
  gap: 20px;
}
.footerSection .connectWithUs .socialMediaIcons a {
  text-decoration: none;
}
.footerSection .copyRightItems {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background-color: var(--white);
}
.footerSection .copyRightItems .vechicleImg img {
  height: 52px;
}
.footerSection .copyRightItems .copyrightContent p {
  font-family: var(--font-bold);
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0%;
  color: var(--mild-black);
  background: linear-gradient(90deg, #d62317, #d62317, 50%, #363636 50%);
  color: var(--mild-black);
  text-decoration: none;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-size: 200% 100%;
  background-position: 100%;
  transition: background-position 0.4s ease;
}
.footerSection .copyRightItems .copyrightContent p:hover {
  background-position: 0%;
}
.footerSection .copyRightItems .policyList {
  display: flex;
  gap: 10px;
}
.footerSection .copyRightItems .policyList span {
  display: flex;
  gap: 5px;
  justify-content: center;
  align-items: center;
  position: relative;
}
.footerSection .copyRightItems .policyList span a {
  font-family: var(--font-bold);
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0%;
  color: var(--mild-black);
  transition: all 0.5s ease-in-out;
  background: linear-gradient(90deg, #d62317, #d62317, 50%, #363636 50%);
  color: var(--mild-black);
  text-decoration: none;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-size: 200% 100%;
  background-position: 100%;
  transition: background-position 0.4s ease;
}
.footerSection .copyRightItems .policyList span a:hover {
  background-position: 0%;
}
.footerSection .copyRightItems .policyList span p {
  padding-right: 5px;
}
.footerSection .copyRightItems .policyList span::after {
  content: "";
  height: 100%;
  position: absolute;
  right: -5px;
  border: 1px solid var(--mild-black);
}
.footerSection .copyRightItems .policyList span:last-child::after {
  content: unset;
}
.footerSection .footerMenuMobile {
  display: none;
}
@media (max-width: 991px) {
  .footerSection {
    margin-top: 40px;
  }
  .footerSection .wrapperContainer {
    max-width: 100%;
    margin: unset;
  }
  .footerSection .wrapperContainer .contactDetails {
    width: 100%;
    display: block;
  }
  .footerSection .wrapperContainer .contactDetails .details {
    max-width: 100%;
    padding: 30px 15px 30px 0;
  }
  .footerSection .wrapperContainer .contactDetails .details:first-child .childDetails {
    justify-content: center;
  }
  .footerSection .wrapperContainer .contactDetails .details span {
    font-size: 18px;
    line-height: 28px;
  }
  .footerSection .wrapperContainer .contactDetails .details span a {
    font-size: 18px;
    line-height: 28px;
  }
  .footerSection .wrapperContainer .menuItemsList {
    display: none;
  }
  .footerSection .wrapperContainer .connectWithUs {
    display: none;
  }
  .footerSection .wrapperContainer .footerMenuMobile {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: calc(100% - 33px);
    margin: auto;
    padding: 23px 0;
  }
  .footerSection .wrapperContainer .footerMenuMobile .mobileMenuList .mobileList {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  .footerSection .wrapperContainer .footerMenuMobile .mobileMenuList .mobileList li {
    position: relative;
    font-size: 24px;
    line-height: 38px;
    color: var(--white);
    font-family: var(--font-bold);
    font-weight: var(--font-bold-weight);
  }
  .footerSection .wrapperContainer .footerMenuMobile .mobileMenuList .mobileList li a {
    font-size: 24px;
    line-height: 38px;
    color: var(--white);
    font-family: var(--font-bold);
    font-weight: var(--font-bold-weight);
  }
  .footerSection .wrapperContainer .footerMenuMobile .mobileMenuList .mobileList li img {
    position: absolute;
    right: 0;
    height: 24px;
    width: 26px;
    top: 8px;
    transition: all 0.3s ease-in-out;
  }
  .footerSection .wrapperContainer .footerMenuMobile .mobileMenuList .mobileList li .mobileDropDown {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
  }
  .footerSection .wrapperContainer .footerMenuMobile .mobileMenuList .mobileList li .mobileDropDown li a {
    font-size: 24px;
    line-height: 38px;
    color: var(--white);
    font-family: var(--font-bold);
    font-weight: var(--font-bold-weight);
  }
  .footerSection .wrapperContainer .footerMenuMobile .connectMobile {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .footerSection .wrapperContainer .footerMenuMobile .connectMobile span {
    display: block;
    font-size: 20px;
    line-height: 26px;
    color: var(--white);
    font-family: var(--font-bold);
    font-weight: var(--font-bold-weight);
  }
  .footerSection .wrapperContainer .footerMenuMobile .connectMobile .socialMobileIcons {
    display: flex;
    gap: 30px;
  }
  .footerSection .copyRightItems {
    flex-wrap: wrap;
    justify-content: center;
    padding: 23px 0;
  }
  .footerSection .copyRightItems .copyrightContent {
    order: 1;
    padding-top: 7px;
  }
  .footerSection .copyRightItems .policyList {
    gap: 10px;
    width: 100%;
    justify-content: center;
  }
  .footerSection .copyRightItems .policyList span a {
    font-size: 12px;
  }
}

header {
  position: fixed;
  left: 0;
  top: 0;
  height: 73px;
  width: 100%;
  z-index: 150;
  backdrop-filter: blur(10px);
  background: hsla(0, 0%, 100%, 0.5);
  transition: all 0.5s ease;
}
header .wrapperContainer .headerDiv {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}
header .wrapperContainer .headerDiv .eicherLogoImg {
  padding: 20px 0;
  width: 160px;
}
header .wrapperContainer .headerDiv .eicherLogoImg img {
  max-width: 100%;
  height: auto;
}
@media (max-width: 991px) {
  header .wrapperContainer .headerDiv .eicherLogoImg {
    width: 100%;
  }
  header .wrapperContainer .headerDiv .eicherLogoImg img {
    height: 40px;
  }
}
@media (max-width: 991px) {
  header .wrapperContainer .headerDiv {
    justify-content: space-between;
    gap: 24px;
  }
}
header .wrapperContainer .col-60 {
  flex: 1 1 auto;
  justify-content: center;
}
header .wrapperContainer .col-60 .listItems {
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: center;
}
header .wrapperContainer .col-60 .listItems .dropDown {
  list-style: none;
  position: relative;
  line-height: 67px;
}
header .wrapperContainer .col-60 .listItems .dropDown a {
  font-family: "regular";
  display: flex;
  gap: 4px;
  align-items: center;
  font-weight: 400;
  font-size: 14px;
  line-height: unset;
  letter-spacing: 4%;
  text-transform: uppercase;
  background: linear-gradient(90deg, #d62317, #d62317, 50%, #363636 50%);
  color: var(--mild-black);
  text-decoration: none;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-size: 200% 100%;
  background-position: 100%;
  transition: background-position 0.4s ease;
}
header .wrapperContainer .col-60 .listItems .dropDown a:hover {
  background-position: 0%;
}
header .wrapperContainer .col-60 .listItems .dropDown a img {
  transition: transform 0.5s ease;
}
header .wrapperContainer .col-60 .listItems .dropDown .drop-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 250px;
  z-index: 10;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  backdrop-filter: blur(42px);
  -webkit-backdrop-filter: blur(42px);
  background: var(--white);
  box-shadow: 0 2px 6px 1px rgba(0, 0, 0, 0.12);
  transition: all ease 0.5s;
}
header .wrapperContainer .col-60 .listItems .dropDown .drop-menu ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  padding: 15px 0;
}
header .wrapperContainer .col-60 .listItems .dropDown .drop-menu ul li {
  display: flex;
  align-items: center;
  list-style-type: none;
  width: 100%;
  font-family: "regular";
  font-weight: 400;
  color: #000;
  padding: 5px 15px;
  margin: 0;
  line-height: 26px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.56px;
}
header .wrapperContainer .col-60 .listItems .dropDown .drop-menu ul li a {
  font-size: 14px;
  width: 100%;
  display: block;
  background: linear-gradient(90deg, #d62317, #d62317, 50%, #363636 50%);
  color: var(--mild-black);
  text-decoration: none;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-size: 200% 100%;
  background-position: 100%;
  transition: background-position 0.4s ease;
}
header .wrapperContainer .col-60 .listItems .dropDown .drop-menu ul li a:hover {
  background-position: 0%;
}
header .wrapperContainer .col-60 .listItems .dropDown .drop-menu ul li img {
  rotate: 270deg;
}
header .wrapperContainer .col-60 .listItems .dropDown .drop-menu ul li .insideDropDown {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 10%;
  left: 100%;
  right: auto;
  min-width: 250px;
  backdrop-filter: blur(42px);
  -webkit-backdrop-filter: blur(42px);
  background: #fff;
  box-shadow: 0 2px 6px 1px rgba(0, 0, 0, 0.12);
  padding: 15px 0;
  transition: all 0.3s ease-in-out;
  transform: translateX(20px);
}
header .wrapperContainer .col-60 .listItems .dropDown .drop-menu ul li .insideDropDown li {
  display: block;
  width: 100%;
  font-family: "regular";
  font-weight: 400;
  color: #000;
  padding: 5px 15px;
  margin: 0;
  line-height: 26px;
}
header .wrapperContainer .col-60 .listItems .dropDown .drop-menu ul li .insideDropDown li a {
  background: linear-gradient(90deg, #d62317, #d62317, 50%, #363636 50%);
  color: var(--mild-black);
  text-decoration: none;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-size: 200% 100%;
  background-position: 100%;
  transition: background-position 0.4s ease;
}
header .wrapperContainer .col-60 .listItems .dropDown .drop-menu ul li .insideDropDown li a:hover {
  background-position: 0%;
}
header .wrapperContainer .col-60 .listItems .dropDown .drop-menu ul li:hover .insideDropDown {
  visibility: visible;
  opacity: 1;
  transform: translateX(0);
}
header .wrapperContainer .col-60 .listItems .dropDown:hover > a img {
  transform: rotate(180deg);
}
header .wrapperContainer .col-60 .listItems .dropDown:hover .drop-menu {
  max-height: 500px;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
@media (max-width: 991px) {
  header .wrapperContainer .col-60 {
    display: none;
  }
}
header .wrapperContainer .col-10 .hamburgerIcon {
  display: none;
}
@media (max-width: 991px) {
  header .wrapperContainer .col-10 .hamburgerIcon {
    display: block;
  }
}
@media (max-width: 991px) {
  header .wrapperContainer .col-10 {
    width: 10%;
  }
}
header .wrapperContainer .searchIcon {
  cursor: pointer;
}

.mobile-menu {
  width: 100%;
  position: fixed;
  right: 0;
  top: 0;
  height: 100%;
  overflow: hidden;
  z-index: 1000;
  background: hsla(0, 0%, 100%, 0);
  display: none;
}
.mobile-menu .right-side {
  width: 350px;
  padding: 79px 0;
  height: 100%;
  background: #fff;
  position: absolute;
  top: 0;
  right: 0;
  overflow-y: auto;
}
.mobile-menu .right-side .closebt {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 16px;
  height: 21px;
  overflow: hidden;
  cursor: pointer;
}
.mobile-menu .right-side ul {
  max-width: calc(100% - 54px);
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.mobile-menu .right-side ul .mobilesubmenu {
  position: relative;
}
.mobile-menu .right-side ul .mobilesubmenu::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  background-image: url("../../assets/img/chevrondown.svg");
  background-repeat: no-repeat;
  background-position: center center;
  width: 18px;
  height: 18px;
  transform: rotate(0deg);
  transition: all 0.3s ease-in-out;
}
.mobile-menu .right-side ul .mobilesubmenu .headermobileDropDown {
  max-width: 100%;
  opacity: 0;
  max-height: 0;
  margin-top: 0;
  padding-top: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, opacity 0.25s ease, padding-top 0.35s ease;
}
.mobile-menu .right-side ul .mobilesubmenu .headermobileDropDown li {
  position: relative;
}
.mobile-menu .right-side ul .mobilesubmenu .headermobileDropDown li::after {
  content: none;
}
.mobile-menu .right-side ul .mobilesubmenu .headermobileDropDown li:last-child {
  border-bottom: none;
}
.mobile-menu .right-side ul .mobilesubmenu .headermobileDropDown li .nestedmobileDropDown {
  max-width: 100%;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  margin-top: 0;
  padding-top: 0;
  transition: max-height 0.35s ease, opacity 0.25s ease, padding-top 0.35s ease;
}
.mobile-menu .right-side ul .mobilesubmenu .headermobileDropDown li .nestedmobileDropDown li::after {
  content: none;
}
.mobile-menu .right-side ul .mobilesubmenu .headermobileDropDown .nestedListOpen .nestedmobileDropDown {
  opacity: 1;
  max-height: 500px;
  padding-top: 10px;
}
.mobile-menu .right-side ul .mobilesubmenu .headermobileDropDown .nestedListOpen::after {
  transform: rotate(180deg);
}
.mobile-menu .right-side ul .mobilesubmenu.dropDownOpen::after {
  transform: rotate(180deg);
}
.mobile-menu .right-side ul .mobilesubmenu.dropDownOpen .headermobileDropDown {
  opacity: 1;
  max-height: 500px;
  padding-top: 20px;
}
.mobile-menu .right-side ul li {
  border-bottom: 1px solid #d3d3d3;
  padding-bottom: 10px;
}
.mobile-menu .right-side ul li a {
  font-size: 14px;
  line-height: 22px;
  font-weight: var(--font-regular-weight);
  font-family: var(--font-bold);
  text-transform: uppercase;
  font-weight: var(--font-regular-weight);
}

.mobile-menu.menuopen {
  display: block;
}

.videoSwiperSection {
  position: relative;
  display: block;
}
.videoSwiperSection .vecsBanner {
  position: relative;
  padding-top: 43.2835820896%;
}
.videoSwiperSection .vecsBanner img {
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.videoSwiperSection .vecsContent-pin {
  position: relative;
  width: 100%;
}
.videoSwiperSection .vecsContent {
  position: sticky;
  top: 120px;
  padding: 40px 0;
  z-index: 1;
  background: transparent;
  pointer-events: none;
}
.videoSwiperSection .vecsContent p {
  font-size: 32px;
  line-height: 40px;
}
@media (max-width: 991px) {
  .videoSwiperSection .vecsContent p {
    font-size: 22px;
  }
}
.videoSwiperSection .vecsContent p {
  color: var(--medium-gray);
  text-align: center;
  margin: 0;
}
.videoSwiperSection .vecsContent p + p {
  padding-top: 39px;
}
.videoSwiperSection .vecsContent p .vecs-word {
  color: rgba(144, 144, 144, 0.3803921569);
  transition: color 0.12s linear;
}
.videoSwiperSection .vecsContent p .vecs-word.is-filled {
  color: var(--mild-black);
}
@media (max-width: 991px) {
  .videoSwiperSection .homebanner_img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .videoSwiperSection .wrapperContainer .vecsContent {
    top: 90px;
    padding: 24px 0;
  }
  .videoSwiperSection .wrapperContainer .vecsContent p {
    font-size: 16px;
    line-height: 22px;
    font-weight: var(--font-regular-weight);
  }
  .videoSwiperSection .wrapperContainer .vecsContent p + p {
    padding-top: 20px;
  }
  .videoSwiperSection .wrapperContainer .videoSwiper {
    margin-left: 20px;
  }
  .videoSwiperSection .wrapperContainer .videoSwiper .swiper-button-next {
    display: none;
  }
  .videoSwiperSection .wrapperContainer .videoSwiper .swiper-button-prev {
    display: none;
  }
  .videoSwiperSection .wrapperContainer .videoSwiper .bannerContent {
    left: 18px;
    bottom: 200px;
  }
  .videoSwiperSection .wrapperContainer .videoSwiper .bannerContent .contentHeading h1 {
    font-size: 24px;
    line-height: 38px;
  }
  .videoSwiperSection .wrapperContainer .videoSwiper .bannerContent .contentPara p {
    font-size: 14px;
    line-height: 22px;
    font-weight: var(--font-regular-weight);
    max-width: 288px;
  }
  .videoSwiperSection .wrapperContainer .videoSwiper .swiper-wrapper .swiper-slide {
    height: 532px;
  }
  .videoSwiperSection .wrapperContainer .videoSwiper .swiper-pagination {
    text-align: start;
    max-width: 100px;
    left: 80px;
    bottom: 70px;
  }
  .videoSwiperSection .wrapperContainer .videoSwiper .swiper-pagination .swiper-pagination-bullet {
    background-color: var(--white);
  }
  .videoSwiperSection .wrapperContainer .videoSwiper .swiper-pagination .swiper-pagination-bullet-active {
    width: 50px;
    height: 10px;
    border-radius: 100px;
    transition: width 0.3s ease;
  }
}
@media (max-width: 991px) and (max-width: 991px) {
  .videoSwiperSection .wrapperContainer .videoSwiper .swiper-pagination {
    max-width: 100px;
    left: 50%;
    transform: translateX(-50%);
  }
  .videoSwiperSection .wrapperContainer .videoSwiper .swiper-pagination .swiper-pagination-bullet {
    background-color: var(--mild-black);
  }
}

.whoSection {
  box-shadow: 0 24px 40px rgba(0, 0, 0, 0.08);
  padding-bottom: 100px;
}
.whoSection .wrapperContainer .sectionRow {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.whoSection .wrapperContainer .sectionRow .whoContent {
  text-align: center;
  display: flex;
  flex-direction: column;
  max-width: 1000px;
  margin: auto;
  position: relative;
  z-index: 2;
}
.whoSection .wrapperContainer .sectionRow .whoContent[data-aos] {
  opacity: 1;
  transform: none;
  visibility: visible;
}
.whoSection .wrapperContainer .sectionRow .whoContent .heading-one {
  color: var(--mild-black);
  -webkit-text-fill-color: var(--mild-black);
  line-height: 1;
  margin-bottom: 0;
}
.whoSection .wrapperContainer .sectionRow .whoContent p {
  max-width: 440px;
  margin: auto;
  color: var(--mild-black);
  font-size: 18px;
}
.whoSection .wrapperContainer .sectionRow .OurServicesGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}
.whoSection .wrapperContainer .sectionRow .OurServicesGrid .serviceCard {
  position: relative;
  display: block;
  overflow: hidden;
  text-decoration: none;
  border-radius: 20px;
  transition: all 0.4s ease-in-out;
}
.whoSection .wrapperContainer .sectionRow .OurServicesGrid .serviceCard:hover .watchVideoImg {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}
.whoSection .wrapperContainer .sectionRow .OurServicesGrid .serviceCard:hover::before {
  opacity: 1;
  visibility: visible;
}
.whoSection .wrapperContainer .sectionRow .OurServicesGrid .serviceCard::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 2;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease-in-out, visibility 0.4s ease-in-out;
  pointer-events: none;
}
.whoSection .wrapperContainer .sectionRow .OurServicesGrid .serviceCard::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 70%;
  border-radius: 0 0 20px 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.45) 40%, rgba(0, 0, 0, 0) 100%);
  z-index: 2;
  pointer-events: none;
}
.whoSection .wrapperContainer .sectionRow .OurServicesGrid .serviceCard img {
  border-radius: 20px;
  display: block;
  width: 100%;
}
.whoSection .wrapperContainer .sectionRow .OurServicesGrid .serviceCard .watchVideoImg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease-in-out, visibility 0.4s ease-in-out, transform 0.4s ease-in-out;
}
.whoSection .wrapperContainer .sectionRow .OurServicesGrid .serviceCard .watchVideoImg img {
  height: 80px;
  width: 80px;
  transition: all 0.4s ease-in-out;
}
.whoSection .wrapperContainer .sectionRow .OurServicesGrid .serviceCard .serviceCardContent {
  position: absolute;
  bottom: 17px;
  left: 17px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.whoSection .wrapperContainer .sectionRow .OurServicesGrid .serviceCard .serviceCardContent span {
  font-size: 16px;
  line-height: 22px;
  font-weight: var(--font-regular-weight);
  color: var(--white);
  display: block;
  font-weight: var(--font-bold-weight);
}
.whoSection .wrapperContainer .sectionRow .OurServicesGrid .serviceCard .serviceCardContent p {
  font-size: 14px;
  line-height: 22px;
  font-weight: var(--font-regular-weight);
  color: var(--white);
}
.whoSection .wrapperContainer .sectionRow .OurServicesGrid .serviceCard .serviceCardContent .exploreLink {
  font-size: 14px;
  line-height: 22px;
  font-weight: var(--font-regular-weight);
  color: var(--white);
}
@media (max-width: 991px) {
  .whoSection {
    margin: 0 0 40px 0;
  }
  .whoSection .wrapperContainer .sectionRow .OurServicesGrid {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
  .whoSection .wrapperContainer .sectionRow .whoContent p {
    font-size: 16px;
    line-height: 22px;
    font-weight: var(--font-regular-weight);
  }
  .whoSection .wrapperContainer .sectionRow .whoImgCollection {
    flex-wrap: wrap;
    padding-right: 0;
  }
  .whoSection .wrapperContainer .sectionRow .whoImgCollection .col-33 .collectionCards {
    padding: 40px 30px 40px 30px;
  }
}

.ourLegacySection {
  padding: 80px 0;
}
.ourLegacySection .wrapperRow {
  display: flex;
  gap: 36px;
}
.ourLegacySection .wrapperRow .legacyContent {
  padding-top: 22px;
}
.ourLegacySection .wrapperRow .legacyContent p {
  max-width: 760px;
  margin-top: 25px;
  font-size: 18px;
  line-height: 28px;
}
.ourLegacySection .wrapperRow .legacyListGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 50px;
}
.ourLegacySection .wrapperRow .legacyListGrid .legacyListItem {
  padding: 0 40px;
  text-align: center;
  position: relative;
}
.ourLegacySection .wrapperRow .legacyListGrid .legacyListItem::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  border: 1px solid var(--dark-black);
}
.ourLegacySection .wrapperRow .legacyListGrid .legacyListItem:first-of-type::after {
  display: none;
}
.ourLegacySection .wrapperRow .legacyListGrid .legacyListItem span {
  font-size: 32px;
  line-height: 40px;
}
@media (max-width: 991px) {
  .ourLegacySection .wrapperRow .legacyListGrid .legacyListItem span {
    font-size: 22px;
  }
}
.ourLegacySection .wrapperRow .legacyListGrid .legacyListItem span {
  color: #161616;
  font-weight: var(--font-bold-weight);
  white-space: nowrap;
}
.ourLegacySection .wrapperRow .legacyListGrid .legacyListItem .legacyCounter {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
}
.ourLegacySection .wrapperRow .legacyListGrid .legacyListItem .legacyCount {
  display: inline-block;
  font-variant-numeric: tabular-nums;
}
.ourLegacySection .wrapperRow .legacyListGrid .legacyListItem .legacySign {
  color: var(--red);
}
.ourLegacySection .wrapperRow .legacyListGrid .legacyListItem p {
  font-size: 14px;
  line-height: 22px;
  font-weight: var(--font-regular-weight);
  margin-top: 3px;
}
.ourLegacySection .wrapperRow .legacyListGrid .legacyListItem:first-of-type {
  padding-left: 0;
}
@media (max-width: 991px) {
  .ourLegacySection .wrapperRow {
    flex-direction: column;
    gap: 20px;
  }
  .ourLegacySection .wrapperRow .legacyListGrid {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
    margin-top: 20px;
  }
  .ourLegacySection .wrapperRow .legacyListGrid .legacyListItem {
    padding: 0;
    text-align: start;
  }
  .whoSection .ourLegacySection .wrapperRow .legacyListGrid .legacyListItem:first-of-type {
    padding-right: 0;
  }
  .ourLegacySection .wrapperRow .legacyListGrid .legacyListItem::after {
    display: none;
  }
}

@media (max-width: 992px) {
  .whoSection {
    padding-bottom: 50px;
    margin-top: 50px;
  }
  .ourLegacySection {
    padding: 50px 0;
  }
}
.bestWorldsSection {
  padding: 80px 0;
  box-shadow: 0 -24px 40px rgba(0, 0, 0, 0.08);
}
.bestWorldsSection .bestWorldsContent h4 {
  text-align: center;
}
.bestWorldsSection .bestWorldsContent p {
  font-size: 16px;
  line-height: 22px;
  font-weight: var(--font-regular-weight);
  color: var(--mild-black);
  max-width: 696px;
  margin: auto;
  text-align: center;
}
.bestWorldsSection .worldsCardGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding-top: 66px;
}
.bestWorldsSection .worldsCardGrid .worldCardItem {
  border: 1px solid var(--dark-black);
  border-radius: 20px;
}
.bestWorldsSection .worldsCardGrid .worldCardItem:nth-of-type(even) {
  background-color: var(--medium-light-gray);
}
.bestWorldsSection .worldsCardGrid .worldCardItem .worldCardContent {
  padding: 30px 27px;
  text-align: center;
}
.bestWorldsSection .worldsCardGrid .worldCardItem .worldCardContent .worldCardContentImg {
  text-align: center;
}
.bestWorldsSection .worldsCardGrid .worldCardItem .worldCardContent span {
  font-size: 18px;
  line-height: 28px;
  color: var(--dark-black);
  display: block;
  padding-top: 25px;
}
.bestWorldsSection .worldsCardGrid .worldCardItem .worldCardContent p {
  font-size: 16px;
  line-height: 22px;
  font-weight: var(--font-regular-weight);
  color: var(--dark-black);
  padding-top: 25px;
}
@media (max-width: 991px) {
  .bestWorldsSection {
    padding: 40px 0;
  }
  .bestWorldsSection .worldsCardGrid {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
    padding-top: 20px;
  }
}

.fleetManagementSection .fleetManagementContent {
  background-color: #f4f4f4;
  border-radius: 20px;
  text-align: center;
  padding-top: 86px;
  padding-bottom: 40px;
}
.fleetManagementSection .fleetManagementContent .fleetManagementContentHeading {
  max-width: 627px;
  margin: auto;
}
.fleetManagementSection .fleetManagementContent .fleetCtas {
  padding-top: 42px;
  gap: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.fleetManagementSection .fleetManagementContent .fleetCtas .btn-default, .fleetManagementSection .fleetManagementContent .fleetCtas .btn-white, .fleetManagementSection .fleetManagementContent .fleetCtas .btn-transparent {
  padding: 0px 32px;
  height: 51px;
  display: flex;
  align-items: center;
  font-size: 16px;
  line-height: 22px;
  font-weight: var(--font-regular-weight);
}
.fleetManagementSection .fleetManagementContent .fleetCtas .btn-default:nth-of-type(2), .fleetManagementSection .fleetManagementContent .fleetCtas .btn-white:nth-of-type(2), .fleetManagementSection .fleetManagementContent .fleetCtas .btn-transparent:nth-of-type(2) {
  color: var(--dark-black);
  border: 1px solid var(--dark-black);
}
.fleetManagementSection .fleetManagementContent .fleetCtas .btn-default:nth-of-type(2)::after, .fleetManagementSection .fleetManagementContent .fleetCtas .btn-white:nth-of-type(2)::after, .fleetManagementSection .fleetManagementContent .fleetCtas .btn-transparent:nth-of-type(2)::after {
  background-color: transparent;
}
.fleetManagementSection .fleetManagementContent .fleetCtas .btn-default:nth-of-type(2):hover, .fleetManagementSection .fleetManagementContent .fleetCtas .btn-white:nth-of-type(2):hover, .fleetManagementSection .fleetManagementContent .fleetCtas .btn-transparent:nth-of-type(2):hover {
  color: var(--white);
}
@media (max-width: 991px) {
  .fleetManagementSection .fleetManagementContent .fleetCtas {
    flex-direction: column;
  }
}
@media (max-width: 991px) {
  .fleetManagementSection .fleetManagementContent {
    max-width: 500px;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 40px;
    padding-top: 40px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
  }
  .fleetManagementSection .colorfulStrips {
    padding-bottom: 0;
  }
}

.primaryFocusSection {
  padding: 80px 0;
}
.primaryFocusSection .CommonVecsbanner {
  position: relative;
  height: 606px;
}
.primaryFocusSection .CommonVecsbanner img {
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
@media (max-width: 991px) {
  .primaryFocusSection .CommonVecsbanner {
    height: 72vh;
  }
  .primaryFocusSection .CommonVecsbanner img {
    -o-object-fit: contain;
       object-fit: contain;
    height: auto;
  }
}
.primaryFocusSection .primaryGrid {
  display: grid;
  grid-template-columns: 1fr 0.5fr;
  gap: 32px;
  align-items: center;
}
.primaryFocusSection .primaryGrid .primaryGridItem:first-of-type {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 21px;
}
.primaryFocusSection .primaryGrid .primaryGridItem .primaryCards {
  width: 100%;
  min-height: 312px;
  background-color: var(--light-gray);
  border-radius: 17px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.primaryFocusSection .primaryGrid .primaryGridItem .primaryCards .colorfulStrips {
  padding-bottom: 13px;
}
.primaryFocusSection .primaryGrid .primaryGridItem .primaryCards .primaryCardContent {
  padding: 29px 26px 107px 26px;
}
.primaryFocusSection .primaryGrid .primaryGridItem span {
  font-size: 42px;
  line-height: 52px;
  padding-bottom: 19px;
  display: block;
  text-transform: uppercase;
  font-weight: var(--font-bold-weight);
  letter-spacing: 4%;
}
@media (max-width: 991px) {
  .primaryFocusSection {
    padding: 48px 0;
  }
  .primaryFocusSection .primaryGrid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .primaryFocusSection .primaryGrid .primaryGridItem:first-of-type {
    grid-template-columns: repeat(1, 1fr);
  }
  .primaryFocusSection .primaryGrid .primaryGridItem span {
    font-size: 24px;
    line-height: 38px;
  }
  .primaryFocusSection .primaryGrid .primaryGridItem .primaryCards .primaryCardContent {
    padding: 29px 26px 50px 26px;
  }
}

.ourMissionVissionSection .ourvissionMissionGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 68px;
}
.ourMissionVissionSection .ourvissionMissionGrid .vissionMissionGridItem {
  border-radius: 10px;
  position: relative;
}
.ourMissionVissionSection .ourvissionMissionGrid .vissionMissionGridItem .vissionMissionCard {
  position: absolute;
  bottom: 12px;
  left: 32px;
  right: 32px;
  background-color: var(--white);
  border-radius: 9px;
}
.ourMissionVissionSection .ourvissionMissionGrid .vissionMissionGridItem .vissionMissionCard .vissionMissionCardContent {
  padding: 24px 40px 24px 24px;
}
.ourMissionVissionSection .ourvissionMissionGrid .vissionMissionGridItem .vissionMissionCard .vissionMissionCardContent span {
  font-size: 22px;
  line-height: 30px;
}
@media (max-width: 991px) {
  .ourMissionVissionSection .ourvissionMissionGrid .vissionMissionGridItem .vissionMissionCard .vissionMissionCardContent span {
    font-size: 22px;
  }
}
.ourMissionVissionSection .ourvissionMissionGrid .vissionMissionGridItem .vissionMissionCard .vissionMissionCardContent span {
  font-family: "bold";
  font-weight: 700;
  letter-spacing: 4%;
  color: var(--mild-black);
}
.ourMissionVissionSection .ourvissionMissionGrid .vissionMissionGridItem .vissionMissionCard .vissionMissionCardContent p {
  font-size: 15px;
  line-height: 25px;
  padding-top: 5px;
}
.ourMissionVissionSection .ourvissionMissionGrid .vissionMissionGridItem .vissionMissionImg {
  position: relative;
  padding-top: 66.6172106825%;
}
.ourMissionVissionSection .ourvissionMissionGrid .vissionMissionGridItem .vissionMissionImg img {
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.ourMissionVissionSection .ourvissionMissionGrid .vissionMissionGridItem .vissionMissionImg img {
  border-radius: 10px;
}
@media (max-width: 991px) {
  .ourMissionVissionSection .ourvissionMissionGrid {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
  .ourMissionVissionSection .ourvissionMissionGrid .vissionMissionGridItem .vissionMissionCard {
    top: auto;
    left: 18px;
    right: 18px;
  }
  .ourMissionVissionSection .ourvissionMissionGrid .vissionMissionGridItem .vissionMissionCard .vissionMissionCardContent {
    padding: 20px;
  }
  .ourMissionVissionSection .ourvissionMissionGrid .vissionMissionGridItem .vissionMissionCard .vissionMissionCardContent span {
    font-size: 20px;
    line-height: 26px;
  }
  .ourMissionVissionSection .ourvissionMissionGrid .vissionMissionGridItem .vissionMissionCard .vissionMissionCardContent p {
    font-size: 14px;
    line-height: 22px;
    font-weight: var(--font-regular-weight);
  }
}

.ourValuesSection {
  padding: 90px 0 0;
}
.ourValuesSection .wrapperContainer {
  max-width: 100%;
}
.ourValuesSection .ourValuesHeading {
  text-align: center;
  max-width: 590px;
  margin: 0 auto 28px;
}
.ourValuesSection .ourValuesHeading span {
  font-size: 42px;
  line-height: 52px;
  font-family: "bold";
  font-weight: 700;
  color: var(--mild-black);
  display: block;
  letter-spacing: 4%;
}
.ourValuesSection .ourValuesHeading p {
  font-size: 16px;
  line-height: 22px;
  font-weight: var(--font-regular-weight);
  color: var(--mild-black);
  padding-top: 8px;
  font-weight: 400;
}
.ourValuesSection .ourValuesSliderWrap {
  background-color: var(--light-gray);
  padding: 28px 0 28px 14px;
  overflow: hidden;
}
.ourValuesSection .ourValuesSliderWrap .ourValuesSlider .swiper-slide {
  height: auto;
}
.ourValuesSection .ourValuesSliderWrap .ourValuesSlider .swiper-slide:first-child .ourValuesCard {
  padding-left: 20px;
}
.ourValuesSection .ourValuesSliderWrap .ourValuesSlider .swiper-slide:first-child .ourValuesCard::after {
  display: none;
}
.ourValuesSection .ourValuesSliderWrap .ourValuesCard {
  min-height: 194px;
  padding: 0 20px 0 30px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.ourValuesSection .ourValuesSliderWrap .ourValuesCard::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100vh;
  border: 1px solid var(--mild-black);
}
.ourValuesSection .ourValuesSliderWrap .ourValuesCard .ourValuesCardNumber {
  font-size: 42px;
  line-height: 52px;
  color: var(--dark-black);
  font-weight: var(--font-light-medium);
  display: block;
  font-family: var(--font-regular);
}
.ourValuesSection .ourValuesSliderWrap .ourValuesCard h3 {
  font-size: 30px;
  line-height: 40px;
}
@media (max-width: 991px) {
  .ourValuesSection .ourValuesSliderWrap .ourValuesCard h3 {
    font-size: 22px;
  }
}
.ourValuesSection .ourValuesSliderWrap .ourValuesCard h3 {
  color: var(--dark-black);
  font-weight: var(--font-light-medium);
  padding-top: 20px;
  text-transform: none;
  font-family: var(--font-regular);
}
.ourValuesSection .ourValuesSliderWrap .ourValuesCard p {
  font-size: 16px;
  line-height: 22px;
  font-weight: var(--font-regular-weight);
  color: var(--dark-black);
  max-width: 400px;
  padding-top: 20px;
  font-family: var(--font-regular);
}
.ourValuesSection .ourValuesSliderWrap .ourValuesStrips {
  display: flex;
  flex-direction: column;
  gap: 1px;
  margin-left: -14px;
  padding-top: 18px;
}
.ourValuesSection .ourValuesSliderWrap .ourValuesStrips .fleetBlueStrip {
  background-color: var(--dark-blue);
  height: 6.1px;
}
.ourValuesSection .ourValuesSliderWrap .ourValuesStrips .redStrip {
  background-color: var(--red);
  height: 6.1px;
}
@media (max-width: 991px) {
  .ourValuesSection {
    padding: 40px 0 0;
  }
  .ourValuesSection .ourValuesHeading {
    margin-bottom: 22px;
    max-width: calc(100% - 50px);
  }
  .ourValuesSection .ourValuesHeading span {
    font-size: 24px;
    line-height: 38px;
  }
  .ourValuesSection .ourValuesHeading p br {
    display: none;
  }
  .ourValuesSection .ourValuesSliderWrap {
    padding: 20px 0 0 12px;
  }
  .ourValuesSection .ourValuesSliderWrap .ourValuesCard {
    min-height: 220px;
    padding: 0 18px 0 28px;
  }
  .ourValuesSection .ourValuesSliderWrap .ourValuesCard .ourValuesCardNumber {
    font-size: 34px;
  }
  .ourValuesSection .ourValuesSliderWrap .ourValuesCard h3 {
    font-size: 24px;
    line-height: 30px;
    padding-top: 18px;
  }
  .ourValuesSection .ourValuesSliderWrap .ourValuesCard p {
    max-width: 100%;
    padding-top: 14px;
  }
  .ourValuesSection .ourValuesSliderWrap .ourValuesStrips {
    margin-left: -12px;
    padding-top: 18px;
  }
}

.ExecutiveManagementSection {
  padding: 80px 0 0 0;
}
.ExecutiveManagementSection .ExecutiveManagementContent {
  text-align: center;
  padding-bottom: 30px;
}
.ExecutiveManagementSection .ExecutiveManagementContent span {
  font-size: 40px;
  line-height: 50px;
  font-weight: var(--font-regular-weight);
}
@media (max-width: 991px) {
  .ExecutiveManagementSection .ExecutiveManagementContent span {
    font-size: 24px;
    line-height: 38px;
  }
}
.ExecutiveManagementSection .ExecutiveManagementContent span {
  font-weight: var(--font-bold-weight);
  text-transform: uppercase;
  padding-bottom: 20px;
  display: block;
}
.ExecutiveManagementSection .ExecutiveManagementGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
}
.ExecutiveManagementSection .ExecutiveManagementGrid .ExecutiveManagementGridItem {
  position: relative;
}
.ExecutiveManagementSection .ExecutiveManagementGrid .ExecutiveManagementGridItem .ExecutiveManagementGridItemImg img {
  border-radius: 16px;
  width: 100%;
}
.ExecutiveManagementSection .ExecutiveManagementGrid .ExecutiveManagementGridItem .ExecutiveManagementGridItemContent {
  position: absolute;
  bottom: 16px;
  left: 14px;
  right: 14px;
  background-color: var(--white);
  border-radius: 5px;
  padding: 10px 17px;
}
.ExecutiveManagementSection .ExecutiveManagementGrid .ExecutiveManagementGridItem .ExecutiveManagementGridItemContent span {
  font-size: 16px;
  line-height: 22px;
  font-weight: var(--font-regular-weight);
  font-weight: var(--font-bold-weight);
  color: var(--mild-black);
}
.ExecutiveManagementSection .ExecutiveManagementGrid .ExecutiveManagementGridItem .ExecutiveManagementGridItemContent p {
  font-size: 14px;
  line-height: 22px;
  font-weight: var(--font-regular-weight);
  color: var(--mild-black);
}
@media (max-width: 991px) {
  .ExecutiveManagementSection {
    padding: 40px 0 40px 0;
  }
  .ExecutiveManagementSection .ExecutiveManagementContent span {
    padding-bottom: 10px;
  }
  .ExecutiveManagementSection .ExecutiveManagementGrid {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
}

.careerGrowthSection {
  overflow: hidden;
}
.careerGrowthSection .careerGrowthSlider {
  width: 100%;
}
.careerGrowthSection .swiper-slide {
  height: auto;
}
.careerGrowthSection .careerGrowthSlide {
  display: flex;
  gap: 45px;
}
.careerGrowthSection .careerGrowthContent {
  max-width: 100%;
  display: flex;
  flex-direction: column;
  padding: 0 0px;
  justify-content: space-between;
}
.careerGrowthSection .careerGrowthEyebrow {
  font-size: 18px;
  line-height: 28px;
  color: var(--red);
  font-family: var(--font-regular);
  font-weight: var(--font-bold-weight);
  text-transform: uppercase;
  display: block;
  margin-bottom: 20px;
}
.careerGrowthSection p {
  font-size: 16px;
  line-height: 22px;
  font-weight: var(--font-regular-weight);
  color: var(--mild-black);
  max-width: 100%;
  font-family: "regular";
  font-weight: 400;
}
.careerGrowthSection p + p {
  margin-top: 16px;
}
.careerGrowthSection .careerGrowthNavigation {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 34px;
}
.careerGrowthSection .careerGrowthNav {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--mild-black);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease, transform 0.3s ease;
  position: relative;
  z-index: 2;
}
.careerGrowthSection .careerGrowthNav svg {
  width: 18px;
  height: 18px;
}
.careerGrowthSection .careerGrowthNav:hover {
  background-color: var(--red);
  transform: translateY(-2px);
}
.careerGrowthSection .careerGrowthImage {
  position: relative;
  padding: 0 15px 0 0;
}
.careerGrowthSection .careerGrowthImage img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
}
@media (max-width: 991px) {
  .careerGrowthSection {
    margin: 40px 0;
  }
  .careerGrowthSection .CommonVecsbanner {
    height: 72vh;
  }
  .careerGrowthSection .careerGrowthSlide {
    flex-direction: column;
    gap: 24px;
    margin-top: 20px;
  }
  .careerGrowthSection .careerGrowthContent,
  .careerGrowthSection p {
    max-width: 100%;
  }
  .careerGrowthSection .careerGrowthContent {
    order: 2;
  }
  .careerGrowthSection .careerGrowthImage {
    order: 1;
  }
  .careerGrowthSection .careerGrowthNavigation {
    margin-top: 24px;
    gap: 15px;
  }
}
@media (max-width: 563px) {
  .careerGrowthSection .careerGrowthEyebrow {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 10px;
  }
  .careerGrowthSection p {
    font-size: 13px;
    line-height: 21px;
  }
  .careerGrowthSection .careerGrowthNav {
    width: 42px;
    height: 42px;
  }
}

.careerTabsSection {
  overflow: hidden;
}
.careerTabsSection .careerTabs {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 72px;
}
.careerTabsSection .careerTabsNav {
  width: 34%;
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding-top: 4px;
}
.careerTabsSection .careerTabsTrigger {
  font-size: 20px;
  line-height: 26px;
  width: 100%;
  font-family: var(--font-regular);
  font-weight: var(--font-light-medium);
  color: var(--medium-gray);
  text-align: left;
  padding: 0px 0 0px 24px;
  position: relative;
  transition: color 0.3s ease, transform 0.3s ease;
}
.careerTabsSection .careerTabsTrigger::before {
  content: "";
  width: 14px;
  height: 14px;
  background-color: var(--red);
  position: absolute;
  top: 12px;
  left: 0;
  transform: translateY(-50%) scale(0);
  transform-origin: center;
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
@media (max-width: 991px) {
  .careerTabsSection .careerTabsTrigger::before {
    top: 22px;
    width: 10px;
    height: 10px;
  }
}
.careerTabsSection .careerTabsTrigger:hover, .careerTabsSection .careerTabsTrigger:focus-visible {
  color: var(--light-black);
}
.careerTabsSection .careerTabsTrigger.is-active {
  color: var(--dark-black);
  font-weight: var(--font-light-medium);
}
.careerTabsSection .careerTabsTrigger.is-active::before {
  transform: translateY(-50%) scale(1);
  opacity: 1;
}
.careerTabsSection .careerTabsContent {
  width: 49%;
}
.careerTabsSection .careerTabPanel {
  display: none;
  min-height: 100%;
}
.careerTabsSection .careerTabPanel.is-active {
  display: block;
}
.careerTabsSection .careerTabCopy {
  max-width: 100%;
}
.careerTabsSection .careerTabCopy p {
  font-size: 16px;
  line-height: 22px;
  font-weight: var(--font-regular-weight);
  color: var(--mild-black);
  max-width: 100%;
  font-family: "regular";
  font-weight: 400;
  line-height: 22px;
}
.careerTabsSection .careerTabCopy p + p {
  margin-top: 12px;
}
.careerTabsSection .careerTabButton {
  margin-top: 28px;
  padding: 18px 32px;
  line-height: 1;
}
@media (max-width: 991px) {
  .careerTabsSection {
    margin: 48px 0;
  }
  .careerTabsSection .careerTabs {
    flex-direction: column;
    gap: 28px;
  }
  .careerTabsSection .careerTabsNav,
  .careerTabsSection .careerTabsContent {
    width: 100%;
  }
  .careerTabsSection .careerTabsNav {
    gap: 4px;
  }
  .careerTabsSection .careerTabsTrigger {
    padding: 12px 0 12px 18px;
  }
  .careerTabsSection .careerTabButton {
    margin-top: 24px;
  }
}
@media (max-width: 563px) {
  .careerTabsSection .careerTabs {
    gap: 20px;
  }
  .careerTabsSection .careerTabsTrigger {
    font-size: 16px;
    line-height: 24px;
    padding: 10px 0 10px 16px;
  }
  .careerTabsSection .careerTabCopy p {
    font-size: 13px;
    line-height: 21px;
  }
  .careerTabsSection .careerTabButton {
    width: 100%;
    text-align: center;
  }
}

.careerPopupOverlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.45);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
@media (max-width: 563px) {
  .careerPopupOverlay {
    padding: 12px;
    align-items: flex-end;
  }
}
.careerPopupOverlay.is-open {
  opacity: 1;
  visibility: visible;
}
.careerPopupOverlay.is-open .careerPopupModal {
  transform: translateY(0);
  opacity: 1;
}

.careerPopupModal {
  background-color: #f5f5f5;
  border-radius: 16px;
  width: 100%;
  max-width: 1020px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 48px 52px 52px;
  position: relative;
  transform: translateY(24px);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
}
@media (max-width: 991px) {
  .careerPopupModal {
    padding: 48px 32px 44px;
    max-height: 92vh;
    overflow-y: hidden;
  }
}
@media (max-width: 563px) {
  .careerPopupModal {
    padding: 56px 20px 32px;
    max-height: 95vh;
  }
}

.careerPopupClose {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #e8e8e8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease;
  flex-shrink: 0;
  z-index: 1;
}
.careerPopupClose:hover {
  background-color: #d5d5d5;
}

.careerPopupTitle {
  font-size: 30px;
  line-height: 40px;
}
@media (max-width: 991px) {
  .careerPopupTitle {
    font-size: 22px;
  }
}
.careerPopupTitle {
  color: var(--dark-black);
  text-align: center;
  margin-bottom: 36px;
  padding: 0 52px;
}
@media (max-width: 991px) {
  .careerPopupTitle {
    font-size: 22px;
    margin-bottom: 28px;
    padding: 0 44px;
  }
}
@media (max-width: 563px) {
  .careerPopupTitle {
    font-size: 18px;
    margin-bottom: 24px;
    padding: 0 8px;
  }
}

.careerPopupFields {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}
@media (max-width: 991px) {
  .careerPopupFields {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 563px) {
  .careerPopupFields {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.careerPopupField {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.careerPopupField label {
  font-size: 16px;
  line-height: 22px;
  font-weight: var(--font-regular-weight);
  color: var(--dark-black);
}
.careerPopupField label .required {
  color: var(--red);
  margin-left: 1px;
}
.careerPopupField input {
  width: 100%;
  background-color: var(--white);
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 12px 18px;
  font-family: var(--font-regular);
  font-size: 14px;
  color: var(--dark-black);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
}
.careerPopupField input::-moz-placeholder {
  color: #aaa;
}
.careerPopupField input::placeholder {
  color: #aaa;
}
.careerPopupField input:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(204, 0, 0, 0.08);
}
@media (max-width: 991px) {
  .careerPopupField input {
    padding: 10px 16px;
  }
}

.careerPopupUpload {
  background-color: var(--white);
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  min-height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease;
  margin-bottom: 32px;
}
.careerPopupUpload:hover {
  border-color: #bbb;
  background-color: #fafafa;
}
@media (max-width: 991px) {
  .careerPopupUpload {
    min-height: 80px;
    margin-bottom: 24px;
  }
}

.careerPopupUploadLabel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  width: 100%;
  height: 100%;
  padding: 32px 20px;
}
.careerPopupUploadLabel svg {
  opacity: 0.7;
  background-color: #F4F4F4;
  border-radius: 100%;
  padding: 13px 0;
  width: 50px;
  height: 50px;
}
.careerPopupUploadLabel .uploadText {
  font-family: var(--font-regular);
  font-size: 15px;
  color: #555;
  font-weight: 400;
}
.careerPopupUploadLabel .uploadFileName {
  font-family: var(--font-regular);
  font-size: 13px;
  color: var(--red);
  font-weight: 500;
  word-break: break-all;
  text-align: center;
}
@media (max-width: 991px) {
  .careerPopupUploadLabel {
    padding: 20px 16px;
  }
}

.careerPopupActions {
  display: flex;
  justify-content: center;
}

.careerPopupSubmit {
  background-color: var(--red);
  color: var(--white);
  font-family: var(--font-regular);
  font-size: 16px;
  font-weight: 600;
  padding: 16px 52px;
  border-radius: 50px;
  transition: background-color 0.25s ease, transform 0.2s ease;
  letter-spacing: 0.3px;
}
.careerPopupSubmit:hover {
  background-color: #a80000;
  transform: translateY(-1px);
}
.careerPopupSubmit:active {
  transform: translateY(0);
}
@media (max-width: 563px) {
  .careerPopupSubmit {
    width: 100%;
    padding: 16px 20px;
  }
}

.vecsFamilySection {
  padding: 111px 0 0 0;
  margin: 80px 0 0 0;
  background-color: var(--bg-gray);
}
.vecsFamilySection .joinVecs {
  max-width: 753px;
  margin: auto;
  text-align: center;
}
.vecsFamilySection .joinVecs span {
  padding-bottom: 20px;
  display: block;
  margin-bottom: 0;
  text-transform: uppercase;
  font-weight: 700;
}
.vecsFamilySection .joinVecs p {
  padding-bottom: 20px;
  color: var(--dark-black);
}
.vecsFamilySection .joinVecs .careerTabButton {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  padding: 16px 26px;
  text-align: center;
  margin-top: 10px;
  font-family: "regular";
  font-weight: 400;
  font-size: 16px;
}
.vecsFamilySection .colorfulStrips {
  padding-top: 97px;
  padding-bottom: 0;
}
@media (max-width: 991px) {
  .vecsFamilySection {
    padding: 40px 0 0 0;
    margin: 40px 0 0 0;
  }
  .vecsFamilySection .joinVecs {
    max-width: 500px;
  }
  .vecsFamilySection .colorfulStrips {
    padding-top: 40px;
  }
}
@media (max-width: 563px) {
  .vecsFamilySection .joinVecs {
    max-width: 340px;
  }
}

.schoolBusSolutionSection .wrapperRow {
  display: flex;
  gap: 0px;
  align-items: center;
}
@media (max-width: 991px) {
  .schoolBusSolutionSection .wrapperRow {
    gap: 32px;
    flex-direction: column;
  }
}
.schoolBusSolutionSection .wrapperRow .schoolBusImg {
  position: relative;
  padding-top: 67.6848874598%;
}
.schoolBusSolutionSection .wrapperRow .schoolBusImg img {
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.schoolBusSolutionSection .wrapperRow .schoolBusImg {
  border-radius: 24px;
  overflow: hidden;
}
.schoolBusSolutionSection .wrapperRow .col-50 {
  padding: 0 15px;
}
.schoolBusSolutionSection .wrapperRow .col-50 p {
  margin-top: 20px;
}
@media (max-width: 991px) {
  .schoolBusSolutionSection .wrapperRow .col-50 {
    padding: 0;
  }
}

.schoolBusFeaturesSection .wrapperContainer {
  max-width: calc(100% - 50px);
}
.schoolBusFeaturesSection .featuresHeader {
  max-width: 560px;
  margin: 0 auto 34px;
}
.schoolBusFeaturesSection .featuresHeader .heading-one {
  margin-bottom: 20px;
}
.schoolBusFeaturesSection .featuresHeader p {
  max-width: 470px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 24px;
  color: var(--mild-black);
}
.schoolBusFeaturesSection .featureTabs {
  position: relative;
  max-width: 1131px;
  margin: 0 auto 54px;
  padding: 14px 26px;
  border: 1px solid #d4d4d4;
  border-radius: 999px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
  background-color: var(--white);
}
.schoolBusFeaturesSection .featureTabIndicator {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-radius: 999px;
  background-color: var(--red);
  box-shadow: 0px 10px 20px rgba(214, 35, 23, 0.18);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), width 0.4s cubic-bezier(0.4, 0, 0.2, 1), height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  z-index: 0;
  will-change: transform, width, height;
}
.schoolBusFeaturesSection .featureTab {
  position: relative;
  z-index: 1;
  min-height: 58px;
  border: none;
  border-radius: 999px;
  background-color: transparent !important;
  color: var(--mild-black);
  font-family: var(--font-bold);
  font-size: 24px;
  line-height: 38px;
  font-weight: var(--font-regular-weight);
  transition: color 0.3s ease, font-weight 0.3s ease;
  padding: 12px 0px;
  text-align: center;
  cursor: pointer;
}
.schoolBusFeaturesSection .featureTab.is-active {
  font-weight: var(--font-bold-weight);
  color: var(--white);
  background-color: transparent !important;
  box-shadow: none !important;
}
.schoolBusFeaturesSection .featurePanels {
  position: relative;
  overflow: hidden;
}
.schoolBusFeaturesSection .featurePanel {
  display: none;
  opacity: 0;
}
.schoolBusFeaturesSection .featurePanel.is-active {
  display: block;
  opacity: 1;
}
.schoolBusFeaturesSection .featurePanel.is-sliding-in-right {
  animation: featurePanelSlideInRight 0.45s ease forwards;
}
.schoolBusFeaturesSection .featurePanel.is-sliding-in-left {
  animation: featurePanelSlideInLeft 0.45s ease forwards;
}
.schoolBusFeaturesSection .featurePanelContent {
  display: flex;
  align-items: center;
  justify-content: center;
}
@keyframes featurePanelSlideInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes featurePanelSlideInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.schoolBusFeaturesSection .featureList {
  max-width: 600px;
}
.schoolBusFeaturesSection .featureList ul {
  padding-left: 26px;
}
.schoolBusFeaturesSection .featureList li {
  list-style: disc;
  font-family: var(--font-regular);
  font-size: 20px;
  line-height: 26px;
  line-height: 30px;
  color: var(--dark-black);
  margin-bottom: 22px;
}
.schoolBusFeaturesSection .featureList li:last-child {
  margin-bottom: 0;
}
.schoolBusFeaturesSection .featureList li strong {
  font-weight: var(--font-bold-weight);
  color: var(--dark-black);
}
.schoolBusFeaturesSection .featureImage {
  border-radius: 20px;
  overflow: hidden;
  padding: 0 60px;
}
.schoolBusFeaturesSection .featureImage img {
  width: 100%;
  height: 100%;
}
@media (max-width: 991px) {
  .schoolBusFeaturesSection .featuresHeader {
    margin-bottom: 26px;
  }
  .schoolBusFeaturesSection .featuresHeader p {
    font-size: 16px;
    line-height: 22px;
  }
  .schoolBusFeaturesSection .featureTabs {
    gap: 16px;
    margin-bottom: 34px;
    padding: 12px 16px;
  }
  .schoolBusFeaturesSection .featureTab {
    font-size: 16px;
    line-height: 20px;
    min-height: 48px;
  }
  .schoolBusFeaturesSection .featurePanelContent {
    flex-direction: column-reverse;
    align-items: stretch;
    gap: 28px;
  }
  .schoolBusFeaturesSection .featureList {
    max-width: 100%;
  }
  .schoolBusFeaturesSection .featureList li {
    font-size: 17px;
    line-height: 1.5;
    margin-bottom: 18px;
  }
  .schoolBusFeaturesSection .featureImage {
    max-width: 100%;
    padding: 0;
  }
}
@media (max-width: 576px) {
  .schoolBusFeaturesSection .featureTabs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    grid-template-columns: unset;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 28px;
  }
  .schoolBusFeaturesSection .featureTab {
    flex: 1 1 auto;
    padding: 10px 18px;
    white-space: nowrap;
  }
}

.ourFeaturesSection .ourFeaturesGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.ourFeaturesSection .ourFeaturesGrid .ourFeatureCard {
  border: 1px solid #AEAEAE;
  border-radius: 20px;
}
.ourFeaturesSection .ourFeaturesGrid .ourFeatureCard .ourFeatureCardContent {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.ourFeaturesSection .ourFeaturesGrid .ourFeatureCard .ourFeatureCardContent .ourFeatureCardContentHeading {
  padding: 26px 26px 30px 26px;
}
.ourFeaturesSection .ourFeaturesGrid .ourFeatureCard .ourFeatureCardContent span {
  font-size: 24px;
  line-height: 38px;
  font-weight: 400;
  font-family: "bold";
}
.ourFeaturesSection .ourFeaturesGrid .ourFeatureCard .ourFeatureCardContent p {
  padding-top: 8px;
}
@media (max-width: 991px) {
  .ourFeaturesSection .ourFeaturesGrid {
    grid-template-columns: repeat(1, 1fr);
  }
  .ourFeaturesSection .ourFeaturesGrid .ourFeatureCard .ourFeatureCardContent .ourFeatureCardContentHeading {
    padding: 20px 20px 30px 20px;
  }
  .ourFeaturesSection .ourFeaturesGrid .ourFeatureCard .ourFeatureCardContent .ourFeatureCardContentHeading span {
    font-size: 20px;
    line-height: 26px;
  }
}

.ourFeaturesSection .ourFeaturesGrid.ourFeaturesGridVehicle {
  grid-template-columns: repeat(3, 1fr);
  gap: 27px;
}
@media (max-width: 991px) {
  .ourFeaturesSection .ourFeaturesGrid.ourFeaturesGridVehicle {
    grid-template-columns: repeat(1, 1fr);
  }
}

.pressReleaseDetailSection {
  padding: 30px 0;
}
.pressReleaseDetailSection .wrapperRow {
  align-items: start;
  gap: 149px;
}
.pressReleaseDetailSection .wrapperRow .col-30 {
  position: sticky;
  top: 100px;
  align-self: start;
}
.pressReleaseDetailSection .wrapperRow .releaseLeft {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.pressReleaseDetailSection .wrapperRow .releaseLeft p {
  font-size: 20px;
  line-height: 26px;
  line-height: 30px;
  color: var(--dark-black);
}
@media (max-width: 991px) {
  .pressReleaseDetailSection .wrapperRow .releaseLeft p {
    font-size: 18px;
    line-height: 28px;
  }
}
.pressReleaseDetailSection .wrapperRow .releaseLeft .profileDetail {
  display: flex;
  align-items: center;
  gap: 20px;
}
.pressReleaseDetailSection .wrapperRow .releaseLeft .profileDetail span {
  font-size: 16px;
  line-height: 22px;
  font-weight: var(--font-regular-weight);
  font-weight: var(--font-regular-weight);
  color: var(--dark-black);
}
.pressReleaseDetailSection .wrapperRow .releaseLeft h4 {
  font-size: 24px;
  line-height: 38px;
  font-weight: var(--font-bold-weight);
}
@media (max-width: 991px) {
  .pressReleaseDetailSection .wrapperRow .releaseLeft h4 {
    font-size: 22px;
    line-height: 30px;
    line-height: 33px;
  }
}
@media (max-width: 991px) and (max-width: 991px) {
  .pressReleaseDetailSection .wrapperRow .releaseLeft h4 {
    font-size: 22px;
  }
}
.pressReleaseDetailSection .wrapperRow .releaseLeft h5 {
  font-size: 24px;
  line-height: 38px;
  font-weight: var(--font-bold-weight);
}
.pressReleaseDetailSection .wrapperRow .designationBox {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.pressReleaseDetailSection .wrapperRow .designationBox .writtenBy {
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-bottom: 1px solid #AEAEAE;
  padding-bottom: 30px;
}
.pressReleaseDetailSection .wrapperRow .designationBox .writtenBy span {
  font-size: 22px;
  line-height: 30px;
}
@media (max-width: 991px) {
  .pressReleaseDetailSection .wrapperRow .designationBox .writtenBy span {
    font-size: 22px;
  }
}
.pressReleaseDetailSection .wrapperRow .designationBox .writtenBy span {
  display: block;
}
.pressReleaseDetailSection .wrapperRow .designationBox .writtenBy .designation {
  display: flex;
  align-items: center;
  gap: 20px;
}
.pressReleaseDetailSection .wrapperRow .designationBox .writtenBy .designation .designationDetails {
  display: flex;
  flex-direction: column;
}
.pressReleaseDetailSection .wrapperRow .designationBox .writtenBy .designation .designationDetails p {
  font-size: 18px;
  line-height: 28px;
  color: #808080;
}
.pressReleaseDetailSection .wrapperRow .designationBox .contributors {
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-bottom: 1px solid #AEAEAE;
  padding-bottom: 30px;
}
.pressReleaseDetailSection .wrapperRow .designationBox .contributors span {
  font-size: 22px;
  line-height: 30px;
}
@media (max-width: 991px) {
  .pressReleaseDetailSection .wrapperRow .designationBox .contributors span {
    font-size: 22px;
  }
}
.pressReleaseDetailSection .wrapperRow .designationBox .contributors .designation {
  display: flex;
  align-items: center;
  gap: 20px;
}
.pressReleaseDetailSection .wrapperRow .designationBox .contributors .designation .designationDetails {
  display: flex;
  flex-direction: column;
}
.pressReleaseDetailSection .wrapperRow .subscribeBox {
  padding-top: 30px;
}
.pressReleaseDetailSection .wrapperRow .subscribeBox p {
  font-size: 22px;
  line-height: 30px;
}
@media (max-width: 991px) {
  .pressReleaseDetailSection .wrapperRow .subscribeBox p {
    font-size: 22px;
  }
}
.pressReleaseDetailSection .wrapperRow .subscribeBox p {
  color: var(--dark-black);
}
.pressReleaseDetailSection .wrapperRow .subscribeBox .subscribeCta {
  display: flex;
  padding-top: 30px;
}
.pressReleaseDetailSection .wrapperRow .subscribeBox .subscribeCta input {
  border: none;
  padding-left: 10px;
  border: 1px solid var(--border-color);
  padding: 14px 0 14px 12px;
  border-radius: 10px;
}
@media (max-width: 991px) {
  .pressReleaseDetailSection .wrapperRow .subscribeBox .subscribeCta input {
    padding: 10px 0 10px 12px;
  }
}
.pressReleaseDetailSection .wrapperRow .subscribeBox .subscribeCta .subBtn {
  padding: 12px 26px;
  background-color: var(--red);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  font-size: 18px;
  line-height: 28px;
  color: var(--white);
  margin-left: -16px;
}
@media (max-width: 991px) {
  .pressReleaseDetailSection .wrapperRow .subscribeBox .subscribeCta .subBtn {
    padding: 10px 20px;
  }
}
@media (max-width: 991px) {
  .pressReleaseDetailSection .wrapperRow {
    flex-direction: column;
    gap: 30px;
  }
  .pressReleaseDetailSection .wrapperRow .col-30 {
    position: static;
  }
}

.newsRoomDetailSection {
  margin-top: 80px;
}
.newsRoomDetailSection .newsRoomDetailContent {
  position: relative;
  padding-left: 30px;
}
.newsRoomDetailSection .newsRoomDetailContent .detailDate {
  position: relative;
  display: block;
  padding-left: 24px;
  margin-bottom: 30px;
}
.newsRoomDetailSection .newsRoomDetailContent .detailDate::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0px;
  background-image: url("../../assets/img/calendar-icon.svg");
  background-repeat: no-repeat;
  background-position: center center;
  height: 20px;
  width: 20px;
}
.newsRoomDetailSection .newsRoomDetailContent h1 {
  padding-bottom: 30px;
  font-size: 40px;
  line-height: 50px;
  font-weight: var(--font-regular-weight);
}
@media (max-width: 991px) {
  .newsRoomDetailSection .newsRoomDetailContent h1 {
    font-size: 24px;
    line-height: 38px;
  }
}
.newsRoomDetailSection .newsRoomDetailContent h1 {
  font-family: var(--font-bold);
  text-transform: unset;
}
.newsRoomDetailSection .newsRoomDetailContent .newsRoomList {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 20px;
}
.newsRoomDetailSection .newsRoomDetailContent .newsRoomList li {
  position: relative;
  padding-left: 20px;
}
.newsRoomDetailSection .newsRoomDetailContent .newsRoomList li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background-image: url("../../assets/img/breadcrumbIcon.svg");
  background-repeat: no-repeat;
  background-position: center center;
  width: 8px;
  height: 22px;
}
.newsRoomDetailSection .newsRoomDetailContent p {
  padding-bottom: 30px;
}
.newsRoomDetailSection .newsRoomDetailContent h2 {
  padding-bottom: 20px;
}
.newsRoomDetailSection .newsRoomDetailContent::before {
  content: "";
  background: var(--red);
  height: 100%;
  width: 8px;
  position: absolute;
  left: 0;
  top: 0;
}
@media (max-width: 991px) {
  .newsRoomDetailSection {
    margin-top: 40px;
    margin-bottom: 40px;
  }
  .newsRoomDetailSection .newsRoomDetailContent .detailDate {
    margin-bottom: 20px;
  }
  .newsRoomDetailSection .newsRoomDetailContent .newsRoomList li {
    font-size: 14px;
    line-height: 22px;
    font-weight: var(--font-regular-weight);
  }
}

.common-main-heading {
  margin: auto;
  margin-bottom: 30px;
}
.common-main-heading .heading-one {
  margin-bottom: 0;
}
.common-main-heading p {
  max-width: 442px;
  margin: 20px auto 0;
}

.events-more-sec {
  margin-top: 80px;
}
.events-more-sec .event-more-flex {
  display: flex;
  margin: 0 -15px;
  flex-wrap: wrap;
}
.events-more-sec .event-more-flex .event-item {
  flex: 0 0 33.33%;
  max-width: 33.33%;
  padding: 0 15px;
}
.events-more-sec .event-more-flex .event-item .inner-item {
  height: 100%;
  box-shadow: 0px 4px 26px 0px rgba(0, 0, 0, 0.1019607843);
}
.events-more-sec .event-more-flex .event-item .image {
  position: relative;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  height: 342px;
}
.events-more-sec .event-more-flex .event-item .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.events-more-sec .event-more-flex .event-item .image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: color-mix(in srgb, var(--dark-black) 30%, transparent);
  pointer-events: none;
  z-index: 1;
}
.events-more-sec .event-more-flex .event-item .content {
  padding: 15px;
}
.events-more-sec .event-more-flex .event-item .content .date {
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 22px;
  font-weight: var(--font-regular-weight);
  color: var(--border-color);
}
.events-more-sec .event-more-flex .event-item .content .title {
  color: var(--red);
  text-transform: uppercase;
  font-weight: var(--font-regular-weight);
}
@media (max-width: 991px) {
  .events-more-sec {
    margin-top: 40px;
  }
  .events-more-sec .event-more-flex {
    gap: 20px;
  }
  .events-more-sec .event-more-flex .event-item {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .events-more-sec .event-more-flex .event-item .content .title {
    font-size: 18px;
    line-height: 28px;
  }
}

.latest-news-flex {
  display: flex;
  margin: 0 -15px;
  flex-wrap: wrap;
}
.latest-news-flex .latest-news-item {
  flex: 0 0 33.33%;
  max-width: 33.33%;
  padding: 0 15px;
  position: relative;
}
.latest-news-flex .latest-news-item .image-box-tag {
  position: relative;
}
.latest-news-flex .latest-news-item .image-box-tag .videoPlayIcon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  border-radius: 100px;
  background: hsla(0, 0%, 100%, 0.2);
  padding: 10px;
}
.latest-news-flex .latest-news-item .image-box-tag .videoPlayIcon img {
  height: 23px;
  width: auto;
  position: static;
  padding-left: 3px;
}
.latest-news-flex .latest-news-item .image-box-tag .product-tag {
  padding: 14px 25px;
  background: var(--white);
  border-radius: 100px;
  position: absolute;
  top: 25px;
  right: 23px;
  font-size: 12px;
  line-height: 20px;
  font-weight: var(--font-regular-weight);
  line-height: 83%;
  z-index: 1;
}
.latest-news-flex .latest-news-item .image-box-tag .image {
  position: relative;
  padding-top: 59.5022624434%;
}
.latest-news-flex .latest-news-item .image-box-tag .image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.latest-news-flex .latest-news-item .image-box-tag .image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: color-mix(in srgb, var(--dark-black) 30%, transparent);
  pointer-events: none;
  z-index: 1;
}
.latest-news-flex .latest-news-item .content {
  margin-top: 30px;
}
.latest-news-flex .latest-news-item .content .date-tag {
  margin-bottom: 20px;
}
.latest-news-flex .latest-news-item .content .read-more-link {
  text-decoration: underline;
  display: block;
  letter-spacing: 0.04em;
  font-family: var(--font-bold);
}
.latest-news-flex .latest-news-item .heading-two {
  font-family: "regular";
  font-weight: 400;
  font-size: 22px;
}
.latest-news-flex .latest-news-item .heading-two,
.latest-news-flex .latest-news-item p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  text-transform: none;
  font-weight: var(--font-regular-weight);
  letter-spacing: 0.04em;
  margin-bottom: 20px;
}
@media (max-width: 991px) {
  .latest-news-flex .latest-news-item {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .latest-news-flex .latest-news-item p {
    font-size: 16px;
    line-height: 22px;
    font-weight: var(--font-regular-weight);
  }
  .latest-news-flex .latest-news-item .content {
    margin-bottom: 30px;
  }
}

.press-rel-sec .press-flex {
  display: flex;
  margin: 0 -15px;
  flex-wrap: wrap;
}
.press-rel-sec .press-flex .press-item {
  flex: 0 0 33.33%;
  max-width: 33.33%;
  padding: 0 15px;
}
.press-rel-sec .press-flex .press-item .desc {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 16px;
  line-height: 22px;
  font-weight: var(--font-regular-weight);
  -webkit-line-clamp: 2;
  text-transform: none;
  font-weight: var(--font-regular-weight);
  color: var(--dark-black);
}
.press-rel-sec .press-flex .press-item .heading-three,
.press-rel-sec .press-flex .press-item .desc {
  font-family: "regular";
  font-weight: 400;
}
.press-rel-sec .press-flex .press-item .heading-three {
  position: relative;
  padding-bottom: 15px;
  text-transform: none;
  font-size: 20px;
  line-height: 1;
  color: var(--dark-black);
}
.press-rel-sec .press-flex .press-item .heading-three:after {
  content: "";
  height: 3px;
  width: 50px;
  background: var(--red);
  position: absolute;
  bottom: 0;
  left: 0;
}
.press-rel-sec .press-flex .press-item .desc {
  margin-bottom: 40px;
  font-size: 16px;
}
@media (max-width: 991px) {
  .press-rel-sec .press-flex {
    gap: 20px;
  }
  .press-rel-sec .press-flex .press-item {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.view-all-btn-box {
  margin: 30px 0 0;
  text-align: center;
}

@media (max-width: 991px) {
  .CommonVecsbanner {
    height: 72vh;
  }
}
.eps-address-detail {
  padding: 80px 0 0;
}
.eps-address-detail .contactUsHeading {
  max-width: 300px;
  margin: auto;
  text-align: center;
}
.eps-address-detail .contactUsHeading h1 {
  font-size: 40px;
  line-height: 50px;
  font-weight: var(--font-regular-weight);
}
@media (max-width: 991px) {
  .eps-address-detail .contactUsHeading h1 {
    font-size: 24px;
    line-height: 38px;
  }
}
.eps-address-detail .contactUsHeading h1 {
  font-weight: var(--font-bold-weight);
  font-family: var(--font-bold);
  padding-bottom: 20px;
}
@media (max-width: 991px) {
  .eps-address-detail .contactUsHeading {
    padding-top: 30px;
  }
}
.eps-address-detail .linkdeinLogo {
  text-align: center;
  border-radius: 50%;
  background-color: var(--bg-gray);
  max-width: 68px;
  padding: 14px;
  margin: auto;
}
.eps-address-detail .address-wrapper {
  max-width: calc(100% - 300px);
  margin: auto;
  padding: 30px 0;
}
.eps-address-detail .address-wrapper .address-item {
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.0392156863);
  padding: 60px 18px;
  text-align: center;
  height: 100%;
}
.eps-address-detail .address-wrapper .address-item .content {
  margin-top: 24px;
}
.eps-address-detail .address-wrapper .address-item .content h6 {
  margin-bottom: 13px;
  text-transform: none;
  font-size: 18px;
  line-height: 28px;
  font-weight: 700;
  font-family: "bold";
  color: var(--mild-gray);
}
.eps-address-detail .address-wrapper .address-item .content p {
  color: var(--mild-gray);
  font-size: 16px;
  font-weight: 400;
  font-family: "regular";
  line-height: 24px;
}
.eps-address-detail .address-wrapper .address-item .icon path.pin {
  fill: none;
  transition: fill 0.3s ease;
}
.eps-address-detail .address-wrapper .address-item:hover .icon path.pin {
  fill: var(--red);
}
.eps-address-detail .address-wrapper .address-item:hover .content p {
  text-decoration: underline;
}
@media (max-width: 991px) {
  .eps-address-detail {
    padding: 50px 0 0;
  }
  .eps-address-detail .address-wrapper {
    max-width: calc(100% - 38px);
    margin: auto;
  }
}

.contact-form-box {
  background: var(--light-gray);
  border-radius: 20px;
  padding: 72px 32px;
}
.contact-form-box .heading-four {
  color: var(--dark-black);
  margin-bottom: 40px;
}
.contact-form-box .form-Checkbox {
  display: flex;
  gap: 20px;
  align-items: center;
}
.contact-form-box .form-Checkbox .custom-checkbox {
  position: relative;
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-bottom: 0;
}
.contact-form-box .form-Checkbox .custom-checkbox input {
  opacity: 0;
  width: 24px;
  height: 24px;
  margin: 0;
}
.contact-form-box .form-Checkbox .custom-checkbox .checkmark {
  position: absolute;
  top: 0px;
  left: 0;
  height: 24px;
  width: 24px;
  background-color: white;
  border: 2px solid #ccc;
  border-radius: 4px;
  z-index: 1;
  pointer-events: none;
  transition: all 0.2s ease;
}
.contact-form-box .form-Checkbox .custom-checkbox input:checked + .checkmark {
  background-color: #ff0000;
  border-color: #ff0000;
}
.contact-form-box .form-Checkbox .custom-checkbox input:checked + .checkmark::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 2px;
  width: 6px;
  height: 12px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.contact-form-box .form-Checkbox p {
  display: block;
  font-size: 16px;
  line-height: 22px;
  font-weight: var(--font-regular-weight);
  font-family: var(--font-bold);
  font-weight: var(--font-regular-weight);
  line-height: 24px;
}
.contact-form-box .form-Checkbox p span {
  display: inline-block;
}
.contact-form-box .form-Checkbox p span a {
  display: block;
  font-size: 16px;
  line-height: 22px;
  font-weight: var(--font-regular-weight);
  font-family: var(--font-bold);
  font-weight: var(--font-regular-weight);
  color: var(--red);
}
@media (max-width: 991px) {
  .contact-form-box .form-Checkbox {
    align-items: start;
  }
}

.contact-form-sec .left-side {
  padding-right: 52.5px;
  flex: 0 0 55%;
  max-width: 55%;
}
.contact-form-sec .right-side {
  flex: 0 0 45%;
  max-width: 45%;
}
.contact-form-sec .left-right {
  padding-left: 52.5px;
}
.contact-form-sec .map-contact {
  margin-top: 30px;
}
@media (max-width: 991px) {
  .contact-form-sec .heading-one {
    text-align: center;
  }
  .contact-form-sec .left-side {
    padding-right: 0;
  }
  .contact-form-sec .map-contact .mapIframe {
    height: 256px;
  }
}

@media (max-width: 991px) {
  .multipleTouchPoint-sec .multiRow .left-side {
    margin-bottom: 48px;
  }
  .multipleTouchPoint-sec .multiRow .left-side .heading-box .heading-one {
    font-size: 22px;
    line-height: 30px;
  }
}
@media (max-width: 991px) and (max-width: 991px) {
  .multipleTouchPoint-sec .multiRow .left-side .heading-box .heading-one {
    font-size: 22px;
  }
}
@media (max-width: 991px) {
  .multipleTouchPoint-sec .multiRow .right-side {
    padding-right: 12px;
    padding-left: 12px;
  }
  .multipleTouchPoint-sec .multiRow .right-side .contact-form-box .heading-four {
    font-size: 22px;
    line-height: 30px;
    font-weight: var(--font-bold-weight);
  }
}
@media (max-width: 991px) and (max-width: 991px) {
  .multipleTouchPoint-sec .multiRow .right-side .contact-form-box .heading-four {
    font-size: 22px;
  }
}
@media (max-width: 991px) {
  .multipleTouchPoint-sec .multiRow .right-side .contact-form-box .form-group label {
    font-size: 14px;
    line-height: 22px;
    font-weight: var(--font-regular-weight);
  }
}

.breadCrumb {
  padding: 14px 0 0;
}
.breadCrumb .breadcrubmList li {
  display: inline-block;
  padding-right: 15px;
  margin-right: 5px;
  font-size: 16px;
  line-height: 22px;
  font-weight: var(--font-regular-weight);
  font-family: var(--font-bold);
  position: relative;
}
.breadCrumb .breadcrubmList li::after {
  content: "";
  position: absolute;
  background-image: url("../../assets/img/breadcrumbIcon.svg");
  background-repeat: no-repeat;
  background-position: center center;
  right: 0;
  top: 1px;
  color: #363636;
  font-size: 16px;
  width: 8px;
  height: 100%;
}
.breadCrumb .breadcrubmList li:last-child {
  color: var(--red);
}
.breadCrumb .breadcrubmList li:last-child::after {
  content: none;
}
@media (max-width: 991px) {
  .breadCrumb .breadcrubmList {
    padding-left: 0;
  }
}
.breadCrumb .breadcrubmList.pl-10 {
  padding-left: 10px;
}

.privacyPolicyContent .policyContent .mainContent {
  padding-left: 10px;
  padding-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.thankyouSection .icon-animation {
  max-width: 300px;
  margin: auto;
  text-align: center;
}
.thankyouSection .icon-animation h1 {
  font-size: 40px;
  line-height: 50px;
  font-weight: var(--font-regular-weight);
}
@media (max-width: 991px) {
  .thankyouSection .icon-animation h1 {
    font-size: 24px;
    line-height: 38px;
  }
}
.thankyouSection .icon-animation h1 {
  font-weight: var(--font-bold-weight);
  margin-bottom: 10px;
}
.thankyouSection .icon-animation .mainColorBtn {
  color: #fff;
}
.thankyouSection .icon-animation .mainColorBtn::before {
  background-color: #363636;
}
.thankyouSection .icon-animation .btn-default, .thankyouSection .icon-animation .btn-white, .thankyouSection .icon-animation .btn-transparent {
  width: auto;
  padding: 20px 30px;
  margin-top: 10px;
  line-height: 20px;
}
.thankyouSection .icon-animation .btn-default span, .thankyouSection .icon-animation .btn-white span, .thankyouSection .icon-animation .btn-transparent span {
  margin-left: 5px;
  transition: all 0.5s ease;
  width: 15px;
  height: 15px;
  transform: translateY(4px);
  display: inline-block;
  position: relative;
}
.thankyouSection .icon-animation .btn-default span svg, .thankyouSection .icon-animation .btn-white span svg, .thankyouSection .icon-animation .btn-transparent span svg {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  left: 0;
}
.thankyouSection .icon-animation .btn-default span svg path, .thankyouSection .icon-animation .btn-white span svg path, .thankyouSection .icon-animation .btn-transparent span svg path {
  fill: var(--white);
}

.pressReleaseDetailsection {
  margin-top: 40px;
}
.pressReleaseDetailsection .pressReleaseListing {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 80px;
}
.pressReleaseDetailsection .pressReleaseListing .pressReleaseContent {
  max-width: 500px;
}
.pressReleaseDetailsection .pressReleaseListing .pressReleaseDropDown {
  height: 100%;
}
.pressReleaseDetailsection .pressReleaseListing .pressReleaseDropDown select {
  padding: 10px 30px 10px 20px;
  border-radius: 3px;
  background: #ffffff url("../../assets/img/chevrondown.svg") no-repeat 94% center;
  font-size: 20px;
  line-height: 26px;
  font-family: var(--font-bold);
}
.pressReleaseDetailsection .press-flex {
  display: flex;
  margin: 0 -15px;
  flex-wrap: wrap;
}
.pressReleaseDetailsection .press-flex .press-item {
  flex: 0 0 33.33%;
  max-width: 33.33%;
  padding: 0 15px;
  margin-bottom: 40px;
}
.pressReleaseDetailsection .press-flex .press-item .desc {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  text-transform: none;
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .pressReleaseDetailsection .pressReleaseListing {
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
  }
  .pressReleaseDetailsection .press-flex .press-item {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.DetailCommonBanner .DetailBannerImg {
  position: relative;
  padding-top: 27.7777777778%;
  border-radius: 0;
}
.DetailCommonBanner .DetailBannerImg img {
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
.DetailCommonBanner .DetailBannerImg .searchBannerPara {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.DetailCommonBanner .DetailBannerImg .searchBannerPara p {
  font-size: 40px;
  line-height: 50px;
  font-weight: var(--font-regular-weight);
}
@media (max-width: 991px) {
  .DetailCommonBanner .DetailBannerImg .searchBannerPara p {
    font-size: 24px;
    line-height: 38px;
  }
}
.DetailCommonBanner .DetailBannerImg .searchBannerPara p {
  font-family: var(--font-bold);
  font-weight: var(--font-bold-weight);
  color: var(--white);
}
@media (max-width: 991px) {
  .DetailCommonBanner .DetailBannerImg {
    max-width: calc(100% - 40px);
    margin: auto;
  }
  .DetailCommonBanner .DetailBannerImg .desktop-div {
    display: block;
  }
  .DetailCommonBanner .DetailBannerImg img {
    border-radius: 20px;
  }
  .DetailCommonBanner .DetailBannerImg .searchBannerPara {
    left: 18px;
    max-width: 500px;
  }
  .DetailCommonBanner .DetailBannerImg .searchBannerPara {
    left: 50%;
    max-width: 100%;
  }
  .DetailCommonBanner .DetailBannerImg .searchBannerPara p {
    font-size: 42px;
    line-height: 52px;
  }
}
@media (max-width: 563px) {
  .DetailCommonBanner .DetailBannerImg {
    padding-top: 152%;
  }
  .DetailCommonBanner .DetailBannerImg .desktop-div {
    display: none;
  }
  .DetailCommonBanner .DetailBannerImg .searchBannerPara {
    max-width: 298px;
  }
}

.search-result .outer-serchbx {
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.039);
  border: 1px solid #f5f5f5;
  border-radius: 20px;
  background: #fff;
  padding: 50px;
  margin-top: -120px;
  z-index: 3;
  position: relative;
}
.search-result .outer-serchbx .search-bar {
  max-width: 850px;
  margin: 0 auto 50px;
}
.search-result .outer-serchbx .search-bar input {
  width: 75%;
  border: none;
  border-bottom: 1px solid var(--border-color) !important;
  border-radius: 0;
  padding: 0;
  padding-bottom: 10px;
}
.search-result .outer-serchbx .search-bar .btn-default, .search-result .outer-serchbx .search-bar .btn-white, .search-result .outer-serchbx .search-bar .btn-transparent {
  border: 1px solid var(--border-color);
  color: var(--border-color);
  margin-left: 30px;
  width: 20%;
  max-width: 160px;
  padding-left: 39px;
}
.search-result .outer-serchbx .search-bar .btn-default:hover::after, .search-result .outer-serchbx .search-bar .btn-white:hover::after, .search-result .outer-serchbx .search-bar .btn-transparent:hover::after {
  background-color: unset;
}
.search-result .outer-serchbx .search-bar .btn-default::after, .search-result .outer-serchbx .search-bar .btn-white::after, .search-result .outer-serchbx .search-bar .btn-transparent::after {
  background-color: unset;
  z-index: -2;
  position: absolute;
  left: 68%;
  /* left: 110px; */
  bottom: 20px;
  background-image: url("../../assets/img/grayArrow.svg");
  background-repeat: no-repeat;
  background-position: center;
  width: 15px;
  z-index: 999;
  height: 12px;
}
.search-result .outer-serchbx .search-bar .btn-default.mainColorBtn, .search-result .outer-serchbx .search-bar .mainColorBtn.btn-white, .search-result .outer-serchbx .search-bar .mainColorBtn.btn-transparent {
  background-color: var(--red);
}
.search-result .outer-serchbx .search-bar .btn-default.mainColorBtn::after, .search-result .outer-serchbx .search-bar .mainColorBtn.btn-white::after, .search-result .outer-serchbx .search-bar .mainColorBtn.btn-transparent::after {
  filter: brightness(0.5) invert(1);
}
.search-result .outer-serchbx .srch-bx {
  margin-bottom: 40px;
}
.search-result .outer-serchbx .srch-bx .srch-txt-1 p {
  font-size: 26px;
  line-height: 32px;
  font-family: var(--font-bold);
  color: rgba(54, 54, 54, 0.8);
}
.search-result .outer-serchbx .srch-bx .srch-txt-1 p span {
  font-size: 26px;
  line-height: 32px;
  font-family: var(--font-bold);
  color: var(--red);
}
.search-result .outer-serchbx .src-box-list .srch-list {
  padding-bottom: 45px;
  margin-bottom: 25px;
  border-bottom: 1px solid rgba(174, 174, 174, 0.3019607843);
}
.search-result .outer-serchbx .src-box-list .srch-list .wd-srch {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.search-result .outer-serchbx .src-box-list .srch-list .wd-srch .sch-heading p {
  font-size: 26px;
  line-height: 32px;
  font-family: var(--font-bold);
}
.search-result .outer-serchbx .src-box-list .srch-list .wd-srch .srchData p {
  font-family: var(--font-bold);
}
.search-result .outer-serchbx .src-box-list .srch-list .wd-srch .only-txt-btn {
  color: var(--red);
  font-family: var(--font-bold);
  width: 102px;
  position: relative;
  padding-bottom: 5px;
}
.search-result .outer-serchbx .src-box-list .srch-list .wd-srch .only-txt-btn:hover::after {
  width: 100%;
}
.search-result .outer-serchbx .src-box-list .srch-list .wd-srch .only-txt-btn::before {
  content: "";
  position: absolute;
  right: 0;
  top: 5px;
  background-image: url("../../assets/img/redarrow.svg");
  background-repeat: no-repeat;
  background-position: center;
  height: 13px;
  width: 19px;
}
.search-result .outer-serchbx .src-box-list .srch-list .wd-srch .only-txt-btn::after {
  content: "";
  width: 0;
  background: #d62317;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
  transition: width 0.5s;
}
.search-result .outer-serchbx .loadMoreBtn {
  display: flex;
  justify-content: center;
  padding-top: 15px;
}
.search-result .outer-serchbx .loadMoreBtn .btn-default, .search-result .outer-serchbx .loadMoreBtn .btn-white, .search-result .outer-serchbx .loadMoreBtn .btn-transparent {
  padding: 20px 30px;
  display: flex;
  gap: 8px;
  align-items: center;
}
@media (max-width: 991px) {
  .search-result .outer-serchbx {
    padding: 40px 20px;
  }
  .search-result .outer-serchbx .search-bar input {
    width: 100%;
  }
  .search-result .outer-serchbx .search-bar .btn-default, .search-result .outer-serchbx .search-bar .btn-white, .search-result .outer-serchbx .search-bar .btn-transparent {
    width: 100%;
    margin-left: 0;
    margin-top: 20px;
  }
  .search-result .outer-serchbx .srch-bx .srch-txt-1 p {
    font-size: 20px;
    line-height: 26px;
  }
  .search-result .outer-serchbx .srch-bx .srch-txt-1 p span {
    font-size: 20px;
    line-height: 26px;
  }
}

.ErrorSection {
  padding-top: 145px;
  padding-bottom: 100px;
}
.ErrorSection .errorDetails .errorheading {
  font-size: 80px;
  line-height: 100px;
  font-weight: var(--font-bold-weight);
  color: var(--red);
}
.ErrorSection .errorDetails p {
  font-size: 45px;
  line-height: 52px;
  font-weight: var(--font-bold-weight);
  font-family: var(--font-bold);
}
.ErrorSection .errorDetails p:nth-of-type(2) {
  font-size: 24px;
  line-height: 38px;
  font-family: var(--font-regular);
  font-weight: var(--font-regular-weight);
  padding-bottom: 60px;
}
.ErrorSection .errorDetails .btn-default, .ErrorSection .errorDetails .btn-white, .ErrorSection .errorDetails .btn-transparent {
  padding: 25px 35px;
}
@media (max-width: 991px) {
  .ErrorSection {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .ErrorSection .errorDetails .errorheading {
    font-size: 25px;
    line-height: 35px;
  }
  .ErrorSection .errorDetails p {
    font-size: 25px;
    line-height: 35px;
  }
  .ErrorSection .errorDetails p:nth-of-type(2) {
    font-size: 14px;
    line-height: 22px;
    font-weight: var(--font-regular-weight);
    padding-bottom: 10px;
  }
  .ErrorSection .errorDetails .btn-default, .ErrorSection .errorDetails .btn-white, .ErrorSection .errorDetails .btn-transparent {
    padding: 20px 20px;
  }
}/*# sourceMappingURL=main.css.map */