html,
body {
  overflow-x: clip !important;
}

@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../fonts/JTUSjIg1_i6t8kCHKm459Wlhyw.woff2") format("woff2");
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212,
    U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Science Gothic";
  font-style: normal;
  font-weight: 100 900;
  font-stretch: 100%;
  font-display: swap;
  src: url("../fonts/CHydV-7EH1X7aiQh5jPNDTJnVUAvhrL0sQdjzDQhk11iTp6mX-ANuf1d_83dPfZJ7Lvcvg8EGYzcW7TqdtQ.woff2") format("woff2");
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212,
    U+2215, U+FEFF, U+FFFD;
}

html {
  scroll-behavior: smooth;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: "Montserrat", sans-serif;
  color: #000000;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
  padding-top: 90px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
  font-family: "Science Gothic";
}

.error-msg {
  position: absolute;
  bottom: -12px;
  background: transparent;
  display: flex;
  line-height: 11px;
  padding: 0 4px;
  background-color: #f00;
  color: #fff;
  font-size: 9px;
}

.overflow-visible {
  overflow: visible !important;
}

.overflow-unset {
  overflow: unset !important;
}

.overflow-hidden {
  overflow: hidden !important;
}

a {
  color: #000;
}

a:hover {
  color: #ED3237;
}

.awards-item *,
.theme-transition,
a,
button {
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

p:last-child {
  margin-bottom: 0;
}

img {
  max-width: 100%;
  height: auto;
  width: 100%;
  display: block;
}

p {
  margin-bottom: 14px;
}

p:last-child {
  margin-bottom: 0;
}

.fw-300 {
  font-weight: 300 !important;
}

.fw-400 {
  font-weight: 400 !important;
}

.fw-500 {
  font-weight: 500 !important;
}

.fw-600 {
  font-weight: 600 !important;
}

.fw-700 {
  font-weight: 700 !important;
}

.fw-800 {
  font-weight: 800 !important;
}

.fw-900 {
  font-weight: 900 !important;
}

.is-gap-0 {
  gap: 0 !important;
}

.is-gap-1 {
  gap: 4px !important;
}

.is-gap-2 {
  gap: 8px !important;
}

.is-gap-3 {
  gap: 12px !important;
}

.is-gap-4 {
  gap: 16px !important;
}

.is-gap-5 {
  gap: 24px !important;
}

.is-gap-6 {
  gap: 32px !important;
}

.is-gap-7 {
  gap: 40px !important;
}

.is-gap-8 {
  gap: 48px !important;
}

.is-gap-9 {
  gap: 56px !important;
}

.is-gap-10 {
  gap: 64px !important;
}

/*** Modal CSS ***/
.theme-modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  outline: 0;
  opacity: 0;
  visibility: hidden;
}

.theme-modal.is-active {
  visibility: visible;
  opacity: 1;
  overflow-x: hidden;
  overflow-y: auto;
  z-index: 99999;
}

.theme-modal-card {
  position: relative;
  top: calc(50% + 30px);
  max-width: 980px;
  width: 100%;
  padding: 30px;
  max-height: inherit;
  transition: all 0.3s linear;
  background-color: #FAFAFA;
  border: 1px solid #E8E9EC;
  margin: 0 auto;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}

.modal-title {
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 10px;
}

html.is-active {
  overflow: hidden;
}

html:before {
  content: "";
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #000;
  z-index: 99999;
  visibility: hidden;
  opacity: 0;
}

html.is-active:before {
  opacity: 0.9;
  visibility: visible;
}

.theme-modal.is-active .theme-modal-card {
  top: 50%;
}

.theme-modal-background {
  background-color: #000;
  transition: all 0.3s linear;
  opacity: 0;
  visibility: hidden;
}

.theme-modal[style="visibility: visible;"] .theme-modal-card {
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
  opacity: 1;
}

.theme-modal[style="visibility: visible;"] .theme-modal-background {
  opacity: 0.9;
  visibility: visible;
}

.theme-modal-card-body {
  border: 0;
  position: relative;
  overflow: visible;
}

.theme-modal-card-body {
  /* padding: 30px; */
  background-color: transparent;
  border: 1px solid rgb(255 255 255 / 20%);
}

