:root {
  --primary: #e35205;
  --fontPrimary: "SF Pro Display", sans-serif;
  --fontSecondary: "Helvetica Neue", sans-serif;
  --secondary: #97999b;
  --textColor: #49454f;
  --grayBG: #79747e;
  --cardBG: #fff9f1;
  --inputBG: #3b383e14;
  --white: #ffffff;
  --black: #000000;
  --btnSecondary: #d9d9d9;
  --primaryLightBG: #ffc09b;
  --transparent: transparent;
}

@font-face {
  font-family: "SF Pro Display";
  src: url("../fonts/SFProDisplay-Thin.woff2") format("woff2");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "SF Pro Display";
  src: url("../fonts/SFProDisplay-Light.woff2") format("woff2");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "SF Pro Display";
  src: url("../fonts/SFProDisplay-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "SFProDisplay";
  src: url("../fonts/SFProDisplay-RegularItalic.woff2") format("woff2");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "SF Pro Display";
  src: url("../fonts/SFProDisplay-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "SF Pro Display";
  src: url("../fonts/SFProDisplay-Semibold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "SF Pro Display";
  src: url("../fonts/SFProDisplay-Bold.woff2") format("woff2");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "SF Pro Display";
  src: url("../fonts/SFProDisplay-Black.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "SF Pro Display";
  src: url("../fonts/SFProDisplay-Heavy.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Helvetica Neue";
  src: url("../fonts/HelveticaNeueLTStd-BdCn.woff2") format("woff2"),
    url("../fonts/HelveticaNeueLTStd-BdCn.woff") format("woff"),
    url("../fonts/HelveticaNeueLTStd-BdCn.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

html{
  scroll-behavior: smooth;
}

body {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 300;
  color: var(--black);
  font-family: var(--fontPrimary);
}

/* Global classes */

.container-wrapper {
  max-width: 1200px;
  width: 100%;
  padding: 0 32px;
  margin: 0 auto;
}

h1 {
  font-size: 64px;
  line-height: 57px;
  font-weight: 700;
}

h2 {
  font-weight: 500;
  font-size: 24px;
  line-height: 1.25;
}

h3 {
  font-weight: 500;
  font-size: 20px;
  line-height: 1.25;
}

h4 {
  font-size: 18px;
  line-height: 1.25;
}

.main-line {
  font-family: "Helvetica Neue";
  font-weight: 700;
  font-size: 64px;
  line-height: 57px;
  letter-spacing: 0px;
  text-transform: uppercase;
}

.section-heading {
  font-weight: 600;
  font-size: 24px;
  line-height: 1.25;
  letter-spacing: 0px;
  text-transform: uppercase;
}

.button-primary {
  flex-shrink: 0;
  font-weight: 400;
  font-size: 20px;
  line-height: 38px;
  letter-spacing: 0px;
  padding: 8px 24px;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background-color: var(--primary);
  border: 2px solid var(--primary);
  border-radius: 100px;
  transition: all 0.3s ease-in-out;
}

.button-primary .arrow {
  flex-shrink: 0;
  transition: all 0.3s ease-in-out;
}

.button-primary .arrow svg,
.button-primary .arrow img {
  width: 24px;
}

.button-primary:hover {
  transform: scale(0.99);
}

.button-primary:hover .arrow {
  transform: translateX(6px);
}

.button-primary.small{
  font-size: 13px;
  line-height: 1.5;
  padding: 10px 22px;
  gap: 8px;
}

.button-primary.small .arrow svg{
  width: 16px;
}

.button-secondary {
  flex-shrink: 0;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border-radius: 100px;
  background-color: var(--btnSecondary);
  padding: 12px 28px;
  transition: all 0.3s ease-in-out;
}

.button-secondary:hover {
  transform: scale(0.95);
}

.button-ghost{
  flex-shrink: 0;
  font-weight: 400;
  font-size: 20px;
  line-height: 38px;
  letter-spacing: 0px;
  padding: 8px 24px;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--transparent);
  border: 2px solid var(--white);
  border-radius: 100px;
  transition: all 0.3s ease-in-out;
}

.button-ghost:hover{
  background-color: var(--white);
  color: var(--black);

}

/* accordian icon plus */

.accordian-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  position: relative;
  background-color: var(--white);
  border-radius: 50%;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
}

.accordian-icon::before {
  content: "";
  display: block;
  width: 14px;
  height: 2px;
  background-color: #79747e;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(0deg);
  transition: all 0.3s ease-in-out;
}

.accordian-icon::after {
  content: "";
  display: block;
  width: 14px;
  height: 2px;
  background-color: #79747e;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(90deg);
  transition: all 0.3s ease-in-out;
}
.accordian-heading.active .accordian-icon::before {
  transform: translate(-50%, -50%) rotate(-180deg);
  background-color: #becad6;
}
.accordian-heading.active .accordian-icon::after {
  opacity: 0;
}

/* background-graphics-orange */

.background-graphics-orange {
  position: relative;
  overflow: hidden;
}

.background-graphics-orange::before {
  content: "";
  display: block;
  width: 238px;
  position: absolute;
  left: 0;
  top: 0;
  background-image: url("../images/orange-graphics.png");
  background-position: bottom left;
  background-size: cover;
  bottom: 0;
}

.number-counter-reset {
  counter-reset: counter;
}

.number-counter {
  position: relative;
}
.number-counter::before {
  counter-increment: counter;
  content: counter(counter);
  font-weight: 600;
  font-size: 32px;
  line-height: 16px;
  color: var(--textColor);
  position: absolute;
  top: 0;
  left: 0;
}

/* Slider Pagination */

.swiper-pagination {
  position: static;
  margin: 0 auto;
  margin-top: 24px;
  transform: translate(0) !important;
}

.swiper .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  margin: 0 2px !important;
  background-color: var(--primary);
}

.swiper
  .swiper-pagination-bullets-dynamic
  .swiper-pagination-bullet-active-prev-prev,
.swiper
  .swiper-pagination-bullets-dynamic
  .swiper-pagination-bullet-active-next-next {
  transform: scale(0.43);
}

/* Header */

header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: #fff;
}

.header-inner {
  background: #fff;
  padding: 10px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.header-logo {
  display: flex;
  align-items: center;
  font-size: 7px;
  color: var(--black);
  font-weight: 500;
}

.header-logo img {
  max-width: 145px;
}

.header-navigation-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  flex-grow: 1;
  justify-content: flex-end;
}

.navigation > ul {
  display: flex;
  gap: 40px;
}

.navigation > ul > li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.navigation ul li a {
  font-size: 16px;
  line-height: 1.5;
  text-transform: capitalize;
}

.navigation > ul > li > a {
  color: var(--textColor);
  font-weight: 500;
}

.header-action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  background-color: var(--grayBG);
  color: var(--white);
  font-size: 12px;
  line-height: 16px;
  font-weight: 600;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.submenu {
  overflow: auto;
  background-color: var(--grayBG);
}

.submenu.menu-small {
  padding: 5px;
  min-width: 180px;
}

.submenu.menu-small li a {
  padding: 8px 12px;
  margin: 0;
}

.submenu.menu-small li:hover {
  background: #6c6970;
}

.submenu ul.submenu-list {
  display: block;
}

.submenu ul li a {
  color: var(--white);
  display: block;
  padding: 7px 0;
  transition: all 0.3s ease-in-out;
}

.submenu ul li a:hover {
    text-decoration: underline;
    transform: translateX(8px);
}

.menu-small-wrapper {
  position: relative;
}

.submenu.menu-large {
  display: flex;
  flex-wrap: wrap;
  padding: 20px;
  row-gap: 20px;
}

.submenu.menu-large .submenu-inner {
  width: 33.33%;
}

.submenu-title {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.75;
  color: var(--white);
  margin-bottom: 8px;
  text-transform: capitalize;
}

.submenu-title a{
  font-size: 18px !important;
  line-height: 1.75 !important;
}

.submenu-inner-image {
  margin-bottom: 10px;
}

.submenu-inner-image img {
  max-width: 192px;
}

.submenu-inner-content {
  color: #fff;
}

.submenu-inner-content a {
  text-decoration: underline;
}

.tag.new {
  display: inline-block;
  background: #ff9500;
  font-weight: 500;
  font-size: 11px;
  line-height: 16px;
  letter-spacing: 0.5px;
  text-align: center;
  vertical-align: middle;
  padding: 2px 12px;
  color: #fff;
  border-radius: 5px;
}

.submenu-inner.submenu-with-image {
  padding-top: 24px;
  border-top: 1px solid #a2a2a2;
}

.header-search {
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-navigation-wrapper {
  display: flex;
  align-items: center;
  gap: 24px;
}

.menu-button {
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  text-align: center;
  background-color: #fff;
  border-radius: 8px;
  flex-direction: row;
  width: 42px;
  height: 42px;
  padding: 4px 5px 5px;
  transition: background-color 0.35s;
}

.menu-button.active {
  background-color: #a7a7a733;
}

button.arrow {
  font-size: 0;
}

.arrow svg,
.arrow img  {
  width: 12px;
  transition: all 0.3s ease-in-out;
}

.has-submenu > a {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Hero slider */

.hero-slider {
  height: calc(100vh - 100px);
  display: flex;
}

.hero-slider.text-slider {
  height: calc(100vh - 178px);
  min-height: 620px;
  max-height: 740px;
}

.hero-slider .swiper-wrapper {
  height: auto;
}

.hero-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-slider video {
      position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}
.text-slider .swiper-slide {
  padding: 40px 0;
}
.text-slider .hero-slide-img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.text-slider .main-line {
  color: var(--white);
  max-width: 844px;
}


.content {
  max-height: 384px;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out;
}

.content.show-more {
  max-height: none;
}

.country-select .iti{
  width: 100%;
}

.no-selected-bg .iti__selected-flag{
  background: none !important;
}


/* Privacy policy */

.what-we-cover li::before {
    content: '';
    position: absolute;
    width: 21px;
    height: 1px;
    background: linear-gradient(60deg, #fbb03b 0%, #df457a 100%);
    top: calc(50% - 1px);
    left: 0;
}
.swiper-button-next {
    right: 24px;
    background: #fff;
    border-radius: 50%;
    width: 45px;
    height: 45px;
}
.swiper-button-prev {
    left: 24px;
    background: #fff;
    border-radius: 50%;
    width: 45px;
    height: 45px;
} 
.swiper-button-next:after {
    content: '' !important;
    background-image: url("../images/arrow-right.svg");
    font-size: 0;
    width: 25px;
    height: 25px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}
.swiper-button-prev:after {
    content: '' !important;
    background-image: url("../images/arrow-left.svg");
    font-size: 0;
    width: 25px;
    height: 25px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}


.inputGroup-check:after {
    position: absolute;
    content: '';
    width: 18px;
    height: 18px;
    content: '';
    border: 2px solid #666666;
    background-color: transparent;
    right: 16px;
}
.peer:checked ~ .peer-checked\:text-white.inputGroup-check::after {
    background-color: #fff;
    border-color: #fff;
    background-image: url("../images/tick.svg");
    background-size: 12px;
    background-repeat: no-repeat;
    background-position: center;
}