/*------------------------------------------------------------------
[TABLE OF CONTENTS]

=> font
=> anim
=> transform
=> border radius
=> flex
=> ellipsis
=> image
=> box-shadow

-------------------------------------------------------------------*/
/*==========================================================================
=> font
==========================================================================*/
/*==========================================================================
=> anim
==========================================================================*/
/*==========================================================================
=> transform
==========================================================================*/
/*==========================================================================
=> border radius
==========================================================================*/
/*==========================================================================
=> flex
==========================================================================*/
/*==========================================================================
=> ellipsis
==========================================================================*/
/*==========================================================================
=> image
==========================================================================*/
/*==========================================================================
=> box-shadow
==========================================================================*/
:root {
  --header-height: 80px;
  --header-scroll-height: 70px;
  --menuWidth: 300px;
  --heroBoxLeft: -20%;
  --heroBoxRight: 80%;
  --white: #fff;
  --black: #000;
  --grey: #42628B;
  --blue: #4553FF;
  --clr-red: #f00;
  --pink: #C393FF;
  --darkblue: #070D3A;
  --lightgrey: #ADC2DD;
  --gradient1: linear-gradient(254deg, #C393FF 6.46%, #4553FF 94.6%);
  --gradient2: linear-gradient(0deg, #8A93FF -14.53%, #FFF 77.37%);
  --fs80: clamp(40px, 4.17vw, 80px);
  --fs72: clamp(36px, 3.75vw, 72px);
  --fs64: clamp(32px, 3.33vw, 64px);
  --fs62: clamp(32px, 3.25vw, 62px);
  --fs56: clamp(28px, 3.33vw, 56px);
  --fs48: clamp(24px, 2.5vw, 48px);
  --fs42: clamp(24px, 2.19vw, 42px);
  --fs40: clamp(22px, 2.08vw, 40px);
  --fs36: clamp(21px, 1.88vw, 36px);
  --fs32: clamp(20px, 1.67vw, 32px);
  --fs28: clamp(18px, 1.46vw, 28px);
  --fs24: clamp(16px, 1.25vw, 24px);
  --fs22: clamp(16px, 1.15vw, 22px);
  --fs20: clamp(16px, 1.04vw, 20px);
  --fs18: clamp(16px, 0.94vw, 18px);
  --fs16: 16px;
  --fs14: 14px;
  --pad60: clamp(24px, 3.13vw, 60px);
  --spc280: clamp(24px, 14.58vw, 280px);
  --spc200: clamp(36px, 10.42vw, 200px);
  --spc40120: clamp(40px, 6.25vw, 120px);
  --spc4080: clamp(40px, 4.17vw, 80px);
  --spc4060: clamp(40px, 3.13vw, 60px);
  --spc2460: clamp(24px, 3.13vw, 60px);
  --spc60: 60px;
  --spc48: clamp(24px, 2.5vw, 48px);
  --spc40: clamp(24px, 2.08vw, 40px);
  --spc32: clamp(24px, 1.67vw, 32px);
  --spc24: 24px;
  --br30: clamp(14px, 1.56vw, 30px);
  --br24: clamp(14px, 1.25vw, 24px);
  --br20: clamp(14px, 1.04vw, 20px);
}
/*------------------------------------------------------------------
[TABLE OF CONTENTS]

=> Color
=> Common
=> Fonts
=> Custom Grid
=> Global Styles
=> buttons
=> Form Elements
=> Radio Small
=> Checkbox Small
=> Modal
=> Accordion
=> Most common

-------------------------------------------------------------------*/
html,
body {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  line-height: 1.5;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Archivo", sans-serif;
}
/*==========================================================================
=> Color
==========================================================================*/
:root {
  --sidebarWidth: 430px;
  /* input */
  --input-height: 50px;
  --input-fs-main: 16px;
  --input-fs-top: 14px;
  --input-icon-fs: 18px;
  --input-icon: #1baac4;
  --input-border: #aaa;
  --input-error: #ff2323;
  /* input end */
  /* button */
  --button-fill: #000;
  --button-line: #30223B;
  /* button end */
}
/*==========================================================================
=> Common
==========================================================================*/
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}
/*==========================================================================
=> Fonts
==========================================================================*/
* {
  margin-bottom: 0;
}
/*==========================================================================
=> Custom Grid
==========================================================================*/
/* Grid */
.f-row {
  display: flex;
  margin-left: -15px;
  margin-right: -15px;
  flex-wrap: wrap;
}
.f-col {
  padding: 0 15px;
}
/* flex col */
.f-10 .f-col {
  width: 10%;
}
.f-9 .f-col {
  width: 11.11111111%;
}
.f-8 .f-col {
  width: 12.5%;
}
.f-7 .f-col {
  width: 14.28571429%;
}
.f-6 .f-col {
  width: 16.66666667%;
}
.f-5 .f-col {
  width: 20%;
}
.f-4 .f-col {
  width: 25%;
}
.f-3 .f-col {
  width: 33.33333333%;
}
.f-2 .f-col {
  width: 50%;
}
.f-1 .f-col {
  width: 100%;
}
/* flex col end */
/* Grid */
.g-10 {
  grid-template-columns: repeat(10, 1fr);
}
.g-9 {
  grid-template-columns: repeat(9, 1fr);
}
.g-8 {
  grid-template-columns: repeat(8, 1fr);
}
.g-7 {
  grid-template-columns: repeat(7, 1fr);
}
.g-6 {
  grid-template-columns: repeat(6, 1fr);
}
.g-5 {
  grid-template-columns: repeat(5, 1fr);
}
.g-4 {
  grid-template-columns: repeat(4, 1fr);
}
.g-3 {
  grid-template-columns: repeat(3, 1fr);
}
.g-2 {
  grid-template-columns: repeat(2, 1fr);
}
.g-1 {
  grid-template-columns: repeat(1, 1fr);
}
/* Grid */
.gp-70 {
  gap: 70px;
}
.gp-65 {
  gap: 65px;
}
.gp-60 {
  gap: 60px;
}
.gp-55 {
  gap: 55px;
}
.gp-50 {
  gap: 50px;
}
.gp-45 {
  gap: 45px;
}
.gp-40 {
  gap: 40px;
}
.gp-35 {
  gap: 35px;
}
.gp-30 {
  gap: 30px;
}
.gp-25 {
  gap: 25px;
}
.gp-20 {
  gap: 20px;
}
.gp-15 {
  gap: 15px;
}
.gp-10 {
  gap: 10px;
}
.gp-5 {
  gap: 5px;
}
.gp-0 {
  gap: 0px;
}
/* Width */
.w100 {
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
}
.w95 {
  width: 95%;
  padding-left: 15px;
  padding-right: 15px;
}
.w90 {
  width: 90%;
  padding-left: 15px;
  padding-right: 15px;
}
.w85 {
  width: 85%;
  padding-left: 15px;
  padding-right: 15px;
}
.w80 {
  width: 80%;
  padding-left: 15px;
  padding-right: 15px;
}
.w75 {
  width: 75%;
  padding-left: 15px;
  padding-right: 15px;
}
.w70 {
  width: 70%;
  padding-left: 15px;
  padding-right: 15px;
}
.w65 {
  width: 65%;
  padding-left: 15px;
  padding-right: 15px;
}
.w60 {
  width: 60%;
  padding-left: 15px;
  padding-right: 15px;
}
.w55 {
  width: 55%;
  padding-left: 15px;
  padding-right: 15px;
}
.w50 {
  width: 50%;
  padding-left: 15px;
  padding-right: 15px;
}
.w45 {
  width: 45%;
  padding-left: 15px;
  padding-right: 15px;
}
.w40 {
  width: 40%;
  padding-left: 15px;
  padding-right: 15px;
}
.w35 {
  width: 35%;
  padding-left: 15px;
  padding-right: 15px;
}
.w30 {
  width: 30%;
  padding-left: 15px;
  padding-right: 15px;
}
.w25 {
  width: 25%;
  padding-left: 15px;
  padding-right: 15px;
}
.w20 {
  width: 20%;
  padding-left: 15px;
  padding-right: 15px;
}
.w15 {
  width: 15%;
  padding-left: 15px;
  padding-right: 15px;
}
.w10 {
  width: 10%;
  padding-left: 15px;
  padding-right: 15px;
}
.w5 {
  width: 5%;
  padding-left: 15px;
  padding-right: 15px;
}
.w33 {
  width: 33%;
  padding-left: 15px;
  padding-right: 15px;
}
.w16 {
  width: 16.666666%;
  padding-left: 15px;
  padding-right: 15px;
}
/* Margin */
.mb-100 {
  margin-bottom: 100px;
}
.mb-95 {
  margin-bottom: 95px;
}
.mb-90 {
  margin-bottom: 90px;
}
.mb-85 {
  margin-bottom: 85px;
}
.mb-80 {
  margin-bottom: 80px;
}
.mb-75 {
  margin-bottom: 75px;
}
.mb-70 {
  margin-bottom: 70px;
}
.mb-65 {
  margin-bottom: 65px;
}
.mb-60 {
  margin-bottom: 60px;
}
.mb-55 {
  margin-bottom: 55px;
}
.mb-50 {
  margin-bottom: 50px;
}
.mb-45 {
  margin-bottom: 45px;
}
.mb-40 {
  margin-bottom: 40px;
}
.mb-35 {
  margin-bottom: 35px;
}
.mb-30 {
  margin-bottom: 30px;
}
.mb-25 {
  margin-bottom: 25px;
}
.mb-20 {
  margin-bottom: 20px;
}
.mb-15 {
  margin-bottom: 15px;
}
.mb-10 {
  margin-bottom: 10px;
}
.mb-5 {
  margin-bottom: 5px;
}
.mb-0 {
  margin-bottom: 0px;
}
.comm-grid {
  display: grid;
  width: 100%;
}
@media all and (max-width: 1440px) {
  .f-1440-10 .f-col {
    width: 10%;
  }
  .f-1440-9 .f-col {
    width: 11.11111111%;
  }
  .f-1440-8 .f-col {
    width: 12.5%;
  }
  .f-1440-7 .f-col {
    width: 14.28571429%;
  }
  .f-1440-6 .f-col {
    width: 16.66666667%;
  }
  .f-1440-5 .f-col {
    width: 20%;
  }
  .f-1440-4 .f-col {
    width: 25%;
  }
  .f-1440-3 .f-col {
    width: 33.33333333%;
  }
  .f-1440-2 .f-col {
    width: 50%;
  }
  .f-1440-1 .f-col {
    width: 100%;
  }
  .g-1440-10 {
    grid-template-columns: repeat(10, 1fr);
  }
  .g-1440-9 {
    grid-template-columns: repeat(9, 1fr);
  }
  .g-1440-8 {
    grid-template-columns: repeat(8, 1fr);
  }
  .g-1440-7 {
    grid-template-columns: repeat(7, 1fr);
  }
  .g-1440-6 {
    grid-template-columns: repeat(6, 1fr);
  }
  .g-1440-5 {
    grid-template-columns: repeat(5, 1fr);
  }
  .g-1440-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .g-1440-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .g-1440-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .g-1440-1 {
    grid-template-columns: repeat(1, 1fr);
  }
  .gp-1440-70 {
    gap: 70px;
  }
  .gp-1440-65 {
    gap: 65px;
  }
  .gp-1440-60 {
    gap: 60px;
  }
  .gp-1440-55 {
    gap: 55px;
  }
  .gp-1440-50 {
    gap: 50px;
  }
  .gp-1440-45 {
    gap: 45px;
  }
  .gp-1440-40 {
    gap: 40px;
  }
  .gp-1440-35 {
    gap: 35px;
  }
  .gp-1440-30 {
    gap: 30px;
  }
  .gp-1440-25 {
    gap: 25px;
  }
  .gp-1440-20 {
    gap: 20px;
  }
  .gp-1440-15 {
    gap: 15px;
  }
  .gp-1440-10 {
    gap: 10px;
  }
  .gp-1440-5 {
    gap: 5px;
  }
  .gp-1440-0 {
    gap: 0px;
  }
  .w-1440-100 {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-1440-95 {
    width: 95%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-1440-90 {
    width: 90%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-1440-85 {
    width: 85%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-1440-80 {
    width: 80%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-1440-75 {
    width: 75%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-1440-70 {
    width: 70%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-1440-65 {
    width: 65%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-1440-60 {
    width: 60%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-1440-55 {
    width: 55%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-1440-50 {
    width: 50%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-1440-45 {
    width: 45%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-1440-40 {
    width: 40%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-1440-35 {
    width: 35%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-1440-30 {
    width: 30%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-1440-25 {
    width: 25%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-1440-20 {
    width: 20%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-1440-15 {
    width: 15%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-1440-10 {
    width: 10%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-1440-5 {
    width: 5%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-1440-33 {
    width: 33%;
  }
  .w-1440-16 {
    width: 16.666666%;
  }
  .mb-1440-100 {
    margin-bottom: 100px;
  }
  .mb-1440-95 {
    margin-bottom: 95px;
  }
  .mb-1440-90 {
    margin-bottom: 90px;
  }
  .mb-1440-85 {
    margin-bottom: 85px;
  }
  .mb-1440-80 {
    margin-bottom: 80px;
  }
  .mb-1440-75 {
    margin-bottom: 75px;
  }
  .mb-1440-70 {
    margin-bottom: 70px;
  }
  .mb-1440-65 {
    margin-bottom: 65px;
  }
  .mb-1440-60 {
    margin-bottom: 60px;
  }
  .mb-1440-55 {
    margin-bottom: 55px;
  }
  .mb-1440-50 {
    margin-bottom: 50px;
  }
  .mb-1440-45 {
    margin-bottom: 45px;
  }
  .mb-1440-40 {
    margin-bottom: 40px;
  }
  .mb-1440-35 {
    margin-bottom: 35px;
  }
  .mb-1440-30 {
    margin-bottom: 30px;
  }
  .mb-1440-25 {
    margin-bottom: 25px;
  }
  .mb-1440-20 {
    margin-bottom: 20px;
  }
  .mb-1440-15 {
    margin-bottom: 15px;
  }
  .mb-1440-10 {
    margin-bottom: 10px;
  }
  .mb-1440-5 {
    margin-bottom: 5px;
  }
  .mb-1440-0 {
    margin-bottom: 0px;
  }
}
@media all and (max-width: 1366px) {
  .f-1366-10 .f-col {
    width: 10%;
  }
  .f-1366-9 .f-col {
    width: 11.11111111%;
  }
  .f-1366-8 .f-col {
    width: 12.5%;
  }
  .f-1366-7 .f-col {
    width: 14.28571429%;
  }
  .f-1366-6 .f-col {
    width: 16.66666667%;
  }
  .f-1366-5 .f-col {
    width: 20%;
  }
  .f-1366-4 .f-col {
    width: 25%;
  }
  .f-1366-3 .f-col {
    width: 33.33333333%;
  }
  .f-1366-2 .f-col {
    width: 50%;
  }
  .f-1366-1 .f-col {
    width: 100%;
  }
  .g-1366-10 {
    grid-template-columns: repeat(10, 1fr);
  }
  .g-1366-9 {
    grid-template-columns: repeat(9, 1fr);
  }
  .g-1366-8 {
    grid-template-columns: repeat(8, 1fr);
  }
  .g-1366-7 {
    grid-template-columns: repeat(7, 1fr);
  }
  .g-1366-6 {
    grid-template-columns: repeat(6, 1fr);
  }
  .g-1366-5 {
    grid-template-columns: repeat(5, 1fr);
  }
  .g-1366-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .g-1366-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .g-1366-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .g-1366-1 {
    grid-template-columns: repeat(1, 1fr);
  }
  .gp-1366-70 {
    gap: 70px;
  }
  .gp-1366-65 {
    gap: 65px;
  }
  .gp-1366-60 {
    gap: 60px;
  }
  .gp-1366-55 {
    gap: 55px;
  }
  .gp-1366-50 {
    gap: 50px;
  }
  .gp-1366-45 {
    gap: 45px;
  }
  .gp-1366-40 {
    gap: 40px;
  }
  .gp-1366-35 {
    gap: 35px;
  }
  .gp-1366-30 {
    gap: 30px;
  }
  .gp-1366-25 {
    gap: 25px;
  }
  .gp-1366-20 {
    gap: 20px;
  }
  .gp-1366-15 {
    gap: 15px;
  }
  .gp-1366-10 {
    gap: 10px;
  }
  .gp-1366-5 {
    gap: 5px;
  }
  .gp-1366-0 {
    gap: 0px;
  }
  .w-1366-100 {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-1366-95 {
    width: 95%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-1366-90 {
    width: 90%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-1366-85 {
    width: 85%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-1366-80 {
    width: 80%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-1366-75 {
    width: 75%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-1366-70 {
    width: 70%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-1366-65 {
    width: 65%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-1366-60 {
    width: 60%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-1366-55 {
    width: 55%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-1366-50 {
    width: 50%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-1366-45 {
    width: 45%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-1366-40 {
    width: 40%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-1366-35 {
    width: 35%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-1366-30 {
    width: 30%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-1366-25 {
    width: 25%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-1366-20 {
    width: 20%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-1366-15 {
    width: 15%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-1366-10 {
    width: 10%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-1366-5 {
    width: 5%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-1366-33 {
    width: 33%;
  }
  .w-1366-16 {
    width: 16.666666%;
  }
  .mb-1366-100 {
    margin-bottom: 100px;
  }
  .mb-1366-95 {
    margin-bottom: 95px;
  }
  .mb-1366-90 {
    margin-bottom: 90px;
  }
  .mb-1366-85 {
    margin-bottom: 85px;
  }
  .mb-1366-80 {
    margin-bottom: 80px;
  }
  .mb-1366-75 {
    margin-bottom: 75px;
  }
  .mb-1366-70 {
    margin-bottom: 70px;
  }
  .mb-1366-65 {
    margin-bottom: 65px;
  }
  .mb-1366-60 {
    margin-bottom: 60px;
  }
  .mb-1366-55 {
    margin-bottom: 55px;
  }
  .mb-1366-50 {
    margin-bottom: 50px;
  }
  .mb-1366-45 {
    margin-bottom: 45px;
  }
  .mb-1366-40 {
    margin-bottom: 40px;
  }
  .mb-1366-35 {
    margin-bottom: 35px;
  }
  .mb-1366-30 {
    margin-bottom: 30px;
  }
  .mb-1366-25 {
    margin-bottom: 25px;
  }
  .mb-1366-20 {
    margin-bottom: 20px;
  }
  .mb-1366-15 {
    margin-bottom: 15px;
  }
  .mb-1366-10 {
    margin-bottom: 10px;
  }
  .mb-1366-5 {
    margin-bottom: 5px;
  }
  .mb-1366-0 {
    margin-bottom: 0px;
  }
}
@media all and (max-width: 1280px) {
  .f-1280-10 .f-col {
    width: 10%;
  }
  .f-1280-9 .f-col {
    width: 11.11111111%;
  }
  .f-1280-8 .f-col {
    width: 12.5%;
  }
  .f-1280-7 .f-col {
    width: 14.28571429%;
  }
  .f-1280-6 .f-col {
    width: 16.66666667%;
  }
  .f-1280-5 .f-col {
    width: 20%;
  }
  .f-1280-4 .f-col {
    width: 25%;
  }
  .f-1280-3 .f-col {
    width: 33.33333333%;
  }
  .f-1280-2 .f-col {
    width: 50%;
  }
  .f-1280-1 .f-col {
    width: 100%;
  }
  .w-1280-100 {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-1280-95 {
    width: 95%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-1280-90 {
    width: 90%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-1280-85 {
    width: 85%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-1280-80 {
    width: 80%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-1280-75 {
    width: 75%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-1280-70 {
    width: 70%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-1280-65 {
    width: 65%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-1280-60 {
    width: 60%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-1280-55 {
    width: 55%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-1280-50 {
    width: 50%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-1280-45 {
    width: 45%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-1280-40 {
    width: 40%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-1280-35 {
    width: 35%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-1280-30 {
    width: 30%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-1280-25 {
    width: 25%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-1280-20 {
    width: 20%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-1280-15 {
    width: 15%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-1280-10 {
    width: 10%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-1280-5 {
    width: 5%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .g-1280-10 {
    grid-template-columns: repeat(10, 1fr);
  }
  .g-1280-9 {
    grid-template-columns: repeat(9, 1fr);
  }
  .g-1280-8 {
    grid-template-columns: repeat(8, 1fr);
  }
  .g-1280-7 {
    grid-template-columns: repeat(7, 1fr);
  }
  .g-1280-6 {
    grid-template-columns: repeat(6, 1fr);
  }
  .g-1280-5 {
    grid-template-columns: repeat(5, 1fr);
  }
  .g-1280-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .g-1280-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .g-1280-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .g-1280-1 {
    grid-template-columns: repeat(1, 1fr);
  }
  .gp-1280-70 {
    gap: 70px;
  }
  .gp-1280-65 {
    gap: 65px;
  }
  .gp-1280-60 {
    gap: 60px;
  }
  .gp-1280-55 {
    gap: 55px;
  }
  .gp-1280-50 {
    gap: 50px;
  }
  .gp-1280-45 {
    gap: 45px;
  }
  .gp-1280-40 {
    gap: 40px;
  }
  .gp-1280-35 {
    gap: 35px;
  }
  .gp-1280-30 {
    gap: 30px;
  }
  .gp-1280-25 {
    gap: 25px;
  }
  .gp-1280-20 {
    gap: 20px;
  }
  .gp-1280-15 {
    gap: 15px;
  }
  .gp-1280-10 {
    gap: 10px;
  }
  .gp-1280-5 {
    gap: 5px;
  }
  .gp-1280-0 {
    gap: 0px;
  }
  .w-1280-33 {
    width: 33%;
  }
  .w-1280-16 {
    width: 16.666666%;
  }
  .mb-1280-100 {
    margin-bottom: 100px;
  }
  .mb-1280-95 {
    margin-bottom: 95px;
  }
  .mb-1280-90 {
    margin-bottom: 90px;
  }
  .mb-1280-85 {
    margin-bottom: 85px;
  }
  .mb-1280-80 {
    margin-bottom: 80px;
  }
  .mb-1280-75 {
    margin-bottom: 75px;
  }
  .mb-1280-70 {
    margin-bottom: 70px;
  }
  .mb-1280-65 {
    margin-bottom: 65px;
  }
  .mb-1280-60 {
    margin-bottom: 60px;
  }
  .mb-1280-55 {
    margin-bottom: 55px;
  }
  .mb-1280-50 {
    margin-bottom: 50px;
  }
  .mb-1280-45 {
    margin-bottom: 45px;
  }
  .mb-1280-40 {
    margin-bottom: 40px;
  }
  .mb-1280-35 {
    margin-bottom: 35px;
  }
  .mb-1280-30 {
    margin-bottom: 30px;
  }
  .mb-1280-25 {
    margin-bottom: 25px;
  }
  .mb-1280-20 {
    margin-bottom: 20px;
  }
  .mb-1280-15 {
    margin-bottom: 15px;
  }
  .mb-1280-10 {
    margin-bottom: 10px;
  }
  .mb-1280-5 {
    margin-bottom: 5px;
  }
  .mb-1280-0 {
    margin-bottom: 0px;
  }
}
@media all and (max-width: 1024px) {
  .f-1024-10 .f-col {
    width: 10%;
  }
  .f-1024-9 .f-col {
    width: 11.11111111%;
  }
  .f-1024-8 .f-col {
    width: 12.5%;
  }
  .f-1024-7 .f-col {
    width: 14.28571429%;
  }
  .f-1024-6 .f-col {
    width: 16.66666667%;
  }
  .f-1024-5 .f-col {
    width: 20%;
  }
  .f-1024-4 .f-col {
    width: 25%;
  }
  .f-1024-3 .f-col {
    width: 33.33333333%;
  }
  .f-1024-2 .f-col {
    width: 50%;
  }
  .f-1024-1 .f-col {
    width: 100%;
  }
  .g-1024-10 {
    grid-template-columns: repeat(10, 1fr);
  }
  .g-1024-9 {
    grid-template-columns: repeat(9, 1fr);
  }
  .g-1024-8 {
    grid-template-columns: repeat(8, 1fr);
  }
  .g-1024-7 {
    grid-template-columns: repeat(7, 1fr);
  }
  .g-1024-6 {
    grid-template-columns: repeat(6, 1fr);
  }
  .g-1024-5 {
    grid-template-columns: repeat(5, 1fr);
  }
  .g-1024-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .g-1024-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .g-1024-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .g-1024-1 {
    grid-template-columns: repeat(1, 1fr);
  }
  .gp-1024-70 {
    gap: 70px;
  }
  .gp-1024-65 {
    gap: 65px;
  }
  .gp-1024-60 {
    gap: 60px;
  }
  .gp-1024-55 {
    gap: 55px;
  }
  .gp-1024-50 {
    gap: 50px;
  }
  .gp-1024-45 {
    gap: 45px;
  }
  .gp-1024-40 {
    gap: 40px;
  }
  .gp-1024-35 {
    gap: 35px;
  }
  .gp-1024-30 {
    gap: 30px;
  }
  .gp-1024-25 {
    gap: 25px;
  }
  .gp-1024-20 {
    gap: 20px;
  }
  .gp-1024-15 {
    gap: 15px;
  }
  .gp-1024-10 {
    gap: 10px;
  }
  .gp-1024-5 {
    gap: 5px;
  }
  .gp-1024-0 {
    gap: 0px;
  }
  .w-1024-100 {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-1024-95 {
    width: 95%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-1024-90 {
    width: 90%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-1024-85 {
    width: 85%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-1024-80 {
    width: 80%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-1024-75 {
    width: 75%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-1024-70 {
    width: 70%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-1024-65 {
    width: 65%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-1024-60 {
    width: 60%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-1024-55 {
    width: 55%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-1024-50 {
    width: 50%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-1024-45 {
    width: 45%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-1024-40 {
    width: 40%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-1024-35 {
    width: 35%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-1024-30 {
    width: 30%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-1024-25 {
    width: 25%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-1024-20 {
    width: 20%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-1024-15 {
    width: 15%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-1024-10 {
    width: 10%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-1024-5 {
    width: 5%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-1024-33 {
    width: 33%;
  }
  .w-1024-16 {
    width: 16.666666%;
  }
  .mb-1024-100 {
    margin-bottom: 100px;
  }
  .mb-1024-95 {
    margin-bottom: 95px;
  }
  .mb-1024-90 {
    margin-bottom: 90px;
  }
  .mb-1024-85 {
    margin-bottom: 85px;
  }
  .mb-1024-80 {
    margin-bottom: 80px;
  }
  .mb-1024-75 {
    margin-bottom: 75px;
  }
  .mb-1024-70 {
    margin-bottom: 70px;
  }
  .mb-1024-65 {
    margin-bottom: 65px;
  }
  .mb-1024-60 {
    margin-bottom: 60px;
  }
  .mb-1024-55 {
    margin-bottom: 55px;
  }
  .mb-1024-50 {
    margin-bottom: 50px;
  }
  .mb-1024-45 {
    margin-bottom: 45px;
  }
  .mb-1024-40 {
    margin-bottom: 40px;
  }
  .mb-1024-35 {
    margin-bottom: 35px;
  }
  .mb-1024-30 {
    margin-bottom: 30px;
  }
  .mb-1024-25 {
    margin-bottom: 25px;
  }
  .mb-1024-20 {
    margin-bottom: 20px;
  }
  .mb-1024-15 {
    margin-bottom: 15px;
  }
  .mb-1024-10 {
    margin-bottom: 10px;
  }
  .mb-1024-5 {
    margin-bottom: 5px;
  }
  .mb-1024-0 {
    margin-bottom: 0px;
  }
}
@media all and (max-width: 990px) {
  .f-990-10 .f-col {
    width: 10%;
  }
  .f-990-9 .f-col {
    width: 11.11111111%;
  }
  .f-990-8 .f-col {
    width: 12.5%;
  }
  .f-990-7 .f-col {
    width: 14.28571429%;
  }
  .f-990-6 .f-col {
    width: 16.66666667%;
  }
  .f-990-5 .f-col {
    width: 20%;
  }
  .f-990-4 .f-col {
    width: 25%;
  }
  .f-990-3 .f-col {
    width: 33.33333333%;
  }
  .f-990-2 .f-col {
    width: 50%;
  }
  .f-990-1 .f-col {
    width: 100%;
  }
  .w-990-100 {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-990-95 {
    width: 95%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-990-90 {
    width: 90%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-990-85 {
    width: 85%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-990-80 {
    width: 80%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-990-75 {
    width: 75%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-990-70 {
    width: 70%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-990-65 {
    width: 65%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-990-60 {
    width: 60%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-990-55 {
    width: 55%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-990-50 {
    width: 50%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-990-45 {
    width: 45%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-990-40 {
    width: 40%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-990-35 {
    width: 35%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-990-30 {
    width: 30%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-990-25 {
    width: 25%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-990-20 {
    width: 20%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-990-15 {
    width: 15%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-990-10 {
    width: 10%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-990-5 {
    width: 5%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .g-990-10 {
    grid-template-columns: repeat(10, 1fr);
  }
  .g-990-9 {
    grid-template-columns: repeat(9, 1fr);
  }
  .g-990-8 {
    grid-template-columns: repeat(8, 1fr);
  }
  .g-990-7 {
    grid-template-columns: repeat(7, 1fr);
  }
  .g-990-6 {
    grid-template-columns: repeat(6, 1fr);
  }
  .g-990-5 {
    grid-template-columns: repeat(5, 1fr);
  }
  .g-990-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .g-990-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .g-990-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .g-990-1 {
    grid-template-columns: repeat(1, 1fr);
  }
  .gp-990-70 {
    gap: 70px;
  }
  .gp-990-65 {
    gap: 65px;
  }
  .gp-990-60 {
    gap: 60px;
  }
  .gp-990-55 {
    gap: 55px;
  }
  .gp-990-50 {
    gap: 50px;
  }
  .gp-990-45 {
    gap: 45px;
  }
  .gp-990-40 {
    gap: 40px;
  }
  .gp-990-35 {
    gap: 35px;
  }
  .gp-990-30 {
    gap: 30px;
  }
  .gp-990-25 {
    gap: 25px;
  }
  .gp-990-20 {
    gap: 20px;
  }
  .gp-990-15 {
    gap: 15px;
  }
  .gp-990-10 {
    gap: 10px;
  }
  .gp-990-5 {
    gap: 5px;
  }
  .gp-990-0 {
    gap: 0px;
  }
  .mb-990-100 {
    margin-bottom: 100px;
  }
  .mb-990-95 {
    margin-bottom: 95px;
  }
  .mb-990-90 {
    margin-bottom: 90px;
  }
  .mb-990-85 {
    margin-bottom: 85px;
  }
  .mb-990-80 {
    margin-bottom: 80px;
  }
  .mb-990-75 {
    margin-bottom: 75px;
  }
  .mb-990-70 {
    margin-bottom: 70px;
  }
  .mb-990-65 {
    margin-bottom: 65px;
  }
  .mb-990-60 {
    margin-bottom: 60px;
  }
  .mb-990-55 {
    margin-bottom: 55px;
  }
  .mb-990-50 {
    margin-bottom: 50px;
  }
  .mb-990-45 {
    margin-bottom: 45px;
  }
  .mb-990-40 {
    margin-bottom: 40px;
  }
  .mb-990-35 {
    margin-bottom: 35px;
  }
  .mb-990-30 {
    margin-bottom: 30px;
  }
  .mb-990-25 {
    margin-bottom: 25px;
  }
  .mb-990-20 {
    margin-bottom: 20px;
  }
  .mb-990-15 {
    margin-bottom: 15px;
  }
  .mb-990-10 {
    margin-bottom: 10px;
  }
  .mb-990-5 {
    margin-bottom: 5px;
  }
  .mb-990-0 {
    margin-bottom: 0px;
  }
  .w-990-33 {
    width: 33%;
  }
  .w-990-16 {
    width: 16.666666%;
  }
  .mb-990-100 {
    margin-bottom: 100px;
  }
  .mb-990-95 {
    margin-bottom: 95px;
  }
  .mb-990-90 {
    margin-bottom: 90px;
  }
  .mb-990-85 {
    margin-bottom: 85px;
  }
  .mb-990-80 {
    margin-bottom: 80px;
  }
  .mb-990-75 {
    margin-bottom: 75px;
  }
  .mb-990-70 {
    margin-bottom: 70px;
  }
  .mb-990-65 {
    margin-bottom: 65px;
  }
  .mb-990-60 {
    margin-bottom: 60px;
  }
  .mb-990-55 {
    margin-bottom: 55px;
  }
  .mb-990-50 {
    margin-bottom: 50px;
  }
  .mb-990-45 {
    margin-bottom: 45px;
  }
  .mb-990-40 {
    margin-bottom: 40px;
  }
  .mb-990-35 {
    margin-bottom: 35px;
  }
  .mb-990-30 {
    margin-bottom: 30px;
  }
  .mb-990-25 {
    margin-bottom: 25px;
  }
  .mb-990-20 {
    margin-bottom: 20px;
  }
  .mb-990-15 {
    margin-bottom: 15px;
  }
  .mb-990-10 {
    margin-bottom: 10px;
  }
  .mb-990-5 {
    margin-bottom: 5px;
  }
  .mb-990-0 {
    margin-bottom: 0px;
  }
}
@media all and (max-width: 768px) {
  .f-768-10 .f-col {
    width: 10%;
  }
  .f-768-9 .f-col {
    width: 11.11111111%;
  }
  .f-768-8 .f-col {
    width: 12.5%;
  }
  .f-768-7 .f-col {
    width: 14.28571429%;
  }
  .f-768-6 .f-col {
    width: 16.66666667%;
  }
  .f-768-5 .f-col {
    width: 20%;
  }
  .f-768-4 .f-col {
    width: 25%;
  }
  .f-768-3 .f-col {
    width: 33.33333333%;
  }
  .f-768-2 .f-col {
    width: 50%;
  }
  .f-768-1 .f-col {
    width: 100%;
  }
  .w-768-100 {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-768-95 {
    width: 95%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-768-90 {
    width: 90%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-768-85 {
    width: 85%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-768-80 {
    width: 80%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-768-75 {
    width: 75%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-768-70 {
    width: 70%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-768-65 {
    width: 65%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-768-60 {
    width: 60%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-768-55 {
    width: 55%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-768-50 {
    width: 50%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-768-45 {
    width: 45%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-768-40 {
    width: 40%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-768-35 {
    width: 35%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-768-30 {
    width: 30%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-768-25 {
    width: 25%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-768-20 {
    width: 20%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-768-15 {
    width: 15%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-768-10 {
    width: 10%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-768-5 {
    width: 5%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .g-768-10 {
    grid-template-columns: repeat(10, 1fr);
  }
  .g-768-9 {
    grid-template-columns: repeat(9, 1fr);
  }
  .g-768-8 {
    grid-template-columns: repeat(8, 1fr);
  }
  .g-768-7 {
    grid-template-columns: repeat(7, 1fr);
  }
  .g-768-6 {
    grid-template-columns: repeat(6, 1fr);
  }
  .g-768-5 {
    grid-template-columns: repeat(5, 1fr);
  }
  .g-768-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .g-768-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .g-768-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .g-768-1 {
    grid-template-columns: repeat(1, 1fr);
  }
  .gp-768-70 {
    gap: 70px;
  }
  .gp-768-65 {
    gap: 65px;
  }
  .gp-768-60 {
    gap: 60px;
  }
  .gp-768-55 {
    gap: 55px;
  }
  .gp-768-50 {
    gap: 50px;
  }
  .gp-768-45 {
    gap: 45px;
  }
  .gp-768-40 {
    gap: 40px;
  }
  .gp-768-35 {
    gap: 35px;
  }
  .gp-768-30 {
    gap: 30px;
  }
  .gp-768-25 {
    gap: 25px;
  }
  .gp-768-20 {
    gap: 20px;
  }
  .gp-768-15 {
    gap: 15px;
  }
  .gp-768-10 {
    gap: 10px;
  }
  .gp-768-5 {
    gap: 5px;
  }
  .gp-768-0 {
    gap: 0px;
  }
  .w-768-33 {
    width: 33%;
  }
  .w-768-16 {
    width: 16.666666%;
  }
  .mb-768-100 {
    margin-bottom: 100px;
  }
  .mb-768-95 {
    margin-bottom: 95px;
  }
  .mb-768-90 {
    margin-bottom: 90px;
  }
  .mb-768-85 {
    margin-bottom: 85px;
  }
  .mb-768-80 {
    margin-bottom: 80px;
  }
  .mb-768-75 {
    margin-bottom: 75px;
  }
  .mb-768-70 {
    margin-bottom: 70px;
  }
  .mb-768-65 {
    margin-bottom: 65px;
  }
  .mb-768-60 {
    margin-bottom: 60px;
  }
  .mb-768-55 {
    margin-bottom: 55px;
  }
  .mb-768-50 {
    margin-bottom: 50px;
  }
  .mb-768-45 {
    margin-bottom: 45px;
  }
  .mb-768-40 {
    margin-bottom: 40px;
  }
  .mb-768-35 {
    margin-bottom: 35px;
  }
  .mb-768-30 {
    margin-bottom: 30px;
  }
  .mb-768-25 {
    margin-bottom: 25px;
  }
  .mb-768-20 {
    margin-bottom: 20px;
  }
  .mb-768-15 {
    margin-bottom: 15px;
  }
  .mb-768-10 {
    margin-bottom: 10px;
  }
  .mb-768-5 {
    margin-bottom: 5px;
  }
  .mb-768-0 {
    margin-bottom: 0px;
  }
}
@media all and (max-width: 640px) {
  .f-640-10 .f-col {
    width: 10%;
  }
  .f-640-9 .f-col {
    width: 11.11111111%;
  }
  .f-640-8 .f-col {
    width: 12.5%;
  }
  .f-640-7 .f-col {
    width: 14.28571429%;
  }
  .f-640-6 .f-col {
    width: 16.66666667%;
  }
  .f-640-5 .f-col {
    width: 20%;
  }
  .f-640-4 .f-col {
    width: 25%;
  }
  .f-640-3 .f-col {
    width: 33.33333333%;
  }
  .f-640-2 .f-col {
    width: 50%;
  }
  .f-640-1 .f-col {
    width: 100%;
  }
  .w-640-100 {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-640-95 {
    width: 95%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-640-90 {
    width: 90%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-640-85 {
    width: 85%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-640-80 {
    width: 80%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-640-75 {
    width: 75%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-640-70 {
    width: 70%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-640-65 {
    width: 65%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-640-60 {
    width: 60%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-640-55 {
    width: 55%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-640-50 {
    width: 50%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-640-45 {
    width: 45%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-640-40 {
    width: 40%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-640-35 {
    width: 35%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-640-30 {
    width: 30%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-640-25 {
    width: 25%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-640-20 {
    width: 20%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-640-15 {
    width: 15%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-640-10 {
    width: 10%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-640-5 {
    width: 5%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .g-640-10 {
    grid-template-columns: repeat(10, 1fr);
  }
  .g-640-9 {
    grid-template-columns: repeat(9, 1fr);
  }
  .g-640-8 {
    grid-template-columns: repeat(8, 1fr);
  }
  .g-640-7 {
    grid-template-columns: repeat(7, 1fr);
  }
  .g-640-6 {
    grid-template-columns: repeat(6, 1fr);
  }
  .g-640-5 {
    grid-template-columns: repeat(5, 1fr);
  }
  .g-640-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .g-640-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .g-640-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .g-640-1 {
    grid-template-columns: repeat(1, 1fr);
  }
  .gp-640-70 {
    gap: 70px;
  }
  .gp-640-65 {
    gap: 65px;
  }
  .gp-640-60 {
    gap: 60px;
  }
  .gp-640-55 {
    gap: 55px;
  }
  .gp-640-50 {
    gap: 50px;
  }
  .gp-640-45 {
    gap: 45px;
  }
  .gp-640-40 {
    gap: 40px;
  }
  .gp-640-35 {
    gap: 35px;
  }
  .gp-640-30 {
    gap: 30px;
  }
  .gp-640-25 {
    gap: 25px;
  }
  .gp-640-20 {
    gap: 20px;
  }
  .gp-640-15 {
    gap: 15px;
  }
  .gp-640-10 {
    gap: 10px;
  }
  .gp-640-5 {
    gap: 5px;
  }
  .gp-640-0 {
    gap: 0px;
  }
  .w-640-33 {
    width: 33%;
  }
  .w-640-16 {
    width: 16.666666%;
  }
  .mb-640-100 {
    margin-bottom: 100px;
  }
  .mb-640-95 {
    margin-bottom: 95px;
  }
  .mb-640-90 {
    margin-bottom: 90px;
  }
  .mb-640-85 {
    margin-bottom: 85px;
  }
  .mb-640-80 {
    margin-bottom: 80px;
  }
  .mb-640-75 {
    margin-bottom: 75px;
  }
  .mb-640-70 {
    margin-bottom: 70px;
  }
  .mb-640-65 {
    margin-bottom: 65px;
  }
  .mb-640-60 {
    margin-bottom: 60px;
  }
  .mb-640-55 {
    margin-bottom: 55px;
  }
  .mb-640-50 {
    margin-bottom: 50px;
  }
  .mb-640-45 {
    margin-bottom: 45px;
  }
  .mb-640-40 {
    margin-bottom: 40px;
  }
  .mb-640-35 {
    margin-bottom: 35px;
  }
  .mb-640-30 {
    margin-bottom: 30px;
  }
  .mb-640-25 {
    margin-bottom: 25px;
  }
  .mb-640-20 {
    margin-bottom: 20px;
  }
  .mb-640-15 {
    margin-bottom: 15px;
  }
  .mb-640-10 {
    margin-bottom: 10px;
  }
  .mb-640-5 {
    margin-bottom: 5px;
  }
  .mb-640-0 {
    margin-bottom: 0px;
  }
}
@media all and (max-width: 576px) {
  .f-576-10 .f-col {
    width: 10%;
  }
  .f-576-9 .f-col {
    width: 11.11111111%;
  }
  .f-576-8 .f-col {
    width: 12.5%;
  }
  .f-576-7 .f-col {
    width: 14.28571429%;
  }
  .f-576-6 .f-col {
    width: 16.66666667%;
  }
  .f-576-5 .f-col {
    width: 20%;
  }
  .f-576-4 .f-col {
    width: 25%;
  }
  .f-576-3 .f-col {
    width: 33.33333333%;
  }
  .f-576-2 .f-col {
    width: 50%;
  }
  .f-576-1 .f-col {
    width: 100%;
  }
  .g-576-10 {
    grid-template-columns: repeat(10, 1fr);
  }
  .g-576-9 {
    grid-template-columns: repeat(9, 1fr);
  }
  .g-576-8 {
    grid-template-columns: repeat(8, 1fr);
  }
  .g-576-7 {
    grid-template-columns: repeat(7, 1fr);
  }
  .g-576-6 {
    grid-template-columns: repeat(6, 1fr);
  }
  .g-576-5 {
    grid-template-columns: repeat(5, 1fr);
  }
  .g-576-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .g-576-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .g-576-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .g-576-1 {
    grid-template-columns: repeat(1, 1fr);
  }
  .gp-576-70 {
    gap: 70px;
  }
  .gp-576-65 {
    gap: 65px;
  }
  .gp-576-60 {
    gap: 60px;
  }
  .gp-576-55 {
    gap: 55px;
  }
  .gp-576-50 {
    gap: 50px;
  }
  .gp-576-45 {
    gap: 45px;
  }
  .gp-576-40 {
    gap: 40px;
  }
  .gp-576-35 {
    gap: 35px;
  }
  .gp-576-30 {
    gap: 30px;
  }
  .gp-576-25 {
    gap: 25px;
  }
  .gp-576-20 {
    gap: 20px;
  }
  .gp-576-15 {
    gap: 15px;
  }
  .gp-576-10 {
    gap: 10px;
  }
  .gp-576-5 {
    gap: 5px;
  }
  .gp-576-0 {
    gap: 0px;
  }
  .w-576-100 {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-576-95 {
    width: 95%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-576-90 {
    width: 90%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-576-85 {
    width: 85%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-576-80 {
    width: 80%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-576-75 {
    width: 75%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-576-70 {
    width: 70%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-576-65 {
    width: 65%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-576-60 {
    width: 60%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-576-55 {
    width: 55%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-576-50 {
    width: 50%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-576-45 {
    width: 45%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-576-40 {
    width: 40%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-576-35 {
    width: 35%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-576-30 {
    width: 30%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-576-25 {
    width: 25%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-576-20 {
    width: 20%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-576-15 {
    width: 15%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-576-10 {
    width: 10%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-576-5 {
    width: 5%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-576-33 {
    width: 33%;
  }
  .w-576-16 {
    width: 16.666666%;
  }
  .mb-576-100 {
    margin-bottom: 100px;
  }
  .mb-576-95 {
    margin-bottom: 95px;
  }
  .mb-576-90 {
    margin-bottom: 90px;
  }
  .mb-576-85 {
    margin-bottom: 85px;
  }
  .mb-576-80 {
    margin-bottom: 80px;
  }
  .mb-576-75 {
    margin-bottom: 75px;
  }
  .mb-576-70 {
    margin-bottom: 70px;
  }
  .mb-576-65 {
    margin-bottom: 65px;
  }
  .mb-576-60 {
    margin-bottom: 60px;
  }
  .mb-576-55 {
    margin-bottom: 55px;
  }
  .mb-576-50 {
    margin-bottom: 50px;
  }
  .mb-576-45 {
    margin-bottom: 45px;
  }
  .mb-576-40 {
    margin-bottom: 40px;
  }
  .mb-576-35 {
    margin-bottom: 35px;
  }
  .mb-576-30 {
    margin-bottom: 30px;
  }
  .mb-576-25 {
    margin-bottom: 25px;
  }
  .mb-576-20 {
    margin-bottom: 20px;
  }
  .mb-576-15 {
    margin-bottom: 15px;
  }
  .mb-576-10 {
    margin-bottom: 10px;
  }
  .mb-576-5 {
    margin-bottom: 5px;
  }
  .mb-576-0 {
    margin-bottom: 0px;
  }
}
@media all and (max-width: 480px) {
  .f-480-10 .f-col {
    width: 10%;
  }
  .f-480-9 .f-col {
    width: 11.11111111%;
  }
  .f-480-8 .f-col {
    width: 12.5%;
  }
  .f-480-7 .f-col {
    width: 14.28571429%;
  }
  .f-480-6 .f-col {
    width: 16.66666667%;
  }
  .f-480-5 .f-col {
    width: 20%;
  }
  .f-480-4 .f-col {
    width: 25%;
  }
  .f-480-3 .f-col {
    width: 33.33333333%;
  }
  .f-480-2 .f-col {
    width: 50%;
  }
  .f-480-1 .f-col {
    width: 100%;
  }
  .w-480-100 {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-480-95 {
    width: 95%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-480-90 {
    width: 90%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-480-85 {
    width: 85%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-480-80 {
    width: 80%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-480-75 {
    width: 75%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-480-70 {
    width: 70%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-480-65 {
    width: 65%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-480-60 {
    width: 60%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-480-55 {
    width: 55%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-480-50 {
    width: 50%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-480-45 {
    width: 45%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-480-40 {
    width: 40%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-480-35 {
    width: 35%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-480-30 {
    width: 30%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-480-25 {
    width: 25%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-480-20 {
    width: 20%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-480-15 {
    width: 15%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-480-10 {
    width: 10%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-480-5 {
    width: 5%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .g-480-10 {
    grid-template-columns: repeat(10, 1fr);
  }
  .g-480-9 {
    grid-template-columns: repeat(9, 1fr);
  }
  .g-480-8 {
    grid-template-columns: repeat(8, 1fr);
  }
  .g-480-7 {
    grid-template-columns: repeat(7, 1fr);
  }
  .g-480-6 {
    grid-template-columns: repeat(6, 1fr);
  }
  .g-480-5 {
    grid-template-columns: repeat(5, 1fr);
  }
  .g-480-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .g-480-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .g-480-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .g-480-1 {
    grid-template-columns: repeat(1, 1fr);
  }
  .gp-480-70 {
    gap: 70px;
  }
  .gp-480-65 {
    gap: 65px;
  }
  .gp-480-60 {
    gap: 60px;
  }
  .gp-480-55 {
    gap: 55px;
  }
  .gp-480-50 {
    gap: 50px;
  }
  .gp-480-45 {
    gap: 45px;
  }
  .gp-480-40 {
    gap: 40px;
  }
  .gp-480-35 {
    gap: 35px;
  }
  .gp-480-30 {
    gap: 30px;
  }
  .gp-480-25 {
    gap: 25px;
  }
  .gp-480-20 {
    gap: 20px;
  }
  .gp-480-15 {
    gap: 15px;
  }
  .gp-480-10 {
    gap: 10px;
  }
  .gp-480-5 {
    gap: 5px;
  }
  .gp-480-0 {
    gap: 0px;
  }
  .w-480-33 {
    width: 33%;
  }
  .w-480-16 {
    width: 16.666666%;
  }
  .mb-480-100 {
    margin-bottom: 100px;
  }
  .mb-480-95 {
    margin-bottom: 95px;
  }
  .mb-480-90 {
    margin-bottom: 90px;
  }
  .mb-480-85 {
    margin-bottom: 85px;
  }
  .mb-480-80 {
    margin-bottom: 80px;
  }
  .mb-480-75 {
    margin-bottom: 75px;
  }
  .mb-480-70 {
    margin-bottom: 70px;
  }
  .mb-480-65 {
    margin-bottom: 65px;
  }
  .mb-480-60 {
    margin-bottom: 60px;
  }
  .mb-480-55 {
    margin-bottom: 55px;
  }
  .mb-480-50 {
    margin-bottom: 50px;
  }
  .mb-480-45 {
    margin-bottom: 45px;
  }
  .mb-480-40 {
    margin-bottom: 40px;
  }
  .mb-480-35 {
    margin-bottom: 35px;
  }
  .mb-480-30 {
    margin-bottom: 30px;
  }
  .mb-480-25 {
    margin-bottom: 25px;
  }
  .mb-480-20 {
    margin-bottom: 20px;
  }
  .mb-480-15 {
    margin-bottom: 15px;
  }
  .mb-480-10 {
    margin-bottom: 10px;
  }
  .mb-480-5 {
    margin-bottom: 5px;
  }
  .mb-480-0 {
    margin-bottom: 0px;
  }
}
@media all and (max-width: 400px) {
  .f-400-10 .f-col {
    width: 10%;
  }
  .f-400-9 .f-col {
    width: 11.11111111%;
  }
  .f-400-8 .f-col {
    width: 12.5%;
  }
  .f-400-7 .f-col {
    width: 14.28571429%;
  }
  .f-400-6 .f-col {
    width: 16.66666667%;
  }
  .f-400-5 .f-col {
    width: 20%;
  }
  .f-400-4 .f-col {
    width: 25%;
  }
  .f-400-3 .f-col {
    width: 33.33333333%;
  }
  .f-400-2 .f-col {
    width: 50%;
  }
  .f-400-1 .f-col {
    width: 100%;
  }
  .w-400-100 {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-400-95 {
    width: 95%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-400-90 {
    width: 90%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-400-85 {
    width: 85%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-400-80 {
    width: 80%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-400-75 {
    width: 75%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-400-70 {
    width: 70%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-400-65 {
    width: 65%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-400-60 {
    width: 60%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-400-55 {
    width: 55%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-400-50 {
    width: 50%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-400-45 {
    width: 45%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-400-40 {
    width: 40%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-400-35 {
    width: 35%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-400-30 {
    width: 30%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-400-25 {
    width: 25%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-400-20 {
    width: 20%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-400-15 {
    width: 15%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-400-10 {
    width: 10%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-400-5 {
    width: 5%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .g-400-10 {
    grid-template-columns: repeat(10, 1fr);
  }
  .g-400-9 {
    grid-template-columns: repeat(9, 1fr);
  }
  .g-400-8 {
    grid-template-columns: repeat(8, 1fr);
  }
  .g-400-7 {
    grid-template-columns: repeat(7, 1fr);
  }
  .g-400-6 {
    grid-template-columns: repeat(6, 1fr);
  }
  .g-400-5 {
    grid-template-columns: repeat(5, 1fr);
  }
  .g-400-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .g-400-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .g-400-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .g-400-1 {
    grid-template-columns: repeat(1, 1fr);
  }
  .gp-400-70 {
    gap: 70px;
  }
  .gp-400-65 {
    gap: 65px;
  }
  .gp-400-60 {
    gap: 60px;
  }
  .gp-400-55 {
    gap: 55px;
  }
  .gp-400-50 {
    gap: 50px;
  }
  .gp-400-45 {
    gap: 45px;
  }
  .gp-400-40 {
    gap: 40px;
  }
  .gp-400-35 {
    gap: 35px;
  }
  .gp-400-30 {
    gap: 30px;
  }
  .gp-400-25 {
    gap: 25px;
  }
  .gp-400-20 {
    gap: 20px;
  }
  .gp-400-15 {
    gap: 15px;
  }
  .gp-400-10 {
    gap: 10px;
  }
  .gp-400-5 {
    gap: 5px;
  }
  .gp-400-0 {
    gap: 0px;
  }
  .w-400-33 {
    width: 33%;
  }
  .w-400-16 {
    width: 16.666666%;
  }
  .mb-400-100 {
    margin-bottom: 100px;
  }
  .mb-400-95 {
    margin-bottom: 95px;
  }
  .mb-400-90 {
    margin-bottom: 90px;
  }
  .mb-400-85 {
    margin-bottom: 85px;
  }
  .mb-400-80 {
    margin-bottom: 80px;
  }
  .mb-400-75 {
    margin-bottom: 75px;
  }
  .mb-400-70 {
    margin-bottom: 70px;
  }
  .mb-400-65 {
    margin-bottom: 65px;
  }
  .mb-400-60 {
    margin-bottom: 60px;
  }
  .mb-400-55 {
    margin-bottom: 55px;
  }
  .mb-400-50 {
    margin-bottom: 50px;
  }
  .mb-400-45 {
    margin-bottom: 45px;
  }
  .mb-400-40 {
    margin-bottom: 40px;
  }
  .mb-400-35 {
    margin-bottom: 35px;
  }
  .mb-400-30 {
    margin-bottom: 30px;
  }
  .mb-400-25 {
    margin-bottom: 25px;
  }
  .mb-400-20 {
    margin-bottom: 20px;
  }
  .mb-400-15 {
    margin-bottom: 15px;
  }
  .mb-400-10 {
    margin-bottom: 10px;
  }
  .mb-400-5 {
    margin-bottom: 5px;
  }
  .mb-400-0 {
    margin-bottom: 0px;
  }
}
/*==========================================================================
=> Global Styles
========================================================================== */
*,
*:before,
*:after {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}
audio,
canvas,
video {
  display: inline-block;
}
audio:not([controls]) {
  display: none;
  height: 0;
}
[hidden] {
  display: none;
}
html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  width: 100%;
}
body {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
abbr[title] {
  border-bottom: 1px dotted;
}
b,
strong {
  font-weight: bold;
}
dfn {
  font-style: italic;
}
hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}
mark {
  background: #ff0;
  color: #000;
}
code,
kbd,
pre,
samp {
  font-family: "Inter", sans-serif;
  font-size: 1em;
}
pre {
  white-space: pre-wrap;
}
small {
  font-size: 80%;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
svg:not(:root) {
  overflow: hidden;
}
figure {
  margin: 0;
}
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}
legend {
  border: 0;
  padding: 0;
}
button,
input,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  margin: 0;
}
button,
input {
  line-height: normal;
}
button,
select {
  text-transform: none;
}
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}
button[disabled],
html input[disabled] {
  cursor: default;
}
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}
input[type="search"] {
  -webkit-appearance: textfield;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
textarea {
  overflow: auto;
  vertical-align: top;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
input,
button,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
button,
input,
select[multiple],
textarea {
  background-image: none;
}
a {
  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}
a:active,
a:hover,
a:focus {
  outline: 0;
  text-decoration: none;
}
img {
  border: 0;
  vertical-align: middle;
}
img.obj-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
img.obj-contain {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
ul,
ol,
dl {
  -webkit-margin-after: 0;
  -webkit-margin-before: 0;
}
hr {
  margin-top: 20px;
  margin-bottom: 20px;
  border: 0;
  border-top: 1px solid #CFD1D4;
}
/*==========================================================================
=> checkbox contact form 7
========================================================================== */
span.wpcf7-list-item {
  display: block;
}
.wpcf7-list-item {
  display: flex;
  align-items: center;
  margin: 0 0 40px 0;
}
.wpcf7-list-item input {
  display: none;
}
.wpcf7-list-item-label {
  font-size: 24px;
  line-height: 1.1;
  color: #000000;
  position: relative;
  cursor: pointer;
  padding-left: 48px;
  display: block;
}
.wpcf7-list-item input[type="checkbox"] ~ span::before {
  content: "";
  -webkit-appearance: none;
  background-color: transparent;
  border: 1px solid #000;
  padding: 10px;
  display: inline-block;
  position: absolute;
  left: 0;
  vertical-align: middle;
  cursor: pointer;
  width: 26px;
  height: 26px;
  border-radius: 6px;
}
.wpcf7-list-item input[type="checkbox"]:checked ~ span::after {
  content: "";
  display: block;
  position: absolute;
  top: 5px;
  left: 10px;
  width: 7px;
  height: 14px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  border-bottom-right-radius: 2px;
}
.wpcf7-list-item input[type="checkbox"]:checked ~ span::before {
  background: #03333F;
  border: 1px solid #03333F;
}
.wpcf7-list-item-label::before,
.wpcf7-list-item-label::after {
  content: " ";
  display: none;
}
.wpcf7-form .button {
  margin-right: 10px;
}
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
  border: none;
  color: #ff6900;
}
/*==========================================================================
=> buttons
========================================================================== */
.button {
  background: var(--darkblue);
  border-radius: 100px;
  border: 1px solid var(--blue, #4553FF);
  display: flex;
  padding: 12px 8px 12px 16px;
  justify-content: center;
  align-items: center;
  gap: 12px;
  color: var(--white, #FFF);
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.48px;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
}
.button span:first-child {
  position: relative;
  z-index: 1;
}
.button span:last-child {
  display: flex;
  padding: 8px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  position: relative;
}
.button span:last-child::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--gradient1, #FFF);
  background: var(--gradient1, #FFF);
  overflow: hidden;
  border-radius: 50px;
  z-index: 0;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
}
.button span:last-child img {
  position: relative;
  z-index: 1;
  width: 16px;
  height: 16px;
  filter: invert(1);
}
.button:hover span:last-child::after {
  transform: scale(11);
}
.button-gradient {
  background: var(--gradient1);
  border-radius: 100px;
  border: 1px solid var(--blue, #4553FF);
  display: flex;
  padding: 12px 8px 12px 16px;
  justify-content: center;
  align-items: center;
  gap: 12px;
  color: var(--white, #FFF);
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.48px;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
}
.button-gradient span:first-child {
  position: relative;
  z-index: 1;
}
.button-gradient span:last-child {
  display: flex;
  padding: 8px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  position: relative;
}
.button-gradient span:last-child::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--white, #FFF);
  background: var(--white, #FFF);
  overflow: hidden;
  border-radius: 50px;
  z-index: 0;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
}
.button-gradient span:last-child img {
  position: relative;
  z-index: 1;
  width: 16px;
  height: 16px;
}
.button-gradient:hover {
  color: var(--black);
}
.button-gradient:hover span:last-child::after {
  transform: scale(11);
}
.button:hover,
.button:focus,
.button:active {
  text-decoration: none;
  outline: none;
}
button:focus {
  outline: none;
}
.button--block {
  width: 100%;
}
.button svg {
  position: relative;
  top: -2px;
}
.button svg path {
  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
}
.button .phone {
  margin-right: 5px;
}
/*==========================================================================
=> Form Elements
========================================================================== */
.element-section {
  padding: 50px 0;
  border-bottom: 1px solid #ddd;
}
.element-section .ehdn1 {
  margin-bottom: 30px;
}
.element-section .ehdn2 {
  font-size: 18px;
  margin-bottom: 20px;
  margin-top: 30px;
}
.myElem {
  display: block;
  border: 1px solid #ccc;
  padding: 20px;
  text-align: center;
}
.form-grp,
.form-textarea-group {
  position: relative;
  margin-bottom: clamp(16px, 1.67vw, 30px);
}
.form-grp .inputError {
  border-bottom: 1px solid var(--input-error);
}
.error-msg {
  font-size: 12px;
  color: var(--input-error);
  margin: 0;
}
.error-msg2 {
  font-size: 12px;
  color: var(--input-error);
  margin-bottom: 20px;
}
.whatsapp {
  margin-right: 0;
}
.form-field {
  height: 64px;
  padding: 10px 24px;
  border: 0;
  border-radius: 12px;
  background: #FFF;
  width: 100%;
  z-index: 1;
  position: relative;
  color: #000;
  font-family: Inter;
  font-size: var(--fs16);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.48px;
  outline: none;
  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
}
.form-field:-webkit-autofill,
.form-field:-webkit-autofill:hover,
.form-field:-webkit-autofill:focus,
.form-field:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px white inset;
}
.form-field::placeholder {
  color: rgba(7, 13, 58, 0.7);
  font-family: Inter;
  font-size: var(--fs16);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.48px;
}
.form-field:focus,
.form-field.field--not-empty {
  border: 0;
}
.form-field ~ .form-label {
  z-index: 3;
  color: rgba(7, 13, 58, 0.7);
  font-family: Inter;
  font-size: var(--fs16);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.48px;
  position: absolute;
  left: 24px;
  top: 20px;
  padding: 0;
  margin: 0;
  pointer-events: none;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
}
.form-field ~ .form-label::after {
  content: " *";
  color: #F00;
  font-size: 16px;
}
.form-field:focus ~ .form-label,
.form-field.field--not-empty ~ .form-label,
.form-grp.sTop .form-label {
  font-size: var(--input-fs-top);
  color: #070D3A;
  background: linear-gradient(0deg, white 5%, transparent);
  top: -10px;
  z-index: 2;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
}
.form-textarea-group .form-field {
  height: 164px;
  line-height: 1.4;
  padding: 20px 24px;
  resize: none;
}
/* Password View */
.form-grp.int-padl input,
.form-grp.form-grp-var input,
.form-grp.int-padl select,
.form-grp.form-grp-var select {
  padding-left: 50px;
}
.form-grp.int-padr input,
.form-grp.int-padr select {
  padding-right: 50px;
}
.form-grp .view-pass {
  position: absolute;
  right: 10px;
  bottom: 15px;
  line-height: 0;
  font-size: 22px;
  cursor: pointer;
  z-index: 9;
}
.form-grp.disabled-field {
  background: #f5f5f5;
}
.form-grp.disabled-field .form-field {
  border-color: #f5f5f5;
}
.form-grp.disabled-field .form-label {
  color: #999;
  background: transparent;
  width: 100%;
  transition: all 0s ease-in-out;
  -webkit-transition: all 0s ease-in-out;
}
/* Password View end */
/* Select */
.select-field {
  background: url('../img/drop-down-arrow.svg') no-repeat calc(100% - 20px) center;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.select-field option {
  color: #9fa4a9;
}
.select-field option:checked,
.select-field option:hover {
  background: #7cb2f6;
  color: #fff;
}
/* // Select */
/* Placeholder */
.form-grp input::-webkit-input-placeholder,
.form-grp input:-ms-input-placeholder,
.form-grp input::placeholder {
  color: rgba(7, 13, 58, 0.7);
  font-family: Inter;
  font-size: var(--fs16);
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.48px;
}
.form-grp input::-webkit-input-placeholder::after,
.form-grp input:-ms-input-placeholder::after,
.form-grp input::placeholder::after {
  content: "*";
  color: #F00;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: -0.48px;
}
.form-grp input::-webkit-input-placeholder {
  color: rgba(7, 13, 58, 0.7);
  font-family: Inter;
  font-size: var(--fs16);
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.48px;
}
/* Placeholder end */
label.error {
  font-weight: 400;
  margin: 0;
  margin-top: 5px;
  line-height: 2;
  font-size: 14px;
  color: #f71336;
  position: relative;
}
/*==========================================================================
=> Radio Small
========================================================================== */
.radio-box {
  position: relative;
  display: inline-block;
  margin-right: 20px;
  margin-bottom: 30px;
}
.radio-box input {
  position: absolute;
  width: 0;
  opacity: 0;
}
.radio-box label {
  font-size: 18px;
  color: #000;
  margin: 0;
  padding: 5px;
  padding-left: 36px;
  cursor: pointer;
  position: relative;
}
.radio-box label:before {
  content: "";
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid #000;
  display: inline-block;
  position: absolute;
  left: 0;
  top: 5px;
  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
}
.radio-box input:checked ~ label::before {
  border: 7px solid #000;
}
.radio-box label.error {
  display: none;
}
.radio-box input.error ~ label {
  color: #ff2323;
}
.radio-box input.error ~ .chk-label:before {
  border: 1px solid #ff2323;
}
/* // Radio Box */
/*==========================================================================
=> Checkbox Small
========================================================================== */
.checkbox-box {
  position: relative;
  display: inline-block;
  margin-bottom: 30px;
}
.checkbox-box input {
  position: absolute;
  width: 0;
  opacity: 0;
}
.checkbox-box input.only-chkbox {
  position: absolute;
  width: 20px;
  height: 20px;
  top: 6px;
  left: 1px;
  cursor: pointer;
  z-index: 2;
  opacity: 0;
}
.checkbox-box .chk-label {
  font-size: 16px;
  color: #30223b;
  line-height: 1.5;
  margin: 0;
  padding: 5px;
  padding-left: 36px;
  cursor: pointer;
  position: relative;
  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
}
.checkbox-box .chk-label:before {
  content: "";
  width: 22px;
  height: 22px;
  border-radius: 4px;
  background: transparent;
  border: 1.5px solid #000;
  display: inline-block;
  position: absolute;
  left: 0;
  top: 5px;
  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
}
.checkbox-box .chk-label:after {
  content: "";
  border-radius: 3px;
  display: inline-block;
  position: absolute;
  left: 5px;
  top: 7px;
}
.checkbox-box label.error {
  display: none;
}
.checkbox-box input.error ~ .chk-label {
  color: #ff2323;
}
.checkbox-box input.error ~ .chk-label:before {
  border: 1px solid #ff2323;
}
/* // Checkbox */
/* checkbox 2 */
.checkbox-box.chk-rd .chk-label:before {
  border-radius: 100%;
}
.checkbox-box input:checked ~ .chk-label::before {
  background: #000;
}
.checkbox-box input:checked ~ .chk-label::after {
  color: #ffffff;
}
/* checkbox 2 end */
/* checkbox 3 */
.checkbox-box.check-three {
  width: 100%;
  margin-bottom: 0;
  padding-bottom: 30px;
}
.checkbox-box.check-three label {
  border: 1px solid #e7e9ec;
  text-align: center;
  border-radius: 8px;
  padding: 25px 50px;
  max-width: 255px;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.checkbox-box.check-three label i {
  display: block;
  font-size: 60px;
  margin-bottom: 20px;
  color: #8594AF;
}
.checkbox-box.check-three label span {
  border-radius: 8px;
  font-size: 18px;
  color: #8594af;
}
.checkbox-box.check-three label:before {
  border-radius: 100%;
  border: 1px solid #000;
}
.checkbox-box.check-three label:before,
.checkbox-box.check-three label:after {
  left: inherit;
  right: 15px;
  top: 15px;
}
.checkbox-box.check-three input:checked ~ .chk-label {
  border: 1px solid #000;
}
.checkbox-box.check-three input:checked ~ .chk-label span {
  font-weight: 700;
  color: #30223b;
}
.checkbox-box.check-three input:checked ~ .chk-label i {
  color: #000;
}
.checkbox-box.check-three input:checked ~ .chk-label .home-img {
  filter: none;
}
.checkbox-box.check-three input:checked ~ .chk-label::after {
  width: 22px;
  height: 22px;
  border-radius: 100%;
  position: absolute;
  background: #000;
  color: #fff;
  display: -webkit-flex;
  display: -webkit-box;
  display: -moz-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
}
/* checkbox 3 end */
/* checkbox 4 */
.checkbox-box.chk-four {
  margin-right: 10px;
}
.checkbox-box.chk-four label {
  padding: 7px 15px;
  border: 1px solid #DDE3EE;
  border-radius: 8px;
  display: -webkit-flex;
  display: -webkit-box;
  display: -moz-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.checkbox-box.chk-four label i {
  font-size: 18px;
  color: #8594AF;
  margin-right: 10px;
  position: absolute;
  left: 15px;
}
.checkbox-box.chk-four label span {
  font-weight: 500;
  font-size: 14px;
  color: #000;
  margin-left: 25px;
}
.checkbox-box.chk-four label:before,
.checkbox-box.chk-four label:after {
  display: none;
}
.checkbox-box.chk-four.chk-err input:checked ~ .chk-label {
  border: 1px solid var(--clr-red);
}
.checkbox-box.chk-four.chk-err input:checked ~ .chk-label i {
  color: var(--clr-red);
}
.checkbox-box.chk-four input:checked ~ .chk-label {
  border: 1px solid var(--clr-grn);
}
.checkbox-box.chk-four input:checked ~ .chk-label i {
  color: var(--clr-grn);
}
/* checkbox 4 end */
/* checkbox 5 */
.checkbox-box.check-five .chk-label {
  padding: 12px 25px;
  border: 1px solid #DDE3EE;
  border-radius: 8px;
  display: -webkit-flex;
  display: -webkit-box;
  display: -moz-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.checkbox-box.check-five .chk-label span {
  font-weight: 500;
  font-size: 16px;
  color: #8594AF;
}
.checkbox-box.check-five .chk-label:before {
  border-radius: 100%;
  border: none;
}
.checkbox-box.check-five .chk-label:before,
.checkbox-box.check-five .chk-label:after {
  left: inherit;
  right: -11px;
  top: -11px;
}
.checkbox-box.check-five input:checked ~ .chk-label {
  border: 1px solid #000;
}
.checkbox-box.check-five input:checked ~ .chk-label span {
  color: #000000;
}
.checkbox-box.check-five input:checked ~ .chk-label::after {
  width: 22px;
  height: 22px;
  border-radius: 100%;
  position: absolute;
  color: #fff;
  display: -webkit-flex;
  display: -webkit-box;
  display: -moz-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
}
/* checkbox 5 end */
/*==========================================================================
=> Modal
==========================================================================*/
.modal-subTitle {
  font-size: 14px;
  line-height: 1.2;
  color: #000000;
  margin-bottom: 4px;
}
.modal-title {
  font-weight: 600;
  font-size: 26px;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #003f59;
  border-bottom: 1px solid rgba(0, 63, 89, 0.1);
  padding-bottom: 10px;
}
.modal-para p {
  font-size: 16px;
  line-height: 1.6;
  color: #8793a2;
  margin-bottom: 8px;
}
.modal-para p:last-child {
  margin-bottom: 0;
}
.modal-cancel {
  cursor: pointer;
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 9;
  font-size: 24px;
  line-height: 1;
  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
}
.modal-cross {
  display: flex;
  font-size: 22px;
  margin: 0 auto 12px;
  margin-right: 0;
  color: #000000;
  width: fit-content;
  cursor: pointer;
}
.modal-cross i {
  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
}
.modal-cross:hover i {
  transform: rotate(90deg);
}
.modal-content {
  display: block;
  border: none;
  border-radius: 10px;
  padding: 24px;
  box-shadow: 0px 5px 25px rgba(0, 0, 0, 0.1);
}
.window-1440 {
  max-width: 1440px;
  padding: 0 15px;
}
.window-990 {
  max-width: 990px;
  padding: 0 15px;
}
.window-500 {
  max-width: 500px;
  padding: 0 15px;
}
.static-cont {
  margin-bottom: 32px;
}
.static-cont li {
  font-size: 14px;
  color: #233037;
  padding-left: 20px;
  margin-bottom: 6px;
  position: relative;
}
.static-cont li p {
  margin-bottom: 10px;
}
.static-cont li:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 7px;
  height: 7px;
  background: #fd9933;
  border-radius: 50%;
  top: 7px;
}
.static-cont p {
  font-size: 14px;
  color: #233037;
  margin-bottom: 20px;
}
.modal-backdrop.show {
  opacity: 0.9;
}
.modal-backdrop {
  background-color: #fff;
}
.modal-cancel:hover {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
.ellipsis1 {
  white-space: normal;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ellipsis2 {
  white-space: normal;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ellipsis3 {
  white-space: normal;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ellipsis4 {
  white-space: normal;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.flex-justify {
  display: -webkit-flex;
  display: -webkit-box;
  display: -moz-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
}
.element-head {
  font-size: 40px;
  font-weight: bold;
}
/* content page */
.content-hdn {
  font-weight: 700;
  font-size: 42px;
  color: #171717;
  text-align: center;
  margin-bottom: 48px;
}
.content-body img {
  height: 500px;
  width: 100%;
  object-fit: cover;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: clamp(24px, 2.5vw, 48px);
}
.content-body h1,
.content-body h2,
.content-body h3,
.content-body h4,
.content-body h5,
.content-body h6 {
  color: var(--darkblue, #070D3A);
  font-family: Archivo;
  font-size: var(--fs32);
  font-weight: 400;
  line-height: 1.31;
  letter-spacing: -0.96px;
  margin-bottom: 16px;
}
.content-body p {
  color: var(--darkblue, #070D3A);
  font-family: Inter;
  font-size: var(--fs18);
  font-weight: 400;
  line-height: 1.44;
  letter-spacing: -0.54px;
  margin-bottom: clamp(16px, 2.08vw, 40px);
}
.content-body a {
  display: block;
  color: var(--blue, #4553FF);
  font-family: Inter;
  font-size: var(--fs18);
  font-style: normal;
  font-weight: 400;
  line-height: 1.44;
  letter-spacing: -0.54px;
  position: relative;
  margin-left: 16px;
  margin-bottom: 12px;
}
.content-body a::before {
  content: "";
  height: 5px;
  width: 5px;
  border-radius: 50%;
  background: var(--blue, #4553FF);
  position: absolute;
  top: 9px;
  left: -15px;
}
.content-body blockquote {
  border-radius: 16px;
  background: rgba(173, 194, 221, 0.5);
  color: var(--black);
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: clamp(24px, 2.5vw, 48px);
  width: 100%;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
}
.content-body blockquote p {
  color: var(--Indium-Black, #101010);
  text-align: center;
  font-family: Archivo;
  font-size: var(--fs20);
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: -0.6px;
  margin-bottom: 0;
}
.content-body blockquote span {
  display: block;
  color: var(--Dark-Grey, #3A3A3A);
  font-family: Archivo;
  font-size: var(--fs16);
  font-weight: 400;
  line-height: 1.5;
}
.content-body ol li {
  color: var(--darkblue, #070D3A);
  font-family: Archivo;
  font-size: var(--fs24);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.72px;
  list-style-type: none;
  margin-bottom: 12px;
}
.content-body ul {
  margin-top: 12px;
}
.content-body ul li {
  color: var(--darkblue, #070D3A);
  font-family: Inter;
  font-size: var(--fs18);
  font-style: normal;
  font-weight: 400;
  line-height: 1.44;
  letter-spacing: -0.54px;
  margin-bottom: 24px;
}
.content-body ul li strong {
  font-weight: 700;
}
@media all and (max-width: 1280px) {
  .content-body img {
    height: 400px;
  }
}
@media all and (max-width: 1024px) {
  .content-body img {
    height: 360px;
  }
}
@media all and (max-width: 800px) {
  .content-body img {
    height: 320px;
  }
}
@media all and (max-width: 640px) {
  .content-body h1,
  .content-body h2,
  .content-body h3,
  .content-body h4,
  .content-body h5,
  .content-body h6 {
    margin-bottom: 8px;
  }
  .content-body img {
    height: 300px;
  }
  .content-body ol li {
    margin-bottom: 6px;
  }
  .content-body ul {
    margin-top: 6px;
  }
  .content-body ul li {
    margin-bottom: 6px;
  }
  .content-body blockquote {
    padding: 12px;
    gap: 4px;
  }
  .content-body blockquote p br {
    display: none;
  }
  .content-body img {
    height: 300px;
  }
  .form-field {
    padding: 10px;
    height: 50px;
    border-radius: 6px;
  }
  .form-field ~ .form-label {
    left: 16px;
    top: 12px;
  }
}
/* content page end */
.thankyou-contain {
  height: 100dvh;
  display: flex;
  align-items: center;
  background-color: var(--darkblue);
}
.thankyou-card {
  text-align: center;
  margin: auto;
  max-width: 480px;
}
.thankyou-img {
  width: calc(100% - 100px);
  margin: 0 auto 32px;
}
.thankyou-hdn {
  font-size: 48px;
  color: #202135;
  margin-bottom: 18px;
}
.thankyou-para p {
  color: #455a64;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 10px;
}
.thankyou-para p:last-child {
  margin-bottom: 0;
}
@media all and (max-width: 990px) {
  .thankyou-hdn {
    font-size: 42px;
    margin-bottom: 12px;
  }
}
@media all and (max-width: 480px) {
  .thankyou-hdn {
    font-size: 32px;
    margin-bottom: 8px;
  }
}
.error-wrap {
  height: calc(100dvh - var(--header-height));
  display: -webkit-flex;
  display: -webkit-box;
  display: -moz-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 30px;
  position: relative;
}
.error-sec {
  overflow: hidden;
  position: relative;
}
.error-img {
  width: 40vw;
  height: auto;
}
.ty-img {
  width: 11vw;
  height: auto;
}
.error-title {
  color: #FFF;
  text-align: center;
  font-size: var(--font48);
  font-weight: 500;
  line-height: 1;
  text-transform: capitalize;
  max-width: 447px;
}
@media all and (max-width: 1366px) {
  .ty-img {
    width: 30vw;
  }
}
/*==========================================================================
=> Accordion
==========================================================================*/
.accordion {
  background: transparent;
  cursor: pointer;
  padding: 32px 36px;
  width: 100%;
  border: none;
  outline: none;
  transition: 0.4s;
  position: relative;
  color: #fff;
  font-size: 15px;
  text-align: left;
  font-size: 24px;
}
.accordion::after,
.accordion:before {
  content: '';
  width: 20px;
  height: 2px;
  background-color: var(--black);
  display: inline-block;
  position: absolute;
  right: 36px;
  top: 50%;
}
.accordion::before {
  transform: rotate(90deg);
  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
}
.panel {
  display: none;
  padding: 0 30px 32px 36px;
}
.panel p {
  font-size: 16px;
  line-height: 1.9;
}
.acc-container {
  max-width: 1065px;
  width: 100%;
  margin: 50px auto;
}
.acc-item {
  margin-bottom: 30px;
  border-radius: 24px;
  overflow: hidden;
  background: #F8F8F8;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
}
.acc-item p {
  margin-bottom: 20px;
}
.acc-item p:last-child {
  margin-bottom: 0;
}
.acc-item:last-child {
  margin-bottom: 0;
}
.acc-item.active {
  background-color: var(--darkblue);
}
.acc-item.active .accordion {
  padding: 32px 70px 16px 36px;
}
.acc-item.active .accordion h3 {
  color: var(--white);
}
.acc-item.active .accordion::after {
  background: var(--white);
}
.acc-item.active .accordion::before {
  background: var(--white);
  transform: rotate(180deg);
}
/*==========================================================================
=> Multiple Tab
==========================================================================*/
.tabs {
  display: -webkit-flex;
  display: -webkit-box;
  display: -moz-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
}
.tabs ul {
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.14);
  width: fit-content;
  position: relative;
}
.tabs ul li {
  color: #565656;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0 15px 10px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
}
.tabs ul li.active {
  color: var(--black);
}
.indicator {
  width: 0;
  height: 1px;
  background: var(--black);
  position: absolute;
  bottom: 0;
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
}
.comm-tab-wrap {
  width: 100%;
  margin: 50px auto;
}
.comm-tab-wrap ul.tabs {
  width: 100%;
  justify-content: center;
}
.comm-tab-wrap ul.tabs li {
  width: 100%;
  text-align: center;
  max-width: 270px;
  flex: 1;
}
.comm-tab-wrap .tab_container {
  max-width: 1060px;
  margin: 0 auto;
}
.tab_content {
  opacity: 0;
  visibility: hidden;
  display: none;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
}
.tab_content.active {
  opacity: 1;
  visibility: visible;
  display: block;
}
.comm-tab-box {
  width: 100%;
  margin-bottom: 60px;
}
/* Most common */
.ml0 {
  margin-left: 0px !important;
}
.mr0 {
  margin-right: 0px !important;
}
.mt0 {
  margin-top: 0px !important;
}
.mb0 {
  margin-bottom: 0px !important;
}
.pl0 {
  padding-left: 0 !important;
}
.pr0 {
  padding-right: 0 !important;
}
.pt0 {
  padding-top: 0 !important;
}
.pb0 {
  padding-bottom: 0 !important;
}
.over-visible {
  overflow: visible;
}
.over-hidden {
  overflow: hidden;
}
.swiper-slide {
  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
}
.swiper-fitw .swiper-wrapper {
  transition-timing-function: linear;
}
.swiper-fitw .swiper-slide {
  width: fit-content;
}
.swiper-op .swiper-slide {
  opacity: 0.5;
  transform: scale(0.9);
}
.swiper-op .swiper-slide-active {
  opacity: 1;
  transform: scale(1);
}
.swiper-height .swiper-slide {
  height: auto;
}
.swiper-height .swiper-slide > div {
  height: 100%;
}
.comm-cont {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.comm-cont p {
  color: var(--black);
  font-size: var(--fs18);
}
.comm-cont ul ul {
  margin-top: 16px;
}
.comm-cont ul ul li::before {
  border-radius: 0;
  width: 8px;
  height: 2px;
}
.comm-cont ul li {
  position: relative;
  margin-bottom: 14px;
  padding-left: 20px;
  color: var(--black);
  font-size: var(--fs18);
}
.comm-cont ul li::before {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 100%;
  display: block;
  top: 10px;
  left: 0;
  background: var(--clr-green);
}
.comm-cont ul li:last-child {
  margin-bottom: 0;
}
.comm-btn-flex {
  display: flex;
  gap: 16px;
}
.comm-btn-flex .comm-nav-icon:first-child i {
  rotate: 180deg;
}
.comm-nav-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  width: 50px;
  height: 50px;
  border: 1px solid var(--black);
  border-radius: 100%;
  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
}
.comm-nav-icon:hover {
  background: var(--black);
}
.comm-nav-icon:hover i {
  color: var(--white);
}
.comm-nav-icon i {
  color: var(--black);
  font-size: 12px;
}
.comm-nav-icon.swiper-button-disabled {
  opacity: 0.2;
  pointer-events: none;
}
.comm-nav {
  cursor: pointer;
  width: 48px;
  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
}
.comm-nav img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.comm-nav.swiper-button-disabled {
  opacity: 0.2;
  pointer-events: none;
}
.anim-text div {
  background: linear-gradient(to right, var(--white) 50%, var(--grey) 50%);
  background-size: 200% 100%;
  background-position-x: 100%;
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  opacity: 0.3;
}
.comm-video-box {
  height: 0;
  padding-top: 65%;
  overflow: hidden;
  display: block;
  border-radius: 20px;
  position: relative;
}
.comm-video-box img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.comm-pagination {
  margin-top: 60px;
}
.comm-pagination ul {
  display: flex;
  justify-content: center;
  gap: 16px;
}
.comm-pagination li {
  font-size: var(--fs24);
  font-weight: 600;
  letter-spacing: -0.72px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  overflow: hidden;
  display: -webkit-flex;
  display: -webkit-box;
  display: -moz-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
}
.comm-pagination li span {
  display: -webkit-flex;
  display: -webkit-box;
  display: -moz-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.comm-pagination li a,
.comm-pagination li span {
  color: var(--black);
}
.comm-pagination li .next span,
.comm-pagination li .prev span {
  color: var(--clr-maroon);
}
.comm-pagination li .current {
  background: var(--clr-maroon);
  color: var(--white);
}
.fs16 {
  color: var(--darkblue);
  font-size: var(--fs16);
  line-height: 1.5;
  letter-spacing: 0.48px;
}
.fs18 {
  color: var(--darkblue);
  font-size: var(--fs18);
  line-height: 1.44;
  letter-spacing: 0.54px;
}
.fs24 {
  color: var(--darkblue);
  font-size: var(--fs24);
  line-height: 1.5;
  letter-spacing: -0.72px;
}
.fs32 {
  color: var(--darkblue);
  font-size: var(--fs32);
  line-height: 1.3;
  letter-spacing: -0.96px;
}
.fs36 {
  color: var(--darkblue);
  font-size: var(--fs36);
  line-height: 1.22;
  letter-spacing: -1.08px;
}
.fs48 {
  color: var(--darkblue);
  font-size: var(--fs48);
  line-height: 1.2;
  letter-spacing: -1.45px;
}
.fs62 {
  color: var(--darkblue);
  font-size: var(--fs62);
  line-height: 1.16;
  letter-spacing: -1.86px;
}
.fs80 {
  color: var(--darkblue);
  font-size: var(--fs80);
  line-height: 1.12;
  letter-spacing: -2.4px;
}
.t-cen {
  text-align: center;
}
.tt-uc {
  text-transform: uppercase;
}
.t-ul {
  text-decoration: underline;
}
.white {
  color: var(--white);
}
.darkblue {
  color: var(--darkblue);
}
.black {
  color: var(--black);
}
.gradient {
  background: var(--gradient2, linear-gradient(0deg, #8A93FF -14.53%, #FFF 77.37%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.grey {
  color: var(--grey);
}
.grey p,
.grey ul li {
  color: var(--grey);
}
.lgrey {
  color: var(--lightgrey);
}
.dgrey {
  color: var(--clr-dgrey);
}
.dgrey p,
.dgrey ul li {
  color: var(--clr-dgrey);
}
.blue {
  color: var(--blue);
}
.bg-blue {
  background: var(--blue);
}
.bg-ligblue {
  background: var(--clr-ligBlue);
}
.bg-darkblue {
  background: var(--darkblue, #070D3A);
}
.fw-400 {
  font-weight: 400;
}
.fw-500 {
  font-weight: 500;
}
.fw-600 {
  font-weight: 600;
}
/* Most common end */
.sec-head {
  margin-bottom: 50px;
}
.contact-wrap {
  display: flex;
  gap: 80px;
}
.contact-left,
.contact-right {
  width: 50%;
}
.form-dtl-box {
  display: flex;
  gap: 14px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(69, 83, 255, 0.2);
}
.form-dtl-box:last-child {
  border: 0;
}
.form-dtl-content .fs24 {
  margin-bottom: 4px;
}
.location-wrap {
  display: flex;
  gap: 24px;
}
.location {
  height: 490px;
  border-radius: 16px;
  overflow: hidden;
  width: 70%;
}
.location iframe {
  height: 100%;
  width: 100%;
}
.location-boxes {
  width: 30%;
}
.location-box {
  border-radius: 10px;
  background: linear-gradient(254deg, rgba(195, 147, 255, 0.3) 6.46%, rgba(69, 83, 255, 0.3) 94.6%);
  padding: 20px;
  margin-bottom: 24px;
}
.location-box p {
  margin-top: 4px;
  color: #464646;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 144%;
  margin-bottom: 16px;
}
.location-box a {
  color: var(--blue, #4553FF);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: -0.42px;
  display: flex;
  gap: 6px;
  align-items: center;
}
.location-box a::after {
  content: url(../img/arrow.svg);
  height: 16px;
}
.select-field {
  background-color: #fff;
}
textarea {
  min-height: 164px;
}
@media all and (max-width: 1024px) {
  .contact-wrap {
    flex-direction: column;
    gap: 40px;
  }
  .contact-left,
  .contact-right {
    width: 100%;
  }
}
@media all and (max-width: 990px) {
  .location-wrap {
    flex-direction: column;
  }
  .location-boxes,
  .location {
    width: 100%;
  }
  .sec-head {
    margin-bottom: 24px;
  }
}
html,
body {
  width: 100%;
}
.container {
  max-width: 1750px;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
.container-md {
  max-width: 1366px;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
.main-container {
  padding-top: var(--header-height);
}
.comm-section-wm {
  margin: var(--spc4080) 0;
  padding: var(--spc4080) 0;
  position: relative;
}
.comm-section {
  padding: var(--spc4080) 0;
  position: relative;
}
.hero-section {
  background: #04071B;
  position: relative;
  height: 200vh;
  overflow: hidden;
}
.hero-section .hero-content-container {
  height: 100vh;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  z-index: 11;
}
.video-wrap {
  position: fixed;
  inset: 0;
  max-width: 1000px;
  width: 100%;
  height: 100vh;
  z-index: 4;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  opacity: 0;
}
.video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: none;
  object-position: center;
  position: absolute;
  z-index: 0;
  background-blend-mode: normal, hue;
  mix-blend-mode: color-dodge;
}
.video-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background: radial-gradient(43.01% 43.01% at 50% 53.34%, rgba(4, 7, 27, 0) 60%, #04071B 100%);
}
.hero-content {
  display: flex;
  max-width: 852px;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  position: relative;
  z-index: 10;
  left: -100%;
}
.hero-anim-wrap {
  position: absolute;
  inset: 0;
  height: 100vh;
  width: 100%;
  z-index: 4;
  display: flex;
}
.hero-left {
  position: absolute;
  left: 22%;
  bottom: -60px;
  width: 38%;
  height: 58%;
  transform: rotate(2deg);
  flex-shrink: 0;
}
.hero-left-hand {
  position: fixed;
  left: -100px;
  opacity: 0;
  background: linear-gradient(236deg, rgba(4, 7, 27, 0) 45.62%, #04071B 77.09%);
  z-index: 5;
  transform: rotate(32.904deg);
  width: 38%;
  height: 58%;
}
.hero-left-hand img {
  object-fit: none;
}
.hero-right-hand {
  position: fixed;
  opacity: 0;
  left: 100%;
  background: linear-gradient(261deg, #04071b 44.3%, rgba(4, 7, 27, 0) 59.1%);
  z-index: 5;
  width: 30%;
  height: 74%;
}
.hero-right-hand img {
  object-fit: none;
}
.hero-right {
  position: absolute;
  right: -16%;
  top: -50px;
  width: 30%;
  height: 74%;
  transform: rotate(-10deg);
  flex-shrink: 0;
  z-index: 5;
}
.right-ellipsis {
  position: absolute;
  left: 40px;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: #fff;
  filter: blur(8.89999962px);
  top: 53%;
  border-radius: 50%;
}
.left-ellipsis {
  position: absolute;
  right: -10px;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: #fff;
  filter: blur(8.89999962px);
  top: 25%;
  border-radius: 50%;
}
.hero-box {
  height: 100vh;
  position: relative;
  z-index: 11;
  display: flex;
  align-items: flex-end;
  padding-bottom: 10vh;
}
.hero-card-list {
  display: flex;
  gap: 29px;
  max-width: 1100px;
  margin: 0 auto;
}
.hero-card {
  display: flex;
  padding: 22px;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  border-radius: 16px;
  background: rgba(195, 147, 255, 0.14);
  backdrop-filter: blur(10px);
  height: auto;
}
.hero-icon {
  display: flex;
  padding: 10px;
  align-items: flex-start;
  gap: 10px;
  border-radius: 10px;
  background: var(--gradient1, linear-gradient(254deg, #C393FF 6.46%, #4553FF 94.6%));
  width: 44px;
  height: 44px;
}
.hc-content h2 {
  margin-bottom: 6px;
}
.work-sec {
  height: calc(100vh - var(--header-height));
  min-height: 850px;
  padding-bottom: 60px;
}
.work-sec .container {
  height: 100%;
  position: relative;
  background: #fff;
}
.work-wrap {
  display: flex;
  justify-content: flex-end;
  height: 100%;
}
.work-left {
  width: 60%;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 12;
  flex: 1;
}
.work-head {
  max-width: 660px;
  padding-bottom: 44px;
}
.work-hand {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 11;
  max-width: 35%;
}
.work-hand img {
  width: 100%;
}
.work-sec-2 .work-head {
  max-width: unset;
  padding-bottom: 24px;
}
.work-sec-2 .work-head + p {
  max-width: 700px;
  padding-bottom: 44px;
}
.work-sec-2 .work-grid {
  max-width: unset;
  justify-content: space-between;
}
.work-grid {
  max-width: 860px;
  display: flex;
  gap: 72px 84px;
  flex-wrap: wrap;
  margin: auto;
  padding-inline: 15px;
}
.work-grid span,
.work-grid h3,
.work-grid p {
  color: var(--white);
}
.work-grid h3 {
  margin-bottom: 8px;
}
.work-col {
  max-width: 370px;
  display: flex;
  gap: 24px;
}
.work-grid-bg {
  background: #000;
  flex: 1;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60%;
  top: 170px;
}
.work-bg {
  position: absolute;
  top: 0;
  right: 0;
  height: 500px;
  width: 40%;
  background: #000;
}
.work-bg-2 {
  position: absolute;
  bottom: 0;
  right: 0;
  height: 500px;
  width: 40%;
  background: #000;
}
.work-right {
  width: 40%;
}
.blob-hand {
  position: absolute;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 13;
  width: 40%;
}
.blob-hand img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blob-video {
  mix-blend-mode: screen;
  position: relative;
  z-index: 12;
}
.filter {
  position: absolute;
}
.workgooeywrap {
  position: absolute;
  inset: 0 15px;
  display: flex;
  z-index: 0;
  -webkit-filter: url(#filter-name);
  filter: url(#filter-name);
}
.gooeySvg {
  position: absolute;
}
.gooey-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(270deg, #C393FF 0%, #4553FF 100%);
  mix-blend-mode: screen;
}
.future-box {
  border-radius: 16px;
  background: #FFF;
  backdrop-filter: blur(9.39999962px);
  padding: 14px;
  display: flex;
  gap: 55px;
  align-items: center;
}
.future-swiper .swiper {
  width: 100%;
}
.future-img {
  width: 52%;
  border-radius: 12px;
  overflow: hidden;
  backdrop-filter: blur(9.39999962px);
}
.future-content-wrap {
  position: relative;
  z-index: 2;
}
.future-content {
  max-width: 380px;
}
.future-content h2 {
  margin-bottom: 12px;
}
.future-content ul {
  list-style: disc;
  margin-bottom: 42px;
  margin-left: 24px;
}
.future-content p {
  margin-bottom: 42px;
}
.future-gooey-elem {
  position: absolute;
  inset: 1px;
  display: flex;
  z-index: 0;
  -webkit-filter: url(#filter-name);
  filter: url(#filter-name);
}
.future-bg1 {
  position: absolute;
  left: 0;
  top: 25px;
  width: 33%;
  height: 300px;
  background: #000;
}
.future-bg2 {
  position: absolute;
  right: 0;
  top: 25px;
  width: 33%;
  height: 300px;
  background: #000;
}
.future-bg3 {
  position: absolute;
  width: 100%;
  height: 78%;
  background: #000;
  bottom: 0;
}
.future-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(0deg, #FFF -7.75%, #8A93FF 107.82%);
  mix-blend-mode: screen;
}
.future-button {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 29px;
  margin-bottom: 18px;
}
.future-button-prev {
  display: flex;
  transform: rotate(-135deg);
  padding: 11px;
  justify-content: center;
  align-items: center;
  gap: 11px;
  border-radius: 70px;
  border: 1px solid #C393FF;
  background: var(--white, #FFF);
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
}
.future-button-prev:hover {
  background: var(--pink);
}
.future-button-prev.swiper-button-disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.future-button-next {
  display: flex;
  transform: rotate(45deg);
  padding: 11px;
  justify-content: center;
  align-items: center;
  gap: 11px;
  border-radius: 70px;
  border: 1px solid #C393FF;
  background: var(--darkblue, #070D3A);
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
}
.future-button-next:hover {
  background: var(--pink);
}
.future-button-next img {
  filter: invert(1);
}
.future-button-next.swiper-button-disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.future-sec .container {
  position: relative;
  background: #fff;
}
.built-head {
  max-width: 590px;
  height: calc(100vh - var(--header-height));
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.built-head h2 {
  margin-bottom: 16px;
}
.built-sec {
  background-color: var(--darkblue);
  overflow: hidden;
  position: relative;
}
.built-video {
  position: absolute;
  width: 100vw;
  height: calc(100vh - var(--header-height));
  mix-blend-mode: screen;
  opacity: 0.5;
  top: var(--header-height);
}
.built-video video {
  object-fit: cover;
}
.built-img-grid {
  position: absolute;
  width: 100vw;
  height: calc(100vh - var(--header-height));
  top: var(--header-height);
}
.built-img-grid img,
.built-img-grid picture {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
}
.built-box {
  display: flex;
  align-items: center;
  max-width: 1040px;
  gap: 50px;
}
.built-img {
  max-width: 450px;
  height: 410px;
}
.built-img img {
  width: 100%;
  object-fit: contain;
  height: 100%;
}
.built-content-wrap {
  position: relative;
}
.build-content {
  flex: 1;
}
.build-content h3 {
  margin-bottom: 12px;
}
.build-content p {
  margin-bottom: 50px;
}
.built-box-wrp {
  height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
}
.built-box-wrp:nth-child(3) .built-box {
  margin-left: auto;
}
.built-box-wrp:nth-child(4) .built-box {
  margin-inline: auto;
}
.built-pin {
  position: absolute;
  inset: 0;
}
.story-wrp {
  display: flex;
  gap: 28px;
}
.story-left {
  max-width: 560px;
  position: sticky;
  top: var(--header-height);
  height: 100%;
}
.story-right {
  flex: 1;
}
.story-box {
  padding: 52px;
  border-radius: 16px;
  background: var(--darkblue, #070D3A);
  backdrop-filter: blur(9.39999962px);
  display: flex;
  align-items: center;
  gap: 70px;
  margin-bottom: 28px;
}
.story-img {
  width: 456px;
  height: 410px;
}
.story-img img {
  width: 100%;
  height: 100%;
}
.story-content {
  flex: 1;
}
.story-content p {
  margin-bottom: 50px;
}
.int-ban-img-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.int-ban-img-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.col-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1480px;
  gap: 40px;
  flex-wrap: wrap;
  margin: 0 auto;
}
.col-content {
  max-width: 580px;
}
.col-content h2 {
  margin-bottom: 48px;
}
.col-img {
  max-width: 730px;
}
.col-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.grid-space {
  row-gap: 40px;
}
.vm-box {
  border-radius: 16px;
  background: var(--grey, #42628B);
  backdrop-filter: blur(9.39999962px);
  position: relative;
  padding: 70px 40px;
  overflow: hidden;
  height: 100%;
}
.vm-content {
  display: flex;
  max-width: 380px;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.vm-img {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  border-radius: 0 16px 16px 0;
  background-blend-mode: normal, hue, normal;
}
.vm-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.progress-wrap {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  overflow: hidden;
}
.progress-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  overflow: hidden;
}
.progress-wrap::after {
  content: '';
  position: absolute;
  left: 23px;
  top: 0;
  bottom: 60px;
  width: 1px;
  background-color: #3E78CA;
  z-index: 0;
}
.progress-wrap .acc-container {
  position: relative;
  margin: 0;
  height: max-content;
  width: 100%;
  max-width: 700px;
}
.progress-wrap .acc-item {
  padding-bottom: clamp(15px, 1.7vw, 30px);
  margin-bottom: clamp(15px, 1.7vw, 30px);
  border-radius: 0;
  overflow: visible;
  background: transparent;
  border-bottom: 1px solid #D8E5EB;
  margin-left: 88px;
  position: relative;
}
.progress-wrap .acc-item::after {
  content: '';
  position: absolute;
  left: -88px;
  top: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid #82929A;
  background-color: var(--white);
  z-index: 1;
}
.progress-wrap .acc-item::before {
  content: '';
  position: absolute;
  left: -70px;
  top: 18px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #82929A;
  z-index: 2;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
}
.progress-wrap .acc-item.active h3 {
  color: var(--blue);
}
.progress-wrap .acc-item.active::after {
  border: 1px solid var(--blue);
}
.progress-wrap .acc-item.active::before {
  left: -76px;
  top: 12px;
  width: 24px;
  height: 24px;
  background-color: var(--blue);
}
.progress-wrap .accordion::after,
.progress-wrap .accordion::before {
  display: none;
}
.progress-wrap .acc-item.active .accordion {
  padding: 0;
}
.progress-wrap .panel,
.progress-wrap .accordion {
  padding: 0;
}
.progress-wrap .panel img {
  display: none;
}
.grid-box {
  padding: clamp(16px, 2.08vw, 40px);
  border-radius: 16px;
  background: linear-gradient(270deg, #c393ff 0, #4553ff 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: var(--spc4080);
  height: 100%;
}
.col-row {
  row-gap: 24px;
}
.led-box {
  display: flex;
  border-radius: 16px;
  background: rgba(195, 147, 255, 0.14);
  backdrop-filter: blur(9px);
  padding: 32px;
  gap: 48px;
}
.led-name {
  position: relative;
  padding-right: 36px;
}
.linkdin {
  position: absolute;
  right: 0;
  top: 0;
}
.led-content {
  display: flex;
  max-width: 910px;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: 32px 0;
}
.tabs-wrapper-wrap {
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: #6865ff #fff;
  scrollbar-arrow-color: #fff;
  max-width: 700px;
  width: 100%;
  margin: 0 auto;
  border-radius: 40px;
  background: #F8F8F8;
  margin-bottom: 40px;
}
.tabs-wrapper {
  position: relative;
  width: max-content;
  padding: 8px 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  list-style: none;
  gap: 16px;
  overflow: hidden;
}
.tabs-wrapper::-moz-scrollbar-button,
.tabs-wrapper::-webkit-scrollbar-button {
  width: 0;
  display: none;
}
.tabs-wrapper li {
  cursor: pointer;
  padding: 0 32px;
  color: var(--Darkgrey);
  font-size: var(--fs16);
  font-style: normal;
  font-weight: 500;
  line-height: 40px;
  height: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  transition: color 0.25s ease;
  z-index: 1;
}
.tabs-wrapper::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--darkblue);
  z-index: 1;
  pointer-events: none;
  clip-path: var(--clip-path);
  transition: clip-path 0.25s ease;
}
.tab.active {
  color: var(--white);
}
.career-banner {
  position: relative;
  background: #04071B;
  height: 100vh;
}
.career-banner .container {
  height: 100%;
  display: flex;
  align-items: center;
}
.cb-wrap {
  display: flex;
  max-width: 852px;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  position: relative;
  z-index: 1;
}
.carrer-bannerimg {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 0;
}
.job-box {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid #D6D6D6;
}
.job-content h3 {
  margin-bottom: 20px;
}
.job-detail-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}
.job-detail-box {
  display: flex;
  align-items: center;
  gap: 16px;
}
.why-card.why-card-bg {
  border-radius: 16px;
  background: rgba(195, 147, 255, 0.14);
  backdrop-filter: blur(9.39999962px);
  padding: 22px;
  gap: 32px;
}
.why-card.why-card-bg .why-icon {
  margin-bottom: 0;
}
.why-container {
  position: relative;
  z-index: 1;
}
.drive-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-blend-mode: normal, color, normal;
}
.drive-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.btn-wrap {
  margin-top: 40px;
}
.btn-wrap button {
  margin: 0 auto;
}
.int-banner-sec {
  background: #04071B;
  background-blend-mode: normal, hue;
  mix-blend-mode: color-dodge;
  position: relative;
  overflow: hidden;
}
.breadcrumbs {
  display: flex;
  justify-content: center;
  gap: 22px;
}
.breadcrumbs a {
  color: var(--lightgrey, #ADC2DD);
  font-family: Inter;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.28;
  letter-spacing: -0.42px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.breadcrumbs a::after {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 1px;
  background: var(--pink, #C393FF);
  position: absolute;
  right: -14px;
}
.breadcrumbs a:last-child {
  color: var(--white, #fff);
}
.breadcrumbs a:last-child::after {
  display: none;
}
.int-banner-txt-wrap {
  width: 100%;
  max-width: 850px;
  margin: 100px auto 20px;
  position: relative;
  z-index: 2;
}
.int-banner-txt {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--spc32);
}
.int-banner-txt .fs62 {
  font-weight: 600;
  text-align: center;
  background: var(--kare4u---white-gradient, linear-gradient(0deg, #8A93FF -14.53%, #FFF 77.37%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.int-ban-para p {
  color: var(--lightgrey, #ADC2DD);
  text-align: center;
  font-weight: 400;
  letter-spacing: -0.54px;
}
.int-ban-video-wrap {
  height: 350px;
  width: 100%;
  max-width: 950px;
  z-index: 1;
  position: absolute;
  top: calc(var(--header-height) + 50%);
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(50% 50% at 50% 50%, rgba(4, 7, 27, 0) 60%, #04071B 100%), linear-gradient(0deg, #4553FF 0%, #4553FF 100%);
  background-blend-mode: normal, hue;
  mix-blend-mode: color-dodge;
}
.int-ban-video-wrap video {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.challenge-card-container h2 {
  color: var(--darkblue, #070D3A);
  text-align: center;
  font-family: Archivo;
  font-weight: 600;
}
.challenge-card-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  width: 100%;
  max-width: 1430px;
  margin: 0 auto;
}
.challenge-card {
  padding: clamp(16px, 2.08vw, 40px);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: var(--spc4080);
}
.challenge-card:nth-child(4n + 1),
.challenge-card:nth-child(4n + 4) {
  width: calc(40% - 12px);
}
.challenge-card:nth-child(4n + 2),
.challenge-card:nth-child(4n + 3) {
  width: calc(60% - 12px);
}
.challenge-card:nth-child(odd) {
  background: linear-gradient(120deg, #4b5bff, #8875FF);
}
.challenge-card:nth-child(even) {
  background: linear-gradient(100deg, #8875FF, #c192fb);
}
.challenge-icon {
  height: 80px;
  width: 80px;
  overflow: hidden;
}
.challenge-icon img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
.challenge-txt h4 {
  font-family: Archivo;
  color: var(--white, #FFF);
  font-weight: 400;
}
.pre-footer-container {
  position: relative;
  border-radius: 16px;
  background: var(--darkblue, #070D3A);
  backdrop-filter: blur(9.39999962px);
  padding: var(--spc200) var(--spc40120);
  overflow: hidden;
}
.pre-footer-txt-wrap {
  width: 40%;
  max-width: 540px;
  position: relative;
  z-index: 20;
}
.pre-footer-txt-wrap h2 {
  font-family: Archivo;
  font-weight: 400;
  background: var(--kare4u---white-gradient, linear-gradient(0deg, #8A93FF -14.53%, #FFF 77.37%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 18px;
}
.pre-footer-txt-wrap .button-gradient {
  width: max-content;
}
.pre-footer-subtitle {
  margin-bottom: 40px;
}
.pre-footer-subtitle p {
  color: var(--lightgrey, #ADC2DD);
  font-family: Inter;
  font-weight: 400;
}
.pre-footer-sec {
  position: relative;
  overflow: hidden;
}
.pre-footer-vid-box {
  position: absolute;
  top: -16%;
  right: -12%;
}
.pre-footer-vid-wrap {
  position: relative;
  height: 1550px;
  width: 1133px;
  z-index: 13;
}
.pre-footer-vid-wrap::before {
  content: "";
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(270deg, #070D3A 5.79%, rgba(7, 13, 58, 0) 46.02%, #070D3A 94.21%);
  mix-blend-mode: normal;
  z-index: 14;
}
.pre-footer-vid-wrap::after {
  content: "";
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(270deg, #C393FF 0%, #C393FF 100%);
  mix-blend-mode: hue;
  z-index: 12;
}
.pre-footer-vid-wrap video {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.pre-footer-logo {
  position: absolute;
  top: 26%;
  right: 440px;
  z-index: 20;
  width: 120px;
  height: 70px;
}
.pre-footer-logo img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
.why-container {
  width: 100%;
  max-width: 1430px;
  margin: 0 auto;
}
.why-container .fs48 {
  color: var(--darkblue, #070D3A);
  text-align: center;
  font-family: Archivo;
  font-weight: 600;
}
.why-cards-wrap {
  display: flex;
  align-items: stretch;
  gap: 24px;
}
.why-card-box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  max-width: 412px;
}
.why-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(20px, 1.67vw, 32px);
  border-radius: 16px;
  background: linear-gradient(0deg, #FFF -14.53%, #8A93FF 77.37%);
  backdrop-filter: blur(9.39999962px);
  height: 290px;
  width: 100%;
  max-width: 412px;
}
.why-icon {
  height: 60px;
  width: 60px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: var(--spc40);
}
.why-icon img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
.why-txt .fs32 {
  color: var(--darkblue, #070D3A);
  font-family: Archivo;
  font-weight: 400;
}
.why-img-box {
  height: 604px;
  width: 100%;
  max-width: 560px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}
.why-img-box::after {
  content: "";
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(0deg, rgba(69, 83, 255, 0.5) 0%, rgba(69, 83, 255, 0.5) 100%);
  mix-blend-mode: color;
}
.why-img-box img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.sticky-content-wrap .acc-container {
  position: relative;
  padding-left: var(--spc40);
  margin: 0;
  height: max-content;
  width: 100%;
  max-width: 700px;
}
.sticky-content-wrap .acc-item {
  margin-bottom: clamp(30px, 3.13vw, 60px);
  border-radius: 0;
  overflow: hidden;
  background: transparent;
}
.sticky-content-wrap .accordion::after,
.sticky-content-wrap .accordion::before {
  display: none;
}
.sticky-content-wrap .acc-item.active .accordion {
  padding: 0;
}
.sticky-content-wrap .panel,
.sticky-content-wrap .accordion {
  padding: 0;
}
.sticky-content-wrap .panel {
  margin-top: clamp(8px, 0.42vw, 16px);
}
.sticky-scroll-container .fs48 {
  text-align: center;
  font-family: Archivo;
  font-weight: 600;
  line-height: 1.33;
  background: linear-gradient(0deg, #8A93FF -14.53%, #FFF 77.37%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.sticky-content-wrap {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  overflow: hidden;
}
.sticky-content-title {
  color: #FFF;
  font-family: Archivo;
  font-weight: 500;
}
.sticky-content-para .fs16 {
  color: #ADC2DD;
  font-family: Inter;
  font-weight: 400;
}
.sticky-scroll-swiper {
  width: 100%;
  max-width: 850px;
}
.sticky-scroll-img {
  height: 488px;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}
.sticky-scroll-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  backdrop-filter: blur(9px);
}
.sticky-scroll-img::after {
  content: "";
  height: 100%;
  width: 100%;
  background: linear-gradient(0deg, #8775FE 0%, #8775FE 100%);
  mix-blend-mode: soft-light;
  position: absolute;
  top: 0;
  left: 0;
}
.grey-track {
  width: 1px;
  height: 100%;
  background: rgba(255, 255, 255, 0.5);
  position: absolute;
  left: 2px;
  top: 0;
  border-radius: 2px;
}
.indicator {
  position: absolute;
  width: 3px;
  height: 100%;
  top: 0;
  left: 1px;
  z-index: 5;
  background: linear-gradient(0deg, #8A93FF -14.53%, #FFF 77.37%);
  border-radius: 6px;
  transition: all 0.4s ease-in-out;
}
.hospital-card {
  height: 100%;
  padding: 32px;
  border-radius: 16px;
  background: linear-gradient(270deg, rgba(195, 147, 255, 0.05) 0%, rgba(69, 83, 255, 0.05) 100%);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.plus-btn-wrap {
  height: 24px;
  width: 24px;
  transition: all 0.3s ease-in-out;
}
.plus-btn-wrap img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  vertical-align: unset;
}
.hospital-card.active .plus-btn-wrap {
  transform: rotate(45deg);
  transition: all 0.3s ease-in-out;
}
.hospital-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.hospital-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  height: 100px;
  width: 300px;
  transition: all 0.4s ease-in-out;
}
.hospital-logo img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
.hospital-txt-wrap {
  padding: clamp(20px, 1.67vw, 32px);
  height: 100%;
  width: 100%;
  position: absolute;
  top: calc(100% + 200px);
  left: 0;
  z-index: 10;
  transition: all 0.4s ease-in-out;
}
.hospital-txt-wrap .fs18 {
  color: var(--darkblue, #070D3A);
  font-family: Inter;
  font-weight: 400;
  margin-bottom: clamp(12px, 0.625vw, 24px);
}
.hospital-card.active .hospital-txt-wrap {
  top: 40%;
  transition: all 0.4s ease-in-out;
}
.hospital-card.active .hospital-logo {
  transform: translate(-50%, -130%) scale(0.8);
  transition: all 0.4s ease-in-out;
}
.doc-detail h3 {
  color: var(--darkblue, #070D3A);
  font-family: Archivo;
  font-size: var(--fs24);
  font-style: normal;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.72px;
}
.doc-detail h5 {
  color: var(--darkblue, #070D3A);
  font-family: Inter;
  font-weight: 400;
}
.impact-swiper-container .fs48 {
  color: var(--darkblue, #070D3A);
  text-align: center;
  font-family: Archivo;
  font-weight: 600;
}
.impact-swiper-wrap {
  height: 600px;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}
.impact-swiper {
  height: 100%;
  overflow: visible;
  display: flex;
  justify-content: center;
}
.impact-swiper .swiper-wrapper {
  align-items: center;
}
.impact-swiper .swiper-slide {
  height: 320px;
  width: 100%;
  max-width: 465px;
  opacity: 0.5;
  transition: all 0.8s ease-in-out;
  -webkit-transition: all 0.8s ease-in-out;
}
.impact-swiper .swiper-slide-active {
  height: 480px;
  transition: all 0.8s ease-in-out;
  -webkit-transition: all 0.8s ease-in-out;
  opacity: 1;
}
.impact-swiper .swiper-slide-active .hospital-card.active .hospital-txt-wrap {
  top: 52%;
}
.impact-swiper .swiper-slide-active .hospital-card.active .hospital-logo {
  transform: translate(-50%, -90%) scale(0.9);
}
.impact-swiper .swiper-slide.swiper-slide-prev,
.impact-swiper .swiper-slide.swiper-slide-next {
  height: 400px;
  opacity: 1;
}
.impact-swiper .swiper-slide.swiper-slide-prev .hospital-card.active .hospital-logo,
.impact-swiper .swiper-slide.swiper-slide-next .hospital-card.active .hospital-logo {
  transform: translate(-50%, -100%) scale(0.8);
}
.impact-swiper .swiper-slide.swiper-slide-prev .hospital-card.active .hospital-txt-wrap,
.impact-swiper .swiper-slide.swiper-slide-next .hospital-card.active .hospital-txt-wrap {
  top: 44%;
}
.impact-nav-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}
.impact-next,
.impact-prev {
  height: 45px;
  width: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1.414px solid #C393FF;
  background: var(--darkblue, #070D3A);
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
}
.impact-next svg path,
.impact-prev svg path {
  stroke: #fff;
  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
}
.impact-next.swiper-button-disabled,
.impact-prev.swiper-button-disabled {
  background: var(--white, #FFF);
  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
}
.impact-next.swiper-button-disabled svg path,
.impact-prev.swiper-button-disabled svg path {
  stroke: #070D3A;
  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
}
.blog-container .sec-head .fs48 {
  color: var(--darkblue, #070D3A);
  font-family: Archivo;
  font-weight: 600;
}
.blog-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  cursor: pointer;
}
.blog-card:hover .readmore-wrap .arrow-wrap {
  transform: rotate(45deg);
  transition: all 0.3s ease-in-out;
}
.blog-card:hover .blog-img img {
  transform: scale(1.1);
  transition: all 0.3s ease-in-out;
}
.resource-banner-sec {
  overflow: hidden;
  height: 550px;
}
.resource-ban-img {
  height: 140px;
  width: 100%;
  position: absolute;
  bottom: -5px;
  left: 0;
}
.resource-ban-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.blog-img {
  height: 310px;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
}
.blog-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
}
.blog-content-wrap {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.blog-txt .fs16 {
  color: var(--grey, #42628B);
  font-family: Inter;
  font-weight: 400;
  margin-bottom: 12px;
}
.blog-txt h3 {
  color: var(--darkblue, #070D3A);
  font-family: Archivo;
  font-size: var(--fs24);
  font-style: normal;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.72px;
  margin-bottom: clamp(12px, 1.25vw, 24px);
}
.readmore-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
}
.readmore-wrap .fs16 {
  color: var(--darkblue, #070D3A);
  font-family: Inter;
  font-weight: 500;
  line-height: 1.12;
}
.readmore-wrap:hover .arrow-wrap {
  transform: rotate(45deg);
  transition: all 0.3s ease-in-out;
}
.arrow-wrap {
  height: 20px;
  width: 20px;
  border-radius: 50%;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}
.arrow-wrap img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  vertical-align: unset;
}
.b-line {
  height: 36px;
  width: 36px;
  position: relative;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  z-index: 1;
  overflow: hidden;
  cursor: pointer;
}
.b-line::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 2px;
  background: linear-gradient(45deg, #C393FF 0%, #4553FF 100%);
  border-radius: inherit;
  z-index: -1;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}
.featured-container .fs48 {
  color: var(--darkblue, #070D3A);
  font-family: Archivo;
  font-weight: 600;
}
.featured-wrap {
  display: flex;
  gap: 24px;
}
.featured-left,
.featured-right {
  width: calc(50% - 12px);
}
.featured-left .blog-img {
  height: 400px;
}
.featured-left .blog-txt h3 {
  font-size: var(--fs32);
  font-weight: 400;
  line-height: 1.31;
  letter-spacing: -0.96px;
}
.featured-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.featured-right .blog-card {
  flex-direction: row;
  align-items: center;
  gap: 24px;
}
.featured-right .blog-img {
  height: 290px;
  width: 100%;
  max-width: 414px;
}
.resource-head {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
  margin-bottom: var(--spc48);
}
.resource-head .fs48 {
  color: var(--darkblue, #070D3A);
  font-family: Archivo;
  font-weight: 600;
}
.blog-filter-wrap {
  display: flex;
  align-items: center;
  gap: 24px;
  width: 100%;
  max-width: 850px;
}
.blog-category {
  border-radius: 16px;
  border: 1px solid var(--lightgrey, #ADC2DD);
  height: 60px;
  width: 100%;
  max-width: 412px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.blog-category select {
  padding: 18px;
  width: 100%;
  border: 0;
  outline: none;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}
.blog-category select option {
  border: 1px solid var(--lightgrey, #ADC2DD);
}
.blog-category::after {
  content: "";
  height: 10px;
  width: 16px;
  background: url("../img/drpdwn-arrow.svg");
  background-repeat: no-repeat;
  position: absolute;
  top: 28px;
  right: 20px;
  pointer-events: none;
}
.search-wrap {
  border-radius: 16px;
  background: rgba(173, 194, 221, 0.1);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 100%;
  max-width: 412px;
}
.search-wrap input {
  height: 100%;
  width: 100%;
  outline: none;
  border: none;
  background: transparent;
  color: #000;
  font-family: Inter;
  font-size: var(--fs18);
  font-style: normal;
  font-weight: 400;
  line-height: 1.44;
  letter-spacing: -0.54px;
}
.search-wrap input::placeholder {
  color: var(--lightgrey, #ADC2DD);
  font-family: Inter;
  font-size: var(--fs18);
  font-style: normal;
  font-weight: 400;
  line-height: 1.44;
  letter-spacing: -0.54px;
}
.search-icon {
  height: 24px;
  width: 24px;
  overflow: hidden;
}
.search-icon img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
.blog-container .button-gradient {
  width: max-content;
  margin: 0 auto;
}
.blog-container .comm-grid {
  margin-bottom: clamp(40px, 4.17vw, 80px);
}
.whitepaper-container .blog-card {
  flex-direction: row;
  align-items: center;
  gap: 24px 60px;
}
.whitepaper-container .blog-img {
  height: 500px;
  width: 100%;
  max-width: 850px;
}
.whitepaper-container .blog-txt h3 {
  color: var(--darkblue, #070D3A);
  font-family: Archivo;
  font-size: var(--fs48);
  font-style: normal;
  font-weight: 400;
  line-height: 1.16;
  letter-spacing: -1.44px;
  margin-bottom: 8px;
}
.whitepaper-container .blog-txt .fs18 {
  color: var(--darkblue, #070D3A);
  font-family: Inter;
  font-weight: 400;
  margin-bottom: 24px;
}
.whitepaper-container .blog-content-wrap {
  justify-content: unset;
}
.whitepaper-cards-container .blog-txt h3 {
  margin-bottom: 8px;
}
.whitepaper-cards-container .blog-txt .fs18 {
  color: var(--darkblue, #070D3A);
  font-family: Inter;
  font-weight: 400;
  margin-bottom: 24px;
}
.whitepaper-left .content-body ul > li {
  position: relative;
  margin-left: 16px;
}
.whitepaper-left .content-body ul > li::before {
  content: "";
  height: 6px;
  width: 6px;
  border-radius: 2px;
  background: #070D3A;
  position: absolute;
  top: 10px;
  left: -16px;
}
.detail-container {
  width: 100%;
  max-width: 1430px;
  margin: 0 auto;
}
.detail-head {
  margin-bottom: var(--spc48);
}
.detail-head .breadcrumbs {
  justify-content: flex-start;
}
.detail-head .breadcrumbs a {
  color: var(--grey, #42628b);
}
.detail-head .breadcrumbs a:last-child {
  color: var(--darkblue, #070D3A);
}
.detail-head-txt {
  margin-top: calc(var(--header-height));
}
.detail-head-txt .fs16 {
  color: var(--grey, #42628B);
  font-family: Inter;
  font-weight: 400;
}
.detail-head-txt .fs48 {
  color: var(--darkblue, #070D3A);
  font-family: Archivo;
  font-weight: 400;
  margin-bottom: var(--spc48);
}
.detail-featured-img {
  height: 530px;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: clamp(16px, 2.08vw, 40px);
}
.detail-featured-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.detail-index-box {
  width: 100%;
  position: sticky;
  top: calc(var(--header-height));
}
.detail-index-box .fs24 {
  color: #000;
  font-family: Archivo;
  font-weight: 500;
  margin-bottom: 16px;
}
.detail-index-wrap {
  margin-bottom: 32px;
  padding: clamp(16px, 1.67vw, 32px);
  border-radius: 16px;
  background: linear-gradient(270deg, rgba(195, 147, 255, 0.1) 0%, rgba(69, 83, 255, 0.1) 100%);
}
.detail-index-wrap ul > li a {
  color: var(--darkblue, #070D3A);
  font-family: Archivo;
  font-size: var(--fs24);
  font-style: normal;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.72px;
}
.detail-index-wrap ul > li a:not(:last-child) {
  margin-bottom: 20px;
}
.share-wrap .fs18 {
  color: var(--grey, #42628B);
  font-family: Inter;
  font-weight: 400;
}
.share-icon-wrap {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--lightgrey, #ADC2DD);
  display: flex;
  align-items: center;
  justify-content: center;
}
.share-icon-wrap:hover .share-icon {
  opacity: 1;
  transition: all 0.3s ease-in-out;
}
.share-icon {
  height: 20px;
  width: 20px;
  opacity: 0.7;
  transition: all 0.3s ease-in-out;
}
.share-icon img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  vertical-align: unset;
}
.share-icon-box {
  display: flex;
  gap: 12px;
}
.detail-content-wrap:not(:last-child) {
  margin-bottom: clamp(16px, 4.17vw, 70px);
}
.detail-content-wrap .content-body h1,
.detail-content-wrap .content-body h2,
.detail-content-wrap .content-body h3,
.detail-content-wrap .content-body h4,
.detail-content-wrap .content-body h5,
.detail-content-wrap .content-body h6 {
  margin-bottom: 8px;
}
.detail-sticky-left-wrap {
  display: flex;
  justify-content: space-between;
  gap: 20px 40px;
}
.detail-sticky-left {
  width: 100%;
  max-width: 412px;
}
.detail-content-right {
  width: 100%;
  max-width: 950px;
}
.form-wrap {
  padding: clamp(16px, 2.08vw, 40px);
  border-radius: 16px;
  background: linear-gradient(254deg, rgba(195, 147, 255, 0.3) 6.46%, rgba(69, 83, 255, 0.3) 94.6%);
  width: 100%;
}
.form-wrap .button-gradient {
  width: max-content;
}
.whitepaper-left {
  width: 100%;
  max-width: 655px;
}
.whitepaper-left .content-body ul li {
  margin-bottom: 8px;
}
.whitepaper-right {
  width: 100%;
  max-width: 560px;
}
.whitepaper-right .form-wrap {
  position: sticky;
  top: calc(var(--header-height));
  padding: clamp(20px, 1.67vw, 32px);
  border-radius: 16px;
  background: linear-gradient(254deg, rgba(195, 147, 255, 0.3) 6.46%, rgba(69, 83, 255, 0.3) 94.6%);
  width: 100%;
}
.whitepaper-right .form-wrap .fs24 {
  margin-bottom: clamp(12px, 1.25vw, 24px);
}
.whitepaper-left-right-wrap {
  display: flex;
  justify-content: space-between;
  gap: 20px 50px;
}
.drag-drop-container {
  height: 326px;
  width: 100%;
  max-width: 745px;
  border: 2px dashed var(--Tellestila-White, #fff);
  border-radius: 16px;
  background: #FFF;
  display: flex;
  justify-content: center;
  align-items: center;
}
.drop-files-wrap {
  width: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.drop-files-wrap .fs16 {
  color: var(--darkblue, #070D3A);
  font-family: Inter;
  font-weight: 400;
}
.drop-files-wrap .fs16 .browse-files {
  color: var(--blue, #4553FF);
  cursor: pointer;
}
.add-icon-wrap {
  height: 48px;
  width: 48px;
  border-radius: 50%;
  overflow: hidden;
  cursor: pointer;
  margin-bottom: 16px;
}
.add-icon-wrap img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
.file-preview {
  width: 400px;
  height: auto;
  display: flex;
  text-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
}
.file-preview span {
  color: var(--darkblue, #070D3A);
  text-align: center;
  font-size: var(--fs-16);
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.remove-file {
  background: linear-gradient(254deg, #C393FF 6.46%, #4553FF 94.6%);
  height: 40px;
  width: 80px;
  color: #fff;
  border: none;
  border-radius: 5px;
}
.apply-ban-sec .breadcrumbs {
  justify-content: flex-start;
}
.apply-ban-txt-wrap {
  width: 100%;
  max-width: 1430px;
  margin: 60px auto 0;
}
.job-description-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px 40px;
  width: 100%;
  margin: 0 auto;
}
.job-description-wrap .button-gradient {
  width: max-content;
  height: max-content;
}
.job-description-box .fs48 {
  color: var(--white, #FFF);
  font-family: Archivo;
  font-weight: 400;
  margin-bottom: clamp(20px, 1.67vw, 32px);
}
.job-detail-wrap {
  display: flex;
  gap: 24px;
  align-items: center;
}
.job-detail-box {
  display: flex;
  gap: 12px;
  align-items: center;
}
.job-detail-box .fs18 {
  font-family: Inter;
  font-weight: 400;
  text-wrap: nowrap;
}
.job-detail-icon {
  height: 24px;
  width: 24px;
}
.job-detail-icon img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
.job-detail-container {
  width: 100%;
  max-width: 1430px;
  margin: 0 auto;
}
.job-detail-container .content-body p {
  margin-top: clamp(8px, 1.2vw, 16px);
  margin-bottom: 12px;
}
.job-detail-container .content-body ol {
  margin-bottom: clamp(24px, 3.13vw, 60px);
}
.job-detail-container .content-body ul > li {
  position: relative;
  margin-left: 20px;
}
.job-detail-container .content-body ul > li::before {
  content: "";
  height: 6px;
  width: 6px;
  border-radius: 1px;
  background: #070D3A;
  position: absolute;
  top: 10px;
  left: -20px;
}
.skills-flex .content-body ul {
  display: flex;
  gap: 12px 32px;
}
.job-detail-form-container {
  width: 100%;
  max-width: 1430px;
  margin: 0 auto;
}
.job-detail-form-container .form-wrap .fs24 {
  margin-bottom: 16px;
}
.form-upload-wrap {
  display: flex;
  justify-content: space-between;
  gap: 20px 50px;
  margin-bottom: clamp(16px, 3.125vw, 60px);
}
.form-upload-left {
  width: 100%;
  max-width: 495px;
}
.form-upload-right {
  width: 100%;
  max-width: 760px;
}
.form-head-wrap {
  text-align: center;
  margin-bottom: var(--spc48);
}
.form-head-wrap .fs32 {
  color: var(--darkblue, #070D3A);
  font-family: Archivo;
  font-weight: 400;
  margin-bottom: 16px;
}
.form-head-wrap .fs18 {
  color: var(--grey, #42628B);
  font-family: Inter;
  font-weight: 400;
}
.form-wrap .button-gradient {
  margin: 0 auto;
}
/* header */
#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
}
.head-right {
  display: flex;
}
.logo {
  display: inline-block;
  vertical-align: middle;
}
.header-box .container {
  display: -webkit-flex;
  display: -webkit-box;
  display: -moz-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
}
.drop {
  position: relative;
}
.drop > a:after {
  content: "";
  margin-left: 10px;
  width: 6px;
  height: 6px;
  background: var(--pink);
  display: inline-block;
  vertical-align: top;
  transition: 0.3s;
}
.drop ul {
  position: absolute;
  background: var(--darkblue);
  border-radius: 10px;
  top: 40px;
  padding: 10px;
  left: 50%;
  width: 270px;
  margin-left: -150px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
}
.drop ul li {
  padding: 0;
}
.drop ul li:last-of-type {
  border-bottom: 0;
}
.drop ul li a {
  display: block;
  font-size: 14px;
  padding: 8px 15px;
  border-radius: 5px;
}
.drop ul li a:hover {
  background: #eee;
  color: #000;
}
.drop:hover ul {
  opacity: 1;
  visibility: visible;
}
.drop:hover > a:after {
  transform: rotate(180deg);
  transition: 0.3s;
}
.header-wrap {
  display: flex;
}
.header-box {
  display: flex;
  height: var(--header-height);
}
.menuBtn {
  display: flex;
  align-items: center;
}
.header-list {
  display: -webkit-flex;
  display: -webkit-box;
  display: -moz-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.header-list li {
  padding: 7px 24px;
}
.header-list li a {
  font-size: 16px;
  color: var(--white);
  font-weight: 500;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
}
.header-list li a:hover {
  color: var(--pink);
}
.light-bg-logo {
  display: none;
}
.fixHeader {
  background-color: #ffffff;
}
.fixHeader .light-bg-logo {
  display: block;
}
.fixHeader .dark-bg-logo {
  display: none;
}
.fixHeader .header-list li a {
  color: var(--darkblue);
}
.fixHeader .drop ul {
  background: #fff;
}
.fixHeader .js-nav-toggle span,
.fixHeader .js-nav-toggle span:before,
.fixHeader .js-nav-toggle span:after {
  background: #000;
}
/* side menu */
.menu {
  display: none;
  position: relative;
}
/* side menu */
.menu {
  display: none;
  position: relative;
  margin-left: 16px;
  z-index: 2;
}
.menuOverlay {
  width: 100%;
  height: 100%;
  background: #000;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  cursor: pointer;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
}
.mob-navigation li.nav-dropdown-open > ul {
  display: block;
}
.nav-wrapper {
  position: fixed;
  width: 300px;
  height: 100vh;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  right: 0;
  top: 0;
  font-size: 14px;
  display: none;
  z-index: 1;
}
.nav-wrapper.show-menu {
  -webkit-transform: none;
  transform: none;
}
.js-nav-toggle {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: #000;
  border: 0px solid #000;
  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
}
.js-nav-toggle span {
  position: relative;
  background-color: #fff;
  height: 2px;
  display: block;
  width: 22px;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}
.js-nav-toggle span:before,
.js-nav-toggle span:after {
  content: "";
  position: absolute;
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  left: 0;
  top: 50%;
  margin-top: -7px;
  -webkit-transition: all 0.3s 0.3s;
  transition: all 0.3s 0.3s;
}
.js-nav-toggle span:before {
  margin-top: 5px;
}
.show-menu .js-nav-toggle {
  z-index: 99999;
}
.show-menu .js-nav-toggle span:before,
.show-menu .js-nav-toggle span:after {
  background: #fff;
}
.show-menu .js-nav-toggle span {
  background-color: transparent;
}
.show-menu .js-nav-toggle span:before {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.show-menu .js-nav-toggle span:after {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.show-menu .js-nav-toggle span:before,
.show-menu .js-nav-toggle span:after {
  margin-top: 0;
}
.mob-navigation {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  box-shadow: 0 0 5px 0.2px rgba(255, 255, 255, 0.3);
  background-color: #333;
}
.mob-navigation .nav-toggle {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 16px;
  background-color: transparent;
  color: #fff;
  z-index: 100;
  cursor: pointer;
  -webkit-transition: backgroun-color 0.2s;
  transition: backgroun-color 0.2s;
}
.mob-navigation .nav-toggle:hover {
  background-color: transparent;
}
.mob-navigation .nav-toggle.back-visible .nav-back {
  opacity: 1;
}
.mob-navigation .nav-toggle.back-visible .nav-title {
  -webkit-transform: translateX(30px);
  transform: translateX(30px);
}
.mob-navigation .nav-title {
  position: absolute;
  left: 0;
  top: 30px;
  padding-left: 1.3em;
  font-size: 16px;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  color: rgba(255, 255, 255, 0.5);
}
.mob-navigation .nav-back {
  display: inline-block;
  position: relative;
  width: 22px;
  height: 30px;
  vertical-align: middle;
  z-index: 1;
  opacity: 0;
  color: rgba(255, 255, 255, 0.5);
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
  top: 11px;
}
.mob-navigation .nav-back:before,
.mob-navigation .nav-back:after {
  content: "";
  position: absolute;
  top: 50%;
}
.mob-navigation .nav-back:before {
  left: 40%;
  width: 9px;
  height: 9px;
  border: 2px solid currentcolor;
  border-right-color: transparent;
  border-bottom-color: transparent;
  -webkit-transform: translate(-50%, -50%) rotateZ(-45deg);
  transform: translate(-50%, -50%) rotateZ(-45deg);
}
.mob-navigation .nav-back:after {
  left: 28%;
  width: 15px;
  height: 2px;
  background-color: currentcolor;
  margin-top: -1px;
}
.mob-navigation a {
  display: block;
  position: relative;
  padding: 1em;
  border-bottom: 1px solid rgba(255, 255, 255, 0);
  color: #ffffff;
  text-decoration: none;
  -webkit-transition: color 0.15s, background-color 0.15s;
  transition: color 0.15s, background-color 0.15s;
  font-size: 16px;
}
.mob-navigation a:hover {
  color: #aaa;
  background-color: var(--nblue);
}
.mob-navigation ul {
  list-style: none;
  padding: 80px 0 0;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  background-color: #333;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}
.mob-navigation ul ul {
  display: none;
  left: 100%;
}
.mob-navigation li.has-dropdown > a {
  padding-right: 2.5em;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.mob-navigation li.has-dropdown > a:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1em;
  width: 9px;
  height: 9px;
  border: 1px solid currentcolor;
  border-left-color: transparent;
  border-top-color: transparent;
  -webkit-transform: translateY(-90%) rotateZ(-45deg);
  transform: translateY(-90%) rotateZ(-45deg);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  -webkit-transform-origin: 100%;
  transform-origin: 100%;
}
.mob-navigation li.nav-dropdown-open > ul {
  display: block;
}
@media all and (max-width: 1024px) {
  .navigation {
    display: none;
    left: 100%;
  }
  .nav-wrapper {
    display: block;
  }
  .header-list {
    display: none;
  }
  .menu {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
@media all and (max-width: 576px) {
  .logo {
    width: 140px;
  }
  .logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .menuBtn .button {
    display: none;
  }
}
@media all and (max-width: 1680px) {
  .pre-footer-logo {
    right: 404px;
  }
  .pre-footer-vid-box {
    top: -16%;
    right: -12%;
  }
  .pre-footer-vid-wrap {
    height: 1250px;
    width: 1033px;
  }
  .hospital-logo {
    width: 280px;
  }
  .impact-swiper .swiper-slide {
    height: 330px;
  }
  .impact-swiper .swiper-slide-active {
    height: 430px;
  }
  .impact-swiper .swiper-slide.swiper-slide-prev,
  .impact-swiper .swiper-slide.swiper-slide-next {
    height: 380px;
  }
  .impact-swiper .swiper-slide.swiper-slide-prev .hospital-card.active .hospital-logo,
  .impact-swiper .swiper-slide.swiper-slide-next .hospital-card.active .hospital-logo {
    transform: translate(-50%, -115%) scale(0.7);
  }
}
@media all and (max-width: 1440px) {
  .sticky-scroll-img {
    height: 400px;
  }
  .resource-banner-sec {
    height: 500px;
  }
  .whitepaper-container .blog-img {
    height: 400px;
  }
}
@media all and (max-width: 1366px) {
  .pre-footer-logo {
    right: 368px;
    width: 100px;
  }
  .pre-footer-vid-wrap {
    height: 1150px;
    width: 933px;
  }
  .impact-swiper .swiper-slide.swiper-slide-prev .hospital-card.active .hospital-logo,
  .impact-swiper .swiper-slide.swiper-slide-next .hospital-card.active .hospital-logo {
    transform: translate(-50%, -100%) scale(0.8);
  }
  .impact-swiper .swiper-slide.swiper-slide-prev .hospital-card.active .hospital-txt-wrap,
  .impact-swiper .swiper-slide.swiper-slide-next .hospital-card.active .hospital-txt-wrap {
    top: 48%;
  }
  .sticky-scroll-img {
    height: 320px;
  }
}
@media all and (max-width: 1280px) {
  .pre-footer-vid-wrap {
    height: 1110px;
    width: 870px;
  }
  .pre-footer-vid-box {
    top: -19%;
    right: -14%;
  }
  .pre-footer-logo {
    right: 338px;
  }
  .featured-wrap {
    flex-wrap: wrap;
  }
  .featured-left,
  .featured-right {
    width: 100%;
  }
  .whitepaper-container .blog-card {
    flex-direction: column;
  }
  .whitepaper-container .blog-img {
    height: 400px;
    max-width: 100%;
  }
  .impact-swiper .swiper-slide {
    height: 330px;
  }
  .impact-swiper .swiper-slide-active {
    height: 400px;
  }
  .impact-swiper .swiper-slide-active .hospital-card.active .hospital-logo {
    transform: translate(-50%, -110%) scale(0.8);
  }
  .impact-swiper .swiper-slide-active .hospital-card.active .hospital-txt-wrap {
    top: 50%;
  }
  .impact-swiper .swiper-slide.swiper-slide-prev,
  .impact-swiper .swiper-slide.swiper-slide-next {
    height: 350px;
  }
  .impact-swiper .swiper-slide.swiper-slide-prev .hospital-card.active .hospital-txt-wrap,
  .impact-swiper .swiper-slide.swiper-slide-next .hospital-card.active .hospital-txt-wrap {
    top: 44%;
  }
  .impact-swiper .swiper-slide.swiper-slide-prev .hospital-card.active .hospital-logo,
  .impact-swiper .swiper-slide.swiper-slide-next .hospital-card.active .hospital-logo {
    transform: translate(-50%, -110%) scale(0.7);
  }
  .resource-banner-sec {
    height: 450px;
  }
  .detail-featured-img {
    height: 430px;
  }
}
@media all and (max-width: 1200px) {
  .pre-footer-vid-box {
    top: -12%;
  }
  .pre-footer-logo {
    top: 25%;
    right: 355px;
    width: 80px;
  }
  .pre-footer-vid-wrap {
    height: 910px;
  }
  .sticky-content-wrap {
    flex-wrap: wrap-reverse;
  }
  .sticky-scroll-swiper {
    max-width: 100%;
  }
  .sticky-scroll-img {
    height: 420px;
  }
  .sticky-content-wrap .acc-container {
    max-width: 100%;
  }
  .resource-head {
    flex-wrap: wrap;
  }
}
@media all and (max-width: 1024px) {
  .why-cards-wrap {
    flex-wrap: wrap;
  }
  .why-card-box {
    flex-direction: row;
  }
  .why-img-box {
    height: 400px;
    max-width: 100%;
  }
  .why-card {
    height: auto;
  }
  .sticky-scroll-img {
    height: 388px;
  }
  .pre-footer-container {
    padding: 0;
  }
  .pre-footer-vid-box {
    position: relative;
    height: 500px;
    overflow: hidden;
    top: 0;
    left: 0;
  }
  .pre-footer-vid-box::before {
    content: "";
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(180deg, #070D3A 5.79%, rgba(7, 13, 58, 0) 46.02%, #070D3A 94.21%);
    mix-blend-mode: normal;
    z-index: 21;
  }
  .pre-footer-vid-box::after {
    content: "";
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(270deg, #C393FF 0%, #C393FF 100%);
    mix-blend-mode: hue;
    z-index: 20;
  }
  .pre-footer-txt-wrap {
    width: 100%;
    max-width: 100%;
    padding: var(--spc40);
  }
  .pre-footer-vid-wrap {
    position: absolute;
    height: 100%;
    width: 100%;
    z-index: 13;
    top: 60%;
    margin: 0 -50px;
  }
  .pre-footer-vid-wrap::before {
    display: none;
  }
  .pre-footer-vid-wrap::after {
    display: none;
  }
  .pre-footer-vid-wrap video {
    height: 100%;
    width: 100%;
    object-fit: contain;
    transform: scale(3.5);
  }
  .pre-footer-logo {
    top: -23%;
    /* right: 355px; */
    left: 51%;
    width: 110px;
    /* transform: translate(0, -15%); */
  }
  .detail-featured-img {
    height: 430px;
  }
  .detail-sticky-left-wrap {
    flex-wrap: wrap;
  }
  .detail-index-box {
    position: static;
  }
  .detail-sticky-left {
    max-width: 100%;
  }
  .whitepaper-left-right-wrap {
    flex-wrap: wrap;
  }
  .whitepaper-left,
  .whitepaper-right {
    max-width: 100%;
  }
  .download-form-wrap {
    position: static;
  }
  .form-upload-wrap {
    flex-wrap: wrap;
  }
  .form-upload-left,
  .form-upload-right {
    max-width: 100%;
  }
  .why-card-box,
  .why-card {
    max-width: 100%;
  }
  .impact-swiper .swiper-slide {
    height: 340px;
  }
  .impact-swiper .swiper-slide-active {
    height: 380px;
  }
  .impact-swiper .swiper-slide.swiper-slide-prev,
  .impact-swiper .swiper-slide.swiper-slide-next {
    height: 340px;
  }
  .impact-swiper .swiper-slide-active .hospital-card.active .hospital-txt-wrap {
    top: 50%;
  }
  .impact-swiper .swiper-slide-active .hospital-card.active .hospital-logo {
    transform: translate(-50%, -100%) scale(0.9);
  }
  .impact-swiper .swiper-slide.swiper-slide-prev .hospital-card.active .hospital-txt-wrap,
  .impact-swiper .swiper-slide.swiper-slide-next .hospital-card.active .hospital-txt-wrap {
    top: 44%;
  }
  .resource-banner-sec {
    height: 360px;
  }
  .resource-ban-img {
    height: 100px;
  }
  .detail-featured-img {
    height: 350px;
  }
  .blog-img {
    height: 230px;
  }
  .search-wrap {
    max-width: 100%;
  }
}
@media all and (max-width: 990px) {
  .breadcrumbs {
    display: none;
  }
  .impact-swiper .swiper-slide {
    height: 350px;
  }
  .impact-swiper .swiper-slide-active {
    height: 400px;
  }
  .impact-swiper .swiper-slide.swiper-slide-prev,
  .impact-swiper .swiper-slide.swiper-slide-next {
    height: 350px;
    opacity: 1;
  }
  .resource-banner-sec {
    height: 300px;
  }
  .resource-ban-img {
    height: 90px;
  }
}
@media all and (max-width: 800px) {
  .sticky-scroll-img {
    height: 320px;
  }
  .pre-footer-vid-box {
    height: 400px;
  }
  .pre-footer-logo {
    left: 50%;
    width: 100px;
  }
  .pre-footer-vid-wrap {
    margin: 0 -40px;
  }
  .job-description-wrap {
    flex-wrap: wrap;
  }
  .impact-swiper .swiper-slide {
    height: 350px;
  }
  .impact-swiper .swiper-slide-active {
    height: 350px;
  }
  .impact-swiper .swiper-slide-active .hospital-card.active .hospital-logo {
    transform: translate(-50%, -110%) scale(0.8);
  }
  .impact-swiper .swiper-slide-active .hospital-card.active .hospital-txt-wrap {
    top: 44%;
  }
  .impact-swiper .swiper-slide.swiper-slide-prev,
  .impact-swiper .swiper-slide.swiper-slide-next {
    height: 350px;
  }
  .hospital-card.active .hospital-txt-wrap {
    top: 50%;
    transition: all 0.4s ease-in-out;
  }
  .whitepaper-container .blog-img {
    height: 300px;
  }
}
@media all and (max-width: 768px) {
  .blog-img {
    height: 260px;
  }
}
@media all and (max-width: 640px) {
  .challenge-card-wrap {
    gap: 12px;
  }
  .challenge-icon {
    height: 50px;
    width: 50px;
  }
  .challenge-card:nth-child(4n + 1),
  .challenge-card:nth-child(4n + 4) {
    width: 100%;
  }
  .challenge-card:nth-child(4n + 2),
  .challenge-card:nth-child(4n + 3) {
    width: 100%;
  }
  .why-img-box {
    height: auto;
  }
  .why-card-box {
    flex-direction: column;
  }
  .why-icon {
    height: 50px;
    width: 50px;
  }
  .sticky-scroll-img {
    height: auto;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
  }
  .impact-swiper {
    height: 100%;
    overflow: visible;
    display: flex;
    justify-content: center;
  }
  .impact-swiper .swiper-wrapper {
    align-items: center;
  }
  .impact-swiper .swiper-slide {
    max-width: 100%;
  }
  .impact-swiper .swiper-slide-active {
    height: 380px;
  }
  .impact-swiper .swiper-slide-active .hospital-card.active .hospital-txt-wrap {
    top: 54%;
  }
  .impact-swiper .swiper-slide-active .hospital-card.active .hospital-logo {
    transform: translate(-50%, -100%) scale(0.9);
  }
  .impact-swiper-wrap {
    height: 400px;
  }
  .pre-footer-vid-box {
    height: 270px;
  }
  .pre-footer-logo {
    width: 75px;
    height: 40px;
    left: 50%;
    top: -28%;
  }
  .pre-footer-vid-wrap {
    margin: 0 -30px;
  }
  .pre-footer-vid-wrap {
    top: 70%;
  }
  .featured-right .blog-card {
    flex-direction: column;
  }
  .blog-img {
    height: auto;
  }
  .featured-right .blog-img,
  .featured-left .blog-img {
    height: auto;
  }
  .featured-right .blog-card,
  .featured-left .blog-card {
    gap: 8px;
  }
  .blog-txt .fs16 {
    margin-bottom: 6px;
  }
  .blog-filter-wrap {
    flex-wrap: wrap-reverse;
  }
  .whitepaper-container .blog-img {
    height: auto;
  }
  .whitepaper-container .blog-card {
    gap: 12px;
  }
  .whitepaper-container .blog-txt .fs18 {
    margin-bottom: 12px;
  }
  .whitepaper-cards-container .blog-txt .fs18 {
    margin-bottom: 12px;
  }
  .detail-featured-img {
    height: 230px;
  }
  .detail-index-box .fs24 {
    margin-bottom: 8px;
  }
  .detail-index-wrap {
    margin-bottom: 16px;
  }
  .job-detail-wrap {
    flex-wrap: wrap;
  }
  .drag-drop-container {
    height: 226px;
  }
  .skills-flex .content-body ul {
    flex-wrap: wrap;
  }
  .int-banner-txt-wrap {
    margin: 70px auto 0px;
  }
  .resource-banner-sec {
    height: 280px;
  }
  .blog-card .b-line {
    height: 30px;
    width: 30px;
  }
  .blog-category {
    border-radius: 8px;
    height: 50px;
    max-width: 100%;
  }
  .blog-category select {
    padding: 12px;
  }
  .blog-category::after {
    top: 20px;
  }
  .search-wrap {
    padding: 12px 16px;
    border-radius: 8px;
  }
  .blog-filter-wrap {
    gap: 16px;
  }
  .form-wrap {
    border-radius: 10px;
  }
}
@media all and (max-width: 480px) {
  .pre-footer-vid-wrap {
    top: 60%;
  }
  .pre-footer-logo {
    width: 68px;
    top: -20%;
  }
}
@media all and (max-width: 440px) {
  .pre-footer-vid-box {
    height: 260px;
  }
  .pre-footer-logo {
    width: 62px;
    top: -20%;
  }
  .impact-swiper .swiper-slide-active .hospital-card.active .hospital-txt-wrap {
    top: 48%;
  }
  .impact-swiper .swiper-slide-active .hospital-card.active .hospital-logo {
    transform: translate(-50%, -110%) scale(0.8);
  }
}
@media all and (max-width: 400px) {
  .pre-footer-logo {
    width: 65px;
    top: -18%;
  }
  .pre-footer-vid-wrap {
    top: 62%;
  }
  .pre-footer-vid-wrap video {
    transform: scale(4);
  }
  .pre-footer-vid-box {
    height: 270px;
  }
  .hospital-logo {
    width: 250px;
  }
}
@media all and(max-width: 390px) {
  .pre-footer-logo {
    width: 65px;
    top: -19%;
  }
}
@media all and(max-width: 360px) {
  .pre-footer-logo {
    width: 60px;
    top: -15%;
  }
  .pre-footer-vid-wrap {
    top: 55%;
  }
  .impact-swiper .swiper-slide-active .hospital-card.active .hospital-txt-wrap {
    top: 44%;
  }
  .impact-swiper .swiper-slide-active .hospital-card.active .hospital-logo {
    transform: translate(-50%, -120%) scale(0.7);
  }
}
@media all and (max-width: 1750px) {
  .container {
    max-width: 1440px;
  }
  .hero-right {
    right: -11%;
    top: -100px;
  }
  .hero-left-hand img {
    object-fit: cover;
    width: 100%;
    height: 100%;
  }
  .hero-right-hand img {
    object-fit: cover;
    width: 100%;
    height: 100%;
  }
  .hero-left {
    left: 11%;
    bottom: -50px;
  }
  :root {
    --heroBoxLeft: -28%;
    --heroBoxRight: 86%;
  }
  .future-bg3 {
    height: 82%;
  }
  .container-md {
    max-width: 1280px;
  }
  .built-box {
    max-width: 850px;
  }
  .built-img {
    max-width: 400px;
    height: 360px;
  }
  .story-left {
    max-width: 350px;
  }
  .int-ban-img {
    width: 100%;
    height: 100%;
  }
  .int-ban-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .col-img {
    max-width: 600px;
  }
  .vm-box {
    padding: 32px;
  }
  .vm-content {
    max-width: 300px;
  }
}
@media all and (max-width: 1440px) {
  .container {
    max-width: 1280px;
  }
  :root {
    --heroBoxLeft: -28%;
    --heroBoxRight: 86%;
  }
  .container-md {
    max-width: 1170px;
  }
  .hero-right {
    right: -14%;
    top: -80px;
  }
  .hero-left {
    left: 17%;
    bottom: -50px;
  }
  .video-wrap {
    max-width: 850px;
  }
  .work-grid {
    gap: 40px;
  }
  .work-col {
    max-width: 300px;
  }
  .story-img {
    width: 400px;
    height: 350px;
  }
  .work-sec {
    min-height: 730px;
  }
  .col-img {
    max-width: 550px;
  }
  .vm-box {
    padding: 24px;
  }
  .vm-content {
    max-width: 270px;
  }
}
@media all and (max-width: 1366px) {
  .hero-content {
    max-width: 600px;
  }
  .work-grid-bg {
    top: 144px;
  }
  .future-img {
    height: 400px;
    width: 50%;
  }
  .future-img img {
    object-fit: cover;
    width: 100%;
    height: 100%;
  }
  .col-img {
    max-width: 520px;
  }
}
@media all and (max-width: 1280px) {
  .container {
    max-width: 1024px;
  }
  .container-md {
    max-width: 800px;
  }
  .hero-left {
    left: 14%;
    bottom: -50px;
  }
  .hero-right {
    right: -11%;
    top: -80px;
  }
  .hero-left-hand img {
    object-fit: contain;
  }
  .hero-right-hand img {
    object-fit: contain;
  }
  .future-img {
    height: 300px;
  }
  .future-box {
    gap: 30px;
  }
  .built-img {
    max-width: 300px;
    height: auto;
  }
  .built-box {
    max-width: 650px;
  }
  .story-box {
    gap: 30px;
    padding: 24px;
  }
  .story-img {
    width: 300px;
    height: 250px;
  }
  .story-left {
    max-width: 300px;
  }
  .work-col {
    max-width: 260px;
  }
  .col-content {
    max-width: 500px;
  }
  .col-img {
    max-width: 450px;
  }
  .progress-wrap .acc-item {
    margin-left: 68px;
  }
  .progress-wrap .acc-item::after {
    left: -68px;
  }
  .progress-wrap .acc-item.active::before {
    left: -56px;
  }
  .progress-wrap .acc-item::before {
    left: -50px;
  }
  .vm-content {
    max-width: 370px;
  }
  .work-sec-2 .work-head + p {
    max-width: 500px;
  }
}
@media all and (max-width: 1024px) {
  .hero-section .hero-content-container {
    align-items: flex-start;
  }
  .container {
    max-width: 800px;
  }
  .container-md {
    max-width: 640px;
  }
  .hero-section {
    padding-top: calc(var(--header-height) + 30px);
    align-items: flex-start;
    height: unset;
  }
  .hero-content {
    max-width: unset;
    gap: 20px;
  }
  .hero-right {
    right: -5%;
    top: 50px;
  }
  .right-ellipsis {
    left: 15px;
    top: 49%;
  }
  .hero-left {
    left: -10%;
    bottom: -100px;
  }
  .left-ellipsis {
    right: 0;
    top: 35%;
  }
  .video-wrap {
    top: unset;
    max-width: unset;
    height: calc(100vh - var(--header-height) - 100px);
    position: absolute;
  }
  .video-wrap video {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .hero-card-list {
    flex-wrap: wrap;
    justify-content: center;
  }
  .hero-card {
    width: 46%;
  }
  .hero-card:first-child {
    width: 50%;
  }
  .hero-box {
    height: unset;
  }
  .work-sec {
    min-height: unset;
    height: unset;
    padding-bottom: 200px;
    padding-top: 60px;
  }
  .work-wrap {
    flex-direction: column;
  }
  .work-left {
    width: 100%;
  }
  .work-right {
    width: 100%;
  }
  .work-head {
    padding-bottom: 80px;
  }
  .workgooeywrap {
    display: none;
  }
  .gooey-bg {
    mix-blend-mode: unset;
    top: 110px;
    border-radius: 30px;
    left: 16px;
    right: 16px;
  }
  .blob-hand {
    bottom: -180px;
    top: unset;
    width: 60%;
    left: 0;
    margin: 0 auto;
  }
  .work-col {
    max-width: 45%;
  }
  .work-grid {
    max-width: unset;
  }
  .story-wrp {
    flex-direction: column;
  }
  .story-left {
    max-width: unset;
    position: static;
  }
  .built-box-wrp,
  .built-head {
    height: 100vh;
  }
  .built-video,
  .built-img-grid {
    height: 100vh;
  }
  .col-content {
    max-width: 100%;
  }
  .col-img {
    max-width: 100%;
  }
  .progress-wrap .stickyScrollSwiper {
    display: none;
  }
  .progress-wrap .panel img {
    display: block;
    max-width: 300px;
  }
  .led-box {
    flex-direction: column;
  }
  .led-content {
    padding: 0;
    gap: 16px;
  }
  .led-img {
    max-width: 300px;
  }
  .led-img img {
    width: 100%;
  }
  .work-hand {
    display: none;
  }
  .work-sec-2 .work-head + p {
    max-width: unset;
  }
  .work-sec-2 .gooey-bg {
    top: 110px;
  }
  .work-sec.work-sec-2 {
    padding-bottom: var(--spc4080);
  }
  .work-sec-2 .work-grid {
    max-width: unset;
    justify-content: space-between;
    margin-bottom: 40px;
  }
}
@media all and (max-width: 800px) {
  .container {
    max-width: 640px;
  }
  .container-md {
    max-width: 480px;
  }
  .built-box {
    align-items: flex-start;
    flex-direction: column;
  }
  .story-box {
    flex-direction: column;
    align-items: flex-start;
  }
  .vm-content {
    max-width: 270px;
  }
  .tabs-wrapper {
    padding: 6px;
  }
  .tabs-wrapper li {
    padding: 0 16px;
    line-height: 30px;
    height: 30px;
  }
  .work-sec-2 .gooey-bg {
    top: 130px;
  }
}
@media all and (max-width: 640px) {
  .container {
    max-width: 480px;
  }
  .hero-card {
    width: 80%;
  }
  .hero-card:first-child {
    width: 80%;
  }
  .work-grid {
    max-width: unset;
    flex-direction: column;
    padding-bottom: 20px;
  }
  .work-col {
    max-width: 100%;
  }
  .blob-hand {
    width: 76%;
  }
  .future-bg2,
  .future-bg1 {
    width: 20%;
  }
  .future-box {
    flex-direction: column;
    align-items: flex-start;
  }
  .future-img {
    width: 100%;
  }
  .future-content {
    max-width: 100%;
  }
  .future-bg3 {
    height: 91%;
  }
  .vm-img {
    position: static;
    border-radius: 0;
  }
  .vm-box {
    padding: 0px;
  }
  .vm-content {
    max-width: 100%;
    padding: 20px;
  }
  .tabs-wrapper {
    gap: 0;
    justify-content: flex-start;
  }
  .work-sec-2 .gooey-bg {
    top: 150px;
  }
  .team-sec.work-sec {
    padding-bottom: 60px;
  }
  .team-sec.work-sec .blob-hand {
    display: none;
  }
}
@media all and (max-width: 480px) {
  .container-md,
  .container {
    max-width: 100%;
  }
  .work-sec-2 .gooey-bg {
    top: 190px;
  }
  .video-wrap {
    max-width: 280px;
    left: 0 !important;
  }
  .left-ellipsis,
  .right-ellipsis {
    display: none;
  }
  .hero-right-hand,
  .hero-right {
    width: 40%;
    height: 27%;
  }
  .hero-left-hand,
  .hero-left {
    width: 53%;
    height: 23%;
  }
  .hero-left {
    left: -25%;
    bottom: 20%;
  }
  .hero-right {
    right: -16%;
    top: 38%;
  }
  .blob-hand {
    bottom: -140px;
  }
  .future-bg2,
  .future-bg1 {
    width: 12%;
  }
  .future-gooey-elem {
    inset: 0px 16px;
  }
  .future-swiper {
    width: calc(100% - 32px);
    margin: 0 auto;
  }
  .future-img {
    height: 200px;
  }
  .built-content-wrap {
    padding: 0 24px;
  }
  .future-bg1 {
    top: 0;
  }
  .future-bg2 {
    top: 0;
  }
  .future-bg3 {
    height: 90%;
  }
  .job-box {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}
@media all and (max-width: 400px) {
  .progress-wrap .acc-item.active::before {
    left: -42px;
    top: 7px;
    width: 18px;
    height: 18px;
  }
  .progress-wrap .acc-item::after {
    width: 32px;
    height: 32px;
    left: -49px;
  }
  .progress-wrap::after {
    left: 17px;
  }
  .progress-wrap .acc-item::before {
    top: 10px;
    width: 12px;
    height: 12px;
    left: -38px;
  }
  .progress-wrap .acc-item {
    margin-left: 50px;
  }
  .led-box {
    padding: 16px;
    gap: 18px;
  }
  .col-content h2 {
    margin-bottom: 16px;
  }
  .work-sec-2 .gooey-bg {
    top: 210px;
  }
}
@media all and (max-width: 380px) and (max-height: 660px) and (orientation: portrait) {
  .video-wrap {
    max-height: 370px;
  }
  .hero-left {
    bottom: 7%;
  }
  .hero-right {
    bottom: 7%;
  }
  .hero-right {
    right: -15%;
    top: 48%;
  }
}
footer {
  padding-top: var(--spc60);
}
.footer-wrap a {
  color: var(--grey, #42628B);
  font-size: var(--fs16);
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.48px;
}
.footer-top {
  display: -webkit-flex;
  display: -webkit-box;
  display: -moz-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 50px;
  padding-bottom: 50px;
}
.footer-link-head {
  color: var(--darkblue, #070D3A);
  font-size: var(--fs16);
  font-style: normal;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.48px;
  margin-bottom: 18px;
}
.footer-middle {
  display: flex;
  gap: 100px;
  justify-content: space-between;
}
.links ul {
  column-count: 2;
  column-gap: 50px;
}
.footer-col li {
  margin-bottom: 18px;
}
.footer-col li:last-child {
  margin-bottom: 0;
}
.footer-col li:hover a {
  color: #8858F9;
}
.footer-bottom {
  display: -webkit-flex;
  display: -webkit-box;
  display: -moz-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 50px 0 30px;
}
.footer-btm-center {
  display: flex;
  gap: 56px;
}
.contact-box {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}
.contact-box:last-child {
  margin-bottom: 0;
}
.contact-icon i {
  font-size: 24px;
  color: #333;
}
.social-links {
  display: flex;
  gap: 16px;
  margin-top: 46px;
}
.social-links img {
  width: 100%;
}
.social-links a {
  border-radius: 10px;
  backdrop-filter: blur(8px);
  width: 55px;
  aspect-ratio: 1;
  display: -webkit-flex;
  display: -webkit-box;
  display: -moz-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
}
.social-links a:hover {
  border: 1px solid #8858F9;
}
.social-links a:hover i {
  color: #8858F9;
}
.social-links i {
  font-size: 24px;
  line-height: 1;
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
}
.logo-wrap {
  width: 56px;
  height: 56px;
  position: relative;
}
.logo-wrap img {
  object-fit: contain;
  display: block;
}
.logo-g {
  width: 45px;
  height: 45px;
  position: absolute;
  left: 0;
  bottom: 0;
  transform: rotate(-45deg);
}
.logo-dot {
  width: 7px;
  height: 7px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0);
}
.logo-pie {
  width: 30px;
  height: 30px;
  position: absolute;
  right: 0;
  top: 0;
  transform: scale(0);
  transform-origin: bottom left;
}
.footer-logo {
  width: 200px;
  height: 64px;
  display: block;
}
.footer-logo img {
  width: 100%;
}
@media all and (max-width: 1600px) {
  .social-links {
    gap: 10px;
  }
  .social-links a {
    width: 45px;
  }
}
@media all and (max-width: 1440px) {
  .footer-logo {
    width: 150px;
    height: auto;
  }
  .footer-middle {
    gap: 50px;
  }
  .drop-card {
    padding: 10px;
  }
}
@media all and (max-width: 1200px) {
  .footer-left {
    order: 1;
  }
  .footer-right {
    order: 2;
  }
  .footer-middle {
    order: 3;
  }
  .footer-top {
    flex-wrap: wrap;
  }
  .footer-middle {
    justify-content: space-around;
    width: 100%;
  }
}
@media all and (max-width: 1200px) {
  .footer-bottom {
    flex-direction: column;
    gap: 30px;
  }
}
@media all and (max-width: 576px) {
  .footer-middle {
    order: 2;
  }
  .footer-right {
    order: 3;
  }
  .footer-middle {
    flex-direction: column;
    gap: 40px;
  }
  .footer-bottom {
    align-items: flex-start;
  }
  .links ul {
    column-gap: 0;
  }
  .contact-box {
    margin-bottom: 16px;
  }
  .contact-box:last-child {
    margin-bottom: 0;
  }
  .footer-top {
    padding-bottom: 40px;
  }
  .footer-bottom {
    gap: 16px;
    padding: 20px 0;
  }
  .footer-col li {
    margin-bottom: 16px;
  }
  .footer-col li:last-child {
    margin-bottom: 0;
  }
  .social-links a {
    width: 35px;
  }
  .social-links i {
    font-size: 20px;
  }
}