.close {
  color: #fff;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-shadow: none;
  opacity: 1;
  border: none;
  background-color: #C8202A;
  position: absolute;
  top: -45px;
  border: 1px solid transparent;
  right: -45px;
  margin: 0 auto;
  z-index: 10;
  cursor: pointer;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.close:hover {
  background-color: #ffffff;
  color: #ED3237;
  opacity: 1;
  border: 1px solid #E8E9EC;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

/*** End Modal CSS ***/
.columns.row-register {
  margin-bottom: -12px !important;
}

.theme-modal .col-form .form-control::-webkit-input-placeholder {
  color: #8A8E96;
  font-family: "Montserrat", sans-serif;
}

.theme-modal .col-form .form-control:-ms-input-placeholder {
  color: #8A8E96;
  font-family: "Montserrat", sans-serif;
}

.theme-modal .col-form .form-control::placeholder {
  color: #8A8E96;
  font-family: "Montserrat", sans-serif;
}

.theme-scrollbar {
  overflow-x: hidden;
  overflow-y: auto;
  padding-right: 10px;
}

.theme-scrollbar::-webkit-scrollbar-track {
  -webkit-box-shadow: none;
  background-color: transparent;
}

.theme-scrollbar::-webkit-scrollbar {
  width: 6px;
  background-color: transparent;
}

.theme-scrollbar::-webkit-scrollbar-thumb {
  background-color: #ddd;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
}

ul:last-child {
  margin-bottom: 0;
}

section,
.section {
  position: relative;
  padding-top: 100px;
  padding-bottom: 100px;
  overflow: hidden;
}

.full-width {
  width: 100%;
}

.section-title {
  margin-bottom: 50px;
  position: relative;
  z-index: 2;
}

.section-title:last-child {
  margin-bottom: 0;
}

.section-title h1 {
  font-size: 100px;
  line-height: 1;
  color: #fff;
  text-transform: uppercase;
  font-weight: 300;
  font-family: "Science Gothic";
}

.left-title-line {
  padding-left: 20px;
  border-left: 1px solid #C8202A;
}

.section-title h2 {
  font-size: 50px;
  line-height: 1.1;
  font-family: "Science Gothic";
  color: #333333;
  margin: 0;
  text-transform: uppercase;
  font-weight: 400;
  position: relative;
  display: inline-block;
}

.subtitle {
  color: #C8202A;
  display: block;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

h1 {
  font-size: 50px;
}

h2 {
  font-size: 40px;
}

h3 {
  font-size: 32px;
}

h4 {
  font-size: 28px;
}

h5 {
  font-size: 24px;
}

h6 {
  font-size: 20px;
}

.dark h1,
.dark h2,
.dark h3,
.dark h4,
.dark h5,
.dark h6,
.dark a,
.dark p,
.dark span,
.dark small {
  color: #fff;
}

.dark a:hover {
  color: #ED3237;
}

video,
picture {
  display: block;
}

.container {
  position: relative;
  z-index: 1;
}

.btn {
  position: relative;
  font-family: "Science Gothic";
  border: 1px solid;
  display: inline-block;
  text-transform: uppercase;
  padding: 8px 16px;
  font-size: 14px;
  text-align: center;
  line-height: 20px;
  font-weight: 400;
  cursor: pointer;
  z-index: 1;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.btn.btn-primary {
  background-color: #ED3237;
  border-color: #ED3237;
  color: #ffffff;
}

.btn.btn-primary:hover {
  background-color: #C8202A;
  border-color: #C8202A;
  color: #ffffff;
}

.btn.btn-primary-outline {
  background-color: transparent;
  border-color: #ED3237;
  color: #ED3237;
}

.btn.btn-primary-outline:hover {
  background-color: #C8202A;
  border-color: #C8202A;
  color: #ffffff;
}

.btn.btn-white {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #ED3237;
}

.btn.btn-white:hover {
  background-color: #eeeeee;
  border-color: #eeeeee;
  color: #ED3237;
}

.btn.btn-white-outline {
  background-color: transparent;
  border-color: #ffffff;
  color: #ffffff;
}

.btn.btn-white-outline:hover {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #C8202A;
}

.col-form {
  position: relative;
}

.col-middle {
  display: table;
  width: 100%;
}

.col-middle-inner {
  display: table-cell;
  vertical-align: middle;
}

button:focus {
  outline: 0;
}

.thankyou-msg {
  font-size: 16px !important;
  color: #fff !important;
  background: 0 0 !important;
}

.thankyou-logo img {
  margin: 30px auto 0;
  height: 100px;
  width: auto;
}

.form-group,
.form-group-wrapper {
  position: relative;
}

.thankyou-block {
  height: 100vh;
}

.thankyou-block h1 {
  color: #fff;
  font-size: 30px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.list-point {
  padding: 0;
}

.list-point li {
  font-weight: 500;
  position: relative;
  list-style: none;
  padding-left: 20px;
}

.list-point li:last-child {
  margin-bottom: 0;
}

.list-point li:before {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  background: #ED3237;
  border-radius: 100%;
  left: 0;
  top: 8px;
}

.arrow-bottom .splide__arrows {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.arrow-bottom .splide__arrow {
  position: static;
  transform: unset;
  -webkit-transform: unset;
  -moz-transform: unset;
  -ms-transform: unset;
  -o-transform: unset;
}

.splide__pagination {
  margin-top: 30px;
}

.splide.pagination .splide__pagination {
  counter-reset: pagination-num;
}

.splide.pagination .splide__pagination__page:before {
  counter-increment: pagination-num;
  content: counter(pagination-num);
}

.splide.pagination .splide__pagination__page.is-active {
  transform: unset;
  -webkit-transform: unset;
  -moz-transform: unset;
  -ms-transform: unset;
  -o-transform: unset;
}

.splide.pagination .splide__pagination__page {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: unset;
  font-size: 18px;
  -webkit-border-radius: unset;
  -moz-border-radius: unset;
  -ms-border-radius: unset;
  -o-border-radius: unset;
}

.splide__arrow svg {
  fill: transparent;
  height: 45px;
  transition: fill 0.2s linear;
  width: 45px;
  -webkit-transition: fill 0.2s linear;
  -moz-transition: fill 0.2s linear;
  -ms-transition: fill 0.2s linear;
  -o-transition: fill 0.2s linear;
}

.splide__arrow:hover:not(:disabled) svg {
  fill: transparent;
}

.splide {
  padding: 0;
}

.splide__slide img {
  width: 100%;
}

.splide__arrow.splide__arrow--prev:disabled,
.splide__arrow.splide__arrow--next:disabled {
  opacity: 0.5;
  pointer-events: none;
}

.splide__arrow {
  width: 45px;
  height: 45px;
  padding: 10px;
  color: #fff;
  background-color: #ED3237;
  border: 1px solid #ED3237;
  opacity: 1;
  border-radius: 0;
}

.splide__arrow:hover {
  background-color: #ED3237;
  color: #fff;
  opacity: 1;
}

.splide__arrow svg {
  font-size: 24px;
}

.splide__arrow--prev {
  left: 60px;
}

.splide__arrow--next {
  right: 60px;
}

.splide__pagination__page {
  width: 12px;
  height: 12px;
  background: #ED3237;
  opacity: 0.5;
}

.splide__pagination__page.is-active {
  transform: none;
  background: #ED3237;
  opacity: 1;
}

.splide__pagination {
  position: static;
  transform: none;
}

.form-control {
  display: block;
  width: 100%;
  border: none;
  padding: 10px 8px;
  background-color: #fff;
  resize: none;
  color: #8A8E96;
  font-size: 14px;
  border: 1px solid #E8E9EC;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  font-family: "Montserrat", sans-serif;
}

input:-webkit-autofill {
  transition: background-color 5000s ease-in-out 0s;
  -webkit-text-fill-color: #8A8E96 !important;
  caret-color: #8A8E96;
}

.form-control:focus {
  outline: 0;
}

.pl-80 {
  padding-left: 80px !important;
}

.modal-card-body {
  padding: 30px;
}

.col-form label span {
  color: #808285;
}

.title-tagline {
  font-size: 18px;
  font-weight: 500;
  margin-top: 15px;
  display: block;
}

header {
  position: fixed;
  z-index: 9999;
  padding: 20px 150px;
  width: 100%;
  top: 0;
  left: 0;
  background-color: #fff;
  -moz-transition: transform 3s cubic-bezier(0.25, 0.1, 0.25, 1);
  -ms-transition: transform 3s cubic-bezier(0.25, 0.1, 0.25, 1);
  -o-transition: transform 3s cubic-bezier(0.25, 0.1, 0.25, 1);
  -webkit-transition: transform 3s cubic-bezier(0.25, 0.1, 0.25, 1);
  transition: transform 3s cubic-bezier(0.25, 0.1, 0.25, 1);
  box-shadow: 0 1px 3px rgb(0 0 0 / 10%);
}

#header.sticky {
  -moz-box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 0 12px rgb(0 0 0 / 10%);
  box-shadow: 0 0 12px rgb(0 0 0 / 10%);
}

.theme-menu ul {
  display: flex;
  justify-content: center;
  gap: 40px;
}

.menu-link {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  position: relative;
  width: 100%;
  display: block;
}

.menu-link.active {
  color: #ED3237;
}

.theme-logo img {
  width: fit-content;
  height: auto;
}

.col-header:first-child {
  max-width: 240px;
  padding: 0;
  flex: 0 0 240px;
}

.col-header:last-child {
  padding: 0;
  max-width: 260px;
  flex: 0 0 260px;
}

.menu-item {
  padding: 16px 10px;
}

.theme-padding {
  padding-left: 150px;
  padding-right: 150px;
}

.sticky-btn-enquire {
  position: fixed !important;
  top: 210px;
  right: -44px;
  z-index: 999 !important;
  transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
}

.sticky-btn-enquire:hover {
  color: #fff;
}

#scontactform h3 {
  font-size: 20px;
  line-height: 30px;
  color: #ffffff;
  margin-bottom: 20px;
  font-weight: bold;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  padding: 0;
}

.sticky-bottom-form {
  position: fixed;
  bottom: 0;
  left: 0;
  padding: 10px 0 0px 15px;
  width: 100%;
  z-index: 999;
  background: #ED3237;
  max-width: 1344px;
  margin: 0 auto;
  right: 0;
  border: 1px solid rgb(255 255 255 / 60%);
  border-bottom: 0;
}

.sticky-bottom-form .col-form {
  position: relative;
  width: 20%;
  float: left;
  padding: 0 15px;
  margin: 0 0 10px !important;
}

.col-form-title {
  display: none;
}

.sticky-bottom-form .col-form .form-control {
  padding: 10px 0;
  border-bottom: 1px solid #fff;
  color: #fff;
  line-height: 19px;
}

.copyright-detail p {
  display: inline-block;
}

.captcha-query,
.captcha-sticky-query {
  position: absolute;
  color: white;
  top: 50%;
  letter-spacing: 10px;
  font-size: 14px;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.theme-block-img {
  position: relative;
  overflow: hidden;
}

.theme-block-img:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #28438c;
  z-index: 1;
  opacity: 0;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.theme-block .theme-block-icon {
  position: absolute;
  top: 50%;
  width: 40px;
  height: 40px;
  margin: 0 auto;
  left: 0;
  right: 0;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 0;
  z-index: 9;
}

.theme-block .theme-block-icon svg {
  width: 40px;
  height: 40px;
  color: #fff;
}

.theme-block:hover .theme-block-img:before {
  opacity: 0.5;
}

.theme-block:hover .theme-block-icon {
  opacity: 1;
}

.section-cms {
  min-height: calc(100vh - 161px);
}

.sticky-notice {
  background-color: #b50000;
  position: fixed;
  top: 94px;
  left: 0;
  width: 100%;
  z-index: 999;
  padding: 5px;
  color: #fff;
  font-weight: 600;
  text-align: center;
}

.sticky-notice span {
  font-size: 12px;
  line-height: 16px;
  display: block;
  animation: blinker 1.5s linear infinite;
}

@keyframes blinker {
  50% {
    opacity: 0;
  }
}

.counter {
  display: flex;
  align-items: end;
}

.counter-block h3 {
  font-size: 60px;
  line-height: 1.2;
  font-weight: 600;
  color: #C8202A;
  font-family: "Montserrat";
}

.counter-block p {
  margin-top: 6px;
  color: #111111;
  line-height: 25px;
  font-weight: 500;
}

/* Accordion Css Start */

.collapse {
  overflow: hidden;
  transition: 0.5s cubic-bezier(0.5, 0, 0.3, 1);
  transition-property: opacity, height;
  will-change: opacity, contents;
}

.collapse:not(.is-active) {
  height: 0;
  opacity: 0;
}

.accordion .card {
  overflow: hidden;
  margin: -1px -1px 1px;
  background: #f3f3f3;
  border: 1px solid #d9d9d9;
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: contents;
  text-align: left;
}

.accordion .card:last-child {
  margin-bottom: -1px;
}

.accordion .card:not(:last-child):not(.is-active) {
  border-bottom-color: transparent;
}

.accordion .card.is-active {
  background: #fff;
}

.accordion .card.is-active+.card {
  border-top-color: transparent;
}

.accordion .accordion-header {
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 56px;
  margin: 0;
  padding: 16px 0 16px;
  color: rgba(0, 0, 0, 0.8);
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.theme-light-bg .accordion-header {
  border-bottom: 1px solid rgb(0 0 0 / 20%);
}

.accordion .accordion-header:hover .icon {
  opacity: 0.8;
}

.accordion .accordion-header.is-active .icon {
  transform: rotateX(180deg);
  opacity: 1;
}

.accordion .accordion-header .icon {
  width: 28px;
  height: 28px;
  fill: currentColor;
  opacity: 0.3;
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin-right: -0.25rem;
}

.accordion .accordion-content {
  padding: 20px 0 4px;
}

/* Accordion Css End */
.theme-light-bg {
  background-color: #e6f5ff;
}

.theme-bg {
  background-color: #ED3237;
}

.white-bg {
  background-color: #fff;
}

.gray-bg {
  background-color: #f8f8f8;
}

.theme-text {
  color: #ED3237 !important;
}

.white-text {
  color: #fff !important;
}

.sticky-btn-enquire.sticky-brochure {
  top: 380px;
  right: -70px;
}

.scroll-to-top {
  position: fixed;
  bottom: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 89;
  opacity: 0;
  transform: translateY(100px);
  transition: all 0.5s ease;
  background-color: #ED3237;
  color: #fff;
  border: 1px solid #ffffff30;
  -webkit-transform: translateY(100px);
  -moz-transform: translateY(100px);
  -ms-transform: translateY(100px);
  -o-transform: translateY(100px);
}

.scroll-to-top:hover {
  background: #ED3237;
}

.scroll-to-top.showBtn {
  opacity: 1;
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
}

.tab-list {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.tab-list .tab a {
  position: relative;
  display: block;
  line-height: 1;
  padding: 14px 24px;
  border: 1px solid #c3c3c3;
  text-align: center;
  width: 200px;
  background: transparent;
  cursor: pointer;
  user-select: none;
}

.tab-list .tab a:hover,
.tab-list .tab.is-active a {
  background: #ED3237;
  border: 1px solid #ED3237;
  color: #ffffff;
}

.stock-image,
.actual-image,
.artistic-impression {
  position: relative;
}

.stock-image::after,
.actual-image::after,
.artistic-impression::after {
  content: "Artistic Impression";
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: auto;
  height: auto;
  max-width: fit-content;
  z-index: 9;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  text-shadow: 1px 1px #000000;
}

.stock-image::after {
  content: "Stock Image";
}

.actual-image::after {
  content: "Actual Image";
}

.tab-list-block {
  margin-bottom: 40px;
}

.social-media {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-icon {
  position: relative;
  color: #fff;
  display: block;
  max-width: 30px;
  transform: scale(1);
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
}

.social-icon:hover {
  transform: scale(1.2);
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
}

.list-point li:not(:last-child) {
  margin-bottom: 8px;
}

.overlay-banner::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
  z-index: 1;
}

.banner-content {
  position: absolute;
  width: fit-content;
  padding: 100px 150px;
  bottom: 0;
  left: 0;
}

.menu-item.header-dropdown>.menu-link {
  padding-right: 20px;
  cursor: pointer;
}

.font-science-gothic {
  font-family: "Science Gothic";
}

.search-with-btn .btn {
  padding: 14px 28px;
}

.search-wrrapper {
  border: 1px solid #000;
}

.search-wrrapper svg {
  height: 24px;
  width: 24px;
  display: flex;
}

.h-search-btn {
  border-right: 1px solid #000;
}

.h-search-btn,
.h-lang-btn {
  padding: 12px;
}

.h-lang-dropdown {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
}

.h-lang-btn {
  border: 1px solid #CCCCCC;
  background-color: #fff;
  color: #000;
  cursor: pointer;
  line-height: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  -moz-transition: background-color 0.2s ease, border-color 0.2s ease;
  -ms-transition: background-color 0.2s ease, border-color 0.2s ease;
  -o-transition: background-color 0.2s ease, border-color 0.2s ease;
  -webkit-transition: background-color 0.2s ease, border-color 0.2s ease;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.h-lang-btn:hover,
.h-lang-dropdown.is-open .h-lang-btn {
  background-color: #fff;
}

.h-lang-dropdown.is-open .h-lang-btn {
  border-bottom-color: #fff;
}

.h-lang-btn svg {
  height: 24px;
  width: 24px;
  display: block;
}

.h-lang-dropdown-menu {
  position: absolute;
  top: calc(100% - 1px);
  right: 0;
  min-width: fit-content;
  background-color: #fff;
  border: 1px solid #CCCCCC;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 1;
  -moz-transition: opacity 0.2s ease, visibility 0.2s ease;
  -ms-transition: opacity 0.2s ease, visibility 0.2s ease;
  -o-transition: opacity 0.2s ease, visibility 0.2s ease;
  -webkit-transition: opacity 0.2s ease, visibility 0.2s ease;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.h-lang-dropdown.is-open .h-lang-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.h-lang-dropdown-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.h-lang-dropdown-list li:not(:last-child) {
  border-bottom: 1px solid #CCCCCC;
}

.h-lang-dropdown-list a {
  display: block;
  text-align: center;
  padding: 14px 20px;
  color: #000;
  font-size: 14px;
  line-height: 1.3;
  text-decoration: none;
  font-weight: 400;
  -moz-transition: background-color 0.2s ease;
  -ms-transition: background-color 0.2s ease;
  -o-transition: background-color 0.2s ease;
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}

.h-lang-dropdown-list a[data-lang="en"],
.h-lang-dropdown-list a[data-lang="pt"] {
  font-weight: 700;
  text-transform: uppercase;
}

.h-lang-dropdown-list a:hover {
  background-color: #ED3237;
  color: #fff;
}

.h-lang-dropdown-list a.is-active {
  background-color: #ED3237;
  color: #fff;
}

.section-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url("../images/pattern/section-bg.webp");
  opacity: 0.3;
}

.overview-image-item:first-child {
  margin-top: 200px;
}

.counter-block-img img {
  width: auto;
  height: 60px;
}

.counter-block-content {
  border-left: 1px solid #D9D9D9;
  padding-left: 24px;
  margin-left: 24px;
}

.counter-block {
  border: 1px solid #CCCCCC;
  padding: 24px;
}

.column.gc-item {
  width: 33.33%;
  flex: 0 0 auto;
}

.bg-gradient-primary {
  background: linear-gradient(281.86deg, #F4F5F7 0%, #FFFFFF 100%);
}

.max-width {
  max-width: fit-content;
}

.opportunities-location-item {
  display: flex;
  gap: 10px;
  white-space: nowrap;
  align-items: center;
}

.opportunities-location {
  display: flex;
  gap: 24px;
  margin-top: 20px;
}

.opportunities-content {
  border: 1px solid #CCCCCC;
}

.opportunities-item-content h3 {
  font-size: 24px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.opportunities-item {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 20px;
}

.arrow-btn {
  display: flex;
  overflow: hidden;
  font-size: 14px;
  width: fit-content;
  padding: 0;
  border: 0;
  margin: 0;
  background-color: transparent;
  cursor: pointer;
}

.arrow-icon {
  position: relative;
  z-index: 1;
  background-color: #C8202A;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
}

.arrow-icon svg {
  height: 22px;
  width: 22px;
  display: flex;
  color: #fff;
}

.arrow-btn span {
  text-transform: uppercase;
  color: #C8202A;
  padding: 10.3px 20px;
  border: 1px solid #C8202A;
  position: relative;
  font-family: "Science Gothic";
  overflow: hidden;
  display: block;
  white-space: nowrap;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.arrow-btn span::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: #C8202A;
  transition: all 0.3s ease;

}

.arrow-btn:hover span {
  color: #fff;
  z-index: 1;
}

.arrow-btn:hover span::before {
  left: 0;
  z-index: -1;
}

.opportunities-list {
  padding: 32px;
  border-bottom: 1px solid #CCCCCC;
}

.sustainability-img,
.join-us-img {
  max-width: fit-content;
  margin-right: auto;
}

.join-us-content {
  max-width: 930px;
  margin-left: auto;
}

.businesses-content-page:not(:last-child) {
  margin-bottom: 32px;
  border-bottom: 1px solid #CCCCCC;
  padding-bottom: 32px;
}

.explore-title {
  max-width: 710px;
  display: flex;
  flex-direction: column;
  min-height: 460px;
  justify-content: space-between;
}

.businesses-details-item-img img {
  max-width: 180px;
}

.section-banner .img-ratio {
  aspect-ratio: 16/7.3;
}

.businesses-details-item {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.businesses-details-item-content {
  max-width: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.businesses-title h3 {
  font-size: 50px;
  line-height: 56px;
  font-weight: 300;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.banner-title-md h1 {
  font-size: 50px;
  line-height: 60px;
  font-weight: 300;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: #fff;
  z-index: 1;
  position: relative;
}

.businesses-details-content {
  max-width: 810px;
  margin-left: auto;
}

.page-list {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 20px;
}

.page-list span {
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  display: block;
}

.page-list svg {
  height: 22px;
  width: auto;
  display: flex;
}

.page-list .active {
  color: #C8202A;
}

.mb-50 {
  margin-bottom: 50px;
}

.product-item-content h3 {
  font-size: 20px;
  line-height: normal;
  text-transform: uppercase;
}

.product-item {
  padding: 20px;
}

.product-details-item {
  border: 1px solid #CCCCCC;
  overflow: hidden;
}

.product-details-item .column {
  position: relative;
  padding: 0 !important;
}

.product-details-item .columns {
  margin: 0 !important;
}

.product-details-item .column:before {
  position: absolute;
  content: "";
  bottom: -1px;
  right: -1px;
  width: 100%;
  height: 100%;
  border-right: 1px solid #CCCCCC;
  border-bottom: 1px solid #CCCCCC;
}

.menu-items-block {
  border: 1px solid #CCCCCC;
  overflow: hidden;
}

.menu-items-block .column {
  position: relative;
  padding: 0 !important;
}

.menu-items-block .columns {
  margin: 0 !important;
}

.menu-items-block .column:before {
  position: absolute;
  content: "";
  bottom: -1px;
  right: -1px;
  width: 100%;
  height: 100%;
  border-right: 1px solid #CCCCCC;
  border-bottom: 1px solid #CCCCCC;
}

.order-2 {
  order: 2;
}

.header-dropdown-desc a:hover,
.sidebar-menu-link a:hover {
  transform: translateX(10px);
}

.header-dropdown-item h4 {
  color: #c9963a;
  font-size: 18px;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.header-dropdown-title a {
  font-size: 18px !important;
}

.header-dropdown-content {
  position: fixed;
  left: 0;
  top: 90px;
  width: 100%;
  height: calc(100vh - 260px);
  background: #FAFAFA;
  backdrop-filter: blur(10px);
  border-top: 1px solid #E8E9EC;
  padding-top: 60px;
  padding-bottom: 30px;
  opacity: 0;
  visibility: hidden;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  z-index: 888;
}



.menu-items-block-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  opacity: 0;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.menu-item-content::before {
  position: absolute;
  content: "";
  background: linear-gradient(270deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 100%);
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  opacity: 0;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.menu-item-content:hover .explore-btn a {
  transform: translateX(10px);
  color: #fff;
}

.menu-item-content:hover .menu-items-block-img {
  opacity: 1;
}

.menu-item-content:hover::before {
  opacity: 1;
}

.header-dropdown-content a,
.header-dropdown-content .menu-link {
  display: block;
  font-weight: 400;
  text-transform: capitalize;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  color: #8A8E96;
  font-size: 18px;
  line-height: normal;
  padding: 12px 0;
  max-width: 300px;
}

.header-dropdown.menu-active .header-dropdown-content {
  opacity: 1;
  visibility: visible;
  top: 90px;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.header-dropdown-inner:hover .header-dropdown-inner-content {
  opacity: 1;
  visibility: visible;
  top: 0;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.menu-block h5 {
  font-size: 18px;
  color: #ef4130;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.menu-with-arrow svg {
  display: inline-block;
  vertical-align: middle;
}

.menu-item.header-dropdown>.menu-link {
  cursor: pointer;
}

.header-dropdown>.menu-link:before {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  right: -5px;
  background-size: contain;
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23000000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath stroke='none' d='M0 0h24v24H0z' fill='none'/%3E%3Cpath d='M6 9l6 6l6 -6'/%3E%3C/svg%3E");
}

.dropdown-arrow {
  position: relative;
  padding-right: 40px !important;
}

.dropdown-arrow:before {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  right: -26px;
  background-size: contain;
  width: 12px;
  height: 12px;
  background-repeat: no-repeat;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  filter: unset !important;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 10px solid #ef4130;
  opacity: 0;
}

.menu-link.dropdown-arrow:hover::before {
  opacity: 1;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.dropdown-arrow:hover:before {
  filter: unset !important;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}


.header-dropdown-second-content,
.header-dropdown-inner-content {
  position: absolute;
  left: 100%;
  top: 0;
  width: 250px;
  background: rgba(0, 0, 0, 0.8);
  padding: 24px;
  opacity: 1;
  visibility: visible;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  z-index: 888;
  border-left: 1px solid #b5191e;
  border-top: 0;
}

.header-dropdown-content a:hover,
.header-dropdown-content .menu-link:hover {
  color: #ef4130;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.header-dropdown-second {
  position: relative;
}

.header-dropdown-second-content {
  width: 300px;
}

.header-dropdown-second:hover .header-dropdown-second-content {
  opacity: 1;
  visibility: visible;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.explore-btn a {
  display: flex;
  align-items: center;
  position: relative;
  font-family: "Science Gothic";
  text-transform: uppercase;
  font-size: 14px;
  max-width: fit-content;
  padding: 0;
  z-index: 2;
}

.explore-btn a:hover {
  transform: translateX(10px);
}

.menu-item-content {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
}

.menu-item-content h4 {
  color: #C8202A;
  font-size: 24px;
  line-height: normal;
  text-transform: uppercase;
  position: relative;
  z-index: 2;
}

.header-dropdown:hover>.menu-link::before,
.menu-active .menu-link::before,
.menu-link.active::before,
.menu-link:hover::before {
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23C8202A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath stroke='none' d='M0 0h24v24H0z' fill='none'/%3E%3Cpath d='M6 9l6 6l6 -6'/%3E%3C/svg%3E") !important;
}

.sticky-item {
  position: sticky;
  top: 140px;
}

.gc-item-img {
  background-color: #FAFAF9;
  border: 1px solid #E8E9EC;
  padding: 20px;
  overflow: hidden;
  position: relative;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.gc-item-img img {
  mix-blend-mode: multiply;
  transform: scale(1.05);
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  object-fit: contain !important;
}

.gc-item-img:hover img {
  transform: scale(1);
}

.gc-item-content {
  position: absolute;
  bottom: -30px;
  left: 0;
  text-align: center;
  width: 100%;
  padding: 0 10px;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.gc-item-img:hover .gc-item-content {
  bottom: 10px;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.map-element img {
  position: absolute;
  bottom: 0;
  left: 0;
  max-width: 70%;
}

.our-pillars-img img {
  width: auto;
  height: 150px;
}

.our-pillars-block {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px;
  overflow: hidden;
  position: relative;
  min-height: 470px;
}

.our-pillars-content h3 {
  font-size: 22px;
  margin-bottom: 5px;
  font-weight: 500;
}

img.pillars-hover-icon {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.our-pillars-block:hover .pillars-normal-icon {
  opacity: 0;
}

.our-pillars-block:hover .pillars-hover-icon {
  opacity: 1;
}

.pillars-desc {
  max-height: 0;
  font-size: 16px;
  transition: max-height 0.5s ease-in-out;
  -moz-transition: max-height 0.5s ease-in-out;
  -ms-transition: max-height 0.5s ease-in-out;
  -o-transition: max-height 0.5s ease-in-out;
  -webkit-transition: max-height 0.5s ease-in-out;
}

.our-pillars-block:hover .pillars-desc {
  max-height: 90px;
}

.our-pillars-block:hover {
  background-color: #C8202A;
  color: #fff;
}

#chartdiv {
  width: 100%;
  height: 700px;
}

.global-connectivity-list li {
  background: linear-gradient(90deg, #EEEEEE 0%, #FFFFFF 100%);
  max-width: 385px;
  padding: 6px 10px;
  border-left: 1px solid #8A8E96;
}

.global-connectivity-list li:not(:last-child) {
  margin-bottom: 10px;
}

.row-presidents-vision .column:first-child {
  width: 150px;
  flex: 0 0 auto;
}

img.vision-element-icon-dark {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.section-presidents-vision:hover .vision-element-icon-dark {
  opacity: 1;
}

.section-presidents-vision:hover .vision-element-icon {
  opacity: 1;
}

.presidents-name h5 {
  font-size: 20px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #C8202A;
}

.presidents-name span {
  font-size: 16px;
  color: #8A8E96;
}

.presidents-vision-content {
  padding-left: 30px;
  border-left: 1px solid #CCCCCC;
}

.vision-element-icon img {
  width: auto;
  height: 88px;
}

.presidents-vision-title {
  margin-left: 150px;
  margin-bottom: 100px;
}

.light-gradient-title {
  font-weight: 400;
  text-transform: uppercase;
  background: linear-gradient(90deg, rgba(98, 16, 21, 0.1) 0%, rgba(200, 32, 42, 0.1) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.big-title h3 {
  font-size: 124px;
  line-height: 1;
}

.brands-logos-wrapper {
  border: 1px solid #CCCCCC;
  overflow: hidden;
}

.brands-logos-wrapper .column {
  position: relative;
  padding: 0 !important;
}

.brands-logos-wrapper .columns {
  margin: 0 !important;
}

.brands-logos-wrapper .column:before {
  position: absolute;
  content: "";
  bottom: -1px;
  right: -1px;
  width: 100%;
  height: 100%;
  border-right: 1px solid #CCCCCC;
  border-bottom: 1px solid #CCCCCC;
}

.row-brands-logos .column {
  flex: 0 0 calc(100% / 6);
  max-width: calc(100% / 6);
}

.brand-logo img {
  transform: scale(1);
  aspect-ratio: 1 / 1 !important;
  object-fit: contain !important;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  max-width: 80%;
  margin: 0 auto;
}

.brand-logo:hover img {
  transform: scale(0.9);
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

button.brand-logo {
  background: none;
  border: none;
  padding: 1px;
  width: 100%;
  cursor: pointer;
  display: block;
}

button.gc-logo {
  background: none;
  border: none;
  padding: 0;
  width: 100%;
  cursor: pointer;
  display: block;
}

.brand-modal .brand-modal-card {
  background-color: #ffffff;
  border: 1px solid #333333;
  max-width: 600px;
  padding: 0 24px 24px;
}

.brand-modal-header {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 16px;
  align-items: center;
}

.brand-modal-logo img {
  display: block;
  border: 1px solid #eee;
  max-width: 140px;
  aspect-ratio: 1/1;
  object-fit: contain;
  padding: 10px;
}

.brand-modal-close {
  width: 40px;
  height: 40px;
  min-width: 40px;
  top: -40px;
  right: -40px;
  background-color: #C8202A;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #ffffff;
  padding: 0;
  position: absolute;
  opacity: 1;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.brand-modal-close:hover {
  background-color: #a01a22;
  color: #ffffff;
  opacity: 1;
}

.brand-modal-body p {
  color: #333333;
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 10px;
}

.brand-modal-body p:last-child {
  margin-bottom: 0;
}

.media-item-img::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
  z-index: 1;
}

.media-item-content {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 20px;
  color: #fff;
  z-index: 2;
}

.media-item-date {
  display: block;
  font-size: 14px;
  line-height: 1.4;
  margin-bottom: 10px;
}

.media-item-title {
  font-size: 18px;
  line-height: 1.4;
  text-transform: uppercase;
  font-family: "Science Gothic";
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.media-item-img img {
  transform: scale(1);
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.media-item:hover img {
  transform: scale(1.05);
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.media-item-img {
  overflow: hidden;
}

.right-btn {
  max-width: fit-content;
  margin-left: auto;
}

.join-us-title span {
  font-size: 24px;
  letter-spacing: 10%;
  text-transform: uppercase;
  line-height: normal;
}

.join-us-title h2 {
  font-size: 80px;
  line-height: 1.1;
  text-transform: uppercase;
  font-weight: 600;
}

.join-us-wrapper {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
}

.join-us-video::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.20) 0%, rgb(0 0 0 / 40%) 100%);
}

.join-us-video video {
  width: 100%;
  height: 75vh;
  object-fit: cover;
}

.gc-item-img:hover {
  box-shadow: 0px 0px 24px 6px #0000001F inset;
}

.president-title {
  margin-left: 150px;
  margin-bottom: 100px;
}

.fs-1 {
  font-size: 12px;
}

.fs-2 {
  font-size: 14px;
}

.fs-3 {
  font-size: 16px;
}

.fs-4 {
  font-size: 18px;
}

.fs-5 {
  font-size: 20px;
}

::-webkit-scrollbar-track {
  background-color: #fff;
}

::-webkit-scrollbar {
  width: 5px;
  background-color: #fff;
}

::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: #A31920;
}

::selection {
  color: #fff;
  background-color: #A31920;
}

.footer {
  background: linear-gradient(180deg, #A31920 0%, #61080C 100%);
  padding: 80px 0 !important;
  font-size: 14px;
  font-weight: 500;
}

.footer-logo {
  max-width: 310px;
  margin-bottom: 60px;
}

.footer-item h6 {
  color: rgba(255, 255, 255, 0.50) !important;
  font-size: 12px;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.footer-desc {
  padding: 40px 0;
  max-width: 450px;
}

.light-dark-links a {
  color: rgba(255, 255, 255, 0.64) !important;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
}

.light-dark-links li:not(:last-child) {
  margin-bottom: 30px;
}

.light-dark-links a:hover,
.light-dark-links a.active {
  color: #fff !important;
}

.menu-list-bottom {
  border-bottom: 1px solid rgba(204, 204, 204, 0.20);
  border-top: 1px solid rgba(204, 204, 204, 0.20);
  padding: 30px 0;
}

.footer-menu li:not(:last-child) {
  padding-right: 4px;
  margin-right: 4px;
  border-right: 1px solid #fff;
  line-height: 1;
}

.column.footer-main-col:first-child {
  width: 34%;
  flex: 0 0 auto;
}

.our-presence-item ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.our-presence-item li {
  width: calc(50% - 10px);
}

.footer-businesses-list .column {
  padding: 5px;
}

.footer-businesses-list .columns {
  margin: -5px;
}

.footer-right-part {
  padding-left: 120px;
}

.book-a-call {
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(2.5px);
  display: flex;
  padding: 25px 50px;
  height: 100%;
  align-items: center;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.12) 0%, rgba(153, 153, 153, 0.12) 100%);
}

.book-a-call::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 60%;
  height: 100%;
  z-index: 1;
  background: linear-gradient(90deg,
      transparent 0%,
      rgba(255, 255, 255, 0.06) 25%,
      rgba(255, 255, 255, 0.22) 50%,
      rgba(153, 153, 153, 0.14) 75%,
      transparent 100%);
  transform: translateX(-120%);
  animation: book-a-call-shimmer 3s linear infinite;
  pointer-events: none;
}

.book-a-call>.footer-item {
  position: relative;
  z-index: 2;
}

@keyframes book-a-call-shimmer {
  0% {
    transform: translateX(-120%);
  }

  100% {
    transform: translateX(220%);
  }
}

.footer-m-list-inner {
  padding: 25px 25px 25px 0;
  border-right: 1px solid rgba(204, 204, 204, 0.20);
}

.our-presence-item-inner {
  padding: 18px 50px;
}

.footer-presense-with-call-btn {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.book-a-call span {
  font-family: "Science Gothic";
  font-size: 26px;
  letter-spacing: 9.88px;
}

.contact-add-cols .column:first-child {
  width: 100%;
  flex: 0 0 auto;
  border-bottom: 1px solid #CCCCCC33;
}

.businesses-item-title {
  margin-bottom: -8px !important;
  position: relative;
}

.businesses-bg {
  position: absolute;
  inset: 0;
}

.motion-image-content {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.motion-image-content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  inset: 0;
  will-change: clip-path;
}

.businesses-bg.is-base .motion-image-content img,
.businesses-bg.is-revealed .motion-image-content img {
  clip-path: inset(0 0 0 0);
}

.businesses-bg.is-hidden .motion-image-content img {
  clip-path: inset(0 0 100% 0);
}

.businesses-bg.is-revealing.reveal-from-top .motion-image-content img {
  clip-path: inset(0 0 100% 0);
  animation: revealFromTop 1.1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes revealFromTop {
  0% {
    clip-path: inset(0 0 100% 0);
  }

  100% {
    clip-path: inset(0 0 0 0);
  }
}

.businesses-content {
  padding-bottom: 100px;
  padding-top: 100px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 100px;
  color: #fff;
  position: relative;
  z-index: 9;
  min-height: 100vh;
}

.businesses-wrapper:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9;
  pointer-events: none;
  background: linear-gradient(270deg,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.9) 100%);
}

.businesses-content-list {
  display: grid;
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 540px;
}

.businesses-content-list li {
  grid-area: 1 / 1;
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

.businesses-content-list li.active {
  opacity: 1;
  pointer-events: auto;
}

.businesses-content-list p {
  margin: 0;
  font-weight: 500;
  font-size: 16px;
}

.businesses-list a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 24px;
  line-height: 1.3;
  text-transform: uppercase;
  text-decoration: unset;
  display: flex;
  padding: 10px 0 10px 30px;
  border-left: 1px solid #ffffff80;
  width: fit-content;
  font-family: "Science Gothic";
}

.businesses-list li.active a {
  border-left: 1px solid #ffffff;
  color: #c8202a;
}

.img-ratio {
  width: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  height: auto !important
}

.square-img-fixed-ratio {
  aspect-ratio: 1 / 1;
}

.img-fixed-ratio {
  aspect-ratio: 16/9 !important
}

.businesses-images .img-ratio-horizontal {
  aspect-ratio: 1 / 0.75;
}

.img-ratio-horizontal {
  aspect-ratio: 1 / 1.3;
}

.product-item-img .square-img-fixed-ratio {
  aspect-ratio: 1 / 0.75;
}

.awards-img .square-img-fixed-ratio {
  aspect-ratio: 1 / 0.75;
}

.img-ratio-square {
  aspect-ratio: 1 / 0.49;
}

.awards-content {
  position: relative;
}

.awards-highlight {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: #C8202A;
  pointer-events: none;
  z-index: 0;
  transform: translateY(0);
  -moz-transition: transform 0.3s linear, height 0.3s linear, opacity 0.3s linear;
  -ms-transition: transform 0.3s linear, height 0.3s linear, opacity 0.3s linear;
  -o-transition: transform 0.3s linear, height 0.3s linear, opacity 0.3s linear;
  -webkit-transition: transform 0.3s linear, height 0.3s linear, opacity 0.3s linear;
  transition: transform 0.3s linear, height 0.3s linear, opacity 0.3s linear;
  opacity: 0;
}

.awards-content.is-hovering .awards-highlight {
  opacity: 1;
}

.awards-item:not(:last-child) {
  border-bottom: 1px solid #CCCCCC;
}

.awards-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 20px 40px;
  position: relative;
  color: #000;
  z-index: 1;
  -moz-transition: color 0.3s linear;
  -ms-transition: color 0.3s linear;
  -o-transition: color 0.3s linear;
  -webkit-transition: color 0.3s linear;
  transition: color 0.3s linear;
}

.awards-item.is-active,
.awards-item.is-active .awards-year h3,
.awards-item.is-active .awards-list h4,
.awards-item.is-active .awards-list p {
  color: #fff;
}

.awards-list {
  z-index: 1;
  width: 38%;
}

.awards-list h4 {
  font-size: 20px;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.awards-list p {
  font-size: 14px;
}

.awards-img img {
  position: absolute;
  max-width: fit-content;
  top: 50%;
  transform: translateY(-50%) scale(0);
  left: 0;
  right: 0;
  margin: 0 auto;
  left: inherit !important;
  right: calc(50% + 80px) !important;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  z-index: 1;
}

.awards-item.is-active img {
  transform: translateY(-50%) scale(1);
}

.awards-year h3 {
  font-size: 50px;
  position: relative;
  z-index: 1;
  font-weight: 300;
}

.mb-100 {
  margin-bottom: 100px !important;
}

.sustainability-content {
  max-width: 930px;
  margin-left: auto;
}

.investors-list {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  width: fit-content;
}

.investors-list li {
  font-size: 14px;
  height: fit-content;
}

.investors-partnerships h3 {
  font-size: 16px;
  line-height: 24px;
  text-transform: uppercase;
}

.why-partner-item {
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 25px;
  height: 100%;
}

.why-partner-content h4 {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 1.4;
  margin: 0;
}

.section-why-partner .columns {
  margin-top: 20px;
}

.news-img img {
  aspect-ratio: 1 / 1.4;
}

.key-initiatives {
  position: relative;
  overflow: visible;
}

.key-initiatives-media {
  position: absolute;
  top: 0;
  left: 38%;
  width: 220px;
  height: 220px;
  z-index: 3;
  pointer-events: none;
  opacity: 0;
  overflow: hidden;
  transform: translate(-50%, 0) translateY(-50%);
  -moz-transition: opacity 0.35s ease, transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  -ms-transition: opacity 0.35s ease, transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: opacity 0.35s ease, transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transition: opacity 0.35s ease, transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  transition: opacity 0.35s ease, transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.key-initiatives.is-hovering .key-initiatives-media {
  opacity: 1;
}

.key-initiatives-media-track {
  -moz-transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  -ms-transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.key-initiatives-media-slide {
  width: 220px;
  height: 220px;
}

.key-initiatives-media-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.key-initiatives-item:not(:last-child) {
  border-bottom: 1px solid #CCCCCC;
}

.key-initiatives-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  padding: 28px 0;
  position: relative;
  color: #000;
  z-index: 1;
}

.key-initiatives-title {
  flex: 0 0 42%;
  z-index: 1;
}

.key-initiatives-title h4 {
  font-size: 22px;
  text-transform: uppercase;
  margin-bottom: 0;
  color: #C8202A;
  font-weight: 300;
}

.key-initiatives-desc p {
  font-size: 18px;
  color: #333;
  margin-bottom: 0;
}

.brands-list {
  position: relative;
  overflow: visible;
}

.brands-list-media {
  position: absolute;
  top: 0;
  right: 0;
  width: 220px;
  height: 220px;
  z-index: 3;
  pointer-events: none;
  opacity: 0;
  overflow: hidden;
  transform: translate(0, 0) translateY(-50%);
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0px 0px 24px 0px #0000001F inset;
  -moz-transition: opacity 0.35s ease, transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  -ms-transition: opacity 0.35s ease, transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: opacity 0.35s ease, transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transition: opacity 0.35s ease, transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  transition: opacity 0.35s ease, transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.brands-list.is-hovering .brands-list-media {
  opacity: 1;
}

.brands-list-media-track {
  -moz-transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  -ms-transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.brands-list-media-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 220px;
  height: 220px;
  padding: 36px;
  box-sizing: border-box;
}

.brands-list-media-slide img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.brands-list-item:not(:last-child) {
  border-bottom: 1px solid #CCCCCC;
}

.brands-list-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  padding: 28px 260px 28px 0;
  position: relative;
  color: #000;
  z-index: 1;
}

.brands-list-title {
  flex: 0 0 28%;
  z-index: 1;
}

.brands-list-title h4 {
  font-size: 22px;
  text-transform: uppercase;
  margin-bottom: 0;
  color: #C8202A;
  font-weight: 300;
}

.brands-list-desc {
  flex: 1;
  z-index: 1;
}

.brands-list-desc p {
  font-size: 18px;
  color: #333;
  margin-bottom: 0;
}

.news-img-details-col img {
  aspect-ratio: 1 / 0.7;
}

.more-news-title h3 {
  font-size: 20px;
  line-height: 1.4;
  margin-bottom: 15px;
}

.more-news-content {
  padding-left: 30px;
  border-left: 1px solid #CCCCCC;
}

.news-other-img {
  max-width: 80px;
  border-radius: 100%;
  position: relative;
  overflow: hidden;
}

.news-other {
  display: flex;
  gap: 20px;
  align-items: center;
  padding-right: 20px;
  margin-right: 20px;
  border-right: 1px solid #8A8E96;
}

.news-other-content h3 {
  font-size: 22px;
  line-height: 1.4;
}

.news-details-header {
  display: flex;
  align-items: center;
}

.news-date span {
  color: #444444;
  font-size: 20px;
  line-height: normal;
}

.banner-image .img-ratio {
  aspect-ratio: 16/7.3;
}

.block-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  z-index: 9;
  max-width: 100% !important
}

.contact-btn-responsive {
  display: none !important;
}

.columns.is-variable.is-8 {
  --columnGap: 50px;
}

.gc-item-content span {
  font-size: 14px;
  color: #666666;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  text-transform: uppercase;
  font-weight: 500;
}

.file-upload>input[type="file"] {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0
}

.input-group {
  position: relative;
  display: flex;
  align-items: stretch;
  width: 100%;
  cursor: pointer;
}

.input-group-text {
  display: flex;
  align-items: center;
  padding: 0;
  color: #808285;
  text-align: center;
  white-space: nowrap;
  background-color: #fff0;
  background-clip: padding-box;
  border-radius: 0;
  border-bottom: 1px solid #bcbec0;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}

.file-upload-name {
  padding-right: 30px;
}

.our-pillars-img {
  max-width: 150px;
}

.custom-select .select2-container--default .select2-selection {
  border: 1px solid #E8E9EC;
}

.reach-us-detail a {
  display: block;
  font-size: 16px;
  line-height: 24px;
  color: #000000;
  font-weight: 500;
}

.reach-us-detail h6 {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #8A8E96;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.reach-us-detail span {
  display: block;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 500;
  color: #000000;
  max-width: 400px;
}

.col-reach-us-detail:first-child {
  border-right: 1px solid #CCCCCC;
}

.reach-us-detail {
  padding: 14px 20px;
}

.column.col-reach-us-detail {
  padding: 0;
}

.columns.row-reach-us-detail {
  margin: 0;
}

.column.col-reach-us-detail:not(:last-child) {
  border-bottom: 1px solid #CCCCCC;
}

.reach-us-wrapper {
  max-width: 540px;
}

.contact-us-form {
  padding: 50px;
}

.form-label {
  font-size: 14px;
  line-height: 100%;
  margin-bottom: 5px;
  display: block;
  font-family: "Science Gothic";
}

.bg-grey-primary {
  background-color: #FAFAFA;
  border: 1px solid #E8E9EC;
}

.form-control::placeholder {
  color: #8A8E96;
  font-size: 14px;
  font-weight: 300;
  font-family: "Montserrat";
}

.mobile-with-country {
  display: flex;
}

.select2-container--default .select2-selection--single {
  background-color: #fff;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #8A8E96;
  font-weight: 300;
}

.mobile-with-country .select2-container--default .select2-selection {
  border: 1px solid #E8E9EC;
  border-right: unset;
}

.mobile-with-country .select2-container .select2-selection--single .select2-selection__rendered {
  padding-right: 30px;
}

.mobile-with-country .select2-container--default .select2-selection--single .select2-selection__arrow b,
.custom-select .select2-container--default .select2-selection--single .select2-selection__arrow b {
  background-image: url("../images/icon/arrow-down.svg");
  top: 50%;
  transform: translateY(-50%);
  height: 5px;
  width: 10px;
}

.mobile-with-country .select2-container--default .select2-selection--single .select2-selection__arrow {
  right: 0;
}

.mobile-with-country .select2-container--default .select2-selection--single .select2-selection__rendered,
.custom-select .select2-container--default .select2-selection--single .select2-selection__rendered {
  padding-left: 8px;
}

.select2-search.select2-search--dropdown.select2-search--hide {
  display: none;
}

.contact-us-form-title h6 {
  font-size: 24px;
  line-height: 32px;
  text-transform: uppercase;
}

.about-us-image {
  max-width: fit-content;
  margin-right: auto;
}

.about-us-counter-block.counter-block h3 {
  font-size: 40px;
  font-weight: 500;
}


.about-us-counter-block .counter-block-img img {
  width: auto;
  height: 50px;
}

.about-us-counter-block.counter-block p {
  line-height: 1.4;
  font-size: 14px;
}

.about-us-counter-block.counter-block .counter-block-content {
  border-left: 1px solid #D9D9D9;
  padding-left: 20px;
  margin-left: 20px;
}

.core-values-content {
  display: flex;
  gap: 15px;
}

.core-values-item h4 {
  font-size: 20px;
  line-height: 1.4;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.core-values-content:not(:last-child) {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #CCCCCC;
}

.core-values-number span {
  color: #E8E9EC;
  font-size: 32px;
  font-family: "Science Gothic";
  display: block;
}

.vision-icon {
  max-width: fit-content;
  margin-left: auto;
}

.mission-icon {
  max-width: fit-content;
  margin-right: auto;
}

.section-vision-mission::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 1px;
  background-color: #CCCCCC;
  left: 0;
  right: 0;
  top: 0;
  margin: 0 auto;
}

:root {
  --bg-color: #f5f5f5;
  --text-main: #000000;
  --text-muted: #343434;
  --primary-color: #C8202A;
  --primary-glow: rgb(200 32 42 / 50%);
  --border-color: rgb(200 32 42 / 50%);
  --card-shadow: 0 20px 40px rgba(0, 10, 30, 0.08), 0 5px 15px rgba(0, 10, 30, 0.04);
  --font-header: 'Science Gothic', sans-serif;
  --font-body: 'Montserrat', sans-serif;
  --transition-speed: 0.6s;
  --transition-ease: cubic-bezier(0.25, 1, 0.5, 1);
}

.timeline-wrapper {
  position: relative;
  flex-grow: 1;
  display: flex;
  align-items: center;
  min-height: 480px;
  width: 100%;
}

.dial-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  pointer-events: auto;
  z-index: 1;
  cursor: grab;
}

.dial-wrapper:active {
  cursor: grabbing;
}

.dial-svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.dial-track {
  fill: none;
  stroke: rgb(166 166 166 / 20%);
  stroke-width: 1.5px;
}

.dial-progress {
  fill: none;
  stroke: var(--primary-color);
  stroke-width: 2.5px;
  stroke-linecap: round;
  filter: drop-shadow(0 0 5px rgba(0, 171, 236, 0.3));
  transition: stroke-dashoffset var(--transition-speed) var(--transition-ease);
}

.dial-dot {
  fill: #ffffff;
  stroke: var(--primary-color);
  stroke-width: 4px;
  filter: drop-shadow(0 0 8px var(--primary-glow)) drop-shadow(0 4px 10px rgba(0, 0, 0, 0.15));
  transition: cx var(--transition-speed) var(--transition-ease), cy var(--transition-speed) var(--transition-ease);
}

#ticks-group line {
  stroke: #898989;
  stroke-linecap: round;
}

.timeline-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.2fr;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 2;
  gap: 20px;
  pointer-events: none;
}

.image-card,
.nav-arrow {
  pointer-events: auto;
}

.slide-left-col {
  display: flex;
  justify-content: flex-end;
  padding-right: 50px;
}

.image-card-container {
  width: 100%;
  max-width: 440px;
  height: 250px;
  position: relative;
}

.image-card {
  width: 100%;
  height: 100%;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(255, 255, 255, 0.7);
  background-color: #ffffff;
  transition: transform var(--transition-speed) var(--transition-ease), opacity var(--transition-speed);
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.image-card:hover img {
  transform: scale(1.04);
}

.slide-center-col {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
}

.center-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.subtitle-wrap {
  height: 24px;
  overflow: hidden;
  margin-bottom: 5px;
}

.slide-subtitle {
  display: block;
  font-family: var(--font-header);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: var(--text-muted);
  text-transform: uppercase;
  transition: transform var(--transition-speed) var(--transition-ease), opacity var(--transition-speed);
}

.year-wrap {
  height: 140px;
  overflow: hidden;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.slide-year {
  font-family: var(--font-header);
  font-size: 40px;
  font-weight: 400;
  color: var(--primary-color);
  line-height: 1;
  letter-spacing: -2px;
  transition: transform var(--transition-speed) var(--transition-ease), opacity var(--transition-speed);
}

.controls-wrap {
  display: flex;
  gap: 15px;
}

.nav-arrow {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.04);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
}

.nav-arrow svg {
  width: 22px;
  height: 22px;
  fill: var(--text-muted);
  transition: fill 0.3s;
}

.nav-arrow:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  box-shadow: 0 6px 20px var(--primary-glow);
}

.nav-arrow:hover svg {
  fill: #ffffff;
}

.slide-right-col {
  padding-left: 50px;
  overflow: hidden;
}

.info-content-wrap {
  max-width: 400px;
  transition: transform var(--transition-speed) var(--transition-ease), opacity var(--transition-speed);
}

.slide-title {
  font-family: var(--font-header);
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.slide-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 0;
}

.slide-out-left {
  animation: slideOutLeftAnim var(--transition-speed) var(--transition-ease) forwards;
}

.slide-in-right {
  animation: slideInRightAnim var(--transition-speed) var(--transition-ease) forwards;
}

.slide-out-right {
  animation: slideOutRightAnim var(--transition-speed) var(--transition-ease) forwards;
}

.slide-in-left {
  animation: slideInLeftAnim var(--transition-speed) var(--transition-ease) forwards;
}

.slide-out-up {
  animation: slideOutUpAnim var(--transition-speed) var(--transition-ease) forwards;
}

.slide-in-up {
  animation: slideInUpAnim var(--transition-speed) var(--transition-ease) forwards;
}

.slide-out-down {
  animation: slideOutDownAnim var(--transition-speed) var(--transition-ease) forwards;
}

.slide-in-down {
  animation: slideInDownAnim var(--transition-speed) var(--transition-ease) forwards;
}

@keyframes slideOutLeftAnim {
  0% {
    transform: translateX(0);
    opacity: 1;
  }

  100% {
    transform: translateX(-40px);
    opacity: 0;
  }
}

@keyframes slideInRightAnim {
  0% {
    transform: translateX(40px);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideOutRightAnim {
  0% {
    transform: translateX(0);
    opacity: 1;
  }

  100% {
    transform: translateX(40px);
    opacity: 0;
  }
}

@keyframes slideInLeftAnim {
  0% {
    transform: translateX(-40px);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideOutUpAnim {
  0% {
    transform: translateY(0);
    opacity: 1;
  }

  100% {
    transform: translateY(-30px);
    opacity: 0;
  }
}

@keyframes slideInUpAnim {
  0% {
    transform: translateY(30px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slideOutDownAnim {
  0% {
    transform: translateY(0);
    opacity: 1;
  }

  100% {
    transform: translateY(30px);
    opacity: 0;
  }
}

@keyframes slideInDownAnim {
  0% {
    transform: translateY(-30px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.leadership-team-content {
  border: 1px solid #CCCCCC;
  overflow: hidden;
}

.leadership-team-content .column {
  position: relative;
  padding: 0 !important;
}

.leadership-team-content .columns {
  margin: 0 !important;
}

.leadership-team-content .column:before {
  position: absolute;
  content: "";
  bottom: -1px;
  right: -1px;
  width: 100%;
  height: 100%;
  border-right: 1px solid #CCCCCC;
  border-bottom: 1px solid #CCCCCC;
  z-index: -1;
}

.leadership-team-item {
  padding: 20px;
}

.leadership-team-item-content h3 {
  font-size: 18px;
  text-transform: uppercase;
  white-space: nowrap;
}

.leadership-team-item-content p {
  font-size: 14px;
  color: #8A8E96;
  font-weight: 500;
}

.popup-trigger-btn svg {
  display: flex;
}

.popup-trigger-btn {
  padding: 16px !important;
  position: absolute !important;
  top: 8px !important;
  right: 8px !important;
}

#leadership-modal.brand-modal .brand-modal-card {
  max-width: 850px;
}

.brand-modal-logo {
  gap: 15px;
  position: relative;
  top: -40px;
  margin-bottom: -30px;
  background-color: #fff;
}

.brand-modal-body {
  max-height: 250px;
}

.awards-img img {
  width: 22% !important;
  max-width: 280px !important;
  height: auto !important;
}

.brands-logos-mobile-version {
  display: none !important;
}

.brands-list-img {
  display: none;
}

.media-item-img {
  position: relative;
}

.order-2 {
  order: 1;
}

.key-initiatives-img,
.brands-list-img {
  display: none;
}

.key-initiatives-media {
  right: calc(50% + 80px) !important;
}

.key-initiatives-item {
  gap: 20px;
  padding: 20px 0;
}

.key-initiatives-title {
  flex: 0 0 28%;
  max-width: 28%;
}

.key-initiatives-desc {
  flex: 0 0 50%;
  max-width: 50%;
  width: auto;
}

.why-partner-grid .column:before {
  position: absolute;
  content: "";
  right: -1px;
  bottom: -1px;
  width: 100%;
  height: 100%;
  border-bottom: 1px solid #CCCCCC;
  border-right: 1px solid #CCCCCC;
  z-index: -1;
}

.why-partner-icon {
  width: 70px;
  flex: 0 0 auto;
}

.investors-list li {
  width: calc(25% - 10px);
  flex: 0 0 auto;
}

.leadership-team-item-img .img-ratio-square {
  aspect-ratio: 1 / 0.7;
}

.section-vision-mission {
  border-top: 1px solid #CCCCCC;
  border-bottom: 1px solid #CCCCCC;
}

.policy-text-content h3 {
  font-size: 20px;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: #333;
}

.our-presence-item-inner:first-child {
  border-bottom: 1px solid #CCCCCC33;
}

.contact-item-inner a:not(:last-child) {
  padding-right: 10px;
  margin-right: 10px;
  border-right: 1px solid #CCCCCC33;
}

.contact-add-cols .column {
  padding: 22px 0 !important;
}

.columns.contact-add-cols {
  margin: -22px 0 !important;
}

.leadership-modal .brand-modal-logo {
  inset: unset !important;
  margin: unset !important;
  align-items: center !important;

}

.leadership-modal .brand-modal-card {
  padding: 24px;
}

.leadership-modal .brand-modal-logo img {
  padding: 0;
}

.leadership-modal-img img {
  max-width: 150px;
}

/*** Leadership Detail Cards ***/
.leadership-detail-card {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  padding: 30px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.leadership-detail-header {
  display: flex;
  align-items: start;
  gap: 20px;
  margin-bottom: 30px;
}

.leadership-detail-img {
  flex: 0 0 auto;
}

.leadership-detail-img img {
  width: 130px;
  height: 155px;
  object-fit: cover;
  display: block;
}

.leadership-detail-name h3 {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 6px;
}

.leadership-detail-name p {
  font-size: 14px;
  color: #a01a22;
  font-weight: 400;
}

.leadership-detail-bio {
  flex: 1;
  max-height: 280px;
  border-top: 1px solid #e0e0e0;
  padding-top: 24px;
}

.leadership-detail-bio p {
  font-size: 15px;
  line-height: 1.8;
  color: #444444;
  margin-bottom: 18px;
}

.leadership-detail-bio p:last-child {
  margin-bottom: 0;
}

.leadership-team-col {
  display: flex;
}

.manufacturing-list li {
  width: calc(50% - 10px);
  flex: 0 0 auto;
  margin-bottom: 10px;
}

.manufacturing-list {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  width: fit-content;
  margin-bottom: -10px;
}

/* Scroll Animation Start*/
.js-scroll {
  opacity: 0
}

.scrolled.fade-in {
  animation: 0.7s ease-in-out both fade-in;
  -webkit-animation: 0.7s ease-in-out both fade-in
}

.scrolled.fade-in-top {
  animation: 0.7s ease-in-out both fade-in-top;
  -webkit-animation: 0.7s ease-in-out both fade-in-top
}

.scrolled.fade-in-bottom {
  animation: 0.7s ease-in-out both fade-in-bottom;
  -webkit-animation: 0.7s ease-in-out both fade-in-bottom
}

.scrolled.fade-in-left {
  animation: 0.7s ease-in-out both fade-in-left;
  -webkit-animation: 0.7s ease-in-out both fade-in-left
}

.scrolled.fade-in-right {
  animation: 0.7s ease-in-out both fade-in-right;
  -webkit-animation: 0.7s ease-in-out both fade-in-right
}

@keyframes fade-in-left {
  0% {
    opacity: 0;
    transform: translateX(-30px);
    -webkit-transform: translateX(-30px);
    -moz-transform: translateX(-30px);
    -ms-transform: translateX(-30px);
    -o-transform: translateX(-30px)
  }

  100% {
    opacity: 1;
    transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    -webkit-transform: translateX(0)
  }
}

@keyframes fade-in-right {
  0% {
    opacity: 0;
    transform: translateX(30px);
    -webkit-transform: translateX(30px);
    -moz-transform: translateX(30px);
    -ms-transform: translateX(30px);
    -o-transform: translateX(30px)
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1
  }
}

@keyframes fade-in-bottom {
  0% {
    opacity: 0;
    transform: translateY(30px);
    -webkit-transform: translateY(30px);
    -moz-transform: translateY(30px);
    -ms-transform: translateY(30px);
    -o-transform: translateY(30px)
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1
  }
}

@keyframes fade-in-top {
  0% {
    opacity: 0;
    transform: translateY(-30px);
    -webkit-transform: translateY(-30px);
    -moz-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    -o-transform: translateY(-30px)
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1
  }
}

@keyframes fade-in {
  0% {
    opacity: 0
  }

  100% {
    opacity: 1
  }
}

.zoom-out {
  transition-duration: 3s;
  -webkit-transform: scale(1.2);
  transform: scale(1.2)
}

.fade-down,
.fade-up {
  transition-duration: 1s
}

.zoom-out.scrolled {
  opacity: 1;
  -webkit-transform: translateZ(0) scale(1);
  transform: translateZ(0) scale(1)
}

.fade-up {
  transform: translate3d(0, 24px, 0);
  -webkit-transform: translate3d(0, 24px, 0);
  -moz-transform: translate3d(0, 24px, 0);
  -ms-transform: translate3d(0, 24px, 0);
  -o-transform: translate3d(0, 24px, 0)
}

.fade-down.scrolled,
.fade-up.scrolled {
  opacity: 1;
  -webkit-transform: none;
  transform: none
}

.fade-down {
  transform: translate3d(0, -24px, 0);
  -webkit-transform: translate3d(0, -24px, 0);
  -moz-transform: translate3d(0, -24px, 0);
  -ms-transform: translate3d(0, -24px, 0);
  -o-transform: translate3d(0, -24px, 0)
}

.delay1 {
  -webkit-animation-delay: 0.2s !important;
  animation-delay: 0.2s !important
}

.delay2 {
  -webkit-animation-delay: 0.3s !important;
  animation-delay: 0.3s !important
}

.delay3 {
  -webkit-animation-delay: 0.4s !important;
  animation-delay: 0.4s !important
}

.delay4 {
  -webkit-animation-delay: 0.5s !important;
  animation-delay: 0.5s !important
}

.delay5 {
  -webkit-animation-delay: 0.6s !important;
  animation-delay: 0.6s !important
}

.delay6 {
  -webkit-animation-delay: 0.7s !important;
  animation-delay: 0.7s !important
}

.delay7 {
  -webkit-animation-delay: 0.8s !important;
  animation-delay: 0.8s !important
}

.delay8 {
  -webkit-animation-delay: 0.9s !important;
  animation-delay: 0.9s !important
}

.delay9 {
  -webkit-animation-delay: 1s !important;
  animation-delay: 1s !important
}

.delay10 {
  -webkit-animation-delay: 2s !important;
  animation-delay: 2s !important
}

.delay11 {
  -webkit-animation-delay: 2.2s !important;
  animation-delay: 2.2s !important
}

.delay12 {
  -webkit-animation-delay: 2.4s !important;
  animation-delay: 2.4s !important
}

.delay13 {
  -webkit-animation-delay: 2.6s !important;
  animation-delay: 2.6s !important
}

.delay14 {
  -webkit-animation-delay: 2.8s !important;
  animation-delay: 2.8s !important
}

.delay15 {
  -webkit-animation-delay: 3s !important;
  animation-delay: 3s !important
}

/* Scroll Animation End*/

/* Premium Custom Loader Styles */
.loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999999;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.loader-wrapper.none {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.custom-loader {
  position: relative;
  width: 150px;
  height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loader-circle {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 3px solid rgba(237, 50, 55, 0.05);
  border-top: 3px solid #ED3237;
  border-right: 3px solid #ED3237;
  animation: loader-spin 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}

.loader-logo {
  width: 80px;
  height: auto;
  position: relative;
  z-index: 2;
  animation: loader-pulse 2s ease-in-out infinite;
}

@keyframes loader-spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes loader-pulse {

  0%,
  100% {
    transform: scale(0.92);
    opacity: 0.8;
    filter: drop-shadow(0 0 4px rgba(237, 50, 55, 0.2));
  }

  50% {
    transform: scale(1.05);
    opacity: 1;
    filter: drop-shadow(0 0 15px rgba(237, 50, 55, 0.75));
  }
}

/* Prevent scrolling while loader is active */
html.loader-processing {
  overflow: hidden !important;
}

.leadership-team-item-img .img-ratio-square {
  aspect-ratio: 1 / 0.7;
}

/* Hide Google Translate top bar, widgets, and tooltips */
.goog-te-banner-frame,
.goog-te-banner,
#goog-gt-tt,
.goog-te-balloon-frame,
.goog-te-menu-frame,
iframe.goog-te-menu-frame {
  display: none !important;
}

body,
html {
  top: 0px !important;
  position: static !important;
}

.goog-text-highlight {
  background: none !important;
  box-shadow: none !important;
  box-sizing: border-box !important;
}

/* Custom Toast Notification System */
.toast-container {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 999999;
  display: flex;
  flex-direction: column;
  gap: 12px;
  pointer-events: none;
}

.custom-toast {
  min-width: 300px;
  max-width: 400px;
  background-color: #ffffff;
  color: #1d1d1d;
  padding: 16px 20px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: 'Outfit', 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 500;
  border-left: 4px solid #ED3237;
  transform: translateX(120%);
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55), opacity 0.4s ease;
  opacity: 0;
  pointer-events: auto;
}

.custom-toast.show {
  transform: translateX(0);
  opacity: 1;
}

.custom-toast.success {
  border-left-color: #2ECC71;
}

.custom-toast.error {
  border-left-color: #E74C3C;
}

.toast-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Standardized No Data Placeholder */
.no-data-placeholder {
  width: 100%;
  padding: 40px 20px;
  text-align: center;
  background: rgba(248, 249, 250, 0.6);
  border: 1px dashed #e8e9ec;
  border-radius: 4px;
  margin: 20px auto;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
}

.no-data-placeholder.dark-bg {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}

.no-data-placeholder p {
  color: #8a8e96;
  font-size: 16px;
  font-weight: 500;
  margin: 0 !important;
}

.no-data-placeholder.dark-bg p {
  color: rgba(255, 255, 255, 0.6);
}

.counter-block-img {
  flex: 0 0 auto;
}

.subtitle-wrap {
  max-width: 240px;
  height: auto;
  margin: 0 auto;
} 