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

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

-------------------------------------------------------------------*/
/*==========================================================================
=> font
==========================================================================*/
/*==========================================================================
=> anim
==========================================================================*/
/*==========================================================================
=> transform
==========================================================================*/
/*==========================================================================
=> border radius
==========================================================================*/
/*==========================================================================
=> flex
==========================================================================*/
/*==========================================================================
=> ellipsis
==========================================================================*/
/*==========================================================================
=> image
==========================================================================*/
/*==========================================================================
=> box-shadow
==========================================================================*/
/*------------------------------------------------------------------
[TABLE OF CONTENTS]

=> Color
=> Common
=> Fonts
=> Custom Grid
=> Global Styles
/*==========================================================================
=> Color
==========================================================================*/
:root {
  --sidebarWidth: 430px;
  /* common */
  --clr-red: #f00;
  --clr-grn: #1e7e34;
  /* common end */
  /* input */
  --input-font: "General Sans", sans-serif;
  --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: #f1a800;
  --button-line: #f1a800;
  /* button end */
  --header-height: 78px;
  --header-scroll-height: 78px;
  --black: #000;
  --erieBlack: #1f1f1f;
  --oliveBlack: #3b3b3b;
  --white: #fff;
  --bGrey: #eee;
  --lColor: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
  --dYellow: #f18a00;
  --lYellow: #f1a800;
  --red: #f57559;
  --blue: #2677bc;
  --green: #40b37c;
  --dimGray: #828f9c;
  --bluewood: #2c3e50;
  --electricBlue: #5a6a85;
  --fs96: 96px;
  --fs72: 72px;
  --fs60: 60px;
  --fs48: 48px;
  --fs36: 36px;
  --fs24: 24px;
  --fs20: 20px;
  --fs18: 18px;
  --fs16: 16px;
  --fs14: 14px;
  --fs12: 12px;
}
/*==========================================================================
=> 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;
}
.variable {
  margin-bottom: 30px;
}
.variable p {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  color: #4e68ea;
  margin-bottom: 8px;
}
.variable span {
  display: block;
  font-size: 14px;
  line-height: 1.5;
  color: #212529;
  margin-bottom: 5px;
}
/*==========================================================================
=> Fonts
==========================================================================*/
h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-weight: normal;
  margin-bottom: 0;
}
@font-face {
  font-family: "General Sans", sans-serif;
  src: url("../fonts/generalsans-extralight-webfont.woff2") format("woff2"), url("../fonts/generalsans-extralight-webfont.woff") format("woff");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "General Sans", sans-serif;
  src: url("../fonts/generalsans-light-webfont.woff2") format("woff2"), url("../fonts/generalsans-light-webfont.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "General Sans", sans-serif;
  src: url("../fonts/generalsans-regular-webfont.woff2") format("woff2"), url("../fonts/generalsans-regular-webfont.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "General Sans", sans-serif;
  src: url("../fonts/generalsans-medium-webfont.woff2") format("woff2"), url("../fonts/generalsans-medium-webfont.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "General Sans", sans-serif;
  src: url("../fonts/generalsans-semibold-webfont.woff2") format("woff2"), url("../fonts/generalsans-semibold-webfont.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "General Sans", sans-serif;
  src: url("../fonts/generalsans-bold-webfont.woff2") format("woff2"), url("../fonts/generalsans-bold-webfont.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
/*==========================================================================
=> Custom Grid
==========================================================================*/
/* Grid */
.f-row {
  display: flex;
  margin-left: -20px;
  margin-right: -20px;
  flex-wrap: wrap;
}
.f-col {
  padding: 0 20px;
}
.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%;
}
/* Width */
.w100 {
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
}
.w95 {
  width: 95%;
  padding-left: 20px;
  padding-right: 20px;
}
.w90 {
  width: 90%;
  padding-left: 20px;
  padding-right: 20px;
}
.w85 {
  width: 85%;
  padding-left: 20px;
  padding-right: 20px;
}
.w80 {
  width: 80%;
  padding-left: 20px;
  padding-right: 20px;
}
.w75 {
  width: 75%;
  padding-left: 20px;
  padding-right: 20px;
}
.w70 {
  width: 70%;
  padding-left: 20px;
  padding-right: 20px;
}
.w65 {
  width: 65%;
  padding-left: 20px;
  padding-right: 20px;
}
.w60 {
  width: 60%;
  padding-left: 20px;
  padding-right: 20px;
}
.w55 {
  width: 55%;
  padding-left: 20px;
  padding-right: 20px;
}
.w50 {
  width: 50%;
  padding-left: 20px;
  padding-right: 20px;
}
.w45 {
  width: 45%;
  padding-left: 20px;
  padding-right: 20px;
}
.w40 {
  width: 40%;
  padding-left: 20px;
  padding-right: 20px;
}
.w35 {
  width: 35%;
  padding-left: 20px;
  padding-right: 20px;
}
.w30 {
  width: 30%;
  padding-left: 20px;
  padding-right: 20px;
}
.w25 {
  width: 25%;
  padding-left: 20px;
  padding-right: 20px;
}
.w20 {
  width: 20%;
  padding-left: 20px;
  padding-right: 20px;
}
.w15 {
  width: 15%;
  padding-left: 20px;
  padding-right: 20px;
}
.w10 {
  width: 10%;
  padding-left: 20px;
  padding-right: 20px;
}
.w5 {
  width: 5%;
  padding-left: 20px;
  padding-right: 20px;
}
.w33 {
  width: 33%;
  padding-left: 20px;
  padding-right: 20px;
}
.w16 {
  width: 16.666666%;
  padding-left: 20px;
  padding-right: 20px;
}
/* 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;
}
@media all and (max-width: 1440px) {
  .w-1440-40 {
    width: 40%;
  }
  .w-1440-60 {
    width: 60%;
  }
}
@media all and (max-width: 1200px) {
  .f-1200-10 .f-col {
    width: 10%;
  }
  .f-1200-9 .f-col {
    width: 11.11111111%;
  }
  .f-1200-8 .f-col {
    width: 12.5%;
  }
  .f-1200-7 .f-col {
    width: 14.28571429%;
  }
  .f-1200-6 .f-col {
    width: 16.66666667%;
  }
  .f-1200-5 .f-col {
    width: 20%;
  }
  .f-1200-4 .f-col {
    width: 25%;
  }
  .f-1200-3 .f-col {
    width: 33.33333333%;
  }
  .f-1200-2 .f-col {
    width: 50%;
  }
  .f-1200-1 .f-col {
    width: 100%;
  }
  .w-1200-100 {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .w-1200-95 {
    width: 95%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .w-1200-90 {
    width: 90%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .w-1200-85 {
    width: 85%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .w-1200-80 {
    width: 80%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .w-1200-75 {
    width: 75%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .w-1200-70 {
    width: 70%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .w-1200-65 {
    width: 65%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .w-1200-60 {
    width: 60%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .w-1200-55 {
    width: 55%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .w-1200-50 {
    width: 50%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .w-1200-45 {
    width: 45%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .w-1200-40 {
    width: 40%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .w-1200-35 {
    width: 35%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .w-1200-30 {
    width: 30%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .w-1200-25 {
    width: 25%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .w-1200-20 {
    width: 20%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .w-1200-15 {
    width: 15%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .w-1200-10 {
    width: 10%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .w-1200-5 {
    width: 5%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .w-1200-33 {
    width: 33%;
  }
  .w-1200-16 {
    width: 16.666666%;
  }
  .mb-1200-100 {
    margin-bottom: 100px;
  }
  .mb-1200-95 {
    margin-bottom: 95px;
  }
  .mb-1200-90 {
    margin-bottom: 90px;
  }
  .mb-1200-85 {
    margin-bottom: 85px;
  }
  .mb-1200-80 {
    margin-bottom: 80px;
  }
  .mb-1200-75 {
    margin-bottom: 75px;
  }
  .mb-1200-70 {
    margin-bottom: 70px;
  }
  .mb-1200-65 {
    margin-bottom: 65px;
  }
  .mb-1200-60 {
    margin-bottom: 60px;
  }
  .mb-1200-55 {
    margin-bottom: 55px;
  }
  .mb-1200-50 {
    margin-bottom: 50px;
  }
  .mb-1200-45 {
    margin-bottom: 45px;
  }
  .mb-1200-40 {
    margin-bottom: 40px;
  }
  .mb-1200-35 {
    margin-bottom: 35px;
  }
  .mb-1200-30 {
    margin-bottom: 30px;
  }
  .mb-1200-25 {
    margin-bottom: 25px;
  }
  .mb-1200-20 {
    margin-bottom: 20px;
  }
  .mb-1200-15 {
    margin-bottom: 15px;
  }
  .mb-1200-10 {
    margin-bottom: 10px;
  }
  .mb-1200-5 {
    margin-bottom: 5px;
  }
  .mb-1200-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%;
  }
  .w-1024-100 {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .w-1024-95 {
    width: 95%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .w-1024-90 {
    width: 90%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .w-1024-85 {
    width: 85%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .w-1024-80 {
    width: 80%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .w-1024-75 {
    width: 75%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .w-1024-70 {
    width: 70%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .w-1024-65 {
    width: 65%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .w-1024-60 {
    width: 60%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .w-1024-55 {
    width: 55%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .w-1024-50 {
    width: 50%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .w-1024-45 {
    width: 45%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .w-1024-40 {
    width: 40%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .w-1024-35 {
    width: 35%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .w-1024-30 {
    width: 30%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .w-1024-25 {
    width: 25%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .w-1024-20 {
    width: 20%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .w-1024-15 {
    width: 15%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .w-1024-10 {
    width: 10%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .w-1024-5 {
    width: 5%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .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: 20px;
    padding-right: 20px;
  }
  .w-990-95 {
    width: 95%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .w-990-90 {
    width: 90%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .w-990-85 {
    width: 85%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .w-990-80 {
    width: 80%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .w-990-75 {
    width: 75%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .w-990-70 {
    width: 70%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .w-990-65 {
    width: 65%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .w-990-60 {
    width: 60%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .w-990-55 {
    width: 55%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .w-990-50 {
    width: 50%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .w-990-45 {
    width: 45%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .w-990-40 {
    width: 40%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .w-990-35 {
    width: 35%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .w-990-30 {
    width: 30%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .w-990-25 {
    width: 25%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .w-990-20 {
    width: 20%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .w-990-15 {
    width: 15%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .w-990-10 {
    width: 10%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .w-990-5 {
    width: 5%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .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: 800px) {
  .f-800-10 .f-col {
    width: 10%;
  }
  .f-800-9 .f-col {
    width: 11.11111111%;
  }
  .f-800-8 .f-col {
    width: 12.5%;
  }
  .f-800-7 .f-col {
    width: 14.28571429%;
  }
  .f-800-6 .f-col {
    width: 16.66666667%;
  }
  .f-800-5 .f-col {
    width: 20%;
  }
  .f-800-4 .f-col {
    width: 25%;
  }
  .f-800-3 .f-col {
    width: 33.33333333%;
  }
  .f-800-2 .f-col {
    width: 50%;
  }
  .f-800-1 .f-col {
    width: 100%;
  }
  .w-800-100 {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .w-800-95 {
    width: 95%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .w-800-90 {
    width: 90%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .w-800-85 {
    width: 85%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .w-800-80 {
    width: 80%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .w-800-75 {
    width: 75%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .w-800-70 {
    width: 70%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .w-800-65 {
    width: 65%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .w-800-60 {
    width: 60%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .w-800-55 {
    width: 55%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .w-800-50 {
    width: 50%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .w-800-45 {
    width: 45%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .w-800-40 {
    width: 40%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .w-800-35 {
    width: 35%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .w-800-30 {
    width: 30%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .w-800-25 {
    width: 25%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .w-800-20 {
    width: 20%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .w-800-15 {
    width: 15%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .w-800-10 {
    width: 10%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .w-800-5 {
    width: 5%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .w-800-33 {
    width: 33%;
  }
  .w-800-16 {
    width: 16.666666%;
  }
  .mb-800-100 {
    margin-bottom: 100px;
  }
  .mb-800-95 {
    margin-bottom: 95px;
  }
  .mb-800-90 {
    margin-bottom: 90px;
  }
  .mb-800-85 {
    margin-bottom: 85px;
  }
  .mb-800-80 {
    margin-bottom: 80px;
  }
  .mb-800-75 {
    margin-bottom: 75px;
  }
  .mb-800-70 {
    margin-bottom: 70px;
  }
  .mb-800-65 {
    margin-bottom: 65px;
  }
  .mb-800-60 {
    margin-bottom: 60px;
  }
  .mb-800-55 {
    margin-bottom: 55px;
  }
  .mb-800-50 {
    margin-bottom: 50px;
  }
  .mb-800-45 {
    margin-bottom: 45px;
  }
  .mb-800-40 {
    margin-bottom: 40px;
  }
  .mb-800-35 {
    margin-bottom: 35px;
  }
  .mb-800-30 {
    margin-bottom: 30px;
  }
  .mb-800-25 {
    margin-bottom: 25px;
  }
  .mb-800-20 {
    margin-bottom: 20px;
  }
  .mb-800-15 {
    margin-bottom: 15px;
  }
  .mb-800-10 {
    margin-bottom: 10px;
  }
  .mb-800-5 {
    margin-bottom: 5px;
  }
  .mb-800-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: 20px;
    padding-right: 20px;
  }
  .w-768-95 {
    width: 95%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .w-768-90 {
    width: 90%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .w-768-85 {
    width: 85%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .w-768-80 {
    width: 80%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .w-768-75 {
    width: 75%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .w-768-70 {
    width: 70%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .w-768-65 {
    width: 65%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .w-768-60 {
    width: 60%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .w-768-55 {
    width: 55%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .w-768-50 {
    width: 50%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .w-768-45 {
    width: 45%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .w-768-40 {
    width: 40%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .w-768-35 {
    width: 35%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .w-768-30 {
    width: 30%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .w-768-25 {
    width: 25%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .w-768-20 {
    width: 20%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .w-768-15 {
    width: 15%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .w-768-10 {
    width: 10%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .w-768-5 {
    width: 5%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .w-768-33 {
    width: 33%;
  }
  .w-768-16 {
    width: 16.666666%;
  }
  .mb-800-100 {
    margin-bottom: 100px;
  }
  .mb-800-95 {
    margin-bottom: 95px;
  }
  .mb-800-90 {
    margin-bottom: 90px;
  }
  .mb-800-85 {
    margin-bottom: 85px;
  }
  .mb-800-80 {
    margin-bottom: 80px;
  }
  .mb-800-75 {
    margin-bottom: 75px;
  }
  .mb-800-70 {
    margin-bottom: 70px;
  }
  .mb-800-65 {
    margin-bottom: 65px;
  }
  .mb-800-60 {
    margin-bottom: 60px;
  }
  .mb-800-55 {
    margin-bottom: 55px;
  }
  .mb-800-50 {
    margin-bottom: 50px;
  }
  .mb-800-45 {
    margin-bottom: 45px;
  }
  .mb-800-40 {
    margin-bottom: 40px;
  }
  .mb-800-35 {
    margin-bottom: 35px;
  }
  .mb-800-30 {
    margin-bottom: 30px;
  }
  .mb-800-25 {
    margin-bottom: 25px;
  }
  .mb-800-20 {
    margin-bottom: 20px;
  }
  .mb-800-15 {
    margin-bottom: 15px;
  }
  .mb-800-10 {
    margin-bottom: 10px;
  }
  .mb-800-5 {
    margin-bottom: 5px;
  }
  .mb-800-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: 20px;
    padding-right: 20px;
  }
  .w-640-95 {
    width: 95%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .w-640-90 {
    width: 90%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .w-640-85 {
    width: 85%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .w-640-80 {
    width: 80%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .w-640-75 {
    width: 75%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .w-640-70 {
    width: 70%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .w-640-65 {
    width: 65%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .w-640-60 {
    width: 60%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .w-640-55 {
    width: 55%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .w-640-50 {
    width: 50%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .w-640-45 {
    width: 45%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .w-640-40 {
    width: 40%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .w-640-35 {
    width: 35%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .w-640-30 {
    width: 30%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .w-640-25 {
    width: 25%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .w-640-20 {
    width: 20%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .w-640-15 {
    width: 15%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .w-640-10 {
    width: 10%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .w-640-5 {
    width: 5%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .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: 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: 20px;
    padding-right: 20px;
  }
  .w-480-95 {
    width: 95%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .w-480-90 {
    width: 90%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .w-480-85 {
    width: 85%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .w-480-80 {
    width: 80%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .w-480-75 {
    width: 75%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .w-480-70 {
    width: 70%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .w-480-65 {
    width: 65%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .w-480-60 {
    width: 60%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .w-480-55 {
    width: 55%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .w-480-50 {
    width: 50%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .w-480-45 {
    width: 45%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .w-480-40 {
    width: 40%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .w-480-35 {
    width: 35%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .w-480-30 {
    width: 30%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .w-480-25 {
    width: 25%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .w-480-20 {
    width: 20%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .w-480-15 {
    width: 15%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .w-480-10 {
    width: 10%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .w-480-5 {
    width: 5%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .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: 20px;
    padding-right: 20px;
  }
  .w-400-95 {
    width: 95%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .w-400-90 {
    width: 90%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .w-400-85 {
    width: 85%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .w-400-80 {
    width: 80%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .w-400-75 {
    width: 75%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .w-400-70 {
    width: 70%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .w-400-65 {
    width: 65%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .w-400-60 {
    width: 60%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .w-400-55 {
    width: 55%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .w-400-50 {
    width: 50%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .w-400-45 {
    width: 45%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .w-400-40 {
    width: 40%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .w-400-35 {
    width: 35%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .w-400-30 {
    width: 30%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .w-400-25 {
    width: 25%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .w-400-20 {
    width: 20%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .w-400-15 {
    width: 15%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .w-400-10 {
    width: 10%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .w-400-5 {
    width: 5%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .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
==========================================================================*/
.container {
  max-width: 1240px;
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
}
.container-sm {
  max-width: 1140px;
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
}
.main-container {
  padding-top: var(--header-height);
}
.comm-section {
  padding: 45px 0;
  position: relative;
}
.visuallyhidden {
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(0 0 99.9% 99.9%);
  clip-path: inset(0 0 99.9% 99.9%);
  overflow: hidden;
  height: 1px;
  width: 1px;
  padding: 0;
  border: 0;
}
*,
*: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,
body {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  font-family: "General Sans", sans-serif;
  font-weight: 400;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: var(--white);
  width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  overscroll-behavior: none;
}
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: "General Sans", 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: "General Sans", sans-serif;
  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: "General Sans", sans-serif;
  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 {
  max-width: 100%;
  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;
}
.pb0 {
  padding-bottom: 0 !important;
}
.sec-head + .sec-body {
  margin-top: 24px;
}
.sec-head.centered {
  text-align: center;
}
.sec-head.centered.sec-title + .sec-para {
  margin-top: 24px;
}
.page-title {
  color: var(--erieBlack);
  text-align: center;
  font-size: var(--fs72);
  font-style: normal;
  font-weight: 700;
  line-height: 1.2;
  opacity: 1;
}
.sec-title {
  color: var(--erieBlack);
  font-size: var(--fs48);
  font-style: normal;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 4px;
}
.sec-title.centered {
  text-align: center;
}
.centered {
  text-align: center;
}
.sec-para {
  color: var(--erieBlack);
  font-size: var(--fs16);
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
}
.sec-para.centered {
  text-align: center;
}
.box-title {
  color: var(--erieBlack);
  font-size: var(--fs20);
  font-style: normal;
  font-weight: 600;
  line-height: 1.2;
}
.card-title {
  color: var(--erieBlack);
  font-size: var(--fs24);
  font-weight: 700;
  line-height: 1.25;
}
.grid-title {
  color: var(--erieBlack);
  font-size: var(--fs36);
  font-weight: 600;
  line-height: 1.16;
}
.grid-para {
  color: var(--oliveBlack);
  font-size: var(--fs24);
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
}
.big-title {
  color: var(--erieBlack);
  font-size: var(--fs96);
  font-weight: 700;
  line-height: 1;
  text-align: center;
}
.big-title + .button {
  margin-top: 55px;
}
.prob-title {
  color: var(--erieBlack);
  font-size: var(--fs20);
  font-weight: 600;
  line-height: 1.2;
}
.ans-title {
  color: var(--erieBlack);
  text-align: left;
  font-size: var(--fs16);
  font-weight: 500;
  line-height: 1.4;
}
.form-label {
  color: #9d9da8;
  font-size: var(--fs16);
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 6px;
  display: block;
  text-align: left;
}
.internal-page-title {
  color: var(--erieBlack);
  font-size: var(--fs72);
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}
.internal-page-title + .button {
  margin-top: 55px;
}
.client-section,
.rev-section,
.qa-section,
.blog-section {
  padding: 80px 0;
}
.client-box {
  border-radius: 30px;
  padding: 50px 0 100px;
  overflow: hidden;
  text-align: center;
  position: relative;
}
.client-box .sec-title {
  position: relative;
  z-index: 1;
  margin-bottom: 24px;
}
.client-box .sec-para {
  position: relative;
  z-index: 1;
  margin-bottom: 28px;
}
.client-bg {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 0;
  background: var(--bGrey);
  transform: scale(0);
  transform-origin: center;
}
.heart-gif {
  width: 52px;
  height: 52px;
  margin: 0 auto 16px;
  position: relative;
  z-index: 1;
}
.client-swiper {
  width: 100%;
}
.client-swiper .swiper-wrapper {
  transition-timing-function: linear;
}
.client-swiper .swiper-slide {
  width: auto;
}
.client-logo {
  display: inline-block;
}
.client-logo img {
  height: 44px;
  width: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.client-swiper-wrap {
  position: relative;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.client-swiper-wrap::after,
.client-swiper-wrap::before {
  content: "";
  position: absolute;
  width: 74px;
  height: 100%;
  top: 0px;
  bottom: 0;
  z-index: 3;
}
.client-swiper-wrap::after {
  background: linear-gradient(90deg, rgba(238, 238, 238, 0) 0%, #eeeeee 68.5%);
  right: 0;
}
.client-swiper-wrap::before {
  background: linear-gradient(270deg, rgba(238, 238, 238, 0) 0%, #eeeeee 68.5%);
}
.client-section-internal .client-box {
  background: var(--bGrey);
  margin-top: -80px;
}
.client-section-internal .hero-elem {
  width: 280px;
  margin: 0 auto;
}
.qa-box {
  border-radius: 20px;
  background: var(--bGrey);
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 16px;
  gap: 24px;
  margin-bottom: 24px;
}
.qa-box .prob-title {
  margin-bottom: 8px;
}
.qa-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 48px;
}
.qa-wrap.qa-wrap-sm {
  align-items: unset;
}
.qa-wrap.qa-wrap-sm .qa-left {
  height: auto;
  position: relative;
}
.qa-wrap.qa-wrap-sm .qa-left .sec-head {
  position: sticky;
  top: var(--header-height);
}
body.page-template-program-detail {
  overflow: unset;
}
.client-box.client-box-sm {
  text-align: left;
  padding: 60px;
}
.qa-left {
  max-width: 450px;
}
.qa-left .sec-para {
  margin-bottom: 24px;
}
.qa-left .button + .button {
  margin-left: 16px;
}
.qa-right {
  max-width: 520px;
}
.prob-icon {
  width: 100px;
  height: 100px;
  flex-shrink: 0;
  border-radius: 100px;
}
.blog-swiper {
  margin-bottom: 48px;
}
.blog-section .button {
  margin: 0 auto;
  display: block;
  width: max-content;
  text-transform: capitalize;
}
.divider {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  margin: 5px 16px;
  background-color: var(--dYellow);
}
.blog-box {
  height: 100%;
  display: block;
}
.blog-box .box-title {
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  min-height: 48px;
}
.blog-box:hover .box-title {
  color: var(--dYellow);
}
.blog-box:hover .blog-img img {
  transform: scale(1.2);
  -webkit-transform: scale(1.2);
}
.blog-img {
  width: 100%;
  height: 232px;
  margin-bottom: 24px;
  overflow: hidden;
  border-radius: 24px;
}
.blog-img img {
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
}
.review-swiper {
  padding-bottom: 72px;
}
.review-swiper .swiper-pagination-bullet {
  width: 18px;
  height: 18px;
}
.review-swiper .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--dYellow);
}
.review-box {
  display: inline-flex;
  padding: 32px;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  border-radius: 20px;
  background: #eee;
  min-height: 400px;
  justify-content: space-between;
}
.rev-txt {
  color: var(--erieBlack);
  font-size: 30px;
  font-style: normal;
  font-weight: 300;
  line-height: 1.4;
}
.rev-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
}
.rev-img {
  width: 72px;
  height: 72px;
}
.custom-section {
  border-radius: 30px;
  position: relative;
  overflow: hidden;
}
.custom-section .container {
  position: relative;
  z-index: 1;
}
.custom-bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 0;
  background-color: var(--erieBlack);
  transform: scale(0);
  transform-origin: center;
}
.custom-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 54px;
  min-height: calc(100svh - var(--header-height));
}
.custom-data {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.custom-data .button + .button {
  margin-left: 16px;
}
.custom-data .sec-title {
  margin-bottom: 24px;
}
.c-img {
  position: absolute;
  box-shadow: 0px 27px 33px 0px rgba(0, 0, 0, 0.36);
}
.c-img.c1 {
  top: 10%;
  left: 80px;
  width: 200px;
}
.c-img.c2 {
  top: 0;
  left: 20px;
  width: 180px;
  border-radius: 50%;
  bottom: 0;
  height: 180px;
  overflow: hidden;
  margin: auto 0;
  opacity: 1;
}
.c-img.c3 {
  bottom: 10%;
  left: 20%;
  width: 150px;
  border-radius: 75px;
  overflow: hidden;
}
.c-img.c4 {
  top: 10%;
  right: 80px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
}
.c-img.c5 {
  top: 0;
  right: 20px;
  width: 200px;
  height: 115px;
  border-radius: 50px;
  bottom: 0;
  overflow: hidden;
  margin: auto 0;
}
.c-img.c6 {
  bottom: 10%;
  right: 20%;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  overflow: hidden;
}
.prod-details-wrap {
  position: relative;
}
.prod-img {
  position: absolute;
  z-index: 1;
  opacity: 1;
  visibility: visible;
}
.prod-img img {
  object-fit: contain;
  object-position: center;
}
.prod-front,
.prod-back {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.hero-img-wrap {
  position: relative;
  width: 450px;
  height: 550px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}
.hero-img-wrap img {
  object-fit: contain;
  z-index: 1;
  position: relative;
}
.hero-bg {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  overflow: hidden;
  z-index: 0;
  background: var(--lYellow);
}
.subProd-list > li {
  padding: 40px 0;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  border-bottom: 1px solid var(--dimGray);
}
.subProd-list > li .sec-para {
  padding-top: 12px;
  display: none;
}
.subProd-list > li:first-child {
  padding-top: 0;
}
.subProd-list > li:first-child::before {
  top: 6px;
}
.subProd-list > li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
.subProd-list > li:hover {
  padding-left: 24px;
}
.subProd-list > li:hover .subProd-name {
  color: var(--black);
}
.subProd-list > li:hover::before {
  opacity: 1;
}
.subProd-list > li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 60px;
  width: 12px;
  height: 12px;
  background: var(--lYellow);
  border-radius: 50%;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
}
.subProd-list > li.active {
  padding-left: 24px;
}
.subProd-list > li.active .subProd-name {
  color: var(--black);
}
.subProd-list > li.active::before {
  opacity: 1;
}
.subProd-list > li.active .sec-para {
  display: block;
}
.subProd-list img {
  display: none;
}
.subProd-name {
  color: var(--dimGray);
  font-size: var(--fs36);
  font-weight: 600;
  line-height: 120%;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
}
.subProd-img {
  position: sticky;
  top: calc(var(--header-height) + 14px);
  background: var(--dYellow);
  border-radius: 24px;
  overflow: hidden;
}
.subProd-img img {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
}
.subProd-img img.active {
  opacity: 1;
  visibility: visible;
}
.subProd-img.grid-img img {
  object-position: center;
}
.hero-prod-bg {
  position: absolute;
  left: 0;
  right: 0;
  width: 460px;
  height: 630px;
  z-index: 0;
  margin: 0 auto;
}
.range-content-wrap {
  display: flex;
  justify-content: space-between;
  column-gap: 40px;
  row-gap: 50px;
  flex-wrap: wrap;
  position: absolute;
  top: 0;
  height: 100%;
  align-items: flex-start;
  padding-top: 150px;
  width: 100%;
}
.range-sticky {
  position: relative;
}
.rc-box {
  width: 48%;
}
.rc-box:nth-child(even) {
  align-self: center;
}
.rc-box:nth-child(even) .rc-wrap {
  margin-left: auto;
}
.rc-wrap {
  max-width: 300px;
}
.grid-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row-reverse;
}
.grid-wrap .grid-img {
  position: relative;
}
.grid-wrap .grid-img img {
  object-position: center;
}
.grid-wrap .grid-title {
  margin-bottom: 16px;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
}
.grid-wrap .grid-para {
  margin-bottom: 24px;
}
.grid-sol {
  max-width: 500px;
  display: block;
}
.grid-sol:not(.active) {
  overflow: hidden;
}
.grid-sol:not(.active) .grid-title {
  color: #9d9da8;
}
.grid-sol:not(.active) .grid-para {
  height: 0;
  opacity: 0;
  visibility: hidden;
}
.grid-sol:not(.active) .button {
  height: 0;
  opacity: 0;
  visibility: hidden;
}
.grid-sol:first-child {
  padding-bottom: 38px;
  border-bottom: 1px solid var(--bGrey);
}
.grid-sol:last-child {
  padding-top: 48px;
}
.sol-list {
  width: 50%;
  max-width: 50%;
  flex: 1;
}
.range-img {
  width: 520px;
  height: 630px;
  margin: 0 auto;
}
.hero-img-hidden {
  opacity: 0;
}
.grid-sticky-wrap {
  position: relative;
  height: 200vh;
}
.grid-sticky-trig {
  position: absolute;
  top: 90vh;
}
.print-section {
  background-color: var(--oliveBlack);
}
.card-box {
  background: var(--erieBlack);
  border-radius: 24px;
  position: relative;
  max-height: 568px;
  height: 100vh;
}
.card-box p a {
  color: var(--dYellow);
}
.qna-wrap {
  position: absolute;
  padding: 40px 60px;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  opacity: 0;
  visibility: hidden;
  z-index: -1;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
}
.qna-wrap.active {
  opacity: 1;
  z-index: 9;
  visibility: visible;
}
.qna-wrap.active .ques-wrap {
  transform: translateY(0px);
  opacity: 1;
  visibility: visible;
}
.qna-wrap-2 {
  position: absolute;
  padding: 48px 60px;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
}
.qna-wrap-2.active {
  opacity: 1;
  visibility: visible;
}
.qna-wrap-2.active .ques-wrap {
  transform: translateY(0px);
  opacity: 1;
  visibility: visible;
}
.ques-wrap {
  width: 100%;
  max-width: 410px;
  transform: translateY(50px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  transition-delay: 0.1s;
}
.ans-overflow {
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 10px;
  height: 100%;
}
.ans {
  max-width: 600px;
  width: 100%;
  text-align: center;
  position: relative;
}
.ans .prob-title {
  margin-bottom: 20px;
}
.ans.ans-scroll {
  height: 100%;
  overflow-x: auto;
}
.ans::-webkit-scrollbar {
  width: 4px;
}
.ans::-webkit-scrollbar-track {
  border-radius: 10px;
  background: #3B3B3B;
}
.ans::-webkit-scrollbar-thumb {
  background: #F5A800;
  border-radius: 10px;
}
.ans-row.f-row {
  margin-left: -15px;
  margin-right: -15px;
}
.ans-row.f-row .f-col {
  padding: 0 15px;
  margin-bottom: 15px;
}
.ans-card {
  padding: 6px 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--oliveBlack);
  border-radius: 10px;
  overflow: hidden;
  width: 100%;
  height: 100%;
  cursor: pointer;
  border: 1px solid transparent;
  min-height: 90px;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
}
.ans-card input[type="radio"] {
  accent-color: #f5a800;
  width: 20px;
  height: 20px;
  background: #fff;
}
.ans-card input[type="checkbox"] {
  accent-color: #f5a800;
  width: 20px;
  height: 20px;
  background: #fff;
  appearance: none;
}
.ans-card input[type="checkbox"]:checked {
  width: 20px;
  height: 20px;
  border: 3px solid #fff;
  background: #f5a800;
}
.ans-card.active {
  border-color: var(--white);
}
.ans-card.white {
  background: #d9d9d9;
}
.ans-content {
  width: 100%;
  flex: 1;
  text-align: left;
}
.ans-content textarea {
  width: 100%;
  margin-top: 5px;
  max-height: 100px;
  border-radius: 8px;
}
#autoresizing {
  display: block;
  overflow: hidden;
  resize: none;
}
.hidden {
  position: absolute;
  visibility: hidden;
}
.hidden-btn {
  visibility: hidden;
  opacity: 0;
}
input[type="radio"]:checked + .ans-card {
  border-color: var(--white);
}
.ans-img {
  width: 100%;
  height: auto;
  max-height: 150px;
  max-width: 150px;
}
.ans-img img {
  object-fit: contain;
  object-position: center;
  height: 100%;
  width: 100%;
}
.ans-img.small {
  max-height: 90px;
  max-width: 90px;
}
.ans-para {
  color: var(--erieBlack);
  text-align: left;
  font-size: var(--fs12);
  font-weight: 400;
  line-height: normal;
  display: block;
  margin-top: 3px;
}
/* 
=======
WRAPPER
=======
*/
.c-rng__wrapper .c-rng {
  bottom: 1rem;
  left: 0;
  margin: 0;
  position: absolute;
}
.c-rng__wrapper .c-rng__output {
  position: absolute;
  top: 0;
}
.c-rng__wrapper {
  --rng-ticks-fill: #b0b0b0;
  flex: 1;
  height: 4rem;
  /* TODO */
  margin-bottom: 1rem;
  position: relative;
}
/*
  ========
  CIRCULAR
  ========
  */
.c-rng--circular {
  --circle-bgc: #fff;
  --circle-size: 430px;
  --track-bgc: #d9d9d9;
  --track-fill: cornflowerblue;
  --thumb-size: 24px;
  --gradient-start: 0deg;
  --gradient-end: 0deg;
  background-image: conic-gradient(var(--track-bgc) 0, var(--track-bgc) var(--gradient-start), var(--track-fill) var(--gradient-start), var(--track-fill) var(--gradient-end), var(--track-bgc) var(--gradient-end), var(--track-bgc));
  border-radius: 50%;
  display: inline-block;
  height: var(--circle-size);
  margin: 0.25rem;
  position: relative;
  touch-action: none;
  width: var(--circle-size);
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  margin: auto;
}
.c-rng--circular::before {
  align-items: center;
  background-color: #d9d9d9;
  border-radius: 50%;
  content: attr(data-value);
  display: flex;
  font-size: 0;
  height: calc(var(--circle-size) - (var(--thumb-size) * 2));
  justify-content: center;
  left: var(--thumb-size);
  position: absolute;
  top: var(--thumb-size);
  width: calc(var(--circle-size) - (var(--thumb-size) * 2));
  border: 30px solid var(--erieBlack);
  background-image: url(../img/tshirt.png);
  background-size: 60%;
  background-position: center;
  background-repeat: no-repeat;
}
.c-rng--circular::after {
  background-color: var(--track-fill);
  border-radius: 50%;
  content: "";
  height: var(--thumb-size);
  position: absolute;
  left: calc(50% - (var(--thumb-size) / 2));
  width: var(--thumb-size);
}
.c-rng--circular-output {
  background: transparent;
  position: absolute;
  top: 50%;
  left: 50%;
  height: var(--thumb-size);
  margin-top: calc(var(--thumb-size) / -2);
  transform: rotate(var(--angle));
  transform-origin: center left;
  width: 50%;
  z-index: 1;
}
.c-rng--circular-output::before {
  border: var(--thumb-bdw, 2px) solid var(--track-fill);
  border-radius: 50%;
  box-shadow: var(--thumb-bxsh, none);
  box-sizing: border-box;
  content: attr(data-value);
  cursor: grab;
  display: inline-block;
  height: 50px;
  position: absolute;
  right: 0;
  width: 50px;
  transform: translateX(12px);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
  z-index: 1;
  padding: 8px 0;
}
.c-rng--circular-output::after {
  background-color: var(--thumb-bgc, #ffffff);
  border: 10px solid rgba(217, 217, 217, 0.2);
  border-radius: 50%;
  box-shadow: 0px 0px 0px 10px rgba(217, 217, 217, 0.2);
  box-sizing: border-box;
  content: "units";
  cursor: grab;
  display: inline-block;
  height: 50px;
  position: absolute;
  right: 0;
  width: 50px;
  transform: translateX(12px);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
  z-index: 0;
  padding: 15px 0;
}
.reange-value {
  color: #fff;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.16;
  opacity: 0.3;
  position: absolute;
}
.range-di {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 480px;
  max-width: 520px;
}
.val1 {
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.val2 {
  top: 75px;
  right: 55px;
}
.val3 {
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.val4 {
  bottom: 75px;
  right: 55px;
}
.val5 {
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.val6 {
  bottom: 75px;
  left: 55px;
}
.val7 {
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.val8 {
  top: 75px;
  left: 55px;
}
.appoint-box {
  text-align: left;
}
/* Modifiers */
.c-rng--tomato {
  --circle-bgc: #fff;
  --track-bgc: rgba(217, 217, 217, 0.3);
  --track-fill: #eda301;
}
.qform-wrap {
  max-width: 475px;
}
.input-form {
  max-width: 475px;
  margin-bottom: 16px;
  margin-right: auto;
}
.input {
  background-color: var(--white);
  border-radius: 8px;
  padding: 13px 10px 13px 24px;
  font-size: var(--fs16);
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  color: var(--black);
  width: 100%;
  border: 0;
}
.input::placeholder {
  color: #686868;
}
.input::-moz-placeholder {
  color: #686868;
}
.input::-webkit-input-placeholder {
  color: #686868;
}
.desc-wrap {
  position: relative;
  height: 400px;
  width: 500px;
  margin-top: 48px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.opt-list {
  --speed: 0.06;
  --move-x: calc(var(--page-x) * 1.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  visibility: visible;
  cursor: pointer;
  flex-shrink: 0;
  box-shadow: 0px 27px 33px 0px rgba(0, 0, 0, 0.36);
  position: absolute;
}
.opt1 {
  transform-style: preserve-3d;
  --width: 251px;
  --height: 68px;
  --speed: 0.035;
  --left: -80px;
  --top: 30px;
  border-radius: 57.5px;
  transform: rotate(24.298deg) translate(calc(var(--move-x) * calc(var(--speed) * 1px)), calc(var(--page-y) * calc(var(--speed) * 1px)));
  background: #f5a800;
  height: var(--height);
  width: var(--width);
  left: var(--left);
  top: var(--top);
}
.opt2 {
  transform-style: preserve-3d;
  --width: 118px;
  --height: 118px;
  --left: -60px;
  --right: 0;
  --top: 0;
  --speed: 0.03;
  border-radius: 77.5px;
  background: #fff2df;
  margin: 0 auto;
  height: var(--height);
  width: var(--width);
  left: var(--left);
  top: var(--top);
  right: var(--right);
  transform: translate(calc(var(--move-x) * calc(var(--speed) * 1px)), calc(var(--page-y) * calc(var(--speed) * 1px)));
}
.opt3 {
  transform-style: preserve-3d;
  --width: 118px;
  --height: 118px;
  --left: -40px;
  --bottom: 50px;
  --speed: 0.04;
  border-radius: 77.5px;
  background: #f18a00;
  height: var(--height);
  width: var(--width);
  left: var(--left);
  bottom: var(--bottom);
  transform: translate(calc(var(--move-x) * calc(var(--speed) * 1px)), calc(var(--page-y) * calc(var(--speed) * 1px)));
}
.opt4 {
  transform-style: preserve-3d;
  --width: 194px;
  --height: 81px;
  --left: -120px;
  --right: 0;
  --bottom: 60px;
  --speed: 0.045;
  transform: rotate(-26.088deg) translate(calc(var(--move-x) * calc(var(--speed) * 1px)), calc(var(--page-y) * calc(var(--speed) * 1px)));
  border-radius: 57.5px;
  background: #3b3b3b;
  margin: 0 auto;
  height: var(--height);
  width: var(--width);
  left: var(--left);
  bottom: var(--bottom);
  right: var(--right);
}
.opt12 {
  transform-style: preserve-3d;
  --width: 194px;
  --height: 81px;
  --right: 100px;
  --top: 120px;
  --speed: 0.065;
  transform: rotate(-28.48deg) translate(calc(var(--move-x) * calc(var(--speed) * 1px)), calc(var(--page-y) * calc(var(--speed) * 1px)));
  border-radius: 57.5px;
  background: #3b3b3b;
  height: var(--height);
  width: var(--width);
  top: var(--top);
  right: var(--right);
}
.opt13 {
  transform-style: preserve-3d;
  --width: 118px;
  --height: 118px;
  --right: 110px;
  --bottom: 50px;
  --speed: 0.065;
  width: 118px;
  height: 118px;
  border-radius: 77.5px;
  background: #de9901;
  height: var(--height);
  width: var(--width);
  bottom: var(--bottom);
  right: var(--right);
  transform: rotate(-26.088deg) translate(calc(var(--move-x) * calc(var(--speed) * 1px)), calc(var(--page-y) * calc(var(--speed) * 1px)));
}
input[name="brand"]:checked + label {
  border: 2px solid #12E868;
}
input[name="brand"]:checked + label::after {
  content: url(../img/check.svg);
  position: absolute;
  top: 0;
  right: 0;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
}
.logo-icon {
  width: 140px;
  margin: 0 auto 32px;
}
.qna-10 {
  text-align: center;
  justify-content: center;
}
.desc-wrap-2 {
  position: relative;
  height: 350px;
  width: 600px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.opt5 {
  width: 251px;
  height: 68px;
  flex-shrink: 0;
  border-radius: 57.5px;
  background: #f5a800;
  box-shadow: 0px 27px 33px 0px rgba(0, 0, 0, 0.36);
  transform: rotate(24.298deg);
  position: absolute;
  left: 0;
  top: 30px;
}
.opt6 {
  width: 118px;
  height: 118px;
  flex-shrink: 0;
  border-radius: 77.5px;
  background: #f18a00;
  box-shadow: 0px 27px 33px 0px rgba(0, 0, 0, 0.36);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.opt7 {
  width: 118px;
  height: 118px;
  flex-shrink: 0;
  border-radius: 77.5px;
  background: #fff2df;
  box-shadow: 0px 27px 33px 0px rgba(0, 0, 0, 0.36);
  position: absolute;
  left: 50%;
  top: 0%;
  transform: translateX(-50%);
}
.opt8 {
  width: 194px;
  height: 81px;
  flex-shrink: 0;
  border-radius: 57.5px;
  background: #3b3b3b;
  box-shadow: 0px 27px 33px 0px rgba(0, 0, 0, 0.36);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-8.853deg);
}
.opt9 {
  width: 194px;
  height: 81px;
  flex-shrink: 0;
  border-radius: 57.5px;
  background: #3b3b3b;
  box-shadow: 0px 27px 33px 0px rgba(0, 0, 0, 0.36);
  transform: rotate(-26.088deg);
  position: absolute;
  right: 30px;
  top: 30px;
}
.opt11 {
  width: 118px;
  height: 118px;
  flex-shrink: 0;
  border-radius: 77.5px;
  background: #fff2df;
  box-shadow: 0px 27px 33px 0px rgba(0, 0, 0, 0.36);
  position: absolute;
  left: 100px;
  bottom: 0;
}
.opt10 {
  width: 251px;
  height: 68px;
  flex-shrink: 0;
  border-radius: 57.5px;
  background: #f5a800;
  box-shadow: 0px 27px 33px 0px rgba(0, 0, 0, 0.36);
  position: absolute;
  right: 70px;
  bottom: 70px;
  transform: rotate(-30deg);
}
.touch-box {
  display: flex;
  width: 340px;
  padding: 32px;
  align-items: center;
  gap: 32px;
  border-radius: 20px;
  background: #eee;
  margin: 0 auto 20px;
}
.touch-icon {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
}
.range-sticky-wrap {
  position: relative;
  height: 200vh;
}
.num-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.back-button {
  width: 52px;
  height: 52px;
  cursor: pointer;
  position: absolute;
  left: 20px;
  bottom: 20px;
  z-index: 9;
}
.back-button img {
  width: 100%;
  height: 100%;
}
.next-button {
  position: absolute;
  right: 20px;
  bottom: 20px;
  cursor: pointer;
  z-index: 9;
}
.html-btn {
  opacity: 0;
  position: absolute;
  visibility: hidden;
}
.submit-button {
  position: absolute;
  right: 20px;
  bottom: 20px;
  opacity: 0;
  visibility: hidden;
}
.num-list {
  display: flex;
  align-items: center;
  white-space: nowrap;
  font-size: var(--fs14);
  font-weight: 500;
  line-height: 1.16;
  color: rgba(31, 31, 31, 0.4);
}
.num-list li {
  position: relative;
}
.num-list li.active {
  color: var(--erieBlack);
}
.num-list li:not(:last-child) {
  padding-right: 48px;
}
.num-list li:not(:last-child)::after {
  content: "";
  width: 50%;
  max-width: 30px;
  position: absolute;
  top: 8px;
  right: 10px;
  height: 1px;
  background-color: var(--erieBlack);
}
.footer-bottom {
  background-color: var(--erieBlack);
  margin-top: 64px;
}
.footer-bottom-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
}
.footer-bottom-wrap p {
  color: #fff;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  flex: 1;
}
.footer-bottom-wrap p:last-child {
  text-align: right;
}
.footer-bottom-wrap p a {
  color: #fff;
  font-weight: 600;
}
.social-media {
  display: flex;
  align-items: center;
  gap: 30px;
  flex: 1;
  justify-content: center;
}
.footer-links ul {
  margin-bottom: 40px;
}
.footer-links:last-child ul {
  margin-bottom: 0;
}
.footer-links h4 {
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 16px;
  margin-bottom: 16px;
}
.footer-links a {
  color: #000;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  margin-bottom: 16px;
  line-height: 14px;
  display: block;
  cursor: pointer;
}
.footer-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-top {
  margin-bottom: 50px;
}
.footer-logo {
  width: 260px;
}
.footer-logo img {
  width: 100%;
  object-fit: contain;
}
.footer-elem {
  width: 270px;
  filter: drop-shadow(0 -13px 45px rgba(0, 0, 0, 0.1));
}
.footer-elem img {
  width: 100%;
  object-fit: contain;
}
.form-section {
  padding-top: 10px;
}
.ques-input {
  margin-top: 40px;
}
.ques-input input {
  border: 0;
  padding: 16px;
  border-radius: 10px;
  max-width: 100px;
}
.ques-input span {
  font-size: 16px;
  line-height: 1.5;
  color: #fff;
  margin-left: 10px;
}
.card-elem {
  position: absolute;
  left: 50px;
  top: 0;
  width: 160px;
}
.faq-wrap {
  max-width: 1000px;
  margin: 0 auto;
}
.sol-acc-images {
  position: relative;
}
.sol-acc-img {
  height: 557px;
  border-radius: 24px;
  width: 100%;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: 0.5s;
}
.sol-acc-img.active {
  opacity: 1;
  position: relative;
  z-index: 1;
}
.sol-acc-img img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
.sol-acc {
  padding-bottom: 24px;
  margin-bottom: 24px;
  position: relative;
  border-bottom: 1px solid #ECECEC;
  cursor: pointer;
}
.sol-acc::after {
  content: url(../img/accordian-plus.svg);
  position: absolute;
  right: 0;
  top: 0;
  filter: grayscale(1);
  transition: 0.5s;
  transform: rotate(0deg);
}
.sol-acc h4 {
  color: #9D9DA8;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.5;
  text-transform: capitalize;
  padding-right: 40px;
}
.sol-acc p {
  color: #3B3B3B;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.6;
  margin-top: 16px;
}
.sol-acc.active::after {
  filter: grayscale(0);
  transform: rotate(45deg);
}
.sol-acc.active h4 {
  color: #1F1F1F;
}
.sol-content {
  display: none;
  padding-top: 10px;
}
.sol-acc-wrap {
  display: flex;
}
.sol-acc-wrap .sol-acc-left {
  width: 50%;
  position: sticky;
  top: var(--header-height);
  height: 100%;
}
.sol-acc-wrap .sol-acc-right {
  padding-left: 120px;
  width: 50%;
}
.sol-acc-wrap.sol-acc-wrap-sm {
  align-items: center;
}
.sol-acc-wrap.sol-acc-wrap-sm .sol-acc-img {
  height: 450px;
}
.sol-acc-wrap.sol-acc-wrap-sm .sol-acc-img img {
  width: auto;
  border-radius: 24px;
}
.sol-acc-wrap.sol-acc-wrap-sm .sol-acc-right {
  padding-left: 70px;
}
.cli-img {
  width: 100%;
  height: 400px;
}
.cli-img img {
  border-radius: 24px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cli-row {
  align-items: center;
  margin-bottom: 60px;
}
.cli-row:nth-child(odd) {
  flex-direction: row-reverse;
}
.pt0 {
  padding-top: 0 !important;
}
.sol-acc-content .sec-title {
  margin-bottom: 24px;
}
.append-wrap {
  display: flex;
  align-items: center;
  background-color: var(--white);
  border-radius: 8px;
  padding: 13px 10px 13px 24px;
  font-size: var(--fs16);
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  color: var(--black);
  width: 100%;
  border: 0;
}
.append-wrap input {
  flex: 1;
  outline: 0;
  border: 0;
  font-size: var(--fs16);
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  color: var(--black);
}
.append-wrap input::placeholder {
  color: #686868;
}
.append-wrap input::-moz-placeholder {
  color: #686868;
}
.append-wrap input::-webkit-input-placeholder {
  color: #686868;
}
.nfimg-wrap {
  max-width: 530px;
  margin: 0 auto 100px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 10px;
}
.nfo {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  overflow: hidden;
  position: relative;
  flex: 1;
  border-radius: 50%;
}
.nfo span {
  max-width: 180px;
  height: 200px;
  border: 36px solid #1f1f1f;
  position: relative;
  z-index: 0;
  display: block;
  width: 100%;
  border-radius: 50%;
  animation: nf0a 3s ease-in-out 0s infinite alternate-reverse running;
}
.nfo img {
  position: absolute;
  z-index: 1;
  transform: translateY(30%);
  width: 100%;
  height: 100%;
  object-fit: contain;
  animation: nfia 2.7s ease-in-out 0.5s infinite alternate-reverse running;
}
.nfn {
  flex: 1;
  max-width: 165px;
  transform: translateY(60px);
  animation: nf4a 3s ease-in-out 0s infinite alternate-reverse running;
}
@keyframes nf4a {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes nf0a {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes nfia {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(30%);
  }
}
.nf-page {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  min-height: 450px;
}
.nf-page .grid-para {
  margin-bottom: 26px;
}
@media (min-width: 1441px) and (max-width: 1681px) {
  :root {
    --fs96: 92px;
    --fs72: 68px;
    --fs60: 58px;
    --fs48: 46px;
  }
  .container {
    max-width: 1140px;
  }
  .client-box {
    padding: 40px 0;
  }
  .heart-gif {
    margin-bottom: 6px;
  }
  .client-swiper-wrap {
    height: 80px;
  }
  .client-logo img {
    height: 36px;
  }
  .range-img {
    width: 350px;
    height: 480px;
  }
  .c-img.c1 {
    width: 160px;
  }
  .c-img.c2 {
    width: 140px;
    height: 140px;
  }
  .c-img.c3 {
    width: 125px;
  }
  .c-img.c4 {
    width: 140px;
    height: 140px;
  }
  .c-img.c5 {
    width: 170px;
    height: 100px;
  }
  .c-img.c6 {
    width: 140px;
    height: 140px;
  }
  .sol-acc-wrap .sol-acc-right {
    padding-left: 60px;
  }
  .sol-acc-img {
    height: 530px;
  }
  .hero-img-wrap {
    width: 350px;
    height: 350px;
  }
  .hero-bg {
    width: 250px;
    height: 250px;
  }
  .c-img.c1 {
    width: 150px;
  }
  .c-img.c2 {
    width: 130px;
    height: 130px;
  }
  .c-img.c3 {
    width: 100px;
  }
  .c-img.c4 {
    width: 100px;
    height: 100px;
  }
  .c-img.c5 {
    width: 160px;
    height: 85px;
  }
  .c-img.c6 {
    width: 130px;
    height: 130px;
  }
}
/* Small devices */
@media (max-width: 1366px) {
  :root {
    --fs96: 92px;
    --fs72: 68px;
    --fs60: 58px;
    --fs48: 46px;
  }
  .container {
    max-width: 1140px;
  }
  .container-sm {
    max-width: 1024px;
  }
  .client-box {
    padding: 40px 0;
  }
  .heart-gif {
    margin-bottom: 6px;
  }
  .client-swiper-wrap {
    height: 80px;
  }
  .client-logo img {
    height: 36px;
  }
  .range-img {
    width: 420px;
    height: 530px;
  }
  .c-img.c1 {
    width: 160px;
  }
  .c-img.c2 {
    width: 140px;
    height: 140px;
  }
  .c-img.c3 {
    width: 125px;
  }
  .c-img.c4 {
    width: 140px;
    height: 140px;
  }
  .c-img.c5 {
    width: 170px;
    height: 100px;
  }
  .c-img.c6 {
    width: 140px;
    height: 140px;
  }
  .sol-acc-wrap .sol-acc-right {
    padding-left: 60px;
  }
  .sol-acc-img {
    height: 530px;
  }
}
@media (max-width: 1200px) {
  :root {
    --fs96: 90px;
    --fs72: 66px;
    --fs60: 56px;
    --fs48: 44px;
    --fs36: 32px;
  }
  .container {
    max-width: 1024px;
  }
  .container-sm {
    max-width: 990px;
  }
  .qa-left {
    max-width: 400px;
  }
  .subProd-list > li::before {
    top: 26px;
  }
  .rc-box:nth-child(even) {
    flex: 1;
  }
  .sol-acc-wrap .sol-acc-right {
    padding-left: 50px;
  }
  .sol-acc-img {
    height: 500px;
  }
  .sol-acc p {
    margin-top: 12px;
  }
  .sol-acc {
    padding-bottom: 12px;
    margin-bottom: 12px;
  }
}
@media (max-width: 1100px) {
  .rev-txt {
    font-size: 26px;
  }
  .c-img.c1 {
    width: 150px;
  }
  .c-img.c2 {
    width: 120px;
    height: 120px;
  }
  .c-img.c3 {
    width: 120px;
  }
  .c-img.c4 {
    width: 120px;
    height: 120px;
  }
  .c-img.c5 {
    width: 150px;
    height: 85px;
  }
  .c-img.c6 {
    width: 120px;
    height: 120px;
  }
  .opt1 {
    --width: 200px;
    --height: 50px;
    --left: 0px;
    --top: 60px;
  }
  .opt2 {
    --width: 118px;
    --height: 90px;
    --left: 0px;
    --right: 0;
    --top: 0;
  }
  .opt3 {
    --width: 118px;
    --height: 60px;
    --left: 15%;
    --bottom: 0;
    margin: auto 0;
    top: 0;
  }
  .opt4 {
    --width: 170px;
    --height: 64px;
    --left: -100px;
    --right: 0;
    --bottom: 70px;
  }
  .opt12 {
    --width: 165px;
    --height: 62px;
    --right: 60px;
    --top: 120px;
  }
  .opt13 {
    --width: 90px;
    --height: 90px;
    --right: 120px;
    --bottom: 90px;
  }
  .ans-title {
    font-size: var(--fs16);
  }
}
@media (max-width: 1024px) {
  :root {
    --fs96: 80px;
  }
  .container {
    max-width: 800px;
  }
  .container-sm {
    max-width: 768px;
  }
  .rev-section {
    padding-top: 180px;
  }
  .client-section,
  .qa-section,
  .blog-section {
    padding: 70px 0;
  }
  .qa-wrap {
    flex-wrap: wrap;
  }
  .qa-left {
    max-width: 550px;
    margin: 0 auto;
  }
  .qa-right {
    max-width: 550px;
    margin: 0 auto;
  }
  .c-img.c1 {
    top: 120px;
    right: 0;
    left: unset;
  }
  .c-img.c2 {
    top: 20px;
    right: 0;
    left: 0;
    margin: 0 auto;
  }
  .c-img.c3 {
    top: 50px;
    bottom: unset;
    left: 0;
  }
  .c-img.c4 {
    top: unset;
    bottom: 120px;
    right: 0;
  }
  .c-img.c5 {
    top: unset;
    bottom: 20px;
    right: 0;
    left: 0;
    margin: 0 auto;
  }
  .c-img.c6 {
    top: unset;
    bottom: 120px;
    right: unset;
    left: 0;
  }
  .custom-img-wrap {
    min-height: 210px;
  }
  .qna-wrap,
  .qna-wrap-2 {
    flex-wrap: wrap;
    justify-content: center;
  }
  .subProd-img {
    display: none;
  }
  .subProd-list img {
    display: block;
  }
  .subProd-list li img {
    height: 0;
    width: auto;
  }
  .subProd-list li.active img {
    height: 300px;
  }
  .subProd-name {
    padding-bottom: 10px;
  }
  .grid-content {
    margin-right: auto;
  }
  .qna-wrap {
    padding: 24px 24px;
  }
  .card-box {
    max-height: unset;
  }
  .ques-wrap {
    max-width: 100%;
  }
  .card-elem {
    right: 50px;
    left: unset;
    display: none;
  }
  .ans-img.small {
    max-height: 80px;
    max-width: 60px;
  }
  .range-di {
    height: 380px;
    max-width: 400px;
  }
  .c-rng--circular {
    --circle-size: 300px;
    --thumb-size: 16px;
  }
  .c-rng--circular::before {
    border: 20px solid var(--erieBlack);
  }
  .c-rng--circular-output::before,
  .c-rng--circular-output::after {
    transform: translateX(12px) translateY(-10px);
  }
  .sol-acc-wrap .sol-acc-right {
    padding-left: 30px;
  }
  .sol-acc-content .sec-title {
    margin-bottom: 16px;
    font-size: 36px;
  }
  .sol-acc-img {
    height: 420px;
  }
  .internal-page-title br {
    display: none;
  }
}
@media (max-width: 800px) {
  :root {
    --fs96: 72px;
    --fs72: 52px;
    --fs48: 42px;
  }
  .container {
    max-width: 100%;
  }
  .container-sm {
    max-width: 600px;
  }
  .footer-bottom {
    margin-top: 30px;
  }
  .footer-elem {
    width: 200px;
  }
  .footer-logo {
    width: 200px;
  }
  .footer-list-wrap .f-row {
    row-gap: 24px;
  }
  .footer-bottom-wrap {
    flex-direction: column;
    padding: 30px 0;
  }
  .footer-bottom-wrap p {
    text-align: center;
  }
  .footer-links ul {
    margin-bottom: 30px;
  }
  .grid-sticky .grid-wrap {
    flex-direction: column;
    flex-wrap: wrap;
  }
  .grid-sticky .grid-img {
    height: 290px;
    width: 100%;
    max-width: unset;
    flex: unset;
  }
  .sol-list {
    width: 100%;
    max-width: unset;
  }
  .sol-acc-wrap .sol-acc-left {
    width: 100%;
    position: static;
  }
  .sol-acc-wrap .sol-acc-right {
    width: 100%;
    margin-top: 40px;
  }
  .sol-acc-wrap {
    max-width: 400px;
    margin: auto;
  }
  .sol-acc-img {
    height: 360px;
  }
  .sol-acc-wrap .sol-acc-right {
    padding-left: 0;
  }
  .sol-acc-wrap {
    flex-direction: column;
  }
  .grid-sol {
    max-width: 100%;
  }
  .grid-sol:first-child {
    padding-bottom: 18px;
  }
  .grid-sol:last-child {
    padding-top: 18px;
  }
  .num-box {
    margin-bottom: 10px;
  }
  .qna-wrap,
  .qna-wrap-2 {
    justify-content: flex-start;
    align-items: flex-start;
  }
}
@media (min-width: 768px) and (max-width: 1190px) and (min-height: 990px) and (max-height: 1366px) {
  :root {
    --fs96: 80px;
    --fs72: 66px;
    --fs48: 44px;
  }
  .card-box {
    max-height: 750px;
  }
  .qna-wrap,
  .qna-wrap-2 {
    flex-direction: column;
  }
}
@media (max-width: 640px) {
  .prob-icon {
    width: 70px;
    height: 70px;
  }
  :root {
    --fs96: 64px;
  }
  .prob-box .sec-para {
    max-width: 100%;
  }
  .client-logo img {
    height: 30px;
  }
  .client-swiper-wrap {
    height: 60px;
  }
  .client-box .sec-title br {
    display: none;
  }
  .rev-details {
    flex: 1;
  }
  .c-img.c1 {
    width: 160px;
  }
  .c-img.c2 {
    width: 140px;
    height: 140px;
  }
  .c-img.c3 {
    width: 130px;
  }
  .c-img.c4 {
    width: 130px;
    height: 130px;
  }
  .c-img.c5 {
    width: 160px;
    height: auto;
  }
  .c-img.c6 {
    width: 130px;
    height: 130px;
  }
  .custom-wrap {
    padding: 32px;
  }
  .rev-section {
    margin-top: 80px;
  }
  .qna-wrap {
    padding: 16px;
  }
  .range-di {
    height: 350px;
    width: 350px;
  }
  .c-rng--circular {
    --circle-size: 220px;
    --thumb-size: 10px;
  }
  .c-rng--circular::before {
    border: 10px solid var(--erieBlack);
  }
  .val2 {
    top: 50px;
    right: 30px;
  }
  .val4 {
    bottom: 50px;
    right: 30px;
  }
  .val6 {
    bottom: 50px;
    left: 30px;
  }
  .val8 {
    top: 50px;
    left: 30px;
  }
  .desc-wrap {
    width: 100%;
  }
  .qna-wrap {
    gap: 20px;
  }
  .card-box {
    height: 730px;
  }
  .num-list {
    display: none;
  }
  .hero-img-wrap {
    width: 300px;
    height: 300px;
  }
  .hero-bg {
    width: 250px;
    height: 250px;
  }
  .desc-wrap {
    margin-top: 0;
  }
  .subProd-list > li {
    padding: 20px 0;
  }
  .comm-section.prod-grid {
    padding-top: 100px;
  }
  .prod-details-wrap .sec-head {
    padding-left: 15px;
    padding-right: 15px;
  }
  .prod-details-wrap .sec-head br {
    display: none;
  }
  .nfn {
    max-width: 145px;
    transform: translateY(30px);
  }
  .container-sm {
    max-width: 480px;
  }
}
@media (max-width: 640px) and (max-height: 700px) {
  .grid-sticky-wrap {
    height: 220vh;
  }
}
@media (max-width: 576px) {
  .rev-txt {
    font-size: 20px;
  }
  .review-box {
    padding: 16px;
  }
  .opt4 {
    --left: 0;
    --bottom: 50px;
    margin-left: 0;
  }
  .ans-img {
    max-height: 80px;
    max-width: 80px;
  }
  .ans-title {
    font-weight: 400;
  }
}
@media (max-width: 480px) {
  :root {
    --fs96: 44px;
    --fs72: 44px;
    --fs48: 36px;
    --header-height: 60px;
    --header-scroll-height: 60px;
  }
  .container-sm {
    max-width: 100%;
  }
  .prob-icon {
    width: 50px;
    height: 50px;
  }
  .c-img.c1 {
    width: 130px;
  }
  .c-img.c2 {
    width: 90px;
    height: 90px;
  }
  .c-img.c3 {
    width: 90px;
    height: 120px;
  }
  .c-img.c4 {
    width: 80px;
    height: 80px;
  }
  .c-img.c5 {
    width: 140px;
    height: auto;
  }
  .c-img.c6 {
    width: 90px;
    height: 90px;
  }
  .custom-wrap {
    padding: 16px 0;
  }
  .footer-elem {
    width: 160px;
  }
  .footer-logo {
    width: 150px;
  }
  .range-content-wrap {
    flex-direction: column;
    width: 100%;
  }
  .rc-box {
    width: 100%;
  }
  .rc-box:nth-child(even) {
    flex: unset;
    align-self: flex-start;
  }
  .sol-acc-content .sec-title {
    font-size: 32px;
  }
  .sol-acc-img {
    height: 310px;
  }
  .sol-acc-wrap .sol-acc-right {
    margin-top: 20px;
  }
  .nfn {
    flex: 1;
    max-width: 125px;
    transform: translateY(0);
  }
  .nfimg-wrap {
    margin-bottom: 50px;
  }
}
@media (max-width: 440px) {
  :root {
    --fs96: 40px;
    --fs72: 36px;
    --fs48: 28px;
    --fs36: 24px;
    --fs24: 20px;
    --fs20: 18px;
    --fs18: 16px;
  }
  .container {
    padding: 0 15px;
  }
  .prob-box-2 {
    max-height: 240px;
  }
  .client-section,
  .rev-section,
  .qa-section,
  .blog-section {
    padding: 40px 0;
  }
  .qa-left .button + .button {
    margin-left: 10px;
  }
  .qa-box {
    align-items: flex-start;
  }
  .footer-elem {
    width: 140px;
  }
  .footer-logo {
    width: 130px;
  }
  .range-img {
    width: 320px;
    height: 400px;
  }
  .custom-data .button + .button {
    margin-left: 10px;
    margin-right: 10px;
  }
  .opt1 {
    --width: 150px;
    --height: 60px;
    --left: 0px;
    --top: 75px;
  }
  .opt2 {
    --width: 108px;
    --height: 60px;
  }
  .opt3 {
    --width: 118px;
    --height: 60px;
    --left: 0;
    --bottom: 0;
    margin: auto;
    top: 0;
    right: 0;
  }
  .opt12 {
    --width: 145px;
    --height: 62px;
    --right: 50px;
    --top: 75px;
  }
  .opt13 {
    --width: 80px;
    --height: 80px;
    --right: 50px;
    --bottom: 70px;
  }
  .page-template-products-php .page-head-sec,
  .page-template-solution .page-head-sec {
    padding-bottom: 0;
    padding-top: 16px;
  }
  .page-template-products-php .grid-img-bg,
  .page-template-solution .grid-img-bg {
    padding: 16px;
  }
  .page-template-products-php .products-grid > li,
  .page-template-solution .products-grid > li {
    gap: 20px;
  }
}
@media (max-width: 400px) {
  :root {
    --fs96: 36px;
    --fs72: 32px;
    --fs48: 24px;
    --fs36: 20px;
    --fs24: 18px;
    --fs20: 18px;
    --fs18: 16px;
  }
  .range-di {
    height: 300px;
    width: 300px;
  }
  .nfo span {
    max-width: 120px;
    height: 140px;
    border: 30px solid #1f1f1f;
  }
  .nfo img {
    transform: translateY(25%);
    width: 85%;
    height: 85%;
  }
  .nfn {
    max-width: 85px;
  }
}
.errorMsg {
  text-align: left;
  margin-top: 3px;
  color: #f00;
}
.linkedin-icon {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 30px;
  height: 30px;
}
.linkedin-icon img {
  width: 100%;
  height: 100%;
}
/**
 * Menu CSS
 */
.wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
.option {
  position: relative;
  display: flex;
  align-items: center;
}
.option .label {
  white-space: nowrap;
  padding-inline: 10px;
  text-align: center;
  color: #686868;
  padding-top: 15px;
  padding-bottom: 15px;
  cursor: pointer;
  z-index: 3;
  font-size: var(--fs18);
  transition: .3s;
  border-bottom: 1px solid #FFFFFF;
}
.option .label a {
  color: #686868;
}
.option .label.active {
  color: #F5A800;
}
.option .label.active a {
  color: #686868;
}
.option .bg {
  position: absolute;
  left: -1px;
  top: unset;
  width: 160px;
  height: 1px;
  background: #F5A800;
  border-radius: 100px;
  transition: .3s;
  z-index: 9;
  bottom: 0;
}
.wpcf7 form p {
  display: flex;
  gap: 16px 12px;
  flex-wrap: wrap;
}
.wpcf7 form p br {
  display: none;
}
span[data-name="detail"] {
  width: 100%;
  height: 130px;
}
.wpcf7-form-control-wrap {
  width: calc(50% - 6px);
}
.wpcf7-form-control-wrap textarea {
  height: 100%;
}
.wpcf7-form-control-wrap input,
.wpcf7-form-control-wrap select,
.wpcf7-form-control-wrap textarea {
  background: #fff;
  padding: 14px 24px;
  border-radius: 8px;
}
.wpcf7-form-control-wrap input.wpcf7-not-valid,
.wpcf7-form-control-wrap select.wpcf7-not-valid,
.wpcf7-form-control-wrap textarea.wpcf7-not-valid {
  border: 1px solid #F5A800;
}
.wpcf7-submit {
  display: block;
  margin: 26px auto 0;
  background: #F5A800;
  border-radius: 8px;
  padding: 15px 24px;
  font-size: 16px;
  color: #000;
  line-height: 1;
  transition: all 0.3s linear;
}
.wpcf7-submit:hover {
  background: transparent;
  color: #fff;
  border: 1px solid #f5a800;
}
.wpcf7-spinner {
  display: none;
}
@media (max-width: 640px) {
  .wpcf7 form p {
    flex-direction: column;
  }
  .wpcf7-form-control-wrap {
    width: 100%;
  }
}
.white {
  color: var(--white);
}
.orange {
  color: var(--dYellow);
}
.dim {
  color: var(--dimGray);
}
.tab-content {
  position: relative;
  overflow: hidden;
  height: 100%;
}
.tab {
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  display: none;
}
.tab:first-child {
  display: block;
}
.wpcf7-response-output,
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
  color: #fff;
}
textarea {
  resize: none;
}
.textarea-note {
  position: absolute;
  top: 10px;
  right: 10px;
  color: #888;
  z-index: 2;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.5;
}
.g-recaptcha {
  width: max-content;
  display: block;
  margin: 0 auto;
  text-align: center;
  border: 1px solid #f00;
}
.g-recaptcha > div {
  margin: 0 auto;
}
.captcha-box {
  margin-bottom: 20px;
}
.captchError {
  display: none;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 400;
  color: #f00;
}
.captchError.active {
  display: block;
}
.breadcrumbs {
  border-radius: 8px;
  background: #FFF7E6;
  display: flex;
  padding: 8px 16px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: max-content;
  margin: 0 auto;
}
.breadcrumbs a {
  color: var(--oliveBlack);
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.33;
  position: relative;
  display: block;
  padding-right: 16px;
}
.breadcrumbs a::after {
  content: '';
  position: absolute;
  width: 6px;
  height: 6px;
  background: #F5A800;
  border-radius: 50%;
  right: 0;
  top: 5px;
}
.breadcrumbs a:hover {
  color: #000;
}
.breadcrumbs p,
.breadcrumbs span {
  color: var(--oliveBlack);
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.33;
  display: block;
  max-width: 160px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
section.price-section {
  margin-top: 44px;
}
.price-header {
  display: flex;
  justify-content: space-between;
  /* align-items: center; */
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.price-header .grid-para {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.price-header-2 {
  margin-bottom: 24px;
}
.price-header-2 .grid-title {
  margin-bottom: 10px;
}
.price-table {
  display: flex;
  padding: 16px 8px;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  align-self: stretch;
  border-radius: 16px;
  background: #F5A800;
}
.price-table table {
  width: 100%;
}
.price-table thead th {
  color: #1F1F1F;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: capitalize;
  padding-bottom: 4px;
}
.price-table thead tr:first-child th {
  font-size: 18px;
  text-align: center;
  padding-bottom: 6px;
  font-weight: 600;
}
.price-table thead th:first-child {
  width: 260px;
  position: sticky;
  left: 0;
  display: block;
  background: #F5A800;
  height: 40px;
}
.price-table tbody td:not(:first-child) {
  width: 100%;
}
.price-table tbody td:not(:first-child) span {
  color: #1F1F1F;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: capitalize;
  background: #FFF;
  margin-bottom: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  height: 130px;
  min-width: 80px;
}
.price-table tbody td:last-child span {
  border-radius: 0px 8px 8px 0px;
}
.price-table tbody td:first-child {
  width: 260px;
  position: sticky;
  left: 0;
  display: block;
}
.prod-det {
  display: flex;
  align-items: center;
  gap: 16px;
  border-radius: 8px 0px 0px 8px;
  background: #FBFBFB;
  padding: 0 8px;
  margin-bottom: 4px;
  height: 130px;
}
.prod-det img {
  width: 100px;
}
.prod-det span span:first-child {
  color: #000;
  font-family: "General Sans";
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: capitalize;
  margin-bottom: 8px;
}
.prod-det span span:nth-child(2) {
  color: #000;
  font-family: "General Sans";
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: capitalize;
}
.table-responsive {
  width: 100%;
  overflow-x: auto;
}
.print-table {
  display: flex;
  padding: 16px 8px;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  align-self: stretch;
  border-radius: 16px;
  background: #F5A800;
}
.print-table table {
  width: 100%;
}
.print-table thead th {
  color: #1F1F1F;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: capitalize;
  padding-bottom: 4px;
}
.print-table tbody td span {
  color: #1F1F1F;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: capitalize;
  background: #FFF;
  display: block;
  margin-bottom: 4px;
  padding: 16px 0;
}
.print-table tbody td:last-child span {
  border-radius: 0px 8px 8px 0px;
}
.print-table tbody td:first-child span {
  border-radius: 8px 0px 0px 8px;
}
.note-wrap p {
  color: #3B3B3B;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 160%;
}
.note-wrap ul li {
  list-style: disc;
  color: #3B3B3B;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  margin-left: 40px;
}
.prod-card {
  display: flex;
  padding: 16px 0px;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  border-radius: 24px;
  background: #1F1F1F;
  text-align: center;
  width: 340px;
}
.prod-card .fabric-title {
  margin-bottom: 0;
}
.prod-time {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.prod-section {
  margin-top: 65px;
}
.finishing-card {
  display: flex;
  width: 332px;
  padding: 16px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
  border-radius: 16px;
  background: #1F1F1F;
}
.prod-swiper {
  width: 100%;
}
.prod-swiper .swiper-slide {
  width: auto;
}
.Special-card {
  display: flex;
  width: 260px;
  height: 271px;
  padding: 16px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 16px;
  background: #F18A00;
  margin-bottom: 8px;
}
.prod-swiper2 {
  max-width: 985px;
}
.prod-swiper2 .Special-card {
  width: 300px;
}
.prod-swiper2 .special-box {
  width: 300px;
  display: block;
}
.prod-swiper2 .special-box .box-title {
  margin: 10px 0;
}
.prod-swiper3 {
  max-width: 990px;
}
.prod-swiper3 .finishing-card {
  width: 470px;
  text-align: center;
}
.prod-swiper3 .finishing-card .box-title {
  margin: 10px 0;
}
.special-box {
  text-align: center;
}
.price-box {
  display: flex;
  padding: 16px;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  border-radius: 16px;
  background: #F3F3F3;
}
.price-box .right-arrow {
  width: 24px;
  height: 24px;
}
.price-img {
  width: 100px;
}
.price-left {
  display: flex;
  align-items: center;
  gap: 16px;
}
.right-arrow {
  width: 18px;
  height: 18px;
  transform: rotate(-90deg);
  aspect-ratio: 1/1;
}
.price-content {
  display: flex;
  padding: 12px 0px;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  border-bottom: 1px solid #000;
}
.price-content span:first-child {
  color: #1F1F1F;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: capitalize;
}
.price-content span:last-child {
  color: #1F1F1F;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: capitalize;
}
.price-content-wrap {
  display: flex;
  padding: 0px 16px;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
  border-radius: 0px 0px 16px 16px;
  background: #F5A800;
}
.price-accordian {
  display: none;
}
.accordion .accordion-item {
  margin-bottom: 16px;
}
.accordion button {
  position: relative;
  text-align: left;
  width: 100%;
  border: none;
  outline: none;
}
.accordion button:hover,
.accordion button:focus {
  cursor: pointer;
  color: var(--Turquoise);
}
.accordion button[aria-expanded='true'] {
  border-radius: 16px 16px 0px 0px;
}
.accordion button[aria-expanded='true'] + .accordion-content {
  opacity: 1;
  max-height: 50em;
  transition: all 500ms linear;
  will-change: opacity, max-height;
}
.accordion .accordion-content {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 500ms linear, max-height 500ms linear;
  will-change: opacity, max-height;
}
.print-responsive {
  display: none;
}
.print-responsive .price-content-wrap {
  border-radius: 16px;
  margin-bottom: 16px;
}
.quantity-num {
  display: flex;
  justify-content: space-between;
  width: calc(100% + 30px);
  margin: -17px -10px 0 -15px;
  position: relative;
  z-index: 9;
}
.quantity-num span {
  color: #1F1F1F;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.33;
  position: relative;
  min-width: 40px;
}
.quantity-num span:after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: -16px;
  width: 8px;
  height: 8px;
  flex-shrink: 0;
  background: #fff;
  border-radius: 50%;
}
.noUi-target {
  width: 100%;
}
.noUi-connect {
  background: #F5A800;
  border-radius: 30px;
}
.noUi-handle:after,
.noUi-handle:before {
  content: none;
}
.noUi-horizontal .noUi-handle {
  width: 18px;
  height: 18px;
  box-shadow: none;
  border-radius: 50%;
  border: 1px solid #F5A800;
  right: -10px;
  top: -4px;
  box-shadow: 0px 0px 5px 5px rgba(245, 168, 0, 0.2);
}
.noUi-connects {
  border-radius: 30px;
}
.noUi-target {
  box-shadow: none;
  border: 0;
  background: #464545;
  border-radius: 30px;
}
.noUi-horizontal {
  height: 10px;
}
.noUi-marker-horizontal.noUi-marker:not(.noUi-marker-large) {
  display: none;
}
.noUi-marker-horizontal.noUi-marker-large {
  top: -9px;
  width: 8px;
  height: 8px;
  flex-shrink: 0;
  background: #fff;
  border-radius: 50%;
  margin: 0 auto;
}
.noUi-value-horizontal {
  -webkit-transform: translate(-50%, 0%);
  transform: translate(-50%, 0%);
  color: #1F1F1F;
  text-align: center;
  font-family: "General Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.33;
}
.noUi-value-horizontal[data-value="36"]::after {
  content: '';
  position: absolute;
  left: 11px;
  right: 0;
  margin: 0 auto;
  top: -19px;
  width: 8px;
  height: 8px;
  flex-shrink: 0;
  background: #fff;
  border-radius: 50%;
}
.noUi-value-horizontal[data-value="1000"]::after {
  content: '';
  position: absolute;
  left: -11px;
  right: 0;
  margin: 0 auto;
  top: -19px;
  width: 8px;
  height: 8px;
  flex-shrink: 0;
  background: #fff;
  border-radius: 50%;
}
.float-btn-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  background: #EEE;
  padding: 10px;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9;
}
.prod-name {
  color: var(--erieBlack);
  font-size: var(--fs16);
  font-style: normal;
  font-weight: 400;
  line-height: 1.6;
  transition: all 1s ease-in-out;
  -webkit-transition: all 1s ease-in-out;
}
.prod-name.white {
  color: var(--white);
}
@media (max-width: 768px) {
  .prod-swiper3 .finishing-card {
    width: 300px;
  }
}
/*------------------------------------------------------------------
[TABLE OF CONTENTS]

=> buttons
=> Form Elements
=> Radio Small
=> Checkbox Small
=> Tooltip
=> Modal
=> Accordion

/*==========================================================================
=> buttons
========================================================================== */
.button {
  position: relative;
  overflow: hidden;
  background: var(--lYellow);
  border: none;
  outline: none;
  border: 1px solid transparent;
  color: var(--black);
  padding: 0 24px;
  height: 48px;
  line-height: 48px;
  border-radius: 8px;
  font-size: var(--fs16);
  font-weight: 600;
  text-align: center;
  display: inline-block;
  transition: all 0.6s ease-in-out;
  -webkit-transition: all 0.6s ease-in-out;
}
.button:hover {
  background: transparent;
  border: 1px solid var(--dYellow);
  color: var(--dYellow);
}
.button.black {
  color: var(--white);
  background: var(--erieBlack);
}
.button.black:hover {
  background: transparent;
  border: 1px solid var(--erieBlack);
  color: var(--erieBlack);
}
.button.white {
  color: var(--black);
  background: var(--white);
}
.button.white:hover {
  background: transparent;
  border: 1px solid var(--white);
  color: var(--white);
}
.button.line {
  background: transparent;
  border: 1px solid var(--white);
  color: var(--white);
}
.button.link {
  background: transparent;
  padding: 0;
  color: var(--yellow);
  width: auto;
  height: auto;
  font-size: var(--fs16);
  font-style: normal;
  font-weight: 500;
  line-height: 2;
  border: 0;
}
.button.link img {
  flex: 1;
  object-fit: contain;
  margin-left: 8px;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
}
.button.link:hover {
  background-color: transparent;
  border: 0;
  color: var(--blue);
}
.button.link:hover img {
  filter: invert(1);
}
.button:hover,
.button:focus,
.button:active {
  text-decoration: none;
  outline: none;
}
button:focus {
  outline: none;
}
.button--block {
  width: 100%;
}
.button--block:hover span {
  width: 1000px;
  height: 1000px;
}
.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-top: 8px;
  margin-bottom: 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 {
  font-family: var(--input-font);
  height: var(--input-height);
  font-size: var(--input-fs-main);
  border: 0;
  border-bottom: 1px solid var(--input-border);
  width: 100%;
  z-index: 2;
  position: relative;
  background: transparent;
  color: #000;
  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 !important;
}
.form-field:focus,
.form-field.field--not-empty {
  border: 0;
  border-bottom: 1px solid #000;
}
.form-field ~ .form-label {
  color: #aaa;
  position: absolute;
  font-size: var(--input-fs-main);
  left: 0;
  top: 15px;
  padding: 0;
  margin: 0;
  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
}
.form-field:focus ~ .form-label,
.form-field.field--not-empty ~ .form-label,
.form-grp.sTop .form-label {
  font-size: var(--input-fs-top);
  background: #fff;
  top: -10px;
  z-index: 2;
}
.form-textarea-group .form-field {
  height: 150px;
  line-height: 1.3;
  padding: 15px 16px;
  resize: none;
}
/* Password View */
.form-grp.int-padl input,
.form-grp.form-grp-var input {
  padding-left: 40px;
}
.form-grp.int-padr input {
  padding-right: 40px;
}
.form-grp .view-pass {
  position: absolute;
  right: 10px;
  top: 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 */
/* date Picker */
.datetimepicker-input ~ i {
  position: absolute;
  right: 20px;
  top: 25px;
  line-height: 0;
  font-size: 22px;
  color: #a7b3c4;
}
.daterangepicker select.hourselect,
.daterangepicker select.minuteselect,
.daterangepicker select.secondselect,
.daterangepicker select.ampmselect {
  border: 1px solid #a7b3c4;
  height: 30px;
  z-index: 2;
  padding: 0 10px;
  font-size: 14px;
  color: #1c2d41;
  font-weight: 400;
  outline: none;
  border-radius: 5px;
  background: transparent url(../img/drop-down-arrow.svg) no-repeat calc(100% - 5px) center / 10px;
  -webkit-appearance: none;
}
.daterangepicker {
  border: 0;
  color: #425061;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
  background: #fff;
  -webkit-box-shadow: 1px 9px 21px rgba(53, 143, 207, 0.2);
  -moz-box-shadow: 1px 9px 21px rgba(53, 143, 207, 0.2);
  box-shadow: 1px 9px 21px rgba(53, 143, 207, 0.2);
  padding: 10px;
  z-index: 10000;
}
.daterangepicker td.start-date {
  border-radius: 50% 0 0 50%;
}
.daterangepicker td.end-date {
  border-radius: 0 50% 50% 0;
}
.daterangepicker .calendar-table .next span,
.daterangepicker .calendar-table .prev span {
  color: #a7b3c4;
  border: 0;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}
.daterangepicker .calendar-table .next span:hover,
.daterangepicker .calendar-table .prev span:hover {
  color: #3592cf;
}
.daterangepicker .calendar-table .next span:before,
.daterangepicker .calendar-table .prev span:before {
  border: 1px solid #a7b3c4;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  display: block;
  min-width: 24px;
  width: 24px;
  height: 24px;
  line-height: 24px;
  font-size: 10px;
}
.daterangepicker .calendar-table .next span:hover:before,
.daterangepicker .calendar-table .prev span:hover:before {
  border: 1px solid #3490cf;
}
.daterangepicker .calendar-table .next span:before {
  content: "\e918";
  font-family: "icomoon" !important;
}
.daterangepicker .calendar-table .prev span:before {
  content: "\e912";
  font-family: "icomoon" !important;
}
.daterangepicker .calendar-table th,
.daterangepicker .calendar-table td {
  height: 32px;
}
.daterangepicker .btn-primary {
  font-family: "General Sans", sans-serif;
  border-color: transparent;
  background: #1baac4;
  color: #fff;
  box-shadow: none !important;
}
.daterangepicker:before {
  border-bottom: 0;
}
.daterangepicker .calendar-table th {
  font-family: "General Sans", sans-serif;
  font-size: 14px;
  color: #000000;
}
.daterangepicker th.month {
  font-family: "General Sans", sans-serif;
  font-size: 18px;
  letter-spacing: 0.01em;
  color: #000;
}
.daterangepicker td.in-range {
  background-color: #3592cf;
  color: #fff;
}
.daterangepicker td.active,
.daterangepicker td.active:hover {
  background-color: #3592cf;
}
.daterangepicker .calendar-table td {
  font-family: "General Sans", sans-serif;
  font-size: 14px;
}
.daterangepicker td.off,
.daterangepicker td.off.in-range,
.daterangepicker td.off.start-date,
.daterangepicker td.off.end-date {
  color: rgba(167, 179, 196, 0.5);
}
.daterangepicker th.available:hover {
  background-color: transparent;
}
.daterangepicker.show-calendar .drp-buttons {
  border-top: 0;
}
.daterangepicker.show-calendar .drp-buttons .drp-selected,
.daterangepicker.show-calendar .drp-buttons .cancelBtn {
  display: none;
}
.daterangepicker .drp-buttons .btn {
  margin-left: 0;
  width: 100%;
  padding: 6px 8px;
}
.daterangepicker td.start-date.end-date {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  background-color: #1baac4;
}
/* date Picker 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 */
input::-webkit-input-placeholder,
input:-ms-input-placeholder,
input::placeholder {
  color: #ccc;
}
input::-webkit-input-placeholder {
  color: #ccc;
}
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 #a24eea;
  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 #a24eea;
}
.radio-box label.error {
  display: none !important;
}
.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 #a24eea;
  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 input:checked ~ .chk-label::after {
  font-family: "icomoon" !important;
  content: "\e92d";
  color: #a24eea;
  font-size: 12px;
}
.checkbox-box label.error {
  display: none !important;
}
.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: #a24eea;
}
.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 #a24eea;
}
.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 #a24eea;
}
.checkbox-box.check-three input:checked ~ .chk-label span {
  font-family: "General Sans", sans-serif;
  color: #30223b;
}
.checkbox-box.check-three input:checked ~ .chk-label i {
  color: #a24eea;
}
.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: #a24eea;
  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: 0;
  margin-bottom: 0;
}
.checkbox-box.chk-four:last-child label {
  border: 1px solid var(--dimGray);
  border-radius: 8px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-left: 0;
}
.checkbox-box.chk-four:first-child label {
  border: 1px solid var(--dimGray);
  border-radius: 8px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.checkbox-box.chk-four label {
  border-top: 1px solid var(--dimGray);
  border-bottom: 1px solid var(--dimGray);
  padding: 10px 22px;
  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-family: "General Sans", sans-serif;
  font-size: 14px;
  color: #000;
  margin-left: 0;
}
.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(--red);
}
.checkbox-box.chk-four.chk-err input:checked ~ .chk-label i {
  color: var(--red);
}
.checkbox-box.chk-four input:checked ~ .chk-label {
  border-top: 1px solid var(--red);
  border-bottom: 1px solid var(--red);
}
.checkbox-box.chk-four input:checked ~ .chk-label span {
  color: var(--red);
}
.checkbox-box.chk-four input:checked ~ .chk-label i {
  color: var(--red);
}
.checkbox-box.chk-four:last-child input:checked ~ .chk-label {
  border: 1px solid var(--red);
  border-left: 0;
}
.checkbox-box.chk-four:first-child input:checked ~ .chk-label {
  border: 1px solid var(--red);
}
/* checkbox 4 end */
/* checkbox 5 */
.checkbox-box.chk-fiv {
  margin-right: 8px;
  margin-bottom: 0;
}
.checkbox-box.chk-fiv label {
  border: 1px solid var(--dimGray);
  border-radius: 8px;
  padding: 8px 16px;
  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-fiv label span {
  font-size: var(--fs14);
  color: var(--dimGray);
  font-weight: 500;
  margin-left: 0;
}
.checkbox-box.chk-fiv label:before,
.checkbox-box.chk-fiv label:after {
  display: none;
}
.checkbox-box.chk-fiv input:checked ~ .chk-label {
  border: 1px solid var(--bluewood);
}
.checkbox-box.chk-fiv input:checked ~ .chk-label span {
  color: var(--bluewood);
}
.checkbox-box.chk-fiv input:checked ~ .chk-label i {
  color: var(--bluewood);
}
/* checkbox 5 end */
/*==========================================================================
=> Tooltip
========================================================================== */
[tooltip-title] {
  position: relative;
  text-decoration: none;
}
[tooltip-title]::before {
  opacity: 0;
  pointer-events: none;
  position: absolute;
  /* top: -999; */
}
[tooltip-title]:hover::before {
  content: attr(tooltip-title);
  background-color: #222;
  border-radius: 4px;
  text-shadow: 0 0 5px #000;
  white-space: nowrap;
  color: #fff;
  opacity: 1;
  pointer-events: all;
  padding: 6px 12px;
  overflow: hidden;
  top: unset;
}
[tooltip-title]::after {
  content: "";
  pointer-events: none;
  opacity: 0;
  position: absolute;
}
[tooltip-title]:hover::after {
  z-index: 100;
  opacity: 1;
  pointer-events: all;
}
/* Corrige bug do tooltip ficar sem baixo dos outros buttons*/
[data-placement="right"]:hover {
  position: relative;
  z-index: 1;
}
[tooltip-title]:is([data-placement="top"])::before {
  bottom: 100%;
  left: 0%;
  margin-bottom: 16px;
}
[tooltip-title]:is([data-placement="right"])::before {
  bottom: -10%;
  left: 100%;
  margin-left: 16px;
}
[tooltip-title]:is([data-placement="bottom"])::before {
  top: 100%;
  left: 0%;
  margin-top: 16px;
}
[tooltip-title]:is([data-placement="left"])::before {
  bottom: -10%;
  right: 100%;
  margin-right: 16px;
}
/* Arrow */
[tooltip-title]:is([data-placement="top"])::after {
  bottom: 100%;
  left: 20%;
  margin-bottom: 8px;
  display: inline-block;
  vertical-align: middle;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #222;
}
[tooltip-title]:is([data-placement="right"])::after {
  bottom: 20%;
  left: 100%;
  margin-left: 8px;
  display: inline-block;
  vertical-align: middle;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-right: 10px solid #222;
}
[tooltip-title]:is([data-placement="bottom"])::after {
  left: 20%;
  top: 100%;
  display: inline-block;
  vertical-align: middle;
  margin-top: 8px;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #222;
}
[tooltip-title]:is([data-placement="left"])::after {
  bottom: 20%;
  right: 100%;
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 10px solid #222;
}
/*==========================================================================
=> 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);
}
.ellipsis {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.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 {
  margin-bottom: 80px;
}
.content-body img {
  height: 400px;
  width: 100%;
  object-fit: cover;
  border-radius: 30px;
  overflow: hidden;
  margin-bottom: 24px;
}
.content-body h1,
.content-body h2,
.content-body h3,
.content-body h4,
.content-body h5,
.content-body h6 {
  font-weight: 700;
  font-size: 26px;
  color: var(--white);
  margin: 32px 0 16px;
}
.content-body h1:first-child,
.content-body h2:first-child,
.content-body h3:first-child,
.content-body h4:first-child,
.content-body h5:first-child,
.content-body h6:first-child {
  margin-top: 0;
}
.content-body p {
  font-size: 16px;
  line-height: 1.6;
  color: #6b6b6b;
  margin-bottom: 16px;
}
.content-body ul {
  margin-bottom: 16px;
}
.content-body ul li {
  position: relative;
  margin-bottom: 14px;
  padding-left: 15px;
}
.content-body ul li p,
.content-body ul li a {
  font-size: 16px;
  line-height: 1.6;
  color: #6b6b6b;
  margin-bottom: 0;
}
.content-body ul li a {
  color: #ee163d;
}
.content-body ul li::before {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 100%;
  display: block;
  top: 8px;
  left: 0;
  background: #ee163d;
}
.content-body ul li:last-child {
  margin-bottom: 0;
}
@media all and (max-width: 990px) {
  .content-hdn {
    font-size: 36px;
    margin-bottom: 40px;
  }
}
@media all and (max-width: 480px) {
  .content-hdn {
    font-size: 32px;
    margin-bottom: 32px;
  }
  .content-body h1,
  .content-body h2,
  .content-body h3,
  .content-body h4,
  .content-body h5,
  .content-body h6 {
    font-size: 24px;
    margin: 32px 0 12px;
  }
}
/* content page end */
/* Thankyou page */
.thankyou-contain {
  height: 100svh;
  display: flex;
  align-items: center;
}
.thankyou-card {
  text-align: center;
  margin: auto;
  max-width: 650px;
}
.thankyou-img {
  width: 215px;
  height: 215px;
  margin: 0 auto 36px;
}
.thankyou-hdn {
  font-size: var(--fs48);
  font-weight: 700;
  line-height: 1.16;
  color: var(--white);
  margin-bottom: 18px;
}
.thankyou-para p {
  color: var(--dimGray);
  font-size: var(--fs16);
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 32px;
}
.w-img {
  max-width: 675px;
  width: 100%;
  margin-bottom: 55px;
}
@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;
  }
}
/* Thankyou page end */
/*==========================================================================
=> Accordion
==========================================================================*/
.panel {
  display: none;
  padding: 0 18px;
  background-color: white;
}
.test {
  font-size: 48px;
  color: var(--black);
}
.testh1 {
  font-weight: 100;
}
.testh2 {
  font-weight: 200;
}
.testh3 {
  font-weight: 300;
}
.testh4 {
  font-weight: 400;
}
.testh5 {
  font-weight: 500;
}
.testh6 {
  font-weight: 600;
}
.testp {
  font-weight: 700;
}
.error {
  color: #f00;
}
.error input {
  border: 1px solid #f00;
}
.errorAnim {
  animation: errorAnim 0.5s ease-in-out;
}
@keyframes errorAnim {
  0% {
    transform: rotate(0deg);
  }
  10% {
    transform: rotate(3deg);
  }
  20% {
    transform: rotate(0deg);
  }
  30% {
    transform: rotate(-3deg);
  }
  40% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(3deg);
  }
  60% {
    transform: rotate(0deg);
  }
  70% {
    transform: rotate(-3deg);
  }
  80% {
    transform: rotate(0deg);
  }
  90% {
    transform: rotate(3deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
/* header */
:root {
  --menuWidth: 300px;
}
#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: var(--white);
}
.head-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.head-left {
  display: flex;
}
.logo {
  display: inline-block;
  vertical-align: middle;
  width: 200px;
}
.header-box {
  border-bottom: 1px solid #EBF1F6;
}
.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;
  height: var(--headerHeight);
  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: 11px;
  height: 11px;
  background: url(../img/menu-drop.svg) no-repeat center center / contain;
  display: inline-block;
  vertical-align: middle;
  transition: 0.3s;
}
.drop ul {
  position: absolute;
  background: var(--dYellow);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.11);
  border-radius: 10px;
  top: 40px;
  padding: 10px;
  left: 0%;
  width: 200px;
  margin-left: 0;
  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: var(--fs14);
  font-weight: 500;
  padding: 8px 15px;
  border-radius: 5px;
  color: #000;
}
.drop ul li a:hover {
  color: var(--white);
}
.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);
}
.header-list {
  margin-left: 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;
}
.header-list li {
  padding: 8px 12px;
}
.header-list li a {
  font-size: var(--fs16);
  color: var(--block);
  font-weight: 400;
}
.fixHeader .header-box .container {
  height: var(--headerFixedHeight);
}
.menuBtn {
  display: flex;
  align-items: center;
  gap: 16px;
}
.menuBtn .icon {
  width: 24px;
  height: 24px;
}
/* side menu */
.menu {
  position: relative;
}
/* side menu */
.menu {
  position: relative;
  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;
}
.nav-wrapper.show-menu {
  -webkit-transform: none;
  transform: none;
}
.js-nav-toggle {
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: #000;
  border: 0px solid #000;
  right: 0;
  display: none;
  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
}
.js-nav-toggle span {
  position: relative;
  background-color: #000;
  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: #000;
  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);
  width: 100px;
}
.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: 8px;
}
.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;
}
.search-wrap {
  display: flex;
  align-items: center;
  border-radius: 8px;
  border: 1px solid #DFE5EF;
  flex: 1;
}
.search-input {
  display: flex;
  align-items: center;
}
.search-dropdown {
  position: relative;
  flex: 1;
  min-width: 156px;
  padding: 12px 16px;
  border-right: 1px solid rgba(0, 0, 0, 0.11);
}
.selectedSearch {
  position: relative;
  cursor: pointer;
}
.selectedSearch::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  bottom: 0;
  background-image: url('../img/menu-drop.svg');
  background-repeat: no-repeat;
  background-size: 12px;
  width: 12px;
  height: 12px;
  transform: translate(0%, -50%);
}
.search-dropdown-list {
  display: none;
}
.selected-val {
  color: var(--bluewood);
  font-size: var(--fs12);
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.search-input {
  padding: 8px 8px;
  min-width: 300px;
}
.search {
  border: 0;
  outline: 0;
  color: var(--bluewood);
  font-size: var(--fs12);
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.search::placeholder {
  color: var(--bluewood);
  font-size: var(--fs12);
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.search::-moz-placeholder {
  color: var(--bluewood);
  font-size: var(--fs12);
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.search::-webkit-input-placeholder {
  color: var(--bluewood);
  font-size: var(--fs12);
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
@media all and (max-width: 1200px) {
  .header-list li {
    padding: 8px;
  }
  .logo {
    width: 170px;
  }
  .menuBtn .button {
    padding: 0 14px;
  }
}
@media all and (max-width: 1024px) {
  .navigation {
    display: none;
  }
  .nav-wrapper {
    display: block;
  }
  .js-nav-toggle {
    display: flex;
  }
  .header-list {
    display: none;
  }
  .menu {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .logo {
    width: 140px;
  }
  .mob-navigation a.button {
    height: auto;
    padding: 0;
    margin: 10px;
  }
}
.nav-close {
  width: 50px;
  height: 50px;
}
.nav-toggle-2 {
  position: relative;
  z-index: 9;
  display: flex;
  justify-content: space-between;
  align-items: center;
  left: 0;
  right: 0;
  width: 100%;
  margin-top: 10px;
}
@media all and (max-width: 480px) {
  .logo {
    width: 100px;
  }
  .menuBtn .button {
    font-size: 12px;
    display: none;
  }
}
:root {
  --prob-box-1: -40%;
  --prob-box-t-2: 16%;
  --prob-box-b-2: unset;
  --prob-box-3: -15%;
  --heroImgBottom: -180;
  --heroImgWidth: 250;
}
.hero-section {
  position: relative;
  height: calc(100svh - var(--header-height));
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.hero-section .page-title {
  margin-bottom: 24px;
  margin-top: -150px;
}
.hero-section a.button {
  position: relative;
  z-index: 9;
}
.hero-images {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 40px 0;
}
.hero-img {
  flex-shrink: 0;
  position: relative;
  opacity: 1;
  animation: heroImages infinite 10s ease-in-out;
}
@keyframes heroImages {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(-5deg);
  }
  50% {
    transform: rotate(0deg);
  }
  75% {
    transform: rotate(5deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
.hero-img-1 {
  animation-delay: 0s;
  align-self: flex-start;
  width: 125px;
  order: 0;
  left: 5%;
}
.hero-img-2 {
  animation-delay: 4s;
  width: 125px;
  order: 1;
  z-index: 1;
  left: -5%;
  top: 5%;
}
.hero-img-3 {
  animation-delay: 6s;
  width: 175px;
  order: 3;
  z-index: 1;
  right: -5%;
  top: 5%;
}
.hero-img-4 {
  animation-delay: 2s;
  align-self: flex-start;
  width: 125px;
  order: 4;
  right: 5%;
}
.hero-img-5 {
  align-self: flex-end;
  width: 230px;
  order: 2;
  position: relative;
  bottom: -5%;
  z-index: 0;
  left: 20px;
}
.prob-list {
  max-width: 1000px;
  margin: 0 auto;
}
.prob-box {
  border-radius: 70px;
  background: var(--bGrey);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 70px 11px 11px;
  position: absolute;
  width: max-content;
  max-width: 1000px;
  margin: 0 auto;
}
.prob-box:last-child {
  margin-bottom: 0;
}
.prob-box .sec-para {
  display: none;
  max-width: 570px;
}
.prob-trigger {
  position: absolute;
  top: 80vh;
  border-bottom: 1px solid #000;
}
.prob-wrap {
  position: relative;
  width: 100%;
  min-height: 300px;
  max-height: 600px;
}
.prob-sticky-wrap {
  height: 200vh;
  position: relative;
}
.prob-sticky {
  height: calc(100vh - var(--header-height));
  display: flex;
  justify-content: center;
  align-items: center;
}
.prob-box-1 {
  top: -30%;
  right: 0;
}
.prob-box-2 {
  bottom: -5%;
}
.prob-box-3 {
  bottom: -15%;
  right: 10%;
}
.prob {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
}
.prob .prob-title {
  max-width: 180px;
}
.sol-list-sec {
  padding: 100px 0;
}
.prod-section,
.serv-section {
  padding: 100px 0;
}
.exp-section {
  padding: 0;
}
.serv-img-wrap {
  position: relative;
  height: 100%;
}
.serv-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  gap: 40px;
  height: 530px;
}
.serv-wrap.rev {
  flex-direction: row-reverse;
}
.serv-wrap.rev .serv-detail-wrap {
  margin-left: 0;
}
.serv-wrap.rev .serv-detail-wrap .card-title {
  margin-left: 0;
}
.serv-wrap.rev .serv-detail-wrap .sec-para {
  margin-left: 0;
}
.serv-wrap.rev .s1 {
  left: 0;
  right: unset;
}
.serv-wrap.rev .s2 {
  right: 0;
  left: unset;
}
.serv-wrap.rev .s3 {
  right: unset;
  left: 0;
}
.serv-left {
  max-width: 370px;
  width: 100%;
  height: 100%;
}
.serv-mid {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  max-width: 330px;
  margin: 0 auto;
}
.serv-right {
  flex: 1;
}
.serv-img {
  position: absolute;
  box-shadow: 0px 27px 33px 0px rgba(0, 0, 0, 0.25);
}
.serv-detail-wrap {
  max-width: 560px;
  margin-left: auto;
  border-radius: 150px;
  padding: 45px 70px 45px 70px;
  position: relative;
  overflow: hidden;
}
.serv-detail-wrap .card-title {
  max-width: 350px;
  margin-left: auto;
}
.serv-detail-wrap .sec-para {
  max-width: 350px;
  margin-left: auto;
}
.s1 {
  width: 230px;
  height: 130px;
  right: 0;
  top: 0;
}
.s2 {
  width: 180px;
  height: 130px;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto 0;
}
.s3 {
  width: 155px;
  height: 220px;
  right: 0;
  bottom: 0;
}
.t-shirt-wrap {
  width: 420px;
  margin: 0 auto;
}
.prod-wrap {
  display: flex;
  flex: 1;
  gap: 24px;
}
.prod-box {
  border-radius: 20px;
  padding: 48px 32px;
  position: relative;
  overflow: hidden;
  width: 50%;
  height: 530px;
  transition: all 1s ease-in-out;
  -webkit-transition: all 1s ease-in-out;
}
.prod-box.yellow {
  background: var(--dYellow);
}
.prod-box.grey {
  background: var(--erieBlack);
}
.prod-box:hover {
  width: 70%;
}
.prod-box:hover .sol-img .prod-name {
  opacity: 1;
  visibility: visible;
}
.prod-box:hover .prod-img .prod-name {
  opacity: 1;
  visibility: visible;
}
.prod-box:hover .ps1 {
  transform: scale(1);
  -webkit-transform: scale(1);
  left: 0;
}
.prod-box:hover .ps1 img {
  width: 170px;
}
.prod-box:hover .ps2 {
  right: 0;
}
.prod-box:hover .ps3 {
  right: 0;
}
.prod-box:hover .p1 img {
  width: 86px;
  height: 176px;
  margin-bottom: 0;
}
.prod-box:hover .p2 {
  margin-left: 0;
  margin-right: 0;
}
.prod-box:hover .p2 img {
  width: 120px;
  height: 160px;
  margin-bottom: 0;
}
.prod-box:hover .p3 img {
  width: 120px;
  height: 160px;
  margin-bottom: 0;
}
.prod-box:hover .p4 img {
  left: 0 !important;
  top: 0 !important;
}
.prod-details {
  max-width: 400px;
  margin-bottom: 45px;
}
.prod-details .sec-title {
  margin-bottom: 16px;
}
.prod-details .sec-para {
  margin-bottom: 16px;
}
.prod-img-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  position: relative;
  white-space: nowrap;
  transition: all 1s ease-in-out;
  -webkit-transition: all 1s ease-in-out;
}
.p1 {
  flex-shrink: 0;
  position: relative;
  z-index: 0;
}
.p1 img {
  width: 130px;
  height: 260px;
  transition: all 1s ease-in-out;
  -webkit-transition: all 1s ease-in-out;
}
.p2 {
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  margin-left: -40px;
  margin-right: -50px;
  transition: all 1s ease-in-out;
  -webkit-transition: all 1s ease-in-out;
}
.p2 img {
  width: 220px;
  height: 300px;
  margin-bottom: -20px;
  transition: all 1s ease-in-out;
  -webkit-transition: all 1s ease-in-out;
}
.p3 {
  flex-shrink: 0;
  position: relative;
  z-index: 0;
}
.p3 img {
  width: 180px;
  height: 245px;
  transition: all 1s ease-in-out;
  -webkit-transition: all 1s ease-in-out;
}
.p4 {
  flex-shrink: 0;
  position: relative;
}
.p4 img {
  width: 106px;
  height: 96px;
  position: relative;
  transition: all 1s ease-in-out;
  -webkit-transition: all 1s ease-in-out;
}
.prod-name {
  color: var(--white);
  text-align: center;
  font-size: var(--fs16);
  font-style: normal;
  font-weight: 700;
  line-height: 2.6;
  opacity: 0;
  visibility: hidden;
  transition: all 1s ease-in-out;
  -webkit-transition: all 1s ease-in-out;
}
.cap-pos {
  position: absolute;
  top: -100px;
  width: 106px;
  height: 96px;
  left: 160px;
}
.ps1 {
  transform: scale(1.5);
  -webkit-transform: scale(1.5);
  left: 50px;
}
.ps1 img {
  width: 450px;
}
.ps2 {
  right: -100%;
}
.ps2 img {
  width: 110px;
}
.ps3 {
  right: -100%;
}
.ps3 img {
  width: 120px;
}
.sol-img {
  position: relative;
  transition: all 1s ease-in-out;
  -webkit-transition: all 1s ease-in-out;
}
.sol-img img {
  position: relative;
  transition: all 1s ease-in-out;
  -webkit-transition: all 1s ease-in-out;
}
.tshirt {
  width: 420px;
  height: calc(100svh - var(--header-height));
  margin: auto;
  position: relative;
  z-index: 8;
}
.tshirt img {
  object-fit: contain;
  object-position: center;
}
.prod-sol-wrap {
  position: relative;
  height: 270vh;
}
.serv-section {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
}
.ps-trigger-1 {
  position: absolute;
  top: 100vh;
}
.ps-trigger-2 {
  position: absolute;
  top: 200vh;
}
.sd-bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dYellow);
  z-index: -1;
  border-radius: 110px;
}
.br-1100,
.br-1024,
.br-990,
.br-800,
.br-640,
.br-576,
.br-480,
.br-400 {
  display: none;
}
@media (min-width: 1537px) and (min-height: 800px) and (max-height: 1080px) {
  .serv-detail-wrap .card-title {
    max-width: 300px;
  }
  .serv-detail-wrap .sec-para {
    max-width: 300px;
  }
}
@media (max-width: 1366px) and (min-width: 1100px) and (min-height: 640px) and (max-height: 1080px) {
  .serv-detail-wrap .card-title {
    max-width: 300px;
  }
  .serv-detail-wrap .sec-para {
    max-width: 300px;
  }
}
@media (min-width: 1441px) and (max-width: 1681px) {
  .prob-box-1 {
    top: -25%;
    right: -3%;
  }
  :root {
    --prob-box-1: -20%;
    --prob-box-t-2: 28%;
    --prob-box-b-2: unset;
    --prob-box-3: -15%;
    --heroImgBottom: -180;
    --heroImgWidth: 250;
  }
}
@media (min-width: 1441px) and (max-width: 1681px) {
  .hero-img-1 {
    width: 140px;
    left: 6.5%;
  }
  .hero-img-2 {
    width: 150px;
    left: -6.5%;
    top: 8.5%;
  }
  .hero-img-3 {
    width: 180px;
    right: -6.5%;
    top: 8.5%;
  }
  .hero-img-4 {
    width: 140px;
    right: 6.5%;
  }
  .hero-img-5 {
    width: 270px;
    bottom: -25%;
  }
  .serv-wrap {
    height: 420px;
  }
  .tshirt {
    width: 320px;
  }
  .prob-box-1 {
    top: -25%;
    right: -3%;
  }
  :root {
    --prob-box-1: -20%;
    --prob-box-t-2: 29%;
    --prob-box-b-2: unset;
    --prob-box-3: -15%;
    --heroImgBottom: -180;
    --heroImgWidth: 250;
  }
  .serv-wrap {
    height: 420px;
  }
}
@media (min-width: 1681px) {
  .hero-img-1 {
    width: 170px;
    left: 10%;
  }
  .hero-img-2 {
    width: 170px;
    left: -10%;
    top: 10%;
  }
  .hero-img-3 {
    width: 225px;
    right: -10%;
    top: 10%;
  }
  .hero-img-4 {
    width: 170px;
    right: 10%;
  }
  .hero-img-5 {
    width: 300px;
    bottom: -10%;
  }
  .serv-detail-wrap {
    max-width: 600px;
  }
}
@media (max-width: 1366px) {
  .hero-img-1 {
    width: 105px;
  }
  .hero-img-2 {
    width: 105px;
  }
  .hero-img-3 {
    width: 155px;
  }
  .hero-img-4 {
    width: 105px;
  }
  .hero-img-5 {
    width: 185px;
    bottom: -8%;
  }
  .serv-section {
    padding: 70px 0;
  }
  :root {
    --prob-box-1: -20%;
    --prob-box-t-2: 27%;
    --prob-box-3: -15%;
  }
}
@media (max-width: 1200px) {
  .prob-box {
    padding-right: 40px;
  }
}
@media (max-width: 1100px) {
  .hero-img-1 {
    width: 105px;
  }
  .hero-img-2 {
    width: 105px;
  }
  .hero-img-3 {
    width: 145px;
  }
  .hero-img-4 {
    width: 105px;
  }
  .hero-img-5 {
    width: 185px;
  }
  .serv-section {
    padding: 20px 0;
  }
  .serv-detail-wrap {
    max-width: 500px;
    padding: 30px 30px 30px 30px;
    border-radius: 0px;
  }
  .serv-detail-wrap .sec-para {
    max-width: 300px;
  }
  .serv-detail-wrap .card-title {
    max-width: 300px;
  }
  .sd-bg {
    border-radius: 50px;
  }
  .tshirt {
    width: 380px;
  }
}
@media (max-width: 1024px) {
  .hero-img-1 {
    width: 90px;
  }
  .hero-img-2 {
    width: 90px;
  }
  .hero-img-3 {
    width: 125px;
  }
  .hero-img-4 {
    width: 90px;
  }
  .hero-img-5 {
    width: 170px;
  }
  .hero-images {
    padding: 24px 0 0;
  }
  .prob-box {
    gap: 32px;
  }
  .prob-box .sec-para {
    max-width: 55%;
    flex: 1;
  }
  .sol-list-sec,
  .prod-section {
    padding: 80px 0;
  }
  .serv-wrap {
    flex-direction: column;
    gap: 0;
  }
  .serv-left {
    max-width: unset;
    height: auto;
  }
  .serv-right {
    flex: unset;
  }
  .serv-img-wrap {
    display: flex;
    width: 100%;
    justify-content: space-between;
  }
  .serv-img {
    position: static;
    border-radius: 20px;
    overflow: hidden;
  }
  .serv-mid {
    position: relative;
    z-index: 1;
  }
  .serv-detail-wrap {
    border-radius: 30px;
    padding: 45px 40px 45px 40px;
    padding-top: 160px;
    margin-top: 0;
    z-index: 0;
    position: relative;
    text-align: center;
  }
  .serv-detail-wrap .sec-para {
    max-width: 500px;
  }
  .serv-detail-wrap .card-title {
    max-width: 500px;
  }
  .s1 {
    order: 2;
    margin-top: auto;
  }
  .s2 {
    order: 1;
    margin: unset;
  }
  .s3 {
    order: 0;
    margin-top: 100px;
  }
  .serv-wrap.rev {
    flex-direction: column;
  }
  .prod-section {
    padding: 70px 0;
  }
  .serv-section {
    padding: 20px 0;
    bottom: 0;
  }
  .serv-section .container {
    height: 100%;
  }
  .serv-wrap {
    height: 100%;
  }
  :root {
    --prob-box-1: 70px;
    --prob-box-t-2: 0%;
    --prob-box-b-2: 0%;
    --prob-box-3: 70px;
  }
  .prob-box-1 {
    top: -40%;
    right: 0;
  }
  .prob-box-2 {
    bottom: -10%;
    left: -10%;
    max-height: max-content;
    margin: auto;
  }
  .prob-box-3 {
    bottom: -30%;
    right: -5%;
  }
  .prod-wrap {
    flex-direction: column;
  }
  .prod-box {
    width: 100%;
  }
  .prod-box .sol-img .prod-name {
    opacity: 1;
    visibility: visible;
  }
  .prod-box .prod-img .prod-name {
    opacity: 1;
    visibility: visible;
  }
  .prod-box .ps1 {
    transform: scale(1);
    -webkit-transform: scale(1);
    left: 0;
  }
  .prod-box .ps1 img {
    width: 170px;
  }
  .prod-box .ps2 {
    right: 0;
  }
  .prod-box .ps3 {
    right: 0;
  }
  .prod-box .p1 img {
    width: 86px;
    height: 176px;
    margin-bottom: 0;
  }
  .prod-box .p2 {
    margin-left: 0;
    margin-right: 0;
  }
  .prod-box .p2 img {
    width: 120px;
    height: 160px;
    margin-bottom: 0;
  }
  .prod-box .p3 img {
    width: 120px;
    height: 160px;
    margin-bottom: 0;
  }
  .prod-box .p4 img {
    left: 0 !important;
    top: 0 !important;
  }
  .tshirt {
    width: 330px;
    height: calc(90svh - var(--header-height));
  }
  .serv-section-1 .s1 {
    transform: translate(-90%, 0%) scale(0.5);
    transform-origin: left top;
  }
  .serv-section-1 .s2 {
    transform: translate(20%, 100%) scale(0.5);
    transform-origin: bottom right;
  }
  .serv-section-1 .s3 {
    transform: translate(150%, 10%) scale(0.5);
    transform-origin: right;
  }
  .serv-section-2 .s1 {
    transform: scaleX(0) scaleY(1);
    transform-origin: right;
  }
  .serv-section-2 .s2 {
    transform: scaleX(0) scaleY(1);
    transform-origin: right;
  }
  .serv-section-2 .s3 {
    transform: scaleX(0) scaleY(1);
    transform-origin: right;
  }
  .qa-left br {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 1190px) and (min-height: 990px) and (max-height: 1366px) {
  .hero-img-1 {
    width: 150px;
    left: -10%;
  }
  .hero-img-2 {
    width: 140px;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    height: 230px;
  }
  .hero-img-3 {
    width: 145px;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    height: 180px;
  }
  .hero-img-4 {
    width: 150px;
    right: -10%;
  }
  .hero-img-5 {
    width: 220px;
    bottom: -5%;
  }
  .hero-images {
    padding: 24px 100px 0;
  }
  .hero-section {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  .hero-section .page-title {
    max-width: 60%;
  }
  :root {
    --prob-box-1: 0%;
    --prob-box-t-2: 0%;
    --prob-box-b-2: 0%;
    --prob-box-3: 0%;
  }
  .serv-section {
    height: calc(100svh - var(--header-height));
  }
  .serv-section .container {
    height: 100%;
    display: flex;
    align-items: center;
  }
  .serv-wrap {
    flex: 1;
    max-height: 850px;
  }
}
@media (max-width: 800px) {
  .hero-img-1 {
    width: 100px;
  }
  .hero-img-2 {
    width: 100px;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    height: 170px;
  }
  .hero-img-3 {
    width: 135px;
    position: absolute;
    right: -10px;
    top: 0;
    bottom: 0;
    margin: auto;
    height: 170px;
  }
  .hero-img-4 {
    width: 100px;
  }
  .hero-img-5 {
    width: 200px;
  }
  .hero-images {
    padding: 24px 70px 0;
  }
  .hero-section {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  .hero-section .page-title {
    max-width: 70%;
    margin-top: -50px;
  }
  .prob-box-2 {
    left: -3.5%;
  }
  :root {
    --prob-box-1: 0%;
    --prob-box-t-2: 0%;
    --prob-box-b-2: 0%;
    --prob-box-3: 0%;
  }
}
@media (max-width: 640px) {
  .not-mob {
    display: none;
  }
  .prob-wrap {
    max-height: unset;
  }
  .hero-section .page-title br {
    display: none;
  }
  .prob-box {
    padding: 16px;
    border-radius: 20px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 0;
  }
  .prob {
    gap: 20px;
  }
  .t-shirt-wrap {
    width: 350px;
  }
  .serv-mid {
    max-width: 260px;
  }
  .prob-box-2 {
    max-height: unset;
  }
  .prob-box .sec-para {
    max-width: 100%;
  }
  :root {
    --prob-box-1: 0%;
    --prob-box-t-2: 0%;
    --prob-box-b-2: 0;
    --prob-box-3: 0%;
  }
  .s1 {
    width: 150px;
    height: 80px;
    margin-left: -50px;
  }
  .s2 {
    width: 120px;
    height: 80px;
  }
  .s3 {
    width: 90px;
    height: 130px;
  }
  .serv-img {
    border-radius: 10px;
  }
  .serv-detail-wrap {
    border-radius: 20px;
    padding-left: 16px;
    padding-right: 16px;
  }
  .serv-mid {
    max-width: 200px;
  }
  .serv-detail-wrap {
    padding-top: 150px;
    margin-top: -130px;
  }
  .tshirt {
    width: 260px;
    height: calc(100vh - var(--header-height));
    margin-top: -40px;
  }
  .prod-sol-sticky {
    height: calc(100vh - var(--header-height));
  }
  .serv-section-1 .s1 {
    opacity: 0;
    margin-bottom: 50px;
  }
  .serv-section-1 .s2 {
    opacity: 0;
    margin-top: -20px;
  }
  .serv-section-1 .s3 {
    opacity: 0;
  }
  .prod-box {
    height: unset;
    padding: 24px;
  }
  .prod-box:hover {
    width: 100%;
  }
  .prod-img {
    width: 45%;
    text-align: center;
  }
  .prod-img-wrap {
    flex-wrap: wrap;
    gap: 20px;
  }
  .prob-sticky-wrap {
    height: auto;
  }
  .prob-sticky {
    height: auto;
  }
  .prob-wrap {
    height: auto;
    display: block;
  }
  .prob-list {
    position: static;
    margin-top: 32px;
  }
  .prob-box {
    position: static;
    margin-bottom: 32px;
    width: 100%;
  }
  .prob-box .sec-para {
    display: block;
  }
  .prob-section {
    padding: 60px 0;
  }
  .button {
    padding: 0 16px;
    height: 40px;
    line-height: 40px;
    font-weight: 400;
  }
}
@media (max-width: 480px) {
  .hero-img-1 {
    width: 90px;
    left: 0;
    top: 0;
  }
  .hero-img-2 {
    left: -10px;
  }
  .hero-img-3 {
    width: 120px;
    right: -10px;
  }
  .hero-img-4 {
    width: 100px;
    left: 0;
    top: 0;
  }
  .hero-img-5 {
    width: 240px;
    left: 0;
    bottom: 0;
  }
  .hero-images {
    padding: 24px 0 0;
  }
  .hero-section {
    padding: 20px;
  }
  .hero-section .page-title {
    max-width: 100%;
    margin-top: -250px;
  }
  :root {
    --heroImgBottom: -100px;
    --heroImgWidth: 200px;
  }
  :root {
    --prob-box-1: 5%;
    --prob-box-t-2: 10%;
    --prob-box-b-2: 0;
    --prob-box-3: -5%;
  }
}
@media (max-width: 440px) {
  .hero-img-1 {
    width: 80px;
  }
  .hero-img-2 {
    width: 70px;
    height: 110px;
    left: -15px;
    top: 50px;
  }
  .hero-img-3 {
    width: 70px;
    height: 110px;
    right: -15px;
    top: 50px;
  }
  .hero-img-4 {
    width: 80px;
  }
  .hero-img-5 {
    width: 175px;
    bottom: -6%;
  }
  .hero-images {
    padding: 10px 0 0;
  }
  .hero-section {
    padding: 20px;
  }
  .hero-section .page-title {
    max-width: 100%;
    margin-top: -50px;
  }
  .exp-section {
    padding: 40px 0;
  }
  .t-shirt-wrap {
    max-width: 300px;
  }
  .grid-sticky .grid-img {
    height: 250px;
    margin-bottom: 14px;
  }
}
@media (max-width: 640px) and (min-height: 740px) {
  .serv-wrap {
    max-height: 750px;
  }
  .tshirt {
    max-height: 650px;
  }
}
@media (max-width: 400px) {
  .serv-detail-wrap {
    padding-bottom: 20px;
  }
}
