/*------------------------------------------------------------------
[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
=> buttons
=> Form Elements
=> Radio Small
=> Checkbox Small
=> Tooltip
=> Modal
=> Accordion

-------------------------------------------------------------------*/

/*@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v13/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuLyeMZg.woff2) format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v13/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuDyfMZg.woff2) format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v13/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuOKfMZg.woff2) format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v13/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuLyfMZg.woff2) format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v13/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuI6fMZg.woff2) format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v13/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuGKYMZg.woff2) format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v13/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuFuYMZg.woff2) format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v13/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuDyYMZg.woff2) format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v13/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuBWYMZg.woff2) format('woff2');
}*/

html,
body {
  font-family: "Inter";
  font-weight: 400;
}
/*==========================================================================
=> Color
==========================================================================*/
:root {
  --sidebarWidth: 430px;
  --new: #00A497;
  --clr: #F15A24;
;
  /* common */
  --clr-red: #f00;
  --clr-grn: #1e7e34;
  --black: #15141D;
  --white: #ffffff;
  /* common end */
  /* input */
  --input-font: 500;
  --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-font: 500;
  --button-fill: #15141d;
  --button-line: #15141d;
  /* button end */
}
/*==========================================================================
=> Common
==========================================================================*/
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}
/*==========================================================================
=> Fonts
==========================================================================*/
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
button,
ul,
li {
  will-change: transform;
  font-weight: 400;
  margin-bottom: 0;
}
/*==========================================================================
=> Custom Grid
==========================================================================*/
/* Grid */
.f-row {
  display: flex;
  margin-left: -15px;
  margin-right: -15px;
  flex-wrap: wrap;
}
.f-col {
  padding: 0 15px;
}
.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: 15px;
  padding-right: 15px;
}
.w95 {
  width: 95%;
  padding-left: 15px;
  padding-right: 15px;
}
.w90 {
  width: 90%;
  padding-left: 15px;
  padding-right: 15px;
}
.w85 {
  width: 85%;
  padding-left: 15px;
  padding-right: 15px;
}
.w80 {
  width: 80%;
  padding-left: 15px;
  padding-right: 15px;
}
.w75 {
  width: 75%;
  padding-left: 15px;
  padding-right: 15px;
}
.w70 {
  width: 70%;
  padding-left: 15px;
  padding-right: 15px;
}
.w65 {
  width: 65%;
  padding-left: 15px;
  padding-right: 15px;
}
.w60 {
  width: 60%;
  padding-left: 15px;
  padding-right: 15px;
}
.w55 {
  width: 55%;
  padding-left: 15px;
  padding-right: 15px;
}
.w50 {
  width: 50%;
  padding-left: 15px;
  padding-right: 15px;
}
.w45 {
  width: 45%;
  padding-left: 15px;
  padding-right: 15px;
}
.w40 {
  width: 40%;
  padding-left: 15px;
  padding-right: 15px;
}
.w35 {
  width: 35%;
  padding-left: 15px;
  padding-right: 15px;
}
.w30 {
  width: 30%;
  padding-left: 15px;
  padding-right: 15px;
}
.w25 {
  width: 25%;
  padding-left: 15px;
  padding-right: 15px;
}
.w20 {
  width: 20%;
  padding-left: 15px;
  padding-right: 15px;
}
.w15 {
  width: 15%;
  padding-left: 15px;
  padding-right: 15px;
}
.w10 {
  width: 10%;
  padding-left: 15px;
  padding-right: 15px;
}
.w5 {
  width: 5%;
  padding-left: 15px;
  padding-right: 15px;
}
.w33 {
  width: 33%;
  padding-left: 15px;
  padding-right: 15px;
}
.w16 {
  width: 16.666666%;
  padding-left: 15px;
  padding-right: 15px;
}
/* Margin */
.mb-100 {
  margin-bottom: 100px;
}
.mb-95 {
  margin-bottom: 95px;
}
.mb-90 {
  margin-bottom: 90px;
}
.mb-85 {
  margin-bottom: 85px;
}
.mb-80 {
  margin-bottom: 80px;
}
.mb-75 {
  margin-bottom: 75px;
}
.mb-70 {
  margin-bottom: 70px;
}
.mb-65 {
  margin-bottom: 65px;
}
.mb-60 {
  margin-bottom: 60px;
}
.mb-55 {
  margin-bottom: 55px;
}
.mb-50 {
  margin-bottom: 50px;
}
.mb-45 {
  margin-bottom: 45px;
}
.mb-40 {
  margin-bottom: 40px;
}
.mb-35 {
  margin-bottom: 35px;
}
.mb-30 {
  margin-bottom: 30px;
}
.mb-25 {
  margin-bottom: 25px;
}
.mb-20 {
  margin-bottom: 20px;
}
.mb-15 {
  margin-bottom: 15px;
}
.mb-10 {
  margin-bottom: 10px;
}
.mb-5 {
  margin-bottom: 5px;
}
.mb-0 {
  margin-bottom: 0px;
}
@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: 15px;
    padding-right: 15px;
  }
  .w-1200-95 {
    width: 95%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-1200-90 {
    width: 90%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-1200-85 {
    width: 85%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-1200-80 {
    width: 80%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-1200-75 {
    width: 75%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-1200-70 {
    width: 70%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-1200-65 {
    width: 65%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-1200-60 {
    width: 60%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-1200-55 {
    width: 55%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-1200-50 {
    width: 50%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-1200-45 {
    width: 45%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-1200-40 {
    width: 40%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-1200-35 {
    width: 35%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-1200-30 {
    width: 30%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-1200-25 {
    width: 25%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-1200-20 {
    width: 20%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-1200-15 {
    width: 15%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-1200-10 {
    width: 10%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-1200-5 {
    width: 5%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .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: 990px) {
  .f-990-10 .f-col {
    width: 10%;
  }
  .f-990-9 .f-col {
    width: 11.11111111%;
  }
  .f-990-8 .f-col {
    width: 12.5%;
  }
  .f-990-7 .f-col {
    width: 14.28571429%;
  }
  .f-990-6 .f-col {
    width: 16.66666667%;
  }
  .f-990-5 .f-col {
    width: 20%;
  }
  .f-990-4 .f-col {
    width: 25%;
  }
  .f-990-3 .f-col {
    width: 33.33333333%;
  }
  .f-990-2 .f-col {
    width: 50%;
  }
  .f-990-1 .f-col {
    width: 100%;
  }
  .w-990-100 {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-990-95 {
    width: 95%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-990-90 {
    width: 90%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-990-85 {
    width: 85%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-990-80 {
    width: 80%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-990-75 {
    width: 75%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-990-70 {
    width: 70%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-990-65 {
    width: 65%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-990-60 {
    width: 60%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-990-55 {
    width: 55%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-990-50 {
    width: 50%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-990-45 {
    width: 45%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-990-40 {
    width: 40%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-990-35 {
    width: 35%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-990-30 {
    width: 30%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-990-25 {
    width: 25%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-990-20 {
    width: 20%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-990-15 {
    width: 15%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-990-10 {
    width: 10%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-990-5 {
    width: 5%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-990-33 {
    width: 33%;
  }
  .w-990-16 {
    width: 16.666666%;
  }
  .mb-990-100 {
    margin-bottom: 100px;
  }
  .mb-990-95 {
    margin-bottom: 95px;
  }
  .mb-990-90 {
    margin-bottom: 90px;
  }
  .mb-990-85 {
    margin-bottom: 85px;
  }
  .mb-990-80 {
    margin-bottom: 80px;
  }
  .mb-990-75 {
    margin-bottom: 75px;
  }
  .mb-990-70 {
    margin-bottom: 70px;
  }
  .mb-990-65 {
    margin-bottom: 65px;
  }
  .mb-990-60 {
    margin-bottom: 60px;
  }
  .mb-990-55 {
    margin-bottom: 55px;
  }
  .mb-990-50 {
    margin-bottom: 50px;
  }
  .mb-990-45 {
    margin-bottom: 45px;
  }
  .mb-990-40 {
    margin-bottom: 40px;
  }
  .mb-990-35 {
    margin-bottom: 35px;
  }
  .mb-990-30 {
    margin-bottom: 30px;
  }
  .mb-990-25 {
    margin-bottom: 25px;
  }
  .mb-990-20 {
    margin-bottom: 20px;
  }
  .mb-990-15 {
    margin-bottom: 15px;
  }
  .mb-990-10 {
    margin-bottom: 10px;
  }
  .mb-990-5 {
    margin-bottom: 5px;
  }
  .mb-990-0 {
    margin-bottom: 0px;
  }
}
@media all and (max-width: 768px) {
  .f-768-10 .f-col {
    width: 10%;
  }
  .f-768-9 .f-col {
    width: 11.11111111%;
  }
  .f-768-8 .f-col {
    width: 12.5%;
  }
  .f-768-7 .f-col {
    width: 14.28571429%;
  }
  .f-768-6 .f-col {
    width: 16.66666667%;
  }
  .f-768-5 .f-col {
    width: 20%;
  }
  .f-768-4 .f-col {
    width: 25%;
  }
  .f-768-3 .f-col {
    width: 33.33333333%;
  }
  .f-768-2 .f-col {
    width: 50%;
  }
  .f-768-1 .f-col {
    width: 100%;
  }
  .w-768-100 {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-768-95 {
    width: 95%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-768-90 {
    width: 90%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-768-85 {
    width: 85%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-768-80 {
    width: 80%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-768-75 {
    width: 75%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-768-70 {
    width: 70%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-768-65 {
    width: 65%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-768-60 {
    width: 60%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-768-55 {
    width: 55%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-768-50 {
    width: 50%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-768-45 {
    width: 45%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-768-40 {
    width: 40%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-768-35 {
    width: 35%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-768-30 {
    width: 30%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-768-25 {
    width: 25%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-768-20 {
    width: 20%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-768-15 {
    width: 15%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-768-10 {
    width: 10%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-768-5 {
    width: 5%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-768-33 {
    width: 33%;
  }
  .w-768-16 {
    width: 16.666666%;
  }
  .mb-768-100 {
    margin-bottom: 100px;
  }
  .mb-768-95 {
    margin-bottom: 95px;
  }
  .mb-768-90 {
    margin-bottom: 90px;
  }
  .mb-768-85 {
    margin-bottom: 85px;
  }
  .mb-768-80 {
    margin-bottom: 80px;
  }
  .mb-768-75 {
    margin-bottom: 75px;
  }
  .mb-768-70 {
    margin-bottom: 70px;
  }
  .mb-768-65 {
    margin-bottom: 65px;
  }
  .mb-768-60 {
    margin-bottom: 60px;
  }
  .mb-768-55 {
    margin-bottom: 55px;
  }
  .mb-768-50 {
    margin-bottom: 50px;
  }
  .mb-768-45 {
    margin-bottom: 45px;
  }
  .mb-768-40 {
    margin-bottom: 40px;
  }
  .mb-768-35 {
    margin-bottom: 35px;
  }
  .mb-768-30 {
    margin-bottom: 30px;
  }
  .mb-768-25 {
    margin-bottom: 25px;
  }
  .mb-768-20 {
    margin-bottom: 20px;
  }
  .mb-768-15 {
    margin-bottom: 15px;
  }
  .mb-768-10 {
    margin-bottom: 10px;
  }
  .mb-768-5 {
    margin-bottom: 5px;
  }
  .mb-768-0 {
    margin-bottom: 0px;
  }
}
@media all and (max-width: 640px) {
  .f-640-10 .f-col {
    width: 10%;
  }
  .f-640-9 .f-col {
    width: 11.11111111%;
  }
  .f-640-8 .f-col {
    width: 12.5%;
  }
  .f-640-7 .f-col {
    width: 14.28571429%;
  }
  .f-640-6 .f-col {
    width: 16.66666667%;
  }
  .f-640-5 .f-col {
    width: 20%;
  }
  .f-640-4 .f-col {
    width: 25%;
  }
  .f-640-3 .f-col {
    width: 33.33333333%;
  }
  .f-640-2 .f-col {
    width: 50%;
  }
  .f-640-1 .f-col {
    width: 100%;
  }
  .w-640-100 {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-640-95 {
    width: 95%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-640-90 {
    width: 90%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-640-85 {
    width: 85%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-640-80 {
    width: 80%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-640-75 {
    width: 75%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-640-70 {
    width: 70%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-640-65 {
    width: 65%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-640-60 {
    width: 60%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-640-55 {
    width: 55%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-640-50 {
    width: 50%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-640-45 {
    width: 45%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-640-40 {
    width: 40%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-640-35 {
    width: 35%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-640-30 {
    width: 30%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-640-25 {
    width: 25%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-640-20 {
    width: 20%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-640-15 {
    width: 15%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-640-10 {
    width: 10%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-640-5 {
    width: 5%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-640-33 {
    width: 33%;
  }
  .w-640-16 {
    width: 16.666666%;
  }
  .mb-640-100 {
    margin-bottom: 100px;
  }
  .mb-640-95 {
    margin-bottom: 95px;
  }
  .mb-640-90 {
    margin-bottom: 90px;
  }
  .mb-640-85 {
    margin-bottom: 85px;
  }
  .mb-640-80 {
    margin-bottom: 80px;
  }
  .mb-640-75 {
    margin-bottom: 75px;
  }
  .mb-640-70 {
    margin-bottom: 70px;
  }
  .mb-640-65 {
    margin-bottom: 65px;
  }
  .mb-640-60 {
    margin-bottom: 60px;
  }
  .mb-640-55 {
    margin-bottom: 55px;
  }
  .mb-640-50 {
    margin-bottom: 50px;
  }
  .mb-640-45 {
    margin-bottom: 45px;
  }
  .mb-640-40 {
    margin-bottom: 40px;
  }
  .mb-640-35 {
    margin-bottom: 35px;
  }
  .mb-640-30 {
    margin-bottom: 30px;
  }
  .mb-640-25 {
    margin-bottom: 25px;
  }
  .mb-640-20 {
    margin-bottom: 20px;
  }
  .mb-640-15 {
    margin-bottom: 15px;
  }
  .mb-640-10 {
    margin-bottom: 10px;
  }
  .mb-640-5 {
    margin-bottom: 5px;
  }
  .mb-640-0 {
    margin-bottom: 0px;
  }
}
@media all and (max-width: 576px) {
  .f-576-10 .f-col {
    width: 10%;
  }
  .f-576-9 .f-col {
    width: 11.11111111%;
  }
  .f-576-8 .f-col {
    width: 12.5%;
  }
  .f-576-7 .f-col {
    width: 14.28571429%;
  }
  .f-576-6 .f-col {
    width: 16.66666667%;
  }
  .f-576-5 .f-col {
    width: 20%;
  }
  .f-576-4 .f-col {
    width: 25%;
  }
  .f-576-3 .f-col {
    width: 33.33333333%;
  }
  .f-576-2 .f-col {
    width: 50%;
  }
  .f-576-1 .f-col {
    width: 100%;
  }
  .w-576-100 {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-576-95 {
    width: 95%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-576-90 {
    width: 90%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-576-85 {
    width: 85%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-576-80 {
    width: 80%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-576-75 {
    width: 75%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-576-70 {
    width: 70%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-576-65 {
    width: 65%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-576-60 {
    width: 60%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-576-55 {
    width: 55%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-576-50 {
    width: 50%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-576-45 {
    width: 45%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-576-40 {
    width: 40%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-576-35 {
    width: 35%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-576-30 {
    width: 30%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-576-25 {
    width: 25%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-576-20 {
    width: 20%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-576-15 {
    width: 15%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-576-10 {
    width: 10%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-576-5 {
    width: 5%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-576-33 {
    width: 33%;
  }
  .w-576-16 {
    width: 16.666666%;
  }
  .mb-576-100 {
    margin-bottom: 100px;
  }
  .mb-576-95 {
    margin-bottom: 95px;
  }
  .mb-576-90 {
    margin-bottom: 90px;
  }
  .mb-576-85 {
    margin-bottom: 85px;
  }
  .mb-576-80 {
    margin-bottom: 80px;
  }
  .mb-576-75 {
    margin-bottom: 75px;
  }
  .mb-576-70 {
    margin-bottom: 70px;
  }
  .mb-576-65 {
    margin-bottom: 65px;
  }
  .mb-576-60 {
    margin-bottom: 60px;
  }
  .mb-576-55 {
    margin-bottom: 55px;
  }
  .mb-576-50 {
    margin-bottom: 50px;
  }
  .mb-576-45 {
    margin-bottom: 45px;
  }
  .mb-576-40 {
    margin-bottom: 40px;
  }
  .mb-576-35 {
    margin-bottom: 35px;
  }
  .mb-576-30 {
    margin-bottom: 30px;
  }
  .mb-576-25 {
    margin-bottom: 25px;
  }
  .mb-576-20 {
    margin-bottom: 20px;
  }
  .mb-576-15 {
    margin-bottom: 15px;
  }
  .mb-576-10 {
    margin-bottom: 10px;
  }
  .mb-576-5 {
    margin-bottom: 5px;
  }
  .mb-576-0 {
    margin-bottom: 0px;
  }
}
@media all and (max-width: 480px) {
  .f-480-10 .f-col {
    width: 10%;
  }
  .f-480-9 .f-col {
    width: 11.11111111%;
  }
  .f-480-8 .f-col {
    width: 12.5%;
  }
  .f-480-7 .f-col {
    width: 14.28571429%;
  }
  .f-480-6 .f-col {
    width: 16.66666667%;
  }
  .f-480-5 .f-col {
    width: 20%;
  }
  .f-480-4 .f-col {
    width: 25%;
  }
  .f-480-3 .f-col {
    width: 33.33333333%;
  }
  .f-480-2 .f-col {
    width: 50%;
  }
  .f-480-1 .f-col {
    width: 100%;
  }
  .w-480-100 {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-480-95 {
    width: 95%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-480-90 {
    width: 90%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-480-85 {
    width: 85%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-480-80 {
    width: 80%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-480-75 {
    width: 75%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-480-70 {
    width: 70%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-480-65 {
    width: 65%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-480-60 {
    width: 60%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-480-55 {
    width: 55%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-480-50 {
    width: 50%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-480-45 {
    width: 45%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-480-40 {
    width: 40%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-480-35 {
    width: 35%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-480-30 {
    width: 30%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-480-25 {
    width: 25%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-480-20 {
    width: 20%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-480-15 {
    width: 15%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-480-10 {
    width: 10%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-480-5 {
    width: 5%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-480-33 {
    width: 33%;
  }
  .w-480-16 {
    width: 16.666666%;
  }
  .mb-480-100 {
    margin-bottom: 100px;
  }
  .mb-480-95 {
    margin-bottom: 95px;
  }
  .mb-480-90 {
    margin-bottom: 90px;
  }
  .mb-480-85 {
    margin-bottom: 85px;
  }
  .mb-480-80 {
    margin-bottom: 80px;
  }
  .mb-480-75 {
    margin-bottom: 75px;
  }
  .mb-480-70 {
    margin-bottom: 70px;
  }
  .mb-480-65 {
    margin-bottom: 65px;
  }
  .mb-480-60 {
    margin-bottom: 60px;
  }
  .mb-480-55 {
    margin-bottom: 55px;
  }
  .mb-480-50 {
    margin-bottom: 50px;
  }
  .mb-480-45 {
    margin-bottom: 45px;
  }
  .mb-480-40 {
    margin-bottom: 40px;
  }
  .mb-480-35 {
    margin-bottom: 35px;
  }
  .mb-480-30 {
    margin-bottom: 30px;
  }
  .mb-480-25 {
    margin-bottom: 25px;
  }
  .mb-480-20 {
    margin-bottom: 20px;
  }
  .mb-480-15 {
    margin-bottom: 15px;
  }
  .mb-480-10 {
    margin-bottom: 10px;
  }
  .mb-480-5 {
    margin-bottom: 5px;
  }
  .mb-480-0 {
    margin-bottom: 0px;
  }
}
@media all and (max-width: 400px) {
  .f-400-10 .f-col {
    width: 10%;
  }
  .f-400-9 .f-col {
    width: 11.11111111%;
  }
  .f-400-8 .f-col {
    width: 12.5%;
  }
  .f-400-7 .f-col {
    width: 14.28571429%;
  }
  .f-400-6 .f-col {
    width: 16.66666667%;
  }
  .f-400-5 .f-col {
    width: 20%;
  }
  .f-400-4 .f-col {
    width: 25%;
  }
  .f-400-3 .f-col {
    width: 33.33333333%;
  }
  .f-400-2 .f-col {
    width: 50%;
  }
  .f-400-1 .f-col {
    width: 100%;
  }
  .w-400-100 {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-400-95 {
    width: 95%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-400-90 {
    width: 90%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-400-85 {
    width: 85%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-400-80 {
    width: 80%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-400-75 {
    width: 75%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-400-70 {
    width: 70%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-400-65 {
    width: 65%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-400-60 {
    width: 60%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-400-55 {
    width: 55%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-400-50 {
    width: 50%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-400-45 {
    width: 45%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-400-40 {
    width: 40%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-400-35 {
    width: 35%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-400-30 {
    width: 30%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-400-25 {
    width: 25%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-400-20 {
    width: 20%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-400-15 {
    width: 15%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-400-10 {
    width: 10%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-400-5 {
    width: 5%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-400-33 {
    width: 33%;
  }
  .w-400-16 {
    width: 16.666666%;
  }
  .mb-400-100 {
    margin-bottom: 100px;
  }
  .mb-400-95 {
    margin-bottom: 95px;
  }
  .mb-400-90 {
    margin-bottom: 90px;
  }
  .mb-400-85 {
    margin-bottom: 85px;
  }
  .mb-400-80 {
    margin-bottom: 80px;
  }
  .mb-400-75 {
    margin-bottom: 75px;
  }
  .mb-400-70 {
    margin-bottom: 70px;
  }
  .mb-400-65 {
    margin-bottom: 65px;
  }
  .mb-400-60 {
    margin-bottom: 60px;
  }
  .mb-400-55 {
    margin-bottom: 55px;
  }
  .mb-400-50 {
    margin-bottom: 50px;
  }
  .mb-400-45 {
    margin-bottom: 45px;
  }
  .mb-400-40 {
    margin-bottom: 40px;
  }
  .mb-400-35 {
    margin-bottom: 35px;
  }
  .mb-400-30 {
    margin-bottom: 30px;
  }
  .mb-400-25 {
    margin-bottom: 25px;
  }
  .mb-400-20 {
    margin-bottom: 20px;
  }
  .mb-400-15 {
    margin-bottom: 15px;
  }
  .mb-400-10 {
    margin-bottom: 10px;
  }
  .mb-400-5 {
    margin-bottom: 5px;
  }
  .mb-400-0 {
    margin-bottom: 0px;
  }
}
/*==========================================================================
=> Global Styles
========================================================================== */
*,
*:before,
*:after {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}
audio,
canvas,
video {
  display: inline-block;
}
audio:not([controls]) {
  display: none;
  height: 0;
}
[hidden] {
  display: none;
}
html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  width: 100%;
}
body {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}
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: monospace, serif;
  font-size: 1em;
}
pre {
  white-space: pre-wrap;
}
small {
  font-size: 80%;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
svg:not(:root) {
  overflow: hidden;
}
figure {
  margin: 0;
}
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}
legend {
  border: 0;
  padding: 0;
}
button,
input,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  margin: 0px;
}
button,
input {
  line-height: normal;
}
button,
select {
  text-transform: none;
}
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}
button[disabled],
html input[disabled] {
  cursor: default;
}
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}
input[type="search"] {
  -webkit-appearance: textfield;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
textarea {
  overflow: auto;
  vertical-align: top;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
input,
button,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
button,
input,
select[multiple],
textarea {
  background-image: none;
}
a {
  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}
a:active,
a:hover,
a:focus {
  outline: 0;
  text-decoration: none;
}
img {
  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;
}
/*==========================================================================
=> buttons
========================================================================== */
.button {
  font-weight: var(--button-font);
  background: #F15A24;
  outline: none;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  height: auto;
  border: 1px solid transparent;
  border-radius: 32px;
  font-size: 16px;
  text-align: center;
  padding: 0 36px;
  width: max-content;
  box-shadow: 0px 0.09px 0px #333;
  will-change: transform;
  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  padding: 12px 28px 12px 28px;
}
.button.center {
  margin: auto;
}
.button.small {
  height: auto;
  font-size: 14px;
  padding: 12px 24px;
  border-radius: 32px;
}
.button:hover {
  background: var(--clr);
  border: 1px solid var(--clr) !important;
  color: #fff;
  transform: translateY(-5px);
}
.button.line {
  background: transparent;
  border: 1px solid var(--new);
  color: var(--new);
}
.button.white {
  border: 1px solid #fff;
}
.button.white:hover {
  background: transparent;
  box-shadow: 0px 5px 0px #fff;
}
.button.orange {
  background: var(--clr);
}
.button.orange:hover {
  border: 1px solid var(--clr);
  background: var(--clr);
  box-shadow: 0px 5px 0px #bbb;
}
.button:hover,
.button:focus,
.button:active {
  text-decoration: none;
  outline: none;
}
button:focus {
  outline: none;
}
.button--block {
  width: 100%;
}
.button svg {
  position: relative;
  top: -2px;
}
.button svg path {
  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
}
.button .phone {
  margin-right: 5px;
}
/*==========================================================================
=> Form Elements
========================================================================== */
.element-section {
  padding: 50px 0;
  border-bottom: 1px solid #ddd;
}
.element-section .ehdn1 {
  margin-bottom: 30px;
}
.ehdn2 {
  color: var(--black);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 16px;
}
.myElem {
  display: block;
  border: 1px solid #ccc;
  padding: 20px;
  text-align: center;
}
.form-grp,
.form-textarea-group {
  position: relative;
  margin-top: 8px;
  margin-bottom: 24px;
}
.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-weight: 500;
  height: 46px;
  font-size: 16px;
  border: 0;
  border: 1px solid rgba(21, 20, 29, 0.5);
  border-radius: 4px;
  padding: 0 16px;
  position: relative;
  background: transparent;
  color: var(--black);
  width: 100%;
  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: 1px solid rgba(21, 20, 29, 0.8);
}
.form-field ~ .form-label {
  color: #aaa;
  position: absolute;
  font-size: 14px;
  left: 16px;
  top: 14px;
  padding: 0;
  margin: 0;
  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  padding: 0 4px;
}
.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: "medium";
  border-color: transparent;
  background: #1baac4;
  color: #fff;
  box-shadow: none !important;
}
.daterangepicker:before {
  border-bottom: 0;
}
.daterangepicker .calendar-table th {
  font-family: "bold";
  font-size: 14px;
  color: #000000;
}
.daterangepicker th.month {
  font-family: "medium";
  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: "regular";
  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: #999;
}
input::-webkit-input-placeholder {
  color: #999;
}
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: 16px;
  color: var(--black);
  margin: 0;
  padding: 5px;
  padding-left: 32px;
  cursor: pointer;
  position: relative;
}
.radio-box label:before {
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid var(--black);
  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 var(--black);
}
.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;
}
/*new*/
/* new */
.newss{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 30px;
    padding-bottom:10px;
}
.newss ul {
    list-style: disc;
}
.newafter .writer-wrap{
    display: inline-flex;
    align-items: center;
}
.detailed-pg-header-txt{
    font-family: Inter;
    font-weight: 800;
    font-size: 40px;
    line-height: 48px;
    margin-bottom: 10px;
    text-align:center;
}
.newafter .share-img{
    height: 56px;
    width: 56px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--new);
    margin-right: 24px;
}
.writer-wrap p{
    font-family: Inter;
    font-size: 20px;
    font-weight: 500;
    text-align: left;
    text-decoration: underline;
    align-items: center;
}
.case-studies-detail-header{
  padding: 40px 0px !important;
  background:  #02534d;
}
.newsh img {
    max-width: 17%;
}
.short-review .l img {
    padding-bottom: 10px;
}
.short-review .r img {
    padding-top: 0px;
}
.tab-slide .h1{
    font-family: Inter;
    font-weight: 700;
    font-size: 40px;
    line-height: 48px !important;
    text-align: center;
    width: 55%;
    padding-top: 30px;
    margin: auto;
}
.breadcrumbs{
    color: white;
    display: inline-flex;
    gap: 16px;
font-weight: 500;
font-size: 14px;
line-height: 20px;
letter-spacing: 0%;
text-align: center;
}
.breadcrumbs a{
    color:white;
}
.breadcrumbs a:hover{
    color:var(--clr);
}
.tab-slide {
    text-align: center;
    padding-top: 40px;
}
@media (max-width: 990px) {
    .tab-slide .h1 {
        font-size: 24px;
        line-height: 32px !important;
    }
}
/* Hide on screens wider than 768px */
@media screen and (min-width: 769px) {
  .header-list-for-m-b {
    display: none !important;
  }
}

/* Show only on screens 768px or smaller */
@media screen and (max-width: 768px) {
  .header-list-for-m-b {
    display: block;
  }
}

@media (max-width: 768px) {
    .header-list-for-m-b{
    position: fixed;
    top: 0;
    left: 0;
    width: -webkit-fill-available;
    z-index: 1000;
    background:white;
}
    .tab-slide .h1 {
        width: 100%;
    }
}
.tab-slide .rtimr{
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0%;
    text-align: center;
    padding:16px 0px 24px 0px;
}
.date-sc p{
    padding:0px;
}
.date-sc{
    align-items: center;
    font-weight: 500 !important;
    font-style: italic;
    font-size: 14px !important;
    line-height: 20px !important;
    letter-spacing: 0%;
}

.date-sc a{
    color:var(--white) !important;
    text-decoration: underline;
    font-weight: 600;
    font-style: normal;
}
.date-sc li{
    font-style: normal;
}
.right-q {
    background: #02534d;
    margin-top: 25px;
    padding: 24px 16px;
    border-radius: 8px;
}
.detail-content-right h3 {
    font-size: 18px !important;
    font-weight: 600 !important;
    line-height: 27px !important;
    text-align: left;
    color: var(--clr);
}
.right-q .page-banner-btn {
    display: block;
}
.page-banner-btn img {
    min-height: auto !important;
    margin: 0px !important;
    width: 22% !important;
}
.tab-slide p{
    font-size: 14px;
    font-weight: 400;
    line-height: 20px !important;
}
.tab-slide a.button{
    padding:12px 70px;
    border-radius:8px;
}
.tab-slide .page-banner-btn {
    display: flex;
    margin-top: 0px;
    gap: 10px;
    align-items: center;
}
.tab-slide-right .service-swiper-box {
    background: #FFFFFF1A;
    border-radius: 12px;
    padding: 24px 20px 20px 20px;
    margin-left: 50px;
    margin-top: 0px;
    margin-bottom: 0px;
    height: auto;
    display: block;
    align-items: center;
}
.newsh {
    text-align: center;
}
.tab-slide-right  .service-swiper-box h4 {
    color: #ffffff !important;
    padding:5px 0px 4px 0px;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0%;
    text-align: center;
    margin: 0;
}
.newsh h5{
    font-weight: 500;
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 0%;
    text-align: center;
    color:#ffffff99;
}
.tab-slide-right .service-swiper-box p {
    margin: 0;
    padding-top: 5px;
    font-weight: 400;
    font-style: italic;
    font-size: 14px;
    line-height: 22px !important;
    letter-spacing: 0%;
    text-align: center;
    color:#ffffff !important;
}
.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;
}
.comm-section.case-banner{
  background: url(../img/case_study_b.svg) no-repeat;
  background-size: contain;
  background-position: top;
}
.case-banner-img{
    text-align:center;
}
.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: 700;
  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: 10px;
}
.checkbox-box.chk-four label {
  padding: 7px 15px;
  border: 1px solid #dde3ee;
  border-radius: 8px;
  display: -webkit-flex;
  display: -webkit-box;
  display: -moz-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.checkbox-box.chk-four label i {
  font-size: 18px;
  color: #8594af;
  margin-right: 10px;
  position: absolute;
  left: 15px;
}
.checkbox-box.chk-four label span {
  font-family: 500;
  font-size: 14px;
  color: #000;
  margin-left: 25px;
}
.checkbox-box.chk-four label:before,
.checkbox-box.chk-four label:after {
  display: none;
}
.checkbox-box.chk-four.chk-err input:checked ~ .chk-label {
  border: 1px solid var(--clr-red);
}
.checkbox-box.chk-four.chk-err input:checked ~ .chk-label i {
  color: var(--clr-red);
}
.checkbox-box.chk-four input:checked ~ .chk-label {
  border: 1px solid var(--clr-grn);
}
.checkbox-box.chk-four input:checked ~ .chk-label i {
  color: var(--clr-grn);
}
/* checkbox 4 end */
.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 end */
.white {
  color: #ffffff !important;
}
.error-img {
  max-width: 540px;
  width: 100%;
  margin: 0 auto 64px;
}
.error-img img {
  object-fit: contain;
}
.detail-box h3 {
  color: var(--black);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 16px;
}
.detail-box h4 {
  color: var(--black);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 16px;
}
.detail-box h5 {
  color: var(--black);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 16px;
}
.detail-box h6 {
  color: var(--black);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 16px;
}
.detail-box p {
  color: var(--black);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 64px;
}
.detail-box ul li {
  color: var(--black);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 24px;
  position: relative;
  padding-left: 22px;
}
.detail-box ul li::before {
  content: "";
  width: 5px;
  height: 5px;
  background: var(--black);
  font-size: 16px;
  position: absolute;
  top: 10px;
  left: 10px;
  border-radius: 100%;
  overflow: hidden;
}
.detail-box ul li:last-child {
  margin-bottom: 0;
}
.black-detail-sec {
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 64px;
}
.black-detail-box {
  max-width: 1076px;
  margin: 0 auto;
  padding: 62px 0;
}
.black-detail-box h3 {
  color: #ffffff;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 16px;
}
.black-detail-box p {
  color: #ffffff;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 64px;
}
.black-detail-box ul li {
  color: #ffffff;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 24px;
  position: relative;
  padding-left: 22px;
}
.black-detail-box ul li::before {
  content: "";
  width: 5px;
  height: 5px;
  background: #ffffff;
  font-size: 16px;
  position: absolute;
  top: 10px;
  left: 10px;
  border-radius: 100%;
  overflow: hidden;
}
.black-detail-box ul li:last-child {
  margin-bottom: 0;
}
.sign-in-box {
  width: 100%;
  height: 100vh;
}
.sign-in-box .container {
  width: 100%;
  height: 100%;
  display: -webkit-flex;
  display: -webkit-box;
  display: -moz-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
}
.sign-in-box .page-banner-wrap {
  width: 100%;
  height: 100%;
  min-height: 100vh;
}
.sign-in-wrap {
  display: -webkit-flex;
  display: -webkit-box;
  display: -moz-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  gap: 24px;
}
.sign-in-detail {
  max-width: 556px;
  width: 100%;
}
.sign-in-detail .logo {
  margin-bottom: 40px;
}
.sign-in-detail .comm-title {
  margin-bottom: 24px;
}
.struggling-txt .w10{
    padding:0px;
}
.struggling-txt .w40 p{
    padding: 0px 30px;
}
.password-detail {
  color: rgba(0, 0, 0, 0.5);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 40px;
}
.ez-toc-cssicon{
       left: 0px !important;
}
.trouble-wrap {
  display: -webkit-flex;
  display: -webkit-box;
  display: -moz-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
p{
   line-height: 30px !important;
}
.trouble-wrap a {
  color: rgba(0, 0, 0, 0.5);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
}
.trouble-wrap a:hover {
  color: #000000;
}
.sign-in-form {
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--black);
}
.another-acc p,
.another-acc a {
  color: #000;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
  display: inline;
}
.another-acc a {
  color: var(--clr);
  text-decoration: underline;
}
.another-acc a:hover {
  color: var(--black);
}
.sign-in-review {
  max-width: 565px;
  width: 100%;
}
.review-wrap {
  display: -webkit-flex;
  display: -webkit-box;
  display: -moz-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 24px;
}
.review-box {
  padding: 0 48px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  width: 50%;
}
.review-box:first-child {
  padding-left: 0;
}
.review-box:last-child {
  padding-right: 0;
  border: none;
}
.review-box .comm-title {
  margin-bottom: 12px;
}
.review-box p {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}
.star-img {
  width: 132px;
  margin-bottom: 18px;
}
.star-img img {
  object-fit: contain;
}
.testi-box {
  width: 100%;
  border-radius: 25px;
  border: 2px solid var(--black);
  background: #fff;
  padding: 36px;
}
.testi-box p {
  color: var(--black);
  font-size: 21px;
  font-family: Inter;
  font-style: normal;
  font-weight: 400;
  line-height: 1.8;
  margin-bottom: 16px;
}
.testi-person-wrap {
  display: -webkit-flex;
  display: -webkit-box;
  display: -moz-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin-bottom: 8px;
}
.person-name {
  color: var(--black);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
}
.quotes-img {
  width: 48px;
  height: 48px;
}
.quotes-img img {
  object-fit: contain;
}
.testi-btn-wrap {
  margin-top: 24px;
  display: -webkit-flex;
  display: -webkit-box;
  display: -moz-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 36px;
}
.testi-btn-wrap p {
  color: rgba(245, 246, 246, 0.3);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
}
.testi-btn-box {
  display: -webkit-flex;
  display: -webkit-box;
  display: -moz-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  user-select: none;
}
.testi-right,
.testi-left {
  width: 48px;
  height: 48px;
  border: 1.5px solid #fff;
  border-radius: 100%;
  overflow: hidden;
  display: -webkit-flex;
  display: -webkit-box;
  display: -moz-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  cursor: pointer;
}
 .head-sss {
   background: linear-gradient(to right, rgb(241,90,36), rgb(241,90,36), rgb(244,89,35), rgb(213,95,48), rgb(107,125,100), rgb(26,158,144), rgb(0,165,152), rgb(0,164,151), rgb(0,164,151), rgb(0,164,151));
   background-size: cover;
   position: fixed;
   width: 100%;
   z-index: 111;
}
.head-sss .w50 {
    padding: 6px 15px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}
.head-sss .w50 span {
    font-weight: 700;
    color: var(--white);
}
.head-sss .tel-c {
    text-align: right;
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
}
.testi-right.swiper-button-disabled,
.testi-left.swiper-button-disabled {
  opacity: 0.5;
  pointer-events: none;
}
.testi-left:hover .arrow-img {
  transform: translateX(-3px);
}
.testi-right:hover .arrow-img {
  transform: translateX(3px);
}
.arrow-img {
  width: 14px;
  height: 12px;
  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
}
.arrow-img img {
  object-fit: contain;
  display: block;
}
.review-star-wrap {
  width: 190px;
}
.review-star-wrap span {
  color: #ee5e36;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 4px;
  display: block;
  text-align: center;
}
.star-main-box {
  position: relative;
  width: 100%;
  height: 44px;
}
.star-btm {
  width: 170px;
  height: 40px;
  background: #454e5d;
  border-radius: 20px;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  padding: 2px 20px 2px 10px;
  z-index: 1;
}
.Quote-first{
    background: linear-gradient(to left, #ffffff 0%, #ffffff 55%, #F15A24 55%, #00A497 100%);
        margin-bottom: -9px;
        padding:;
}
.quotes-left{
    padding: 80px 80px 80px 15px;
}
.quotes-right .wpcf7-form-control{
    background: #fff;
    color: #333;
    border-radius: 8px;
    border: 1px solid #e4e4e4;
    padding: 8px 16px;
    outline: 0;
    font-size: 14px;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    -webkit-box-shadow: none;
    margin-bottom: 0px;
    width: 100%;
}
.quotes-right{
        padding: 80px 80px 80px 80px;
}
.quotes-right h2{
    font-size: 48px;
    font-weight: 800;
    line-height: 56px;
    text-align: left;
    padding-bottom: 40px;
}
.quotes-right .wpcf7-submit{
    width: auto;
    background: var(--clr) !important;
    color: white !important;
    border-radius: 32px !important;
    padding: 0 36px !important;
}
.quotes-right h2 span{
    color: var(--new);
}
.teo p{
    display:inline-flex;
    gap: 10px;
    display: inline-flex;
    padding-bottom: 20px;
}
.teo .wpcf7-form-control{
    width:100%;
}
.quotes-left li::marker {
color: rgb(255 255 255 / 80%);
}
.quotes-left li{
    list-style: inside;
    padding-top: 20px;
}
.quotes-left li strong{
    font-size: 24px;
    font-weight: 600;
    line-height: 36px;
    text-align: left;
    color: rgb(255 255 255 / 80%);
}
.quotes-left li h4{
font-size: 16px;
font-weight: 500;
line-height: 24px;
text-align: left;
color: rgb(255 255 255 / 50%);
padding-left: 23px;
padding-top:8px;
}
.stan-bo {
    height: 8px;
    width: 100%;
    vertical-align: bottom;
}
.Quote-first{
    padding: 60px 0px 0px 0px !important;
}
.quotes-left p{
    padding-top: 16px;
    padding-bottom: 20px;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px !important;
    text-align: left;
    color: rgb(255 255 255 / 80%);
}
.quotes-left h4{
    font-size: 48px;
    font-weight: 800;
    line-height: 56px;
    text-align: left;
    color: white;
}
.yellow-line {
  width: 0%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #ffbb01;
  z-index: -1;
  transition: width 1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.review-num {
  width: 44px;
  height: 44px;
  border-radius: 100%;
  overflow: hidden;
  background: #ffbb01;
  display: -webkit-flex;
  display: -webkit-box;
  display: -moz-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: -3px;
  right: 0;
  z-index: 4;
}
.review-num span {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
  color: var(--black);
  margin-bottom: 0;
}
.review-img {
  width: 100%;
  height: 100%;
  z-index: 3;
  position: relative;
  overflow: hidden;
}
.review-img img {
  object-fit: cover;
}
.review-img::before {
  content: "";
  width: 100%;
  height: 100%;
  background: #ffffff;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
}
.comm-title-wrap .comm-title {
  margin-bottom: 23px;
}
.comm-title-wrap .button {
  margin-top: 32px;
}
.comm-video-sec {
  position: relative;
  margin: 24px;
  display: flex;
  justify-content: center;
}
.vidoe-player-bg {
  position: absolute;
  top: 80px;
  max-width: 1260px;
  width: 100%;
  height: 414px;
  z-index: 1;
}
.vidoe-player-bg img {
  width: 100%;
  height: 100%;
}
.video-main-box {
  border-radius: 16px;
  z-index: 2;
  max-width: 744px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  background: #ffffff;
  height: 450px;
}
.video-main-box .frame {
  position: absolute;
  height: 100%;
  width: 100%;
  border: 2px solid #000;
  border-radius: 16px;
  z-index: 1;
}
.dot-wrap {
  height: 60px;
  padding: 16px 14px;
  display: -webkit-flex;
  display: -webkit-box;
  display: -moz-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  border-bottom: 2px solid #000;
}
    .mobile-b {
        display: none;
    }
.dot-wrap ul {
  display: flex;
  gap: 10px;
}
.card_service{
  margin-bottom: 35px;
}
.dot-wrap ul li {
  width: 10px;
  height: 10px;
  background: var(--new);
  border-radius: 100%;
  overflow: hidden;
}
.video-player-box {
  padding: 20px;
  height: auto;
  position: relative;
  z-index: 111;
}
.video-img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}
.video-img img {
  object-fit: cover;
}
.play-btn {
  width: 60px;
  height: 60px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
}
.play-btn img {
  object-fit: contain;
}
.unique-box-sec {
  padding: 64px 0;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}
.team-swiper-sec {
  border-top: 1px solid var(--black);
}
.team-swiper-wrap {
  display: -webkit-flex;
  display: -webkit-box;
  display: -moz-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 36px;
}
.team-swiper-wrap .swiper-slide {
  display: flex;
  height: auto;
}
.team-swiper-wrap .case-study-nav {
  justify-content: flex-end;
}
.team-detail-swiper-box {
  max-width: 750px;
  width: 100%;
}
.team-detail-box {
  border-radius: 25px;
  padding: 34px 0px 0px 100px;
  width: 100%;
  height: 100%;
}
.team-detail-swiper {
  margin: 40px 0 24px;
}
.team-info-wrap {
  display: -webkit-flex;
  display: -webkit-box;
  display: -moz-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 36px;
  margin-bottom: 24px;
}
.logo-s .logo-swiper-wrap{
  border:none !important;
  display: block;
}
.services-video-sec .video-img{
  border-radius: 4px;
}
.services-video-sec .video-main-box-big .video-img{
  height: auto;
}
.services-video-sec .play-btn{
  top: 40%;
  z-index: 999;
}
.power-s{
  text-align: center;
}
.power-s div{
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.strategic_Approach{
  background-color: #101010;
}
.strategic_Approach .comm-sub-title{
  font-size: 16px;
}
.highlighted-g-s span{
    color: #00A497;
}
    .detail-pg-header .comm-sub-title{
    font-size: 16px;
    font-weight: 500;
    line-height: 24px !important;
    text-align: left;
    color: rgba(255, 255, 255, 1);
    }
.carr-i{
  background: url(../img/carr-i.png) no-repeat;
}
.strategic_Approach .service-swiper-box {
    padding: 0px;
}
.page-template-career-php .service-swiper-box{
    text-align: left;
}
.strategic_Approach .ser-swiper-nav{
  justify-content: flex-end;
  margin-top: 0px;
}
.strategic_Approach .service-swiper-wrap{
  margin-top:0px;
}
.head-right .menuBtn .button.small {
    border-radius: 8px;
    background: linear-gradient(135deg, #e55a2b 0%, #ff6b35 100%) !important;
}
.head-right .menuBtn .button.small:hover {
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.6) !important;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%) !important;
}
.strategic_Approach .comm-nav-left.white-left{
  background: url(../img/arrow-left.png) no-repeat;
}
.strategic_Approach .comm-nav-right.white-right{
  background: url(../img/arrow-right.png) no-repeat;
}
.what-people-s .service-swiper-box{
  background: var(--white);
  border-radius: 12px;
  box-shadow: 4px 4px 40px 1px #00000014;
  height: 200px;
}
.what-people-s .service-swiper-box p{
  line-height: 24px !important;
  font-size: 16px;
  text-align: left;
}
.full-review {
  transition: max-height 0.5s ease, opacity 0.5s ease;
  overflow: hidden;
}
.what-people-s .service-swiper-box h4.ratings{
  background: var(--clr);
  color: var(--white);
  padding: 0px 10px;
  border-radius: 42px;
  font-size: 14px;
}
.what-people-s .short-review,.what-people-s .service-swiper-box h4{
  margin-top: 0px;
}
.short-review {
    transition: opacity 0.5s ease;
}
.what-people-s .sfirst{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.what-people-s{
   background: url('../img/bg-w.jpg') no-repeat;
 background-size: cover;
}
.power-s p{
font-size: 16px;
font-weight: 600;
line-height: 24px;
text-align: left;
}
.member-name {
  color: var(--black);
  font-size: 21px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 16px;
}
.designation {
  color: var(--black);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
  text-transform: uppercase;
}
.member-social {
  width: 40px;
  height: 40px;
  border-radius: 100%;
  overflow: hidden;
  background: var(--clr);
  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
}
.member-social:hover {
  background: #000000;
}
.member-social img {
  object-fit: cover;
}
.team-detail p {
  color: var(--black);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}
.team-img-wrap {
  max-width: 400px;
  width: 100%;
}
.team-img-swiper {
  width: 340px;
}
.team-img {
  width: 100%;
  height: 502px;
  margin: 0 auto;
}
.team-img img {
  object-fit: contain;
}
.group-swiper-sec {
  padding: 200px 0;
  overflow: hidden;
}
.group-img-swier {
  max-width: 973px;
  width: 100%;
  overflow: visible !important;
  position: relative;
}
.group-img-swier .swiper-slide {
  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
}
.group-img-swier .swiper-slide-active {
  scale: 1.3;
}
.group-img-swier .comm-nav-right,
.group-img-swier .comm-nav-left {
  background-color: #fff;
  border-radius: 100%;
  overflow: hidden;
  background-size: 55px 55px;
  background-position: center;
}
.grp-img {
  width: 723px;
  height: 452px;
  border: 2px solid var(--black);
  border-radius: 24px;
  overflow: hidden;
  margin: 0 auto;
}
.grp-nav {
  position: absolute;
  top: 50%;
  justify-content: space-between;
  width: 100%;
  z-index: 2;
  transform: translateY(-50%);
}
.loving-people-sec{
  border-bottom: 1px solid #000;
}
.loving-people-sec .comm-title-wrap.center {
  margin: 0 auto 46px;
}
.loving-swiper {
  overflow: visible !important;
}
.abt-popup-hdn .comm-title-wrap.center {
  max-width: 1100px;
}
.pioneer-sec .service-swiper-image {
  height: 460px;
}
.podcast-pm #wpcf7-f76884-o1 .form-grp{
    margin: unset;
}
.podcast-pm .detail-pg-header{
    width:49%;
}
.podcast-pm .comm-sub-title{
    margin-bottom: 24px;
}
.pdse h4{
    font-size: 42px;
    font-weight: 800;
    line-height: 58.8px;
    text-align: center;
}
.pdse h2 span{
    color:var(--new);
}
.pdse .comm-title-wrap.center {
    max-width: 966px;
}
.newsd{
    padding-top:40px;
}
.newsd .container{
    padding:0px;
}
.podcast-card .blog-img{
        height: auto !important;
}
.podcast-pm .subscribe-btn{
    font-size:14px;
    background: rgba(255, 255, 255, 1);
    height: 50px;
    width: 140px;
    color:var(--clr);
    border-radius:8px;
}
.podcast-pm .form-grp input::placeholder{
    color:white;
}
.podcast-pm .form-field:focus{
      outline: none !important;
}
.podcast-pm .form-field{
    height: 61px;
    color:white;
    font-size: 16px;
    border-radius:8px;
    border: 1px solid rgba(255, 255, 255, 0.7);
}
.subscribe-email .form-grp {
    max-width:376px;
}
.case-studies-detail-header{
  background-size: cover;
  background-position:center;
}
.close-icon{
    cursor: pointer;
}
.case-studies-detail-header .date-sc{
font-size: 18px;
font-weight: 500;
line-height: 30px;
text-align: left;
color: #FFFFFFCC;
}
:root {
  --header-height: 85px;
  --header-scroll-height: 85px;
}
html,
body {
  /**overflow: hidden;**/
  width: 100%;
  /**height: 100vh;**/
}

.page-id-77063{
        height: 100vh !important;
}


#main-scrollbar {
  width: auto;
  height: 100vh;
  margin: 0;
  position: relative;
}
#main-scrollbar::-webkit-scrollbar {
  display: none;
  width: 0;
}
.container {
  max-width: 1330px;
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
}
.main-container {
  padding-top: var(--header-height);
  overflow: hidden;
  width: 100vw;
}
.comm-section {
  padding: 60px 0px;
  position: relative;
}
.tabel-section{
    padding-bottom:120px;
}
.are-you-section{
padding: 0px 0px 80px 0px;
}
.service-faq{
  padding: 120px 0px;
}
.strategic_Approach{
  padding: 120px 0;
}
.power-section{
  padding: 120px 0;
}
.strategic_Approach .center{
  text-align: center;
  margin: auto;
}
.process-wrap{
  padding: 120px 0px 60px 0px; 
}
.white-label-advantages .seo-blog-txt{
  padding-bottom: 20px;
}
.white-service-swiper{
  padding: 120px 0px;
}
.white-label-advantages{
  padding: 120px 0px;
}
.white-label-advantages .comm-title-wrap.center{
  max-width: 1060px;
}
.trusted-logo{
    padding-bottom: 120px;
  }
.white-service-swiper .f-row{
  align-items: center;
}
.white-service-swiper .left-s{
  padding-right: 30px;
}
.white-service-swiper .faqQus h4::before{
  content: none;
}
.white-service-swiper{
 background: url('../img/bg-w.jpg') no-repeat;
 background-size: cover;
}
.services-first{
 background: url('../img/white-bg.jpg') no-repeat;
 background-size: contain;
}
.case-banner{
 background: url('../img/white-bg.jpg') no-repeat;
 background-size: auto;
}
.case-banner .page-banner-img{
  height: 332px;
}
.case-banner{
  padding-top: 60px;
  padding-bottom: 40px;
}
.card-s{
  padding-top: 20px;
}
.case-banner .page-banner-txt {
    padding-right: 0;
}
.case-banner .page-banner-img img {
    height: 85%;
  }
.trusted-logo .swiper-logo .swiper-slide{
    margin-right: 15px !important;
    margin-left: 15px !important;
}
.white-service-swiper .faqAcc{
border-bottom: 1px solid rgb(249 249 249 / 20%) !important;
padding: 0px;
border-top:0px;
}
.faqs .faqAcc:nth-child(1){
  border-top: none;
}
.faqs .faqAcc:last-child ,.faqs .faqAcc:last-child:hover{
  border: none !important;
}
.white-service-swiper .faqAcc:hover,.white-service-swiper .faqAcc.active{
border-bottom: 1px solid #00A497 !important;
}
.white-service-swiper .faqQus:before{
background: #ffffff;
right: 0px;
}
.white-service-swiper .faqQus:after{
background: #ffffff;
right: 8px;
}
.button-top{
  margin-top: 24px;
}
.white-service-swiper .right-s{
padding-left: 80px;
}
.tabel-section .comm-content-wrap
{
  padding-right: 40px;
}
.tabel-section .f-row{
  align-items: center;
}
.tabel-section{
  background: url('../img/bg-w.jpg') no-repeat;
  padding-top: 120px !important;
  background-position: center;
    background-size: cover;
}
.text-align-center{
  text-align: center;
}
.text-align-left{
  text-align: left;
}
.white-label-advantages .seo-blog-txt{
padding-left: 0px;
}
.white-label-advantages .seo-blog-wrap .f-row {
    align-items: unset;
}
.white-label-advantages .google-img{
  padding-bottom: 40px;
}
.white-label-advantages .button{
  margin: auto;
}
.bookcall-s a{
  color: var(--clr);
}
.table-title span{
  color: var(--clr);
}
.bookcall-s{
  font-weight: 600;
  padding-top: 40px;
  padding-bottom: 20px;
}
.bookcall-s a{
  font-weight: 700;
  text-decoration: underline;
}
.white-orange-bg{
  position: absolute;
    width: auto;
    height: auto;
    right: 0;
    margin-top: -78px;
}
.white-label-advantages{
  background: white;
}
.comm-section.home-logo-s{
  padding: 0px 0px 72px 0px;
  position: relative;
}
.bookcall-s{
 padding-bottom:0px;   
}
.seo-en-section{
  padding:30px 0px;
}
.mb16 {
  margin-bottom: 16px !important;
}
.mb40 {
  margin-bottom: 40px !important;
}
.mb0 {
  margin-bottom: 0px !important;
}
.mt0 {
  margin-top: 0px !important;
}
.pt0 {
  padding-top: 0 !important;
}
.pb0 {
  padding-bottom: 0 !important;
}
.pr0 {
  padding-right: 0 !important;
}
.all_button{
  margin-top: 30px !important;
}
.comm-title-wrap.center {
  max-width: 920px;
  margin: auto;
  text-align: center;
}
.comm-title-wrap.center .comm-sub-title {
  margin: auto;
}
.comm-title {
  color: var(--black);
  font-size: 40px;
  font-weight: 800;
  line-height: 1.4;
}
.comm-sub-title {
  max-width: 850px;
  color: var(--black);
  font-size: 16px;
  line-height: 1.5;
  margin-top: 24px;
}
.comm-small-title {
  color: var(--black);
  font-size: 16px;
  font-weight: 500;
  line-height: 30px;
  text-transform: uppercase;
  margin-bottom: 8px;
}



.cs-detail .qnsbox p a{
    font-size: 20px;
    line-height:34px;
    cursor: pointer;
}
.comm-txt,
.comm-txt p {
  color: var(--black);
  text-align: center;
  font-size: 18px;
  line-height: 1.5;
}
.menuBtn .menu-links {
  display: flex;
  align-items: center;
  justify-content: center;
}
.menuBtn .menu-links .button {
  margin-left: 18px;
  margin-right: 0;
}
.stan-footer-title .agf{
    color: var(--white);
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 24px;
}
.stan-footer-title .agf:hover{
color: var(--clr);
}
.menu-num {
  font-size: 14px;
  color: var(--black);
  font-weight: 400;
  padding-right: 18px;
  border-right: 1px solid var(--black);
}
.split-item {
  transform: translateY(100%) rotateX(-90deg);
  transform-origin: center top;
  transition: 0.8s;
  opacity: 0;
}
[data-js="split-me"] {
  perspective: 600px;
}
.banner-head-wrap {
  margin-bottom: 36px;
  padding-top: 160px;
  text-align: center;
  max-width: 920px;
  margin: auto;
  margin-bottom: 23px;
}
.banner-head.orange {
  color: var(--clr);
}
.banner-head {
  color: var(--black);
  text-align: center;
  font-size: 60px;
  font-weight: 700;
  max-width: 95%;
  margin: auto;
}
.banner-head span {
  display: inline-block;
  white-space: pre-wrap;
  position: relative;
}
p.bannertext {
  text-align: center;
  color: #000;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 30px !important;
  margin: auto;
  color: var(--black);
  max-width: 850px;
}

/* Styles specific to the rotating text section */
.newsection {
display: inline-block;
}

.text-container {
display: inline-flex;
flex-direction: column;
height: 2.5rem; /* Adjust height to fit the rotating text */
overflow: hidden;
position: relative;
}

.text-content {
display: flex;
flex-direction: column;
animation: moveUp 5s linear infinite; /* Adjust the duration as needed */
}

.text-content span {
height: 2.5rem; /* Same height as the container to ensure correct overflow behavior */
}

@keyframes moveUp {
0% {
transform: translateY(0);
}
100% {
transform: translateY(-7.5rem); /* Adjust based on the total height of all items minus one */
}
}

.banner-img {
  width: 100vw;
  margin: auto;
  margin-top: 160px;
  height: 572px;
  position: relative;
}
.banner-img img {
  width: 100%;
}
.banner-bg {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100%;
}
.banner-bg dotlottie-player {
  width: 100%;
  height: 80vh;
  object-fit: contain;
}
.service-swiper-section .f-row {
  align-items: center;
}
.highlighted-g{
  color: #00A497;
}
.highlighted-green span{
  color: var(--new);
  font-size: 64px;
}
.case-study-section{
  align-items: center;
}
.engagebay-forms .form.form-style-form1 fieldset{
  padding: 40px 40px 25px 40px !important;
}
.engagebay-forms .form.form-style-form1 .submit-btn{
  border-radius: 8px !important;
}
.engagebay-forms .form.form-style-form1 input.form-control,.services-first .a-f-input,.services-first .a-f-input-txt,.services-first .start-box-content{
    background: #fff;
    color: #333;
    border-radius: 2px;
    border: 1px solid #eae9e9;
    padding: 8px 16px;
    outline: 0;
    font-size: 14px;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    -webkit-box-shadow: none;
    margin-bottom:0px;
    width:100%;
}
.services-first .wpcf7-text,.services-first .wpcf7-email,.services-first .wpcf7-select{
  height: 50px !important;
}
.services-first .wpcf7-textarea{
  height: 120px !important;
}
.text-center-col p {
    line-height: 20px !important;
}
.services-first .wpcf7-submit{
    width:100%;
    margin-bottom:0px;
}
.engagebay-forms form {
    padding: 0px !important;
}
.highlighted-g .mobile-center{
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  text-align: center;
  color: var(--black);
  margin-bottom: 24px;
}
.highlighted-g span{
  color: #00A497;
}
.services-first .form-title{
  text-align: left;
}
.about-fun .highlighted-g p{
  color: var(--black);
}
.highlighted span{
  color: #00A497;
}
.service-high span{
    font-family: Inter;
    font-size: 96px;
    font-weight: 800;
    line-height: 56px;
    text-align: left;
    color: #00A497;
}
.service-swiper-section .comm-title-wrap {
  max-width: 670px;
}
.service-swiper-box {
  padding: 30px;
}
.service-swiper-box h4 {
  color: var(--black);
  font-size: 21px;
  font-weight: 700;
  line-height: 1.6;
}
.service-swiper-box p {
  color: var(--black);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  margin-top: 8px;
}
.service-swiper-box ul {
  margin-top: 20px;
  padding-left: 20px;
}
.service-swiper-box ul li {
  list-style-type: disc;
  color: var(--black);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 8px;
}
.service-swiper-wrap {
  margin-top: 40px;
  padding-right: 20px;
}
.ser-sw-img {
  margin-bottom: 14px;
  height: 118px;
  display: flex;
  align-items: center;
  max-width: 100px;
}
.ser-sw-img img {
  height: 100%;
  object-fit: contain;
}
.swiper-services .swiper-slide {
  height: auto;
}
.service-swiper-box {
  height: 100%;
}
.ser-swiper-nav {
  position: relative;
  display: flex;
  cursor: pointer;
  margin-top: 24px;
  gap: 12px;
}
.what-people-s .ser-swiper-nav {
  padding-left: 25px;
}
.case-sa a{
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color:var(--black) !important;
}
.case-sa a:hover{
    color:var(--clr) !important;
}
.card-s {
    padding-top: 0px !important;
}
.case-study-img {
  border-radius: 25px;
  border: 2px solid var(--black);
  background: #FFF;
  padding: 12px;
  width: 100%;
  height: 543px;
  box-shadow: 0 12px 0 var(--black);
}
.case-study-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.swiper-case-studies {
  overflow: visible;
  margin-top: 36px;
}
.case-study-section {
  overflow: hidden;
}
.case-study-nav {
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
}
.case-study-title-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.stan--footer {
  padding: 48px 0 0px;
  border-top: 1px solid var(--black);
  background:var(--black);
}
.stan-bo{
  height:11px;
  width: 100%;
}
.main-container{
    margin-bottom: 0px;
}
.relateds{
    margin-bottom:-7px;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 34px 0px;
}
.footer-bottom p,
.footer-bottom a {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
}
.footer-bottom a {
  margin-left: 46px;
}
.footer-bottom a:hover {
  color: var(--clr);
}
.footer-divider {
  width: 100%;
  height: 1px;
  background: var(--black);
  margin: 40px 0 25px;
}
.footer-logo {
  margin-bottom: 32px;
}
.stan-footer-title {
  color: var(--white);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 24px;
}
.stan-footer-link li {
  display: flex;
  color: #666;
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 24px;
  color: #FFFFFFCC;
}
.fp-text{
color: #FFFFFF80;
font-size: 17px;
font-weight: 500;
line-height: 30px;
text-align: left;
margin-bottom: 14px;
margin-top: 40px;
}
.stan-footer-link li img {
  margin-right: 16px;
}
.stan--footer .cf{
border-bottom: 1px solid #FFFFFF33;
padding-bottom:30px;
}
.stan-footer-link a {
  color: #FFFFFFCC;
  font-size: 16px;
  font-weight: 500;
  display: flex;
  align-items: center;
}
.stan-footer-link a:hover {
  color: var(--clr);
}
.stan-footer-link a img {
  margin-right: 16px;
}
.logo-section {
  padding-bottom: 24px;
  position: relative;
  z-index: 111;
}
.logo-wrap {
  position: relative;
  perspective: 200px;
  -webkit-perspective: 200px;
}
.logo-wrap p {
  max-width: 287px;
  color: #000;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
}
.logo-wrap h3 {
  color: #000;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 12px;
}
.logo-agencies {
  width: 100%;
  height: 60px;
}
.logo-agencies img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.swiper-logo .swiper-wrapper {
  transition-timing-function: linear;
}
.swiper-logo .swiper-slide {
  display: flex;
  align-items: center;
}
.swiper-logo-2 {
  width: 100%;
}
.swiper-logo-2 .swiper-wrapper {
  transition-timing-function: linear;
}
.swiper-logo-2 .swiper-slide {
  display: flex;
  align-items: center;
}
.logo-swiper-wrap{
  border-radius: 12px;
  border: 2px solid var(--black);
  padding: 32px;
  display: flex;
  z-index: 1;
  background: #fff;
  position: relative;
}
.logo-about .logo-wrap:after{
  content: none;
}
.rotating-text {
  font-family: sans-serif;
  color: white;
  transform: translateX(-80px);
  position: absolute;
  margin-left: 272px;
}
.stan-copyright{
    display: inline-flex;
    align-items: center;
    gap:15px;
}
.footer-bottom a{
  border-left: 1px solid var(--new);
  margin-left: 0px !important;
  padding-left: 15px;   
 }
.rotating-text p {
  margin: 0;
  vertical-align: top;
}
.rotating-text p .word {
  font-weight: 700;
  font-size: 60px;
  position: absolute;
  display: flex;
  right: 0px;
   opacity: 0;
  transition: opacity 0.38s ease;
}

.rotating-text p .word .letter {
  transform-origin: center center 25px;
}
.rotating-text p .word .letter.out {
  transform: rotateX(90deg);
  transition: 0.02s cubic-bezier(0.6, 0, 0.7, 0.2);
}
.rotating-text p .word .letter.in {
  transition: 0.38s ease;
}
.rotating-text p .word .letter.behind {
  transform: rotateX(-90deg);
}
.newsectionlast{
  padding-left: 200px;
  max-width: fit-content;
}
.newsection{
  max-width: fit-content;
}
.logo-about .logo-swiper-wrap{
  border-radius: 112px;
  border: 2px solid var(--black);
  padding: 32px;
  display: flex;
  z-index: 1;
  background: #fff;
  position: relative;
}
.card-s .podcast-card,.card-s .podcast-img{
  border: none;
  border-radius: 0px;
}
.card-s .blog-txt{
  padding: 0px;
}
.card-s .podcast-card .blog-img{
  height: unset;
  border-radius: 0px;
}
.card-s .blog-box{
  border-radius: 0px;
}
.card-s .blog-category {
    background: #00A4971A;
    color: #00A497;
    border-radius: 16px;
    margin-top: 32px;
    margin-bottom: 12px;
}
.card-s .blog-txt h3{
  font-size: 24px;
  line-height: 32px;
}
.card-s .blog-txt a {
    color: #667085;
  }
.card-s .blog-txt p{
    margin: 12px 0px;
  }
.podcast-card .blog-img{
      height: auto;
}
.card-s .blog-category a {
    color: #00A497;
    font-size: 14px;
    font-weight: 500;
}
.card-s .blog-wrap .f-col{
  margin-bottom: 0px;
}
.card-s .blog-wrap .f-row{
  gap: 48px 0;
}
.case-study-p.pagination {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-radius: 5px; /* Optional: for rounded corners */
    margin-top: 20px; /* Space above the pagination */
    width: 100%;
}

.case-study-p .nav-links {
    flex-grow: 1; /* Take up remaining space for center alignment */
    text-align: center;
}
.case-study-p.pagination a{
font-size: 14px;
font-weight: 500;
line-height: 20px;
text-align: left;
color: #667085;
}
.case-study-p .nav-links a.prev,.case-study-p .nav-links a.next{
  display: none;
}
.case-study-p .nav-links a.page-numbers{
    background: #ffffff;
    padding: 8px 16px;
    border-radius: 8px;
}
.case-study-p .nav-links span.page-numbers{
    background: #F15A241A;
    padding: 8px 16px;
    border-radius: 8px;
    color: var(--clr);
}
.case-study-p.pagination a.prev-btn,.case-study-p.pagination a.next-btn{
    align-items: center;
    display: flex;
    gap:8px;
}
.card-s .podcast-card h3{
  padding-bottom: 5px;
}
.card-s .podcast-card h3:hover{
  color:var(--clr);
}
.card-s .blog-author{
  padding-top: 12px;
}
.case-study-p .nav-previous, .nav-next {
    flex: 0 0 auto; /* Prevent flex items from growing */
}

.case-study-p .disabled {
    color: gray; /* Disabled color */
    cursor: not-allowed; /* Change cursor style */
}

.case-study-p .prev-btn, .next-btn {
    text-decoration: none;
    color: #007bff; /* Change to your desired color */
    font-weight: bold;
}

.case-study-p .prev-btn:hover, .case-study-p .next-btn:hover {
    text-decoration: none;
    color: var(--clr); /* Add hover effect */
}

/* Optional: Icon styling (ensure you have Font Awesome or similar included) */
.case-study-p .fa {
    margin-right: 5px; /* Space between icon and text */
}

.blog-a-d{
  display: flex;
  align-items: center;
}
.blog-date{
  margin-left: 15px;
}
.logo-swiper-wrap p {
  margin-top: 15px;
}
.affordable-section {
  padding-bottom: 30px;
}
.cards-sticky {
  height: 100vh;
  overflow: hidden;
  width: 100%;
}
:root {
  --card-height: 650px;
  --card-space: 52px;
}
.recent-section .container.note-s {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto auto; /* Define two rows */
  gap: 24px;
}
.recent-section .xase-study-blog.cs-f img{
max-height: 240px;
}
.recent-section .xase-study-blog .cs-l img{
  max-height: 246px;
}
.recent-section .row-span {
  grid-row: span 2; /* This will make the blog span across two rows */
}
.recent-section .full-width {
  grid-column: 1 / -1; /* This will make the blog span across both columns */
}
.card-s .comm-title,.recent-section .comm-title{
font-size: 40px;
margin-bottom: 32px;
}
.xase-study-blog .cs-title{
  padding: 0px 0px 12px 0px;
  align-items: center;
}
.recent-section .blog-category{
  background: #00A4971A;
  color: #00A497; 
  border-radius: 16px;
  margin-top: 24px;
}
.recent-section .blog-category a{
  color: #00A497;
  font-size: 14px;
  font-weight: 500;
}
.cs-title .case-study-title{
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
  text-align: left;
  color: var(--black);
}
.cs-s img{
  max-height: 200px;
}
.cs-s .w45{
  padding: 0px 0px 0px 10px;
}
.recent-section .cs-s .blog-category,.recent-section .cs-l .blog-category{
  margin-top: 0px;
}
.case-study-description{
font-size: 16px;
font-weight: 400;
line-height: 24px;
text-align: left;
color: #667085;
padding: 0px 0px 12px 0px;
}
.case-sa{
font-size: 14px;
font-weight: 600;
line-height: 20px;
text-align: left;
}
.load-more-container .button{
    margin:auto;
    text-align:center;
    margin-bottom:30px;
}
.writer-wrap .white a{
    color:white;
}
.shopperlink-footerlogo img {
    margin-top: 20px;
    width: 120px;
}
.txt_cente_ar{
    text-align:center;
}
.case-sa .xase-study-time:hover{
color: var(--clr);
}
.cs-title{
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.case-sa{
  display: flex;
}
.case-sa ul{
  list-style: unset;
  padding-left: 22px;
}
.case-sa li:marker{
  padding-right: 0px;
}
.card {
  padding: 32px;
  border-radius: 24px;
  border: 2px solid var(--black);
  background: #FFF;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--card-height);
  width: 100%;
  margin-bottom: 52px;
  position: relative;
  position: absolute;
}
.card-1 {
  top: calc(var(--card-height) + var(--card-space));
}
.card-2 {
  top: calc((var(--card-height)*2) + var(--card-space));
}
.card-3 {
  top: calc((var(--card-height)*2) + var(--card-space));
}
.card-4 {
  top: calc((var(--card-height)*2) + var(--card-space));
}
.card-5 {
  top: calc((var(--card-height)*2) + var(--card-space));
}
.card-txt {
  max-width: 407px;
  margin-left: 114px;
}
.card-txt h3 {
  color: var(--black);
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 11px;
}
.card-txt p {
  color: var(--black);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.66;
  margin-bottom: 32px;
}
.need-bg-g{
    background:#f5f5f5;
}
.class-fg{
    display: inline-flex;
    align-items: center;
}
.align-t{
    padding:20px 55px;
}
.cs-detail .container{
    border-bottom:1px solid;
}
.relateds{
    margin-top:120px;
    background:#f5f5f5;
}
.align-t h4{
font-size: 18px;
font-weight: 800;
line-height: 27px;
text-align: left;
}
.align-t p{
font-size: 14px;
font-weight: 400;
line-height: 21px;
text-align: left;
}
.class-fg img{
margin-top: -30px;
}
.cards-wrap {
  height: 450vh;
}
.card-img {
  margin-right: 40px;
  height: 100%;
  max-height: 450px;
  max-width: 550px;
  width: 100%;
  flex: 1;
}
.card-img dotlottie-player {
  height: 450px;
  width: 100%;
}
.cards-wrap-height {
  position: absolute;
  height: 100%;
  top: 0;
}
.cards-wrap {
  position: relative;
}
.card-trigger {
  position: absolute;
}
.card-trigger-1 {
  top: 100vh;
}
.card-trigger-2 {
  top: 200vh;
}
.card-trigger-3 {
  top: 300vh;
}
.card-trigger-4 {
  top: 400vh;
}
.home-service{
  padding-top: 98px;
}
.home-service .card_service{
  margin-bottom: 80px;
}
.schedule-section {
  position: relative;
  padding: 105px 0;
}
.schedule-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.schedule-bg img {
  width: 100%;
  height: 100%;
}
.schedule-txt {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 750px;
  margin: auto;
}
.schedule-txt h4 {
  color: #FFF;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.66;
  margin-bottom: 12px;
  text-align: center;
}
.schedule-txt h2 {
  color: #FFF;
  text-align: center;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 36px;
}
.blue-bg {
  background: var(--black);
}
.book-a-call-wrap {
  display: flex;
  align-items: center;
  padding: 80px 0;
  justify-content: space-between;
}
.book-a-call-txt {
  max-width: 620px;
}
.book-a-call-txt h4 {
  color: #FFF;
  font-size: 42px;
  font-weight: 800;
  line-height: 1.4;
  margin-bottom: 24px;
}
.book-a-call-txt p {
  color: #FFF;
  font-size: 30px;
  font-weight: 400;
  line-height: 42px;
  margin-bottom: 46px;
}
.page-banner-wrap {
  background: linear-gradient(to right, #ffffff 0 50%, var(--black) 50% 100%);
  border-bottom: 1px solid var(--black);
}
.page-banner-btn {
  display: flex;
  margin-top: 0px;
  gap: 24px;
  align-items: center;
}
.page-banner-txt {
  padding-right: 100px;
}
.page-banner-txt.center {
  padding-right: 0;
}
.page-banner-txt.center h1 {
  text-align: center;
}
.white-service-swiper .faqs{
  margin-top: 0px;
}
.page-banner-txt h1 {
  color: var(--black);
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
}
.page-banner-txt p {
  color: var(--black);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  margin-top: 20px;
}
.services-first .page-banner-txt p{
  font-size: 20px;
  font-weight: 500;
  margin-top: 16px;
}
.page-banner-txt ul {
  margin-top: 24px;
}
.page-banner-txt ul li {
  list-style-type: disc;
  list-style-position: inside;
  color: var(--black);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 8px;
}
.page-banner-wrap {
  padding: 90px 0;
}
.page-banner-wrap .f-row {
  align-items: center;
}
.page-banner-img {
  width: 100%;
  padding-left: 30px;
  height: 450px;
}
.page-banner-img img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
.about-banner{
  margin: 20px 0px;
}
.service-swiper-section {
  background: #101010;
}
.service-swiper-section .comm-sub-title {
  margin-top: 16px;
}
.service-swiper-image {
  width: 100%;
  height: 570px;
}
.about_section{
  padding-left: 60px;
}
.about_section .white-color{
  color: #ffffff;
}
.about-diff{
  align-items: center;
}
.about_section .video-main-box-big .video-img {
        height: auto;
}
.about-s .about_section{
  padding-left: 0px;
}
.about-s .video-player-box{
  padding: 0px;
}
.new-uniquess{
  display: inline-flex;
}
.section-uniqueness .service-swiper-box{
  border: 1px solid var(--black);
  border-radius: 25px;
}
.section-uniqueness .new-uniquess{
  justify-content: space-between;
  width: 100%;
}
.section-uniqueness .ser-sw-img{
  margin: unset;
}
.about-aim .w40{
  z-index: 999;
}
.about-fun .highlighted{
  margin: 0 auto 46px;
}
 .team-section .team-member {
        position: relative;
        text-align: center;
        padding: 20px;
        margin-bottom: 30px;
    }
    .team-section .member-img {
        border-radius: 50%;
        width: 250px;
        height: 250px;
        object-fit: cover;
        margin-bottom: 10px;
    }
    .team-section .team-member-title {
        font-size: 24px;
        font-weight: 700;
        line-height: 36px;
        text-align: center;
        margin: 10px 0;
    }
    .team-section .team-member-designation {
        font-size: 16px;
        font-weight: 500;
        line-height: 24px;
        text-align: center;
        margin: 5px 0;
    }
    .team-section .bio-description {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        background: white;
        border: 2px solid var(--black);
        box-shadow: 0 8px 0px var(--black);
        border-radius: 10px;
        padding: 10px;
        z-index: 10;
        opacity: 0;
        transform: translateY(-10px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }
    .team-section .bio-description.active {
        display: block;
        opacity: 1;
        transform: translateY(0);
    }
    .team-section .toggle-btn {
        cursor: pointer;
        font-size: 16px;
        font-weight: 500;
        line-height: 24px;
        text-align: center;
        margin: 10px 0;
        position: relative;
    }
    .team-section .bio-icon {
        display: inline-block;
        width: 16px; /* Set width for the icon */
        height: 16px; /* Set height for the icon */
        background: url('../img/menu-drop.svg') no-repeat center center;
        background-size: contain; /* Make the background size fit */
        transition: transform 0.3s ease;
        margin: -3px 6px;/* Add some spacing between text and icon */
    }
    .team-section .toggle-btn:hover .bio-icon {
        transform: rotate(180deg); /* Rotate icon on hover */
    }
    .team-section .bio:hover .bio-description {
        display: block;
        opacity: 1;
        transform: translateY(0);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }
    .all-member{
      align-items: center;
      padding: 50px 0px;
    }
    .all-member .w70{
      padding-bottom: 30px;
    }
    .all-member .w60 p{
      color: var(--black);
      font-size: 16px;
      font-weight: 500;
      line-height: 30px;
    }
    .about-team{
      border-bottom: 1px solid #000;
    }
.section-uniqueness .service-swiper-box h4,.section-uniqueness .service-swiper-box p{
  text-align: left;
}
.service-swiper-image img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
.comm-nav-right {
  background: url(../img/right-arrow.svg) no-repeat;
  height: 48px;
  width: 48px;
  transition: 0.3s;
}
.comm-nav-right:hover {
  scale: 1.1;
}
.comm-nav-left {
  background: url(../img/left-arrow.svg) no-repeat;
  height: 48px;
  width: 48px;
  transition: 0.3s;
}
.comm-nav-left.white-left{
  background: url(../img/arrow-left.png) no-repeat;
}
.comm-nav-right.white-right{
  background: url(../img/arrow-right.png) no-repeat;
}
.comm-nav-left:hover {
  scale: 1.1;
}
.process-number {
  color: #FFF;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  border-radius: 42px;
  background: var(--black);
  width: 83px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.process-sw-img {
  height: 82px;
  display: flex;
  align-items: center;
  margin-bottom: 14px;
  max-width: 100px;
}
.process-sw-img img {
  height: 100%;
  object-fit: contain;
}
.process-swiper-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 28px;
  gap: 16px;
  cursor: pointer;
}
.swiper-process {
  margin-top: 50px;
  overflow: visible;
}
.swiper-process .swiper-slide {
  height: auto;
}
.process-wrap {
  overflow: hidden;
}
.power-txt {
  max-width: 630px;
}
.trusted-logo .logo-wrap{
  padding-top: 40px;
}
.power-txt p {
  color: var(--black);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 24px;
}
.power-txt p:last-child {
  margin-bottom: 0;
}
.power-boxes {
  background: var(--black);
  border-radius: 16px;
  padding: 32px;
  max-width: 512px;
  margin-left: auto;
  margin-bottom: 24px;
}
/* service price new */
.table-container-price.mobile-b .hoveref td div{
    text-align: left;
}
.table-container-price.mobile-b .data-cell.pleft div{
        padding-left: 20px;
}
.pleft .bt-t{
    text-align: center;
    padding-left: 0 !important;
    padding-right: 0 !important;
}
.table-container-price.mobile-b .data-cell img{
        padding-right: 10px;
}
.table-container-price.mobile-b{
    margin-bottom:10px;
}
.mobile-b{
    display:none;
}
.price-service h2,.price-service p{
    text-align:center;
    margin:auto;
}
 .table-container-price {
    border: 6px solid #00A497; /* Border for the entire table container */
    border-radius: 16px; /* Rounded corners for the container */
    overflow: hidden; /* Ensures rounded corners are visible */
}
.table-container-price table {
    border-collapse: collapse;
    width: 100%; /* Full width of the container */
}
.table-container-price td {
    text-align: center;
    border-right: 1px solid #00A49733; /* Left border for each cell */
}
.table-container-price .hoverf:first-child {
    border-left: none; /* Remove left border for the first cell in each row */
    border-right: none; /* Remove left border for the first cell in each row */
}
.table-container-price .header-cell{
    background: #00A497;
    color: white;
    font-size: 14px;
    font-weight: 600;
    line-height: 21px;
    width: 230px;
}
.table-container-price .header-cell div{
    padding: 20px 30px;
}
.table-container-price .data-cell {
    background: white;
    color: black;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.02em;
}
.table-container-price .hoveref:hover .hoverf div {
    background: #FCFAF6;
    border-radius: 8px 0px 0px 8px;
    color: var(--black);
    padding:22px;
}
.table-container-price .hoveref .hoverf div{
    background: var(--new);
}
.table-container-price .hoveref td div{
    background: #FCFAF6;
    padding:20px;
    margin: 15px 0px;
}
.table-container-price .newp div{
    padding: 20px;
}
.table-container-price .newp a{
    color: var(--clr);
}
.table-container-price .dissc span{
    padding: 8px 16px 8px 16px;
    gap: 6px;
    border-radius: 8px;
    background: #F8B400;
    color:white;
    margin:24px 0px;
}
.table-container-price .dissc{
    padding:24px 0px;
}
.table-container-price .dark{
    font-size: 18px;
    font-weight: 800;
    line-height: 30px;
    letter-spacing: 0.02em;
    text-align: center;
}
.table-container-price .line_t{
    font-size: 20px;
    font-weight: 600;
    line-height: 32px;
    letter-spacing: 0.02em;
    text-align: center;
    text-decoration: line-through;
    color: #F15A24;
}
.table-container-price .big-c{
    font-size: 40px;
    font-weight: 800;
    line-height: 48.41px;
    letter-spacing: 0.02em;
    text-align: center;
    color: #00A497;
}
.table-container-price .ssp{
font-size: 16px;
font-weight: 600;
line-height: 24px;
letter-spacing: 0.02em;
text-align: center;
}
.bt-t{
    text-align: left;
    font-size: 14px;
    font-weight: 700;
    padding: 0px 27px;
}
.bt-t span{
    color:var(--new);
}
.comm-section.pricing-new{
    padding-top:0px;
}
.list-ss .comm-title.white{
    text-align:center;
}
.list-ss .comm-sub-title.white-lite{
    text-align:center;
    margin:auto;
}
.list-ss .class-list{
  margin-top:40px;
  align-items: baseline;
}
.list-ss .mix{
    display:inline-flex;
    padding-top: 20px;
}
.list-ss .mix img{
    height: fit-content;
    margin: auto;
    padding-right: 18px;
}
.list-ss .class-list p{
font-size: 16px;
font-weight: 600;
line-height: 30px;
text-align: left;
color:white;
}
.list-ss h4{
font-size: 24px;
font-weight: 700;
line-height: 40px;
text-align: left;
color:white;
}
.table-container-price .addc a{
padding: 12px 15px;
gap: 6px;
border-radius: 8px;
color:#F15A24;
border: 1px solid #F15A24;
font-size: 14px;
font-weight: 800;
line-height: 20px;
text-align: center;
}
.process-wrap .comm-title{
    text-align:left;
}
.process-wrap .comm-sub-title{
    text-align:left;
}
.table-container-price .addc{
padding:24px 0px;
}
.table-container-price .addc a:hover{
color:#ffffff;
border: 1px solid #F15A24;
background:#F15A24;
}
.table-container-price .nexts{
font-size: 14px;
font-weight: 700;
line-height: 21px;
text-align: left;
padding: 26px 41px;
}
.table-container-price .dark div{
    margin: 16px; 
}
.table-container-price .hoverf{
    text-align:left;
}
.table-container-price .data-cell.pleft div{
    padding-left:54px;
}
.table-container-price .nexts span:hover{
    color: #00A497;
}
/* Specific styles for the first column after rowspan */
.table-container-price .bordered {
    border-bottom: 4px solid #FFFFFF; /* Right border for the first column after rowspan */
}
.table-container-price .bordered_top {
    border-top: 4px solid #FFFFFF; /* Top border for last row */
}
.power-boxes h4 {
  color: #FFF;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 42px;
}
.power-boxes p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
  margin-bottom: 24px;
}
.power-boxes a {
  display: flex;
  align-items: center;
  color: var(--clr);
  gap: 14px;
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
}
.steps {
  width: 608px;
  background-color: #FFF;
  padding: 24px 0;
  position: relative;
  margin: auto;
}

/*.steps::before {
    content: '';
    position: absolute;
    top: 31px;
    height: 92%;
    width: 0;
    border-left: 1px dotted #000000;
    left: calc(53px / 2);
    z-index: 1;
}*/
.steps .process-sw-img{
    height: 80px;
    margin-top: -22px;
    padding-left: 15px;
}
.steps::after {
  content: '';
  position: absolute;
  height: 13px;
  width: 13px;
  background-color: var(--primary-color);
  box-shadow: 0px 0px 5px 0px var(--primary-color);
  border-radius: 15px;
  left: calc(50px / 2);
  bottom: 24px;
  transform: translateX(-45%);
  z-index: 2;
}
.dotted-line {
    position: absolute;
    top: 31px; /* Adjust as needed */
    height: 92%; /* Adjust as needed */
    border-left: 2px dotted #000000; /* Dotted border */
    left: calc(53px / 2); /* Center the line as needed */
    z-index: 1;
}
.speaker-wrap {
    width: 100% !important;
}
.detail-content-right.w20.w-768-100 {
    width: 19%;
}
.steps .step {
    transition: all 0.4s ease-in-out;
    padding: 0px 0px 24px 30px;
    position: relative;
    padding-bottom: 52px;
    font-size: 24px;
    font-weight: 600;
    line-height: 36px;
    text-align: left;
    color: #15141D;
}
.detail-ans table{
    margin:40px auto;
    border-radius: 16px;
    border-spacing: 0;
    border: 1px solid var(--new);
    border-spacing: 1px;
    border-color: #00a3964d; 
}
.detail-ans table td {
    padding: 16px 16px;
    border-right: 1px solid #00a3964d;
    border-bottom: 1px solid #00a3964d;
}
.detail-ans table th {
    padding: 16px 16px;
    border-right: 1px solid #00a3964d;
    border-bottom: 2px solid #00a3964d;
    color:var(--clr);
}
.cs-detail .qnsbox .detail-ans ol li::marker{
    color:var(--black);
}
.cs-detail .qnsbox .detail-ans ul li::marker{
    color: var(--new);
    font-size: 20px;
}
.cs-detail .qnsbox .detail-ans ul li strong{
    color: var(--new);
}
.styled-table {
    margin:40px auto;
    border-radius: 16px;
    border-spacing: 0;
    border: 8px solid var(--new);
    border-collapse: separate;
    overflow: hidden;
    background: var(--new);
    border-spacing: 1px;
    border-color: #00A49733;
}
.table-title p{
    font-size: 24px;
    font-weight: 600;
    line-height: 36px;
    text-align: left;
    padding-left: 20px;
}
.styled-table thead tr {
    background-color: var(--new);
    color: #ffffff;
    text-align: left;
}
.styled-table tr{
background: #ffffff;
    }
.styled-table th{
    font-size: 14px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
}
.styled-table td {
    padding: 16px 16px;
    
}
.styled-table th{
    padding: 16px 24px 24px 24px;
    
}
.styled-table tbody tr {
    border-bottom: 1px solid #dddddd;
}

.styled-table tbody tr:nth-of-type(even) {
    background-color: #F3FFFE;
}

.styled-table tbody tr:last-of-type {
    border-bottom: 1px solid #ef6f25;
}
.styled-table tbody tr.active-row {
    font-weight: bold;
    color: #ef6f25;
}
.styled-table tr:first-child td:first-child {
    border-top-left-radius: 10px;
    background: white;
}
.styled-table tr:nth-child(3) td:first-child {
    border-bottom-left-radius: 10px;
    background: white;
}
    
.styled-table tr:first-child td:last-child {
   border-top-right-radius: 10px;
    background: white;
}
    
.styled-table tr:last-child td:last-child {
    border-bottom-right-radius: 10px;
}
.engagebay-forms .form.form-style-form1{
    box-shadow: 0px 3px 40px 0px #1A283314 !important;
}
.styled-table td{
font-family: Inter;
font-size: 14px;
font-weight: 500;
line-height: 19.6px;
letter-spacing: 0.02em;
text-align: left;
border-right: 1px solid #00A49733;
border-bottom: 1px solid #00A49733;
}
.step .step-content {
  overflow: hidden;
  height: 0;
  transition: height 0.3s ease;
}

.step.minimized .step-content {
  height: 0;
}

.steps .step::before {
    font-weight: 700;
    position: absolute;
    border-radius: 42px !important;
    background-color: #000000;
    left: calc(50px / 2);
    padding: 6px 10px;
    color: #ffffff;
    transform: translateX(-45%);
    z-index: 2;
    content: attr(data-step-number);
    top: 0;
    font-size: 20px;
    width: 72px;
    height: 46px;
    text-align: center;
}
.step-header{
    padding-left: 40px;
}
#input-field::placeholder {
    font-size: 14px; /* Change to desired size */
  }
  .imgss img{
      min-height:auto !important;
  }
  .newfr .mainss h3{
    color: var(--new);
    font-weight: 700 !important;
    font-size: 24px !important;
    line-height: 32px !important;
  }
  .newfr #analyzer-buttons{
    width:auto;
}
  .newfr{
      padding: 40px;
      margin: 10px 0;
      background-color: #F5F7F7 !important;
      border-radius: 16px;
  }
 .qnsbox .newfr .mainss p{
font-weight: 400 !important;
font-size: 15px !important;
line-height: 24px !important;
color: #15141D;
padding-bottom:0px !important;
  }
  .mainss{
      align-items:center;
  }
  .fform{
      display:block;
  }
  .fform input{
      background: none;
      width:100%;
      color: #000; 
      border: 1px solid #15141D;
      border-radius: 8px; 
      padding: 12px 16px;
      margin-bottom:16px;
  }
  .fform button.common{
      width:100%;
      border-radius: 8px;
      padding:12px 16px;
      background: #F15A24;
      color:white;
  }
.steps .step.minimized {
  background-color: #FFF;
  transition: background-color 0.3s ease-in-out;
  cursor: pointer;
}
#stickysectionf.headroom--not-top {
    transform: translateY(0);
}
#stickysectionf {
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2147483640;
    transition: transform .2s ease-in;
}
.class-fg{
    gap: 36px;
    justify-content: center;
}
.need-bg-g .w10{
    margin:auto;
    text-align:right;
}
.steps .header {
  user-select: none;
  font-size: 24px;
  font-weight: 600;
  line-height: 36px;
  text-align: left;
  color: #15141D;
  cursor:pointer;
}
.steps .subheader {
  user-select: none;
    font-family: Inter;
    font-size: 16px;
    font-weight: 500;
    line-height: 30px;
    text-align: left;
    color: var(--black);
    padding-left: 180px;
}

.steps .step-content {
  transition: all 0.3s ease-in-out;
  overflow: hidden;
  position: relative;
}

.process-wrap .comm-title{
    text-align:left;
}
.process-wrap .comm-sub-title{
    text-align:left;
}
.steps .step.minimized > .step-content {
  height: 0px;
}

.steps .step-content.one {
  height: 460px;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: 4px;
  margin-top: 10px;
}

.steps .step-content.two {
  height: 600px;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: 4px;
  margin-top: 10px;
}
.niche-e .header-cell{
        width: 269px;
}
.steps .step-content.three {
  height: 400px;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: 4px;
  margin-top: 10px;
}
.power-boxes .read-more {
  color: var(--clr);
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
}
.what-people-s .people-wrap {
    display: flex;
    flex-wrap: nowrap; /* Prevent wrapping */
    align-items: flex-start;
}
.markclass mark{
    position: relative;
    z-index: 0;
    padding: 0 0 10px;
    color: inherit;
    background: none;
}
.what-people-s mark{
    color: var(--new);
}
.what-s-s{
  color: rgba(255, 255, 255, 0.65); 
  margin-top: 24px;
}
.white-lite{
  color: rgba(255, 255, 255, 0.80) !important;
}
.black-lite{
  color: rgba(0, 0, 0, 0.80) !important;
}
.markclass mark:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0; /* Start with no height */
    bottom: 0;
    left: 0%;
    z-index: -1;
    background-color: #F8B400;
    mask-repeat: no-repeat;
    mask-size: contain;
    mask-image: url(../img/yellow-line.png);
    opacity: 0; /* Start invisible */
    animation: loadLine 2s ease forwards; /* Animation */
}

@keyframes loadLine {
    0% {
        height: 0;
        opacity: 0;
    }
    50% {
        height: 15px; /* Final height */
        opacity: 1; /* Semi-transparent */
    }
    100% {
        height: 15px; /* Final height */
        opacity: 1; /* Fully visible */
    }
}

.what-people-s .w35 {
    flex: 0 0 35% !important; /* Fixed width for the first section */
    flex: 1; 
    margin-left: 20px;
}

.what-people-s .w65 {
    flex: 1; /* Full width for the second section */
    width: 70%;
}
.title-left {
  max-width: 635px;
}
.struggling-section {
  position: relative;
  display: flex;
  justify-content: space-between;
  width: 100%;
  background: linear-gradient(181deg, #012e2c, #1a3c2c);
  border-radius: 20px;
  background-size: cover;
  padding: 56px 45px;
  background-position: right;
}
.struggling-txt{
    align-items: center;
    width: 100%;
}
.white-btn {
    border: 2px solid var(--clr) !important;
    background: white !important;
    color: var(--clr) !important;
}
.white-btn:hover{
  background: var(--clr) !important;
  color: var(--white) !important;
  box-shadow: none !important;
}
.r-sticky {
    background: var(--black) !important;
}
.sauto {
    margin: auto;
}
.struggling-txt p {
  font-weight: 600;
    font-size: 32px;
    line-height: 40px !important;
    padding-left: 0 !important;
    text-align:center;
}
.struggling-txt .align-center{
    padding: 0px 170px;
}
.struggling-txt h5 {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    margin:20px 0px 32px 0px;
    text-align:center;
}
@media (max-width: 768px) {
    .detail-content-left,.detail-content-right{
        display:none;
    }
    .struggling-txt .align-center {
        padding: 0px 0px;
    }
    .struggling-txt .sauto{
        font-size: 14px;
        padding: 18px;
    }
}
.ss-section{
    text-align:right;
}
.ss-section h5{
font-size: 16px;
font-weight: 500;
line-height: 30px;
color:var(--white);
}
.ss-section h5 span{
font-weight: 600;
color:var(--white);
text-decoration:underline;
}
.ss-btn .button.orange{
padding: 12px 28px 12px 28px;
border-radius: 32px;
color:var(--clr);
background:white;
font-size: 16px;
height: auto;
}
.ss-btn .button.orange img{
    padding-left: 10px;
}
.faqAcc {
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  border-bottom: 1px solid rgba(43, 43, 43, 0.5);
}
.service-faq .faqAcc.active {
    border-bottom: 1px solid var(--clr) !important;
}
.service-faq .faqAcc:hover {
    border-bottom: 1px solid var(--clr) !important;
}
.process-wrap .service-swiper-box{
  text-align: left;
}
.faqAcc.active .faqQus:after {
  margin-top: 0;
  height: 0;
}
.faqQus {
  position: relative;
}
.faqQus h4 {
  font-size: 18px;
  line-height: 1.5;
  color: var(--black);
  font-weight: 700;
  margin-right: 80px;
  margin-bottom: 0;
  padding: 24px 0;
  position: relative;
}
/*.faqQus h4::before {
  content: "Q.";
  position: absolute;
  left: -32px;
}*/
.faqQus:before {
  content: "";
  position: absolute;
  height: 2px;
  background: var(--black);
  width: 18px;
  right: 50px;
  top: 47%;
  margin-top: -1px;
}
.faqQus:after {
  content: "";
  position: absolute;
  height: 18px;
  background: var(--black);
  width: 2px;
  right: 58px;
  top: 50%;
  margin-top: -11px;
  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
}
.faqAcc.active .faqQus:before {
  background: var(--clr);
}
.faqAcc.active .faqQus h4 {
  color: var(--clr);
}
.faqpara {
  display: none;
  padding-right: 10px;
}
.faqpara p {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: var(--black);
  padding-bottom: 20px;
  margin-bottom: 0;
}
.faqpara ul li {
  font-size: 18px;
  line-height: 1.6;
  color: #5c77b0;
  font-weight: 500;
  margin-bottom: 10px;
  list-style-type: disc;
}
.faqpara .upload-if {
  padding: 10px;
}
.faqpara .upload-if li {
  list-style-type: none;
}
.faq-head p {
  color: #5c77b0;
  font-size: 18px;
  margin-bottom: 50px;
}
.faq-head p a {
  color: var(--clr);
}
.faqs {
  margin-top: 40px;
}
.comm-content-wrap .comm-txt-wrap {
  margin-top: 24px;
  margin-bottom: 40px;
}
.comm-content-wrap .comm-txt-wrap:last-child {
  margin-bottom: 0;
}
.comm-txt-wrap p {
  color: var(--black);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 16px;
}
.comm-txt-wrap p:last-child {
  margin-bottom: 0;
}
.comm-txt-wrap h4 {
  color: var(--black);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 16px;
}
.comm-border-bottom {
  border-bottom: 1px solid var(--black);
}
.gray-bg {
  background: #F5F6F6;
}
.comm-content-nav-next {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}
.comm-content-nav-prev {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}
.comm-swiper-wrap {
  position: relative;
  max-width: 936px;
  margin: 60px auto;
  padding: 0 80px;
}
.comm-content-logo-nav {
  display: flex;
  align-items: center;
  justify-content: center;
}
.comm-content-logo {
  height: 60px;
  max-width: 170px;
}
.comm-content-logo img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
.comm-content-logo-nav {
  margin-top: 20px;
  gap: 8px;
  cursor: pointer;
}
.comm-content-logo-swiper {
  margin-bottom: 24px;
}
.seo-blog-txt {
  padding-left: 100px;
  padding-bottom: 86px;
}
.seo-blog-txt h4 {
  color: var(--black);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 12px;
}
.seo-blog-txt p {
  color: var(--black);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 40px;
}
.seo-blog-txt .form-grp {
  max-width: 348px;
}
.seo-blog-txt .form-label {
  line-height: normal;
}
.google-img img {
  object-fit: contain;
}
.comm-content-swiper {
  padding-bottom: 24px;
}
.swiper-google,
.swiper-google-2 {
  padding-bottom: 86px;
}
.swiper-google-nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 36px;
  cursor: pointer;
}
.seo-blog-wrap .f-row {
  align-items: center;
}
.seo-blog-wrap.reverse .f-row {
  flex-direction: row-reverse;
}
.seo-blog-wrap.reverse .seo-blog-txt {
  padding-left: 0;
  padding-bottom: 0;
  padding-right: 100px;
}
.seo-blog-wrap {
  margin-top: 40px;
}
.book-a-call-img {
  height: 500px;
  transform: scaleX(-1);
}
.book-a-call-img img {
  height: 100%;
  object-fit: contain;
}
.people-section {
  height: auto;
  overflow: hidden;
  padding: 120px 0;
}
.what-people-s .people-wrap .w35{
  padding-right: 20px;
}
.people-section .people-swiper {
  overflow: visible;
}
.people-swiper {
  padding-bottom: 60px;
  padding-top: 64px;
}
.people-swiper .swiper-slide {
  height: auto;
}
.testi-box {
  height: 100%;
}
.people-next {
  transform: rotate(-180deg);
}
.people-swiper-nav {
  display: flex;
  position: absolute;
  right: 50%;
  transform: translateX(50%);
  gap: 16px;
  cursor: pointer;
  bottom: 0;
}
.big-card-wrap {
  padding: 60px;
  background: #FFF;
}
.bigcard-s .comm-title{
margin-bottom: 24px;
}
.big-card-content {
  display: flex;
  align-items: flex-start;
}
.big-card-image {
  width: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 187px;
}
.big-card-image img {
  height: 100%;
  object-fit: contain;
}
.big-card-content .comm-txt-wrap p {
  font-size: 18px;
  margin-bottom: 28px;
}
.author p {
  color: var(--black);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 4px;
}
.author h4 {
  color: var(--black);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
}
.package {
  padding: 72px 16px 30px;
  border-radius: 25px;
  border: 2px solid var(--black);
  background: #FFF;
  box-shadow: 0 20px 0 var(--black);
  color: var(--black);
}
.package.popular {
  padding-top: 22px;
  color: #fff;
  background: #413F51;
}
.package-head {
  margin-bottom: 14px;
}
.package-head h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}
.package-head h4 {
  font-size: 16px;
  font-weight: 400;
}
.package-head h4 strong {
  text-decoration: line-through;
}
.price-service h2, .price-service p {
    text-align: center;
    margin: auto;
}
.package-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  gap: 6px;
}
.package-price h5 {
  font-size: 18px;
  font-weight: 700;
}
.package-price h5 span {
  font-size: 32px;
}
.package-price h6 {
  color: #F04F38;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.2;
}
.package-price h6 span {
  font-weight: 600;
  display: block;
}
.package-btn {
  width: 100%;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
}
.package-list-wrap {
  padding-top: 20px;
  border-top: 1px solid var(--black);
  margin-bottom: 24px;
}
.package-list-wrap h4 {
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 20px;
}
.package-list li {
  font-size: 12px;
  font-weight: 400;
  margin-bottom: 24px;
  display: flex;
  justify-content: space-between;
  position: relative;
  padding-left: 28px;
}
.package-list li:last-child {
  margin-bottom: 0;
}
.package-list li::before {
  content: url(../img/tick.svg);
  margin-right: 12px;
  position: absolute;
  left: 0;
}
.discount-box {
  padding: 12px;
  border-radius: 16px;
  border: 2px solid var(--black);
  background: #FFF;
}
.discount-box h4 {
  color: var(--black);
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 20px;
}
.discount-box .package-list li {
  color: var(--black);
}
.discount-box span {
  font-weight: 700;
  color: var(--black);
}
.popular-tag {
  padding: 8px 16px;
  background: #fff;
  border-radius: 6px;
  width: max-content;
  margin: auto;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.popular-tag span {
  color: var(--black);
  text-align: center;
  font-family: Inter;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}
.package-wrap {
  margin-top: 40px;
}
.package-wrap .f-row {
  justify-content: center;
}
.ser-swiper-nav-2 {
  justify-content: center;
}
.swiper-service-2,
.swiper-service-3 {
  margin-top: 40px;
  overflow: visible;
}
.swiper-service-2 .swiper-slide,
.swiper-service-3 .swiper-slide {
  height: auto;
}
.spider-section {
  overflow: hidden;
}
.ser-nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
}
.package-wrap-bws {
  max-width: 963px;
  margin: auto;
}
.comm-small-head {
  color: #939393;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.comm-button-wrap {
  display: flex;
  gap: 16px;
}
.big-card-wrap .comm-button-wrap {
  margin-bottom: 40px;
}
.bouquet-box-wrap {
  margin-top: 48px;
}
.bouquet-box-wrap .button {
  margin-top: 40px;
}
.need-help-txt h4 {
  color: #FFF;
  font-size: 21px;
  font-weight: 700;
  line-height: 160%;
  opacity: 0.6;
}
.need-help-txt p {
  color: #FFF;
  font-size: 16px;
  font-weight: 400;
  opacity: 0.6;
  line-height: 160%;
}
.blog-txt {
  padding: 24px 36px;
}
.blog-txt h3 {
  color: var(--black);
  font-size: 21px;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 16px;
}
.blog-txt p {
  color: var(--black);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 16px;
}
.blog-txt a {
  color: var(--black);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
  margin-top: 16px;
}
.blog-txt h4 {
  font-size: 18px;
  color: var(--black);
  line-height: 1.5;
  margin: 8px 0;
  font-weight: 600;
}
.blog-img {
  border-bottom: 2px solid var(--black);
  border-radius: 25px;
  overflow: hidden;
}
.blog-box {
  border: 2px solid var(--black);
  border-radius: 25px;
}
.blog-category {
  display: flex;
  padding: 8px 12.5px;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  border-radius: 6px;
  background: #EFEFEF;
  margin-bottom: 16px;
  width: max-content;
}
.blog-category span {
  color: #939393;
  font-size: 12px;
  font-weight: 500;
}
.blog-author {
  display: flex;
  align-items: center;
}
.blog-author-img {
  margin-right: 8px;
  border-radius: 50%;
}
.numbers-txt {
  max-width: 150px;
}
.numbers-txt h4 {
  color: #000;
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  line-height: 36px;
}
.numbers-txt p {
  color: var(--black);
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 21px !important;
}
.numbers-head {
  flex-shrink: 0;
  max-width: 500px;
  width: 100%;
}
.numbers-head p {
  max-width: 450px;
}
.swiper-numbers {
  width: 100%;
}
.swiper-numbers .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}
.swiper-numbers .swiper-slide:last-child {
  border-right: none;
}
.big-card-txt {
  width: 50%;
}
.banner-illus {
  padding-top: 60px;
}
.banner-img {
  z-index: 111;
}
.play-btn {
  z-index: 1111;
}
.hor-sticky {
  height: 100vh;
  background: #222;
  display: flex;
}
.hor-scroll {
  width: max-content;
}
.horizontal-wrap {
  height: 600vh;
  overflow: hidden;
  position: relative;
  background: #2D2B3F;
}
.hor-in-trigger {
  position: absolute;
  top: 100vh;
}
.hor-scroll-trigger {
  position: absolute;
}
.hor-scroll-trigger-0 {
  top: 100vh;
}
.hor-scroll-trigger-1 {
  top: 250vh;
}
.hor-scroll-trigger-2 {
  top: 400vh;
}
.hor-scroll-trigger-3 {
  top: 550vh;
}
.hor-scroll-trigger-4 {
  top: 700vh;
}
.hor-circle {
  padding-left: 250px;
  padding-right: 50px;
  flex-shrink: 0;
  width: auto;
  height: 100%;
  background: #15141D;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hor-circle:first-of-type {
  padding-left: 500px;
}
.hor-circle:last-of-type {
  padding-right: 500px;
}
.hor-circle-data {
  display: flex;
  align-items: center;
  max-width: 900px;
  flex-shrink: 0;
  width: 100%;
}
.hor-illus {
  width: 50%;
  height: 400px;
  flex-shrink: 0;
}
.hor-illus img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
.hor-txt {
  width: 50%;
  padding-left: 40px;
  flex-shrink: 0;
}
.hor-txt span {
  border-radius: 42px;
  background: #1E1D2A;
  display: block;
  width: 83px;
  height: 54px;
  margin-bottom: 48px;
  color: var(--clr);
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.4;
}
.hor-txt h3 {
  color: #FFF;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 9px;
}
.hor-txt p {
  color: #FFFFFFCC;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.6;
}
.logo-anim {
  height: 60vh;
  width: 100vw;
  z-index: -1;
  position: relative;
}
.logo-main {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.2);
}
.logo-main img {
  object-fit: contain;
}
.logo-anim-trig {
  position: absolute;
}
.logo-anim-trig-0 {
  top: 0;
}
.logo-anim-trig-1 {
  top: 100vh;
}
.logo-anim-trig-2 {
  top: 200vh;
}
.logo-scale {
  height: 100vh;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  opacity: 0;
  overflow: hidden;
}
.logo-outline {
  position: absolute;
  opacity: 0.8;
}
.hor-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hor-title-wrap {
  display: flex;
  align-items: center;
}
.hor-title-wrap .comm-title {
  max-width: 440px;
}
.hor-title-wrap .comm-sub-title {
  max-width: 500px;
  margin-top: 0;
  padding-left: 100px;
}
.seo-swiper-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  gap: 16px;
}
.seo-en-box {
  display: block;
  cursor: pointer;
  border-radius: 25px;
  border: 1px solid var(--black);
  padding: 8px 8px 16px 8px;
  padding-bottom: 0;
}
.seo-en-box p {
  color: var(--black);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
  margin: 20px 10px;
}
.seo-en-box p:hover{
  color: var( --clr);
}

.seo-en-img {
  height: auto;
}
.home-ce p{
    color: #00A497;
    font-size: 14px;
    font-weight: 500;
    background: aliceblue;
    width: max-content;
    padding: 3px 15px;
    border-radius: 16px;
}
p.casestudies_content{
  font-size: 14px;
  font-weight: 500;
  line-height: 21px;
  text-align: left; 
  margin:  20px 10px;
}
p.casestudies_content:hover,p.case-study-date:hover{
  color: var(--black);
}
p.case-study-date{
  font-family: Inter;
  font-size: 14px;
  font-weight: 600;
  line-height: 21px;
  text-align: left;
}
.seo-en-img img {
  height: 100%;
  object-fit: contain;
  object-position: bottom;
  border: 1px solid var(--black);
  border-radius: 16px;
}
.swiper-seo {
  margin-top: 46px;
  overflow: visible;
}
.seo-en-section {
  overflow: hidden;
}
.banner-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.b-elem-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.b-elem {
  position: absolute;
  opacity: 0;
}
.b-elem-1 {
  left: -35%;
  top: 5%;
  transform: translateX(400px);
}
.b-elem-2 {
  left: -35%;
  bottom: -10%;
  transform: translateX(200px);
}
.b-elem-3 {
  right: -30%;
  bottom: 0;
  transform: translateX(-400px);
}
.b-elem-4 {
  right: -30%;
  top: 0;
  transform: translateX(-300px);
}
.b-elem-5 {
  left: -50%;
  bottom: 10%;
  transform: translateX(-150px);
}
.home-cs {
  padding: 48px 0;
  border-bottom: 2px solid #444;
  display: flex;
  align-items: center;
  position: relative;
  transition: 0.5s;
}
.home-cs:hover {
  border-bottom: 2px solid var(--new);
}
.home-cs:hover span {
  background: var(--clr);
}
.home-cs:hover p {
  color: var(--clr);
}
.home-cs:hover::after {
  filter: grayscale(0);
}
.home-cs::after {
  content: url(../img/cs-arrow.svg);
  position: absolute;
  right: 0;
  filter: grayscale(1);
}
.engagebay-forms{
        background-color: #fff;
    max-width: 495px;
    background-position: 50% 0%;
    box-shadow: 0px 3px 40px 0px #1A283314 !important;
    padding:40px 40px 25px 40px !important;
}
.home-cs span {
  transition: 0.5s;
  color: #FFF;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.4;
  width: 83px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 32px;
  background: var(--black);
  border-radius: 42px;
  flex-shrink: 0;
  /* 33.6px */
}
.home-cs p {
  transition: 0.5s;
  color: var(--black);
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.6;
  padding-right: 80px;
  /* 28.8px */
}
.home-case-studies-wrap {
  border-top: 2px solid #444;
  margin-top: 38px;
  cursor: pointer;
}
.home-cs-images-wrap {
  justify-content: center;
  align-items: center;
  display: flex;
  position: fixed;
  width: 100%;
  height: 100vh;
  z-index: 0;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
  transform: scale(0.5);
  opacity: 0;
}
.home-cs-images {
  position: absolute;
  width: 500px;
  height: 360px;
  overflow: hidden;
  border-radius: 8px;
}
.home-cs-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-cs-images-internal {
  position: relative;
  top: 100%;
  transition: 0.6s;
  height: 100%;
  width: 100%;
}
.home-cs-img {
  position: absolute;
  transition: 1s;
}
.home-cs-img.home-cs-img-0 {
  top: 0;
}
.home-cs-img.home-cs-img-1 {
  top: 100%;
}
.home-cs-img.home-cs-img-2 {
  top: 200%;
}
.frameMoveTo .dot-wrap {
  border-bottom: 0;
}
.swiper-blog-btns {
  padding: 40px 0;
}
.swiper-blog-btns .swiper-wrapper {
  justify-content: space-between;
}
.swiper-blog-btns .swiper-slide {
  width: auto;
}
.swiper-blog-btns .swiper-slide .button {
  color: #FFF;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  padding: 12px 24px;
  border-radius: 4px;
  border: 1px solid var(--black);
  background: transparent;
  color: var(--black);
}
.swiper-blog-btns .swiper-slide .button.active {
  color: #fff;
  background: var(--black);
}
.hidden {
  visibility: hidden;
  width: 0px !important;
  height: 0px !important;
  margin: 0px !important;
  padding: 0px !important;
}
.blog-wrap .button {
  margin: auto;
  margin-top: 30px;
}
.blog-wrap .f-col {
  margin-bottom: 40px;
}
.swiper-blog-btns {
  display: flex;
}
.blog-nav-prev,
.blog-nav-next {
  flex-shrink: 0;
}
.swiper-blog-btns-wrap {
  display: flex;
  align-items: center;
}
.swiper-blog-btns-wrap .blog-nav-prev {
  margin-right: 16px;
  cursor: pointer;
}
.swiper-blog-btns-wrap .blog-nav-next {
  cursor: pointer;
  margin-left: 16px;
}
.nav-link {
  border-radius: 46px;
  color: #000;
  border: 1px solid #000;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  padding: 14px 16px;
  background: transparent;
}
.nav-link.active {
  border: 1px solid var(--clr);
  color: var(--clr);
}
.nav-tabs {
  display: flex;
  justify-content: space-between;
  margin-bottom: 24px;
}
.tab-pane {
  opacity: 0;
  position: absolute;
  transition: 0.5s;
}
.tab-pane.active {
  opacity: 1;
  position: relative;
}
.tab-pane li {
  list-style-type: disc;
  list-style-position: inside;
}
.tab-pane li a {
  color: var(--black);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 44px;
}
.contact-us-form {
  padding-right: 60px;
  margin-top: 40px;
}
.contact-us-form button {
  margin-top: 24px;
  width: 100%;
}
.video-main-box-big {
  max-width: 744px;
  margin: auto;
  position: relative;
  border-radius: 16px;
  width: 100%;
  z-index: 111;
  background: #fff;
}
.about-banner .video-player-box{
  padding:20px 0px;
}
.video-main-box-big .video-img {
  height: 540px;
}
.home-video-sec .video-main-box-big .video-img{
    height: 350px;
    top: 60px;
  }
.qnsbox img,
.qnsbox video,
.qnsbox iframe {
  object-fit: contain;
  height: auto;
  width: 100%;
  margin: 16px 0;
  min-height: 350px;
}
.qnsbox h2 {
  color: var(--black);
  font-size: 21px;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 20px;
}
.qnsbox h3 {
  color: var(--black);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 16px;
}
.qnsbox h4 {
  color: var(--black);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 16px;
}
.qnsbox p {
  color: var(--black);
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
  margin-bottom: 16px;
}
.qnsbox a {
  color: var(--clr);
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
  margin-top: 16px;
}
.qnsbox ol {
  padding-left: 20px;
  margin-bottom: 16px;
}
.qnsbox ol li {
  list-style-type: decimal;
  color: var(--black);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 4px;
}
.qnsbox ol li a {
  color: var(--clr);
}
.qnsbox ul {
  padding-left: 20px;
  margin-bottom: 16px;
}
.qnsbox ul li {
  list-style-type: disc;
  color: var(--black);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 4px;
}
.qnsbox ul li a {
  color: var(--clr);
}
.comment p {
  color: var(--black);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  margin-top: 24px;
  margin-bottom: 16px;
  width: 100%;
}
.comment p a {
  color: var(--clr);
}
.comments-title {
  color: var(--black);
  font-family: Inter;
  font-size: 42px;
  font-weight: 800;
  line-height: 1.5;
  margin-bottom: 30px;
}
.comment-author {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.comment-author img {
  border-radius: 50%;
  margin-right: 16px;
  border: 1px solid var(--black);
}
.comment-author .fn {
  color: var(--black);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  font-style: normal;
}
.comment-author .fn a {
  color: var(--black);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  font-style: normal;
}
.comment-author .says {
  margin-left: 8px;
}
.comment-meta a {
  color: #939393;
  text-align: right;
  font-family: Inter;
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
}
.comment-body {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 40px;
}
.reply a {
  color: var(--clr);
}
.comment-respond {
  color: var(--black);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
}
.comment-respond .comment-reply-title {
  color: var(--black);
  font-size: 42px;
  font-style: normal;
  font-weight: 800;
  line-height: 1.4;
}
.comment-respond .comment-reply-title small {
  font-size: 18px;
  margin-left: 8px;
}
.comment-respond .comment-reply-title small a {
  color: var(--clr);
}
.author-para a {
  color: var(--clr);
}
.list-block {
  padding-left: 16px;
}
.list-block li {
  font-size: 16px;
  margin-bottom: 10px;
  color: var(--black);
  font-weight: 400;
  line-height: 1.5;
  list-style-type: disc;
}
.card-number {
  color: #333;
  font-family: Inter;
  font-size: 48px;
  font-style: normal;
  font-weight: 300;
  line-height: 140%;
  position: absolute;
  top: 32px;
  left: 36px;
}
.c-mail h4 {
  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 8px;
}
.c-mail a {
  color: #FFF;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.5;
}
.c-detail {
  display: flex;
  margin-bottom: 60px;
}
.c-detail:last-child {
  margin-bottom: 0;
}
.c-icon {
  height: 44px;
  width: 44px;
  margin-right: 24px;
}
.c-icon img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
.contact-emails-wrap {
  padding-left: 64px;
}
.contact-box {
  margin-top: 42px;
}
.contact-box .f-col {
  margin-bottom: 30px;
}
.writer-wrap {
  color: var(--clr);
}
.comment-respond {
  border-radius: 25px;
  border: 2px solid #15141D;
  background: #FFF;
  padding: 30px;
  margin-bottom: 40px;
}
.three-arrows {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 4px;
}
.three-arrows img:nth-child(2) {
  opacity: 0.66;
}
.three-arrows img:last-child {
  opacity: 0.33;
}
.package-price h5 .dollar {
  position: relative;
  top: -18px;
  font-size: 14px;
}
.comment-form-comment {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
.comment-form-comment textarea {
  resize: none;
  font-weight: 500;
  font-size: 16px;
  border: 0;
  border: 1px solid rgba(21, 20, 29, 0.5);
  border-radius: 4px;
  padding: 0 16px;
  position: relative;
  background: transparent;
  color: var(--black);
  width: 100%;
  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  padding-top: 20px;
}
.comment-form-author,
.comment-form-email,
.comment-form-url {
  display: block;
  width: 50%;
  margin-bottom: 20px;
}
.comment-form-author input,
.comment-form-email input,
.comment-form-url input {
  font-weight: 500;
  height: 46px;
  font-size: 16px;
  border: 0;
  border: 1px solid rgba(21, 20, 29, 0.5);
  border-radius: 4px;
  padding: 0 16px;
  position: relative;
  background: transparent;
  color: var(--black);
  width: 100%;
  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
}
.comment .comment-form-author,
.comment .comment-form-email,
.comment .comment-form-url {
  display: block;
  width: 50%;
  margin-bottom: 20px;
  margin-top: 0;
}
.comment .comment-form-author input,
.comment .comment-form-email input,
.comment .comment-form-url input {
  font-weight: 500;
  height: 46px;
  font-size: 16px;
  border: 0;
  border: 1px solid rgba(21, 20, 29, 0.5);
  border-radius: 4px;
  padding: 0 16px;
  position: relative;
  background: transparent;
  color: var(--black);
  width: 100%;
  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
}
.writer-wrap a {
  color: var(--clr);
}
.comment-form {
  display: flex;
  flex-wrap: wrap;
}
.comment-form-cookies-consent,
.comment-notes {
  margin-bottom: 20px;
}
.comment-form-author,
.comment-form-url {
  padding-right: 10px;
}
.comment-form-email {
  padding-left: 10px;
}
.form-submit input {
  font-weight: var(--button-font);
  background: #F15A24;
  outline: none;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 54px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 18px;
  text-align: center;
  padding: 0 36px;
  width: max-content;
  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
}
.comment-form-cookies-consent {
  width: 100%;
}
.comment-form-cookies-consent input {
  accent-color: var(--clr);
  cursor: pointer;
}
.link-btn a {
  color: var(--clr);
}
.detail-ans ol {
  padding-left: 20px;
}
.detail-ans ol li {
  color: var(--black);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 4px;
}
.detail-ans ol li a {
  color: var(--clr);
}
.bh-stars {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
}
.bh-stars .bh-star {
  width: 21px;
  height: 21px;
}
.bh-stars .bh-star .outline {
  fill: var(--clr);
}
.bh-stars .bh-star .full,
.bh-stars .bh-star .left-half {
  fill: transparent;
}
.bh-stars[data-bh-rating^="1"] .bh-star--1 .full {
  fill: var(--clr);
}
.bh-stars[data-bh-rating^="2"] .bh-star--1 .full {
  fill: var(--clr);
}
.bh-stars[data-bh-rating^="3"] .bh-star--1 .full {
  fill: var(--clr);
}
.bh-stars[data-bh-rating^="4"] .bh-star--1 .full {
  fill: var(--clr);
}
.bh-stars[data-bh-rating^="5"] .bh-star--1 .full {
  fill: var(--clr);
}
.bh-stars[data-bh-rating^="2"] .bh-star--2 .full {
  fill: var(--clr);
}
.bh-stars[data-bh-rating^="3"] .bh-star--2 .full {
  fill: var(--clr);
}
.bh-stars[data-bh-rating^="4"] .bh-star--2 .full {
  fill: var(--clr);
}
.bh-stars[data-bh-rating^="5"] .bh-star--2 .full {
  fill: var(--clr);
}
.bh-stars[data-bh-rating^="3"] .bh-star--3 .full {
  fill: var(--clr);
}
.bh-stars[data-bh-rating^="4"] .bh-star--3 .full {
  fill: var(--clr);
}
.bh-stars[data-bh-rating^="5"] .bh-star--3 .full {
  fill: var(--clr);
}
.bh-stars[data-bh-rating^="4"] .bh-star--4 .full {
  fill: var(--clr);
}
.bh-stars[data-bh-rating^="5"] .bh-star--4 .full {
  fill: var(--clr);
}
.bh-stars[data-bh-rating^="5"] .bh-star--5 .full {
  fill: var(--clr);
}
.bh-stars[data-bh-rating^="0.5"] .bh-star--1 .left-half {
  fill: var(--clr);
}
.bh-stars[data-bh-rating^="1.5"] .bh-star--2 .left-half {
  fill: var(--clr);
}
.bh-stars[data-bh-rating^="2.5"] .bh-star--3 .left-half {
  fill: var(--clr);
}
.bh-stars[data-bh-rating^="3.5"] .bh-star--4 .left-half {
  fill: var(--clr);
}
.bh-stars[data-bh-rating^="4.5"] .bh-star--5 .left-half {
  fill: var(--clr);
}
.bh-stars[data-bh-rating^="0.6"] .bh-star--1 .left-half {
  fill: var(--clr);
}
.bh-stars[data-bh-rating^="1.6"] .bh-star--2 .left-half {
  fill: var(--clr);
}
.bh-stars[data-bh-rating^="2.6"] .bh-star--3 .left-half {
  fill: var(--clr);
}
.bh-stars[data-bh-rating^="3.6"] .bh-star--4 .left-half {
  fill: var(--clr);
}
.bh-stars[data-bh-rating^="4.6"] .bh-star--5 .left-half {
  fill: var(--clr);
}
.bh-stars[data-bh-rating^="0.7"] .bh-star--1 .left-half {
  fill: var(--clr);
}
.bh-stars[data-bh-rating^="1.7"] .bh-star--2 .left-half {
  fill: var(--clr);
}
.bh-stars[data-bh-rating^="2.7"] .bh-star--3 .left-half {
  fill: var(--clr);
}
.bh-stars[data-bh-rating^="3.7"] .bh-star--4 .left-half {
  fill: var(--clr);
}
.bh-stars[data-bh-rating^="4.7"] .bh-star--5 .left-half {
  fill: var(--clr);
}
.bh-stars[data-bh-rating^="0.8"] .bh-star--1 .left-half {
  fill: var(--clr);
}
.bh-stars[data-bh-rating^="1.8"] .bh-star--2 .left-half {
  fill: var(--clr);
}
.bh-stars[data-bh-rating^="2.8"] .bh-star--3 .left-half {
  fill: var(--clr);
}
.bh-stars[data-bh-rating^="3.8"] .bh-star--4 .left-half {
  fill: var(--clr);
}
.bh-stars[data-bh-rating^="4.8"] .bh-star--5 .left-half {
  fill: var(--clr);
}
.bh-stars[data-bh-rating^="0.9"] .bh-star--1 .left-half {
  fill: var(--clr);
}
.bh-stars[data-bh-rating^="1.9"] .bh-star--2 .left-half {
  fill: var(--clr);
}
.bh-stars[data-bh-rating^="2.9"] .bh-star--3 .left-half {
  fill: var(--clr);
}
.bh-stars[data-bh-rating^="3.9"] .bh-star--4 .left-half {
  fill: var(--clr);
}
.bh-stars[data-bh-rating^="4.9"] .bh-star--5 .left-half {
  fill: var(--clr);
}
.bh-stars.rounding-up[data-bh-rating^="1"] .bh-star--1 .full {
  fill: var(--clr);
}
.bh-stars.rounding-up[data-bh-rating^="2"] .bh-star--1 .full {
  fill: var(--clr);
}
.bh-stars.rounding-up[data-bh-rating^="3"] .bh-star--1 .full {
  fill: var(--clr);
}
.bh-stars.rounding-up[data-bh-rating^="4"] .bh-star--1 .full {
  fill: var(--clr);
}
.bh-stars.rounding-up[data-bh-rating^="5"] .bh-star--1 .full {
  fill: var(--clr);
}
.bh-stars.rounding-up[data-bh-rating^="2"] .bh-star--2 .full {
  fill: var(--clr);
}
.bh-stars.rounding-up[data-bh-rating^="3"] .bh-star--2 .full {
  fill: var(--clr);
}
.bh-stars.rounding-up[data-bh-rating^="4"] .bh-star--2 .full {
  fill: var(--clr);
}
.bh-stars.rounding-up[data-bh-rating^="5"] .bh-star--2 .full {
  fill: var(--clr);
}
.bh-stars.rounding-up[data-bh-rating^="3"] .bh-star--3 .full {
  fill: var(--clr);
}
.bh-stars.rounding-up[data-bh-rating^="4"] .bh-star--3 .full {
  fill: var(--clr);
}
.bh-stars.rounding-up[data-bh-rating^="5"] .bh-star--3 .full {
  fill: var(--clr);
}
.bh-stars.rounding-up[data-bh-rating^="4"] .bh-star--4 .full {
  fill: var(--clr);
}
.bh-stars.rounding-up[data-bh-rating^="5"] .bh-star--4 .full {
  fill: var(--clr);
}
.bh-stars.rounding-up[data-bh-rating^="5"] .bh-star--5 .full {
  fill: var(--clr);
}
.bh-stars.rounding-up[data-bh-rating^="0.6"] .bh-star--1 .full {
  fill: var(--clr);
}
.bh-stars.rounding-up[data-bh-rating^="1.6"] .bh-star--2 .full {
  fill: var(--clr);
}
.bh-stars.rounding-up[data-bh-rating^="2.6"] .bh-star--3 .full {
  fill: var(--clr);
}
.bh-stars.rounding-up[data-bh-rating^="3.6"] .bh-star--4 .full {
  fill: var(--clr);
}
.bh-stars.rounding-up[data-bh-rating^="4.6"] .bh-star--5 .full {
  fill: var(--clr);
}
.bh-stars.rounding-up[data-bh-rating^="0.7"] .bh-star--1 .full {
  fill: var(--clr);
}
.bh-stars.rounding-up[data-bh-rating^="1.7"] .bh-star--2 .full {
  fill: var(--clr);
}
.bh-stars.rounding-up[data-bh-rating^="2.7"] .bh-star--3 .full {
  fill: var(--clr);
}
.bh-stars.rounding-up[data-bh-rating^="3.7"] .bh-star--4 .full {
  fill: var(--clr);
}
.bh-stars.rounding-up[data-bh-rating^="4.7"] .bh-star--5 .full {
  fill: var(--clr);
}
.bh-stars.rounding-up[data-bh-rating^="0.8"] .bh-star--1 .full {
  fill: var(--clr);
}
.bh-stars.rounding-up[data-bh-rating^="1.8"] .bh-star--2 .full {
  fill: var(--clr);
}
.bh-stars.rounding-up[data-bh-rating^="2.8"] .bh-star--3 .full {
  fill: var(--clr);
}
.bh-stars.rounding-up[data-bh-rating^="3.8"] .bh-star--4 .full {
  fill: var(--clr);
}
.bh-stars.rounding-up[data-bh-rating^="4.8"] .bh-star--5 .full {
  fill: var(--clr);
}
.bh-stars.rounding-up[data-bh-rating^="0.9"] .bh-star--1 .full {
  fill: var(--clr);
}
.bh-stars.rounding-up[data-bh-rating^="1.9"] .bh-star--2 .full {
  fill: var(--clr);
}
.bh-stars.rounding-up[data-bh-rating^="2.9"] .bh-star--3 .full {
  fill: var(--clr);
}
.bh-stars.rounding-up[data-bh-rating^="3.9"] .bh-star--4 .full {
  fill: var(--clr);
}
.bh-stars.rounding-up[data-bh-rating^="4.9"] .bh-star--5 .full {
  fill: var(--clr);
}
.bh-stars.rounding-up[data-bh-rating^="0.0"] .bh-star--1 .left-half {
  fill: var(--clr);
}
.bh-stars.rounding-up[data-bh-rating^="1.0"] .bh-star--2 .left-half {
  fill: var(--clr);
}
.bh-stars.rounding-up[data-bh-rating^="2.0"] .bh-star--3 .left-half {
  fill: var(--clr);
}
.bh-stars.rounding-up[data-bh-rating^="3.0"] .bh-star--4 .left-half {
  fill: var(--clr);
}
.bh-stars.rounding-up[data-bh-rating^="4.0"] .bh-star--5 .left-half {
  fill: var(--clr);
}
.bh-stars.rounding-up[data-bh-rating^="0.1"] .bh-star--1 .left-half {
  fill: var(--clr);
}
.bh-stars.rounding-up[data-bh-rating^="1.1"] .bh-star--2 .left-half {
  fill: var(--clr);
}
.bh-stars.rounding-up[data-bh-rating^="2.1"] .bh-star--3 .left-half {
  fill: var(--clr);
}
.bh-stars.rounding-up[data-bh-rating^="3.1"] .bh-star--4 .left-half {
  fill: var(--clr);
}
.bh-stars.rounding-up[data-bh-rating^="4.1"] .bh-star--5 .left-half {
  fill: var(--clr);
}
.bh-stars.rounding-up[data-bh-rating^="0.2"] .bh-star--1 .left-half {
  fill: var(--clr);
}
.bh-stars.rounding-up[data-bh-rating^="1.2"] .bh-star--2 .left-half {
  fill: var(--clr);
}
.bh-stars.rounding-up[data-bh-rating^="2.2"] .bh-star--3 .left-half {
  fill: var(--clr);
}
.bh-stars.rounding-up[data-bh-rating^="3.2"] .bh-star--4 .left-half {
  fill: var(--clr);
}
.bh-stars.rounding-up[data-bh-rating^="4.2"] .bh-star--5 .left-half {
  fill: var(--clr);
}
.bh-stars.rounding-up[data-bh-rating^="0.3"] .bh-star--1 .left-half {
  fill: var(--clr);
}
.bh-stars.rounding-up[data-bh-rating^="1.3"] .bh-star--2 .left-half {
  fill: var(--clr);
}
.bh-stars.rounding-up[data-bh-rating^="2.3"] .bh-star--3 .left-half {
  fill: var(--clr);
}
.bh-stars.rounding-up[data-bh-rating^="3.3"] .bh-star--4 .left-half {
  fill: var(--clr);
}
.bh-stars.rounding-up[data-bh-rating^="4.3"] .bh-star--5 .left-half {
  fill: var(--clr);
}
.bh-stars.rounding-up[data-bh-rating^="0.4"] .bh-star--1 .left-half {
  fill: var(--clr);
}
.bh-stars.rounding-up[data-bh-rating^="1.4"] .bh-star--2 .left-half {
  fill: var(--clr);
}
.bh-stars.rounding-up[data-bh-rating^="2.4"] .bh-star--3 .left-half {
  fill: var(--clr);
}
.bh-stars.rounding-up[data-bh-rating^="3.4"] .bh-star--4 .left-half {
  fill: var(--clr);
}
.bh-stars.rounding-up[data-bh-rating^="4.4"] .bh-star--5 .left-half {
  fill: var(--clr);
}
.bh-stars.rounding-up[data-bh-rating^="0.5"] .bh-star--1 .left-half {
  fill: var(--clr);
}
.bh-stars.rounding-up[data-bh-rating^="1.5"] .bh-star--2 .left-half {
  fill: var(--clr);
}
.bh-stars.rounding-up[data-bh-rating^="2.5"] .bh-star--3 .left-half {
  fill: var(--clr);
}
.bh-stars.rounding-up[data-bh-rating^="3.5"] .bh-star--4 .left-half {
  fill: var(--clr);
}
.bh-stars.rounding-up[data-bh-rating^="4.5"] .bh-star--5 .left-half {
  fill: var(--clr);
}
.review-date p {
  color: #666;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 42px;
  margin-bottom: 0;
}
.review-star-wrap {
  display: flex;
  gap: 14px;
  margin-bottom: 24px;
  align-items: center;
  width: 100%;
}
.review-logo {
  height: 32px;
  width: 32px;
}
.smoothLess {
  overflow: visible;
  height: auto;
}
.smoothLess #main-scrollbar {
  height: auto;
  overflow: visible !important;
}
.smoothLess .main-container {
  overflow: visible;
}
.smoothLess-html {
  overflow: visible;
  overflow-x: hidden;
  height: auto;
}
.growth-form {
  position: sticky;
  top: 80px;
}
.logged-in-as a {
  color: var(--clr);
}
.team-detail-box .team-img {
  display: none;
}
.tab-pane .menu {
  display: block;
}
.detail-box a {
  color: var(--clr);
}
.pod-share {
  display: flex;
  gap: 20px;
}
.casestudy-content {
  margin: auto;
}
.casestudy-content ol {
  padding-left: 34px;
}
.share-img {
  height: 80px;
  width: 80px;
  border-radius: 50%;
  overflow: hidden;
}
.qnsbox #ez-toc-container {
  display: none;
}
.qna-wrap {
  position: fixed;
  left: 0;
  right: 0;
  padding-left: 10px !important;
  padding-right: 10px !important;
  top: 0;
  height: 100vh;
  opacity: 0;
  visibility: hidden;
  z-index: -1;
  transition: all .3s linear;
  -webkit-transition: .3s linear;
  -moz-transition: .3s linear;
  -o-transition: .3s linear;
  background-color: #ffffff;
}
.qna-container {
  max-width: 760px;
  text-align: center;
  margin: 120px auto;
}
.qna-wrap.showPopup {
  z-index: 99999999;
  opacity: 1;
  visibility: visible;
}
.progress-bar {
  max-width: 450px;
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
  background-color: rgba(150, 150, 150, 0.13);
  position: relative;
  z-index: 0;
  height: 10px;
}
.bar {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  max-width: 450px;
  z-index: 1;
  height: 10px;
  background: linear-gradient(270deg, #f04f38 1.34%, #f58026 121.99%);
  border-radius: 10px;
  transition: all .3s linear;
  -webkit-transition: .3s linear;
  -moz-transition: .3s linear;
  -o-transition: 0.3s linear;
}
.progress-bar-wrap {
  margin-bottom: 32px;
  width: 100%;
}
.question {
  margin: 0 0 24px;
  font-style: normal;
  font-weight: 800;
  font-size: 40px;
  line-height: 1.5;
  text-align: center;
  letter-spacing: -0.009em;
  color: #292d32;
}
.form-control-qna {
  position: relative;
  width: 100%;
  height: 3rem;
  margin: 0 auto;
}
.form-label-qna {
  position: absolute;
  font-family: Nunito, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  left: .75rem;
  top: .75rem;
  padding: 0 .35rem;
  color: var(--color-light-500);
  background: var(--color-white);
  transition: all .35s ease;
  width: auto !important;
}
.errorurl {
  font-size: 13px;
  line-height: 1.3;
  font-weight: 400;
  color: red;
  margin-bottom: 0;
  margin-top: 7px;
}
.form-input-qna {
  position: absolute;
  display: block;
  font-family: Nunito, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: inherit;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  padding: .75rem 1rem;
  z-index: 1;
  outline: 0;
  border-radius: .25rem;
  border-width: 1.75px;
  border-style: solid;
  border-color: var(--color-light-300);
  color: var(--color-black);
  background-clip: padding-box;
  background-color: transparent;
  transition: all 0.35s ease-in-out;
  border: 1px solid #eaeaea;
  border-radius: 8px;
}
.form-input-qna:focus + .form-label-qna {
  font-size: .875rem;
  font-weight: 400;
  top: -0.65rem;
  left: .75rem;
  z-index: 5;
}
.form-input-qna:not(:placeholder-shown).form-input-qna:not(:focus) + .form-label-qna {
  font-size: .875rem;
  font-weight: 400;
  top: -0.65rem;
  left: .75rem;
  z-index: 5;
}
.button-qna {
  margin: auto;
  margin-top: 24px;
  cursor: pointer;
}
.btn-wrap {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}
.btn-wrap .button-qna {
  margin: 0px 12px;
}
.wpcf7-form-control {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}
.wpcf7-list-item {
  position: relative;
  max-width: 250px;
  min-width: 250px;
  margin: 0;
}
.wpcf7-form label {
  padding: 0 !important;
  margin: 0;
  width: 100%;
}
.wpcf7-list-item [type=checkbox] {
  position: absolute;
  appearance: none;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
  cursor: pointer;
}
.wpcf7-list-item-label {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  display: block;
  padding: 15px;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 19px;
  text-align: center;
  letter-spacing: -0.002em;
  color: #000;
  position: relative;
  z-index: 2;
  cursor: pointer;
  transition: all .3s linear;
  -webkit-transition: .3s linear;
  -moz-transition: .3s linear;
  -o-transition: 0.3s linear;
}
.wpcf7-list-item-label:hover {
  background: #f58026;
  color: #ffffff;
}
.wpcf7-list-item [type=checkbox]:checked + .wpcf7-list-item-label {
  background: #f58026;
  color: #fff;
  border-color: #f58026;
}
.wpcf7-list-item {
  position: relative;
  max-width: 250px;
  min-width: 250px;
}
.qna-sec {
  display: none;
}
.show {
  display: block !important;
}
#qna-1 .form-control-qna {
  max-width: 400px;
}
#oti {
  display: none;
}
#qna-7 .form-control-qna {
  max-width: 330px;
  margin-bottom: 14px;
}
.close-popup {
  position: absolute;
  right: 40px;
  top: 40px;
  cursor: pointer;
}
.toc-para #ez-toc-container {
  background: #f9f9f9;
  border: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  display: table;
  margin-bottom: 0;
  padding: 0;
  position: relative;
  width: auto;
}
.toc-para #ez-toc-container ul li {
  margin-bottom: 16px;
}
.wpcf7-spinner {
  display: none;
}
.checker-form-box {
  border: 1px solid #000;
  padding: 30px;
  border-radius: 25px;
  margin-bottom: 60px;
  box-shadow: 0 16px 0 var(--black);
}
.form-grp label {
  width: 100%;
  margin-bottom: 8px;
  display: block;
}
.service-cards {
  height: 100%;
}
.podcast-img img {
  height: auto;
}
.comm-margin {
  margin-bottom: 64px;
}
.comm-title-wrap .comm-margin {
  margin-bottom: 64px;
}
.detailed-pg-header-txt {
  color: var(--black);
  font-size: 48px;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 24px;
}
.case-studies-detail-header .detailed-pg-header-txt {
  padding-right: 215px;
}
.case-studies-detail-header .share-img{
    height: 56px;
    width: 56px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--new);
    margin-right: 24px;
}
.case-studies-detail-header .writer-wrap{
      display: inline-flex;
    align-items: center;
}
.case-studies-detail-header .writer-wrap p{
  font-family: Inter;
font-size: 20px;
font-weight: 500;
line-height: 30px;
text-align: left;
text-decoration: underline;
}
.cs-detail .qnsbox h2{
font-size: 32px;
font-weight: 800;
line-height: 40px;
letter-spacing: -0.008em;
text-align: left;
}
.cs-detail .qnsbox p{
font-size: 16px;
font-weight: 400;
line-height: 32px;
letter-spacing: -0.001em;
text-align: left;
}
.cs-detail .qnsbox .detail-ans span{
font-size: 16px !important;
font-weight: 400 !important;
line-height: 32px;
letter-spacing: -0.001em;
text-align: left;
}
.detailed-pg-header-txt{
    font-size: 40px;
}
.cs-detail .qnsbox .detail-ans li::marker {
   color: var(--new);
}
.cs-detail .detail-ans ul li b{
color: var(--new);
font-size: 16px;
font-weight: 800;
line-height: 32px;
letter-spacing: -0.001em;
text-align: left;
}
.cs-detail .detail-ans ol li b{
color: var(--new);
font-size: 16px;
font-weight: 800;
line-height: 32px;
letter-spacing: -0.001em;
text-align: left;
}
.cs-detail h3{
font-size: 24px !important;
font-weight: 800 !important;
line-height: 32px !important;
letter-spacing: -0.008em;
text-align: left;
}
.b-detail-content-left .toc-para #ez-toc-container{
  background: none;
}
.ez-toc-title-container{
  display: none !important;
}
.toc-para #ez-toc-container ul li a,.dropdown-content li h4{
font-size: 14px;
font-weight: 500;
line-height: 22px;
text-align: left;
color: rgba(21, 20, 29, 0.8) !important;
}
.casestudy-content .dropdown-content li:hover{
    background:none;
}
.b-detail-content-left .speaker-head{
font-size: 18px;
font-weight: 600;
line-height: 24px;
text-align: left;
}
.b-detail-content-left .speaker-wrap{
  border: none;
  box-shadow: none;
}
.back-arrow {
  width: 10px;
  height: 30px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
  cursor: pointer;
}
.subscribe-email .form-grp {
  max-width: 340px;
  width: 340px;
  margin: 0 auto;
}
.subscribe-btn {
  position: absolute;
  right: 7px;
  top: 50%;
  height: 32px;
  width: 108px;
  transform: translateY(-50%);
  padding: 8px;
  color: #FFF;
  font-size: 12px;
  font-weight: 500;
  line-height: normal;
}
.detail-pg-header-wrap {
  border-bottom: 1px solid var(--black);
  padding-bottom: 40px;
}
.detail-content-sec {
  padding-top: 40px;
}
.detail-pg-sec {
  padding: 77px 0 0px !important;
}
.audio-brand-txt {
  color: var(--black);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  opacity: 0.5;
  margin-bottom: 24px;
}
.audio-brands {
  margin-bottom: 56px;
}
.audio-wrap {
  margin-bottom: 24px;
}
.audio-wrap img {
  width: 100%;
}
.detail-question {
  color: var(--black);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 16px;
}
.detail-ans a {
  color: var(--clr);
}
.detail-ans p {
  color: var(--black);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 16px;
}
.detail-ans p:last-child {
  margin-bottom: 20px;
}
.detail-ans h3 {
  color: var(--black);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 16px;
  margin-top: 30px;
}
.detail-ans ul {
  margin: 16px 0;
  padding-left: 16px;
}
.detail-ans ul li {
  color: var(--black);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 16px;
  list-style-type: disc;
}
.detail-ans ul li:last-child {
  margin-bottom: 20px;
}
.detail-pg-content-wrap {
  display: -webkit-flex;
  display: -webkit-box;
  display: -moz-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: flex-start;
  gap: 34px;
}
.speaker-card {
  display: -webkit-flex;
  display: -webkit-box;
  display: -moz-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 24px;
  margin-bottom: 24px;
}
.speaker-card:last-child {
  margin-bottom: 0;
}
.speaker-head {
  color: var(--black);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.8;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.speaker-name {
  color: var(--black);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
}
.speaker-profile {
  color: var(--black);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: -0.2px;
}
.speaker-wrap {
  border-radius: 25px;
  border: 2px solid var(--black);
  padding: 40px 30px;
  box-shadow: 0 16px 0 var(--black);
  margin-bottom: 56px;
  max-width: 407px;
  width: 407px;
}
.speaker-content {
  flex: 1;
}
.speaker-img {
  border-radius: 100%;
  overflow: hidden;
  width: 80px;
  height: 80px;
  border: 2px solid var(--black);
}
.speaker-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.speaker-para p {
  color: var(--black);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
}
.speaker-para {
  max-width: 339px;
  width: 100%;
}
.podcast-channel p {
  color: var(--black);
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
}
.podacast-date p {
  margin-bottom: 0;
  color: #939393;
  font-size: 12px;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
}
.podcast-para p {
  margin-bottom: 24px;
}
.play-icon {
  position: absolute;
  bottom: 50%;
  right: 34px;
  width: 64px;
  transform: translateY(110%);
  height: 64px;
  z-index: 1;
}
.play-icon-podcast {
  top: 250px;
  transform: translateY(0);
  bottom: auto;
}
.podcast-card {
  height: 100%;
  overflow: hidden;
  position: relative;
}
.podcast-card .blog-img {
  border: none;
  height: auto;
  width: 100%;
}
.podcast-card .blog-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.podcast-card h3 {
  margin-bottom: 0;
}
.podcast-img {
  overflow: hidden;
  border-bottom: none;
  border: 2px solid var(--black);
  border-radius: 25px;
  position: relative;
  margin: -2px;
  margin-bottom: 0;
}
.blog-wrap .f-row {
  margin-left: -20px;
  margin-right: -20px;
  gap: 40px 0;
}
.blog-wrap .f-col {
  padding: 0 20px;
}
.blog-wrap .load-button {
  margin-top: 24px;
}
.load-button {
  margin-top: 64px;
}
.form-grp .button:hover {
  box-shadow: 0px 3px 0px #000;
  transform: translateY(calc(-50% - 3px));
}
.video-card-img {
  height: 242px;
}
.video-card-img img {
  border-radius: 25px;
}
.why-img-wrap {
  display: flex;
  gap: 24px;
}
.why-img {
  width: 100%;
  height: auto;
}
.why-img img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
}
.why-banner {
  width: 100%;
  height: auto;
}
.why-banner img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
}
.author-title {
  margin-bottom: 24px;
}
.author-title p {
  color: var(--black);
  font-family: Inter;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.8;
  text-transform: uppercase;
}
.auhtor-name {
  color: var(--black);
  font-family: Inter;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.5;
}
.author-para p {
  color: var(--black);
  font-family: Inter;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
}
.author-para p span {
  text-decoration-line: underline;
}
.author-img {
  border: 2px solid var(--black);
  border-radius: 100%;
  overflow: hidden;
  width: 96px;
  height: 96px;
}
.auhtor-detail {
  display: -webkit-flex;
  display: -webkit-box;
  display: -moz-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
.auhtor-detail-left {
  display: -webkit-flex;
  display: -webkit-box;
  display: -moz-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 24px;
  flex: 1;
}
.author-box {
  border-radius: 25px;
  border: 2px solid var(--black);
  padding: 40px 37px;
  box-shadow: 0 15px 0 var(--black);
}
.auhtor-social {
  display: flex;
  gap: 20px;
}
.auhtor-social img {
  width: 30px;
  height: 30px;
}
.checkbox {
  width: 24px;
  height: 24px;
}
.checkbox ~ p {
  flex: 1;
  color: #000;
  font-family: Inter;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}
.form-filed-wrap {
  display: flex;
  gap: 24px;
  margin-bottom: 40px;
}
.form-left,
.form-right {
  width: 50%;
}
.form-bottom .form-left {
  display: -webkit-flex;
  display: -webkit-box;
  display: -moz-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 16px;
}
.form-bottom .form-right {
  display: -webkit-flex;
  display: -webkit-box;
  display: -moz-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.form-bottom {
  display: -webkit-flex;
  display: -webkit-box;
  display: -moz-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.contact-form-title {
  color: var(--black);
  font-family: Inter;
  font-size: 42px;
  font-weight: 800;
  line-height: 1.5;
  margin-bottom: 4px;
}
.contact-form-para {
  margin-bottom: 24px;
}
.contact-form {
  margin-bottom: 40px;
}
.form-wrap {
  padding: 40px 38px;
  border-radius: 25px;
  border: 2px solid var(--black);
}
.form-wrap .form-left .form-field,
.form-wrap .form-textarea-group {
  height: 100%;
}
.form-textarea-group {
  margin: 0;
}
.form-wrap .form-grp {
  margin-top: 0;
}
.form-wrap .form-grp:last-child {
  margin-bottom: 0;
}
.toc-para li {
  color: var(--black);
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 20px;
  cursor: pointer;
}
.toc-para li:last-child {
  margin-bottom: 0;
}
.google-search-img {
  width: 1298px;
  height: 406px;
  border-radius: 25px;
  border: 2px solid var(--black);
  box-shadow: 0 12px 0 var(--black);
  overflow: hidden;
}
.google-search-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.comment-name {
  color: var(--black);
  font-family: Inter;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
}
.comment-date {
  color: #939393;
  text-align: right;
  font-family: Inter;
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
}
.comment-details {
  display: -webkit-flex;
  display: -webkit-box;
  display: -moz-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.comment-user {
  display: -webkit-flex;
  display: -webkit-box;
  display: -moz-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 16px;
}
.user-img {
  border-radius: 100%;
  border: 1px solid var(--black);
  overflow: hidden;
}
.comment-wrap .contact-form-title {
  margin-bottom: 30px;
}
.comment-details {
  margin-bottom: 24px;
}
.comment-card {
  margin-bottom: 40px;
}
.case-studies-sec {
  border-bottom: 1px solid var(--black);
}
.case-studies-sec .detailed-pg-header-txt {
  text-align: left;
}
.case-studies-sec .header-top-row {
  display: flex;
  gap: 24px;
  align-items: center;
  margin-bottom: 24px;
}
.link-btn {
  border-radius: 6px;
  background: #EFEFEF;
  color: #939393;
  font-family: Inter;
  font-size: 12px;
  font-weight: 500;
  line-height: normal;
  padding: 8px 12px;
}
.writer-wrap p {
  color: rgba(21, 20, 29, 0.5);
  font-family: Inter;
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
}
.share-profile-wrap {
  display: -webkit-flex;
  display: -webkit-box;
  display: -moz-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.share-profile {
  display: flex;
  gap: 16px;
  align-items: center;
}
.share-name {
  color: var(--black);
  font-family: Inter;
  font-size: 18px;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 4px;
}
.share-date {
  color: var(--black);
  font-family: Inter;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
}
.view-all {
  margin-top: 112px;
}
.blog-header-top-row {
  justify-content: center;
  position: relative;
}
.blog-header-top-row .back-arroww {
  position: absolute;
  left: 0;
}
.blog-detail-pg-header-wrap .detailed-pg-header-txt,
.blog-detail-pg-header-wrap .writer-wrap {
  text-align: center;
}
.b-detail-content-left .speaker-wrap {
  padding: 0px;
  position: sticky;
  top: 80px;
}
.ez-toc-title-container-new{
            cursor: pointer;
            display: flex !important;
            margin-bottom: 16px;
}
.ez-toc-title-toggle {
     font-size: 20px; /* Change as needed */
     }

#ez-toc-container ul ul{
  margin-left:0px !important;
  padding-top: 16px;
  border-top: 1px solid #00A4971A;
}
#ez-toc-container #toc-list{
  padding-left: 0px;
  display: block;
}
.b-detail-content-left .ez-toc-title-name{
font-size: 18px;
font-weight: 600;
line-height: 24px;
text-align: left;
}
.ez-toc-title-toggle img {
  padding: 0px 20px;
  transition: transform 0.9s; /* Smooth rotation */
}
 /* Class to apply rotation */
.rotate {
  transform: rotate(180deg); /* Rotate the image */
}
.b-detail-content-left .toc-para li {
  font-size: 14px;
  margin-bottom: 14px;
}
.b-detail-content-left .toc-para li a {
  color: var(--black);
  transition: 0.7s;
}
.b-detail-content-left .toc-para li a:hover {
  color: var(--clr);
}
.b-detail-right {
  width: 300px;
  flex-shrink: 0;
}

.gcse-searchbox-only-outerlayer{
	padding: 12px ;
    border: 1px solid #000 ;
    border-radius: 25px ;
    box-shadow: 0 10px 0 #333333;
	margin-bottom: 20px;
}


.b-detail-right .first-tab-container,
.b-detail-right .growth-form {
  padding: 12px;
  border: 1px solid #000;
  border-radius: 25px;
  box-shadow: 0px 10px 0 var(--black);
}
.growth-form {
  margin-top: 32px;
}
.growth-form h4 {
  color: var(--black);
  text-align: center;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  /* 250% */
  text-transform: uppercase;
}

.growth-form h2 {
  color: var(--clr);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
  text-transform: uppercase;
  text-align: center;
}
.growth-form p {
  color: var(--black);
  text-align: center;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  margin-top: 32px;
}
.growth-form form {
  margin-top: 20px;
}
.growth-form form button {
  width: 100%;
}
.detail-content-right{
  padding-left: 20px;
}
.detail-content-right .detail-ans p{
font-size: 14px;
font-weight: 500;
line-height: 22px !important;
text-align: left;
color: rgba(21, 20, 29, 0.8);
}
.new-share h4{
font-size: 18px;
font-weight: 600;
line-height: 24px;
text-align: left;
color: var(--black);
margin-bottom: 16px;
}
.new-share .share-icons{
  justify-content: space-between;
  display: flex;
}
.blog-categorys p{
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    text-align: left;
    color: var(--black);
}
.dropdown-content {
    padding-top:   16px;
    display: block;
    border-top: 1px solid #00A4971A;
}
#toggle-area {
    cursor: pointer; /* Change cursor to indicate clickable area */
        margin-bottom: 16px;
}
.dropdown-content.hidden {
    display: none; /* Hidden when the class 'hidden' is added */
}
.dropdown-content li {
   margin-bottom: 16px;
}
.dropdown-content li:hover {
    background-color: #f1f1f1; /* Change background on hover */
}

.rotated {
    transform: rotate(180deg); /* Rotate the image */
    transition: transform 0.3s ease; /* Smooth transition */
}
.blog-categorys {
    padding-top: 58px;
    cursor: pointer;
    display: flex;
    align-items: center;
}
.blog-categorys .blog-toggle{
    padding-left: 10px;
}
.b-detail-left-inner {
  display: flex;
}
.detail-content-right h3{
font-size: 18px !important;
font-weight: 600 !important;
line-height: 27px !important;
text-align: left;
color: var(--clr);
}
.blog-author-img {
  height: 48px;
  width: 48px;
  border-radius: 50%;
  overflow: hidden;
}
.blog-author-img img {
  height: 100%;
  width: 100%;
}
.blog-txt p {
  white-space: normal;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.affiliate-wonder .f-row {
  gap: 40px 0;
}
.program-card {
  display: -webkit-flex;
  display: -webkit-box;
  display: -moz-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 40px;
  padding: 44px 60px;
  background-color: var(--black);
  border-radius: 16px;
  overflow: hidden;
  color: #FFF;
}
.program-card p {
  color: #FFF;
  font-family: Inter;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.9;
}
.program-wrap {
  position: relative;
}
.program-wrap .program-content {
  flex: 1;
}
.program-wrap .program-content h4 {
  color: #FFF;
  font-family: Inter;
  font-size: 21px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.6;
}
.program-wrap .big-card-image {
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.program-wrap .big-card-content {
  margin-top: 0;
}
.program-wrap .comm-title {
  max-width: 464px;
  width: 100%;
}
.program-wrap .big-card-wrap {
  padding-right: 112px;
}
.program-card-wrap {
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.porgram-img {
  width: 100px;
  height: 100px;
}
.porgram-img img {
  width: 100%;
  height: 100%;
}
.popular-card-wrapper {
  margin-top: 48px;
}
.popular-card-wrapper .service-swiper-box {
  background-color: #FFF;
}
.orange-bg {
  background-color: #F15A24;
  color: #FFF;
}
.orange-bg .comm-title {
  color: #FFF;
}
.orange-bg .form-field {
  background-color: #fff;
  color: #15141D;
}
.orange-bg ::placeholder {
  color: #15141D;
}
.orange-bg .button.line {
  color: #15141D;
  background-color: #fff;
  border: 1px solid #15141D;
}
.team-form {
  width: 376px;
}
.ready-form-img {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 530px;
  height: 380px;
}
.nomatter-img {
  width: 183px;
  height: 192px;
}
.no-matter {
  align-items: center;
}
.no-matter .struggling-txt {
  width: 100%;
}
.no-matter .struggling-txt p {
  font-size: 16px;
}
.no-matter.struggling-section {
  padding-right: 112px;
}
.affiliate-banner-img {
  width: 344px;
  height: 242px;
}
.affiliate-banner-img img {
  width: 100%;
  height: 100%;
}
.affiliate-ready {
  padding-left: 112px;
}
.affiliate-ready p {
  max-width: 430px;
  width: 100%;
  font-size: 42px;
}
.black-detail-box .faq-title {
  font-size: 42px;
  margin-bottom: 46px;
}
.faq-question {
  color: #FFF;
  font-family: Inter;
  font-size: 28px;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 20px;
}
.faq-black-box p {
  line-height: 1.9;
  margin-bottom: 20px;
}
.faq-black-box p:last-child {
  margin-bottom: 0;
}
.faq-black-box ol {
  list-style-position: inside;
  padding-left: 30px;
}
.faq-black-box ol li {
  color: #FFF;
  font-family: Inter;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.9;
}
.qns-box {
  margin-bottom: 42px;
}
.qns-box:last-child {
  margin-bottom: 0;
}
/* header */
:root {
  --menuWidth: 300px;
}
#header {
  position: fixed;
  top: 30px;
  left: 0;
  width: 100%;
  z-index: 9999;
  border-bottom: 1px solid var(--black);
  background: #fff;
}
.head-right {
  display: flex;
}
.logo {
  display: inline-block;
  vertical-align: middle;
  width: 170px;
}
.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: 8px;
  height: 8px;
  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: #fff;
  border: 2px solid var(--black);
  box-shadow: 0 8px 0px var(--black);
  border-radius: 10px;
  top: 32px;
  padding: 10px;
  width: 270px;
  clip-path: inset(0 0 100% 0);
  transition: 0.5s;
}
.drop ul li {
  padding: 0;
}
.drop ul li:last-of-type {
  border-bottom: 0;
}
.drop ul li a {
  display: block;
  font-size: 14px;
  padding: 8px 15px;
  border-radius: 5px;
}
.drop ul li a:hover {
  background: #eee;
  color: #000;
}
.drop:hover ul {
  clip-path: inset(0 0 -10px 0);
}
.drop:hover > a:after {
  transform: rotate(180deg);
  transition: 0.3s;
}
.header-wrap {
  display: flex;
}
.header-box {
  display: flex;
  height: var(--header-height);
  transition: 0.3s;
}
.menuBtn {
  display: flex;
  align-items: center;
}
.header-list {
  display: -webkit-flex;
  display: -webkit-box;
  display: -moz-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.header-list li a {
  font-size: 16px;
  color: var(--dark);
  font-weight: 600;
}
.header-list li a:hover {
  color: var(--secClr);
}
.rotating-text.banner-head.orange p{
    line-height: 74px !important;
}
.fixHeader {
  background-color: #ffffff;
  box-shadow: 0px 0px 20px rgba(19, 28, 162, 0.1);
  top:0px !important;
}
.fixHeader .header-box {
  height: var(--header-scroll-height);
  transition: 0.3s;
}
.fixHeader .header-box .container {
  height: var(--headerFixedHeight);
}
.menuBtn .button {
  margin-left: 20px;
  margin-right: 40px;
}
/* side menu */
.menu {
  display: none;
  position: relative;
}
/* side menu */
.menu {
  display: none;
  position: relative;
  margin-left: 16px;
  z-index: 2;
}
.menuOverlay {
  width: 100%;
  height: 100%;
  background: #000;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  cursor: pointer;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
}
.mob-navigation li.nav-dropdown-open > ul {
  display: block;
}
.nav-wrapper {
  position: fixed;
  width: 300px;
  height: 100vh;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  right: 0;
  top: 0;
  font-size: 14px;
  display: none;
}
.nav-wrapper.show-menu {
  -webkit-transform: none;
  transform: none;
}
.js-nav-toggle {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: #000;
  border-radius: 100%;
  border: 1px solid #000;
  position: absolute;
  right: 0;
  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;
  border: 1px solid #fff;
}
.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: var(--black);
}
.mob-navigation .nav-toggle {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 16px;
  background-color: transparent;
  color: #fff;
  z-index: 100;
  cursor: pointer;
  -webkit-transition: backgroun-color 0.2s;
  transition: backgroun-color 0.2s;
}
.mob-navigation .nav-toggle:hover {
  background-color: transparent;
}
.mob-navigation .nav-toggle.back-visible .nav-back {
  opacity: 1;
}
.mob-navigation .nav-toggle.back-visible .nav-title {
  -webkit-transform: translateX(30px);
  transform: translateX(30px);
}
.mob-navigation .nav-title {
  position: absolute;
  left: 0;
  top: 30px;
  padding-left: 1.3em;
  font-size: 16px;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  color: rgba(255, 255, 255, 0.5);
}
.mob-navigation .nav-back {
  display: inline-block;
  position: relative;
  width: 22px;
  height: 30px;
  vertical-align: middle;
  z-index: 1;
  opacity: 0;
  color: rgba(255, 255, 255, 0.5);
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
  top: 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: var(--black);
  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%;
}
.has-dropdown {
  will-change: auto;
}
.mob-navigation li.nav-dropdown-open > ul {
  display: block;
}
.sign-up-mob {
  display: none;
}
.sign-up-mob ul {
  top: 46px;
  width: 150px;
  right: 0;
}
.sign-up-mob ul a {
  color: var(--black);
  font-weight: 600;
  padding: 8px 4px;
}
@media all and (max-width: 1200px) {
/*new*/
    .tab-slide-right .service-swiper-box {
        margin-left: 10px;
    }
.head-sss {
        display: none;
    }
    #header{
        top:0px;
    }
  .navigation {
    display: none;
  }
  .nav-wrapper {
    display: block;
  }
  .header-list {
    display: none;
  }
  .menu {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .menuBtn .menu-links {
    padding-right: 36px;
  }
}
@media all and (max-width: 640px) {
  .menuBtn .menu-links {
    display: none;
  }
  .sign-up-mob {
    display: block;
    position: absolute;
    right: 70px;
  }

}
@media all and (max-width: 480px) {
  .logo {
    width: 120px;
  }
}
@media all and (max-width: 1366px) {
  .detail-box h3 {
    font-size: 24px;
  }
  .detail-box h4 {
    font-size: 20px;
  }
  .detail-box h5 {
    font-size: 18px;
  }
  .detail-box h6 {
    font-size: 16px;
  }
  .black-detail-box h3 {
    font-size: 24px;
  }
  .black-detail-box p {
    margin-bottom: 34px;
  }
  .black-detail-box {
    padding: 22px 0;
  }
  .black-detail-box ul li {
    margin-bottom: 18px;
  }
  .sign-in-detail {
    max-width: 470px;
  }
  .sign-in-review {
    max-width: 500px;
  }
  .review-box {
    padding: 0 28px;
  }
}
@media all and (max-width: 1200px) {
       .pdse .comm-title-wrap.center {
        max-width: 730px;
    }
    .what-people-s .service-swiper-box{
        height: 170px;
    }
  .sign-in-detail,
  .sign-in-review {
    max-width: 400px;
  }
  .detail-content-right{
      padding:15px;
  }
  .banner-head-wrap{
    max-width: 610px;
  }
  .class-fg{
    display: block;
    padding:20px 0px;
    text-align: center;
}
.button.line{
    margin: auto;
}
.align-t h4,.align-t p{
    text-align: center;
}
.class-fg img {
    margin-top: 0px;
}
.detail-content-left{
    order:1;
}
.detail-content-left,.detail-content-center,.detail-content-right{
    width:100% !important;
}
.dropdown-content{
    width: 170px;
}
.share-icons{
    width: 140px;
}
.cs-detail .qnsbox .detail-ans span,.cs-detail .qnsbox p,.cs-detail .qnsbox p a{
    font-size: 18px !important;
    line-height: 30px;
}
.cs-detail .qnsbox h2{
    font-size: 22px;
    margin-bottom:0px;
}
.detail-ans h3{
    font-size: 21px !important;
    margin-bottom:0px;
}
.cs-detail .detail-ans ul li b{
    font-size: 18px;    
}
}
@media all and (max-width: 990px) {
    /*new*/
    .tab-slide .h1 {
        font-size: 24px;
        line-height: 32px !important;
    }
    .what-people-s .w65{
            width: 65%;
    }
  .stan--footer .f-row {
    gap: 34px 0;
  }
  .sign-in-box {
    width: 100%;
    height: 100%;
  }
  .sign-in-wrap {
    position: relative;
    gap: 36px;
    flex-direction: column;
  }
  .sign-in-detail,
  .sign-in-review {
    max-width: 100%;
  }
  .sign-in-review {
    padding: 40px 0 0 0;
  }
  .testi-left:hover .arrow-img {
    transform: translateX(0px);
  }
  .testi-right:hover .arrow-img {
    transform: translateX(0px);
  }
  .podcast-pm .detail-pg-header{
      width:80%;
  }
}
@media all and (max-width: 800px){
    .detail-ans table{
     display: block;
  overflow-x: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  width: max-content; /* prevents it from shrinking */
  max-width: 100%;     /* limits it to screen size */
  border-collapse: collapse;
}
}
@media all and (max-width: 640px) {
  .footer-bottom {
    flex-direction: column;
    gap: 24px;
  }
  .footer-bottom a {
    margin-left: 0;
  }
  .stan-copyright-link {
    display: flex;
    gap: 30px;
  }
  .detail-box p {
    margin-bottom: 44px;
  }
      .people-wrap {
        flex-wrap: wrap !important;
    }
    .what-people-s .w35 {
    flex: 100% !important;
    }
}
@media all and (max-width: 576px) {
      .case-study-p img{
          height: 17px;
  }
  .case-study-p .nav-links .current,.case-study-p .nav-links a{
          padding: 4px 6px !important;
  }
  .case-study-p span,.nav-next a{
      font-size:12px !important;
  }
  .case-study-p.pagination{
      padding:20px 0px;
  }
      .podcast-pm .detail-pg-header{
      width:100%;
  }
  .footer-logo {
    margin-bottom: 22px;
  }
  .white-orange-bg{
      display:none;
  }
  .stan-footer-link a {
    width: fit-content;
  }
  .stan--footer .f-row {
    gap: 28px 0;
  }
}
@media all and (max-width: 1600px) {
  .banner-head-wrap {
    padding-top: 80px;
  }
  .banner-img {
    margin-top: 140px;
  }
}
@media all and (max-width: 1440px) {
  :root {
    --card-height: 600px;
  }
  .hor-circle:last-of-type {
    padding-right: 260px;
  }
  .hor-circle:first-of-type {
    padding-left: 280px;
  }
  .hor-circle {
    padding-left: 200px;
  }
}
@media all and (max-width: 1366px) {
  .container {
    max-width: 1200px;
  }
  .align-t{
    padding:20px 16px;
}
    .b-detail-content-left .ez-toc-title-name{
      font-size: 17px;
  }
  .stan-footer-link li{
      font-size:14px;
  }
  .stan-footer-link a{
      font-size:14px;
  }
  .footer-bottom p, .footer-bottom a{
      font-size:14px;
  }
  .fp-text{
      font-size:15px;
  }
  .stan-footer-title{
      font-size: 16px;
  }
  .highlighted-green span{
  font-size: 55px;
  }
  .banner-head-wrap {
    padding-top: 50px;
  }
  .banner-head {
    font-size: 50px;
  }
 .rotating-text p .word{
    font-size: 50px;
  }
  .banner-img {
    margin-top: 80px;
  }
  .logo-swiper-wrap {
    padding: 24px;
  }
  .comm-title {
    font-size: 32px;
  }
  .comm-title-wrap.center {
    max-width: 920px;
  }
  .home-service .comm-title-wrap.center {
        max-width: 745px;
  }
  .card-s .comm-title,.recent-section .comm-title{
    font-size: 40px;
    margin-bottom: 32px;
  }
  .schedule-txt h2 {
    font-size: 32px;
  }
  .schedule-section {
    padding: 90px 0;
  }
  .page-banner-txt h1 {
    font-size: 40px;
  }
  .page-banner-wrap {
    padding: 60px 0;
  }
  .page-banner-img {
    padding-left: 20px;
    height: 420px;
  }
  .page-banner-txt {
    padding-right: 80px;
  }
  .power-txt p {
    margin-bottom: 16px;
  }
  .comm-section {
    padding: 80px 0;
  }
  .tabel-section{
    padding:80px 0px;
  }
  .are-you-section{
    padding: 0px 0px 40px 0px;
  }
  .service-faq{
    padding: 80px 0px;
  }
  .strategic_Approach{
    padding: 80px 0;
  }
  .process-wrap{
    padding: 80px 0;
  }
  .power-section{
    padding: 80px 0;
  }
  .white-service-swiper{
    padding:80px 0;
  }
  .tabel-section{
   padding-top: 80px !important;
  }
  .trusted-logo{
  padding-bottom: 80px;
  padding-top: 0px;
  }
  .people-section {
    padding: 80px 0;
  }
  .power-boxes {
    padding: 26px;
  }
  .power-section .bookcall-s{
    padding:0px;
  }
  .process-wrap .mb-30{
    margin-bottom:0px !important;
  }
  .power-section .comm-video-sec{
    margin:0px;
  }
  .power-boxes a {
    font-size: 22px;
  }
  .power-boxes h4 {
    margin-bottom: 32px;
  }
  .case-study-img {
    height: 400px;
  }
  .comm-sub-title {
    margin-top: 16px;
  }
  .swiper-case-studies {
    margin-top: 26px;
  }
  .struggling-txt p {
    font-size: 32px;
  }
  .service-swiper-image {
    height: 410px;
  }
  .ser-sw-img {
    height: 88px;
    margin: auto;
  }
  .service-swiper-box h4 {
    font-size: 18px;
    margin-top: 25px;
  }
  .service-swiper-box {
    padding: 24px;
    text-align: center;
  }
  .process-sw-img {
    height: 65px;
  }
  .swiper-process {
    margin-top: 30px;
  }
  .process-number {
    font-size: 20px;
    width: 72px;
    height: 46px;
  }
  .book-a-call-img {
    height: 450px;
  }
  .book-a-call-txt h4 {
    font-size: 36px;
    margin-bottom: 16px;
  }
  .book-a-call-txt p {
    font-size: 26px;
    margin-bottom: 32px;
  }
  .comm-swiper-wrap {
    max-width: 700px;
  }
  .seo-blog-txt p {
    font-size: 16px;
    margin-bottom: 24px;
  }
  .seo-blog-wrap.reverse .seo-blog-txt {
    padding-right: 40px;
  }
  .seo-blog-txt {
    padding-left: 40px;
  }
  .big-card-wrap {
    padding: 0px 40px;
  }
  .big-card-content .comm-txt-wrap p {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .author p {
    font-size: 16px;
  }
  .author h4 {
    font-size: 16px;
  }
  .package-wrap .f-col {
    padding: 0 8px;
  }
  .package-price h5 {
    font-size: 16px;
  }
  .package-price h5 span {
    font-size: 32px;
  }
  .comm-swiper-wrap {
    margin: 30px auto;
  }
  .video-main-box {
    max-width: 660px;
  }
  :root {
    --card-height: 490px;
  }
  .card-txt {
    max-width: 420px;
    margin-left: 90px;
  }
  .card-number {
    font-size: 40px;
    top: 20px;
    left: 24px;
  }
  .detail-box p {
    margin-bottom: 40px;
  }
  .hor-txt h3 {
    font-size: 32px;
  }
  .hor-illus {
    height: 320px;
  }
  .seo-en-img {
    height: auto;
  }
  .home-cs {
    padding: 32px 0;
  }
  .card-img dotlottie-player {
    height: 450px;
    width: 450px;
    margin: auto;
  }
  :root {
    --card-space: 30px;
  }
  .video-main-box {
    height: 410px;
  }
  .header-list li {
    padding: 5px 12px;
  }
  .b-elem {
    scale: 0.8;
  }
  .video-main-box {
    height: 380px;
    max-width: 590px;
  }
  .vidoe-player-bg {
    top: 10px;
    max-width: none;
  }
  .video-main-box-big .video-img {
    height: 420px;
  }
  .home-video-sec .video-main-box-big .video-img{
    height: 287px;
    top: 56px;
  }
  .card-img {
    max-height: 380px;
    max-width: 420px;
  }
  .card-img dotlottie-player {
    height: 380px;
    width: 400px;
  }
  .card-txt h3 {
    font-size: 32px;
  }
  .people-swiper {
    padding-top: 40px;
  }
  .group-swiper-sec {
    padding: 100px 0;
  }
  .grp-img {
    width: 560px;
    height: 365px;
  }
  .group-img-swier {
    max-width: 850px;
  }
  .video-card-img {
    height: 210px;
  }
  .podcast-card .blog-img {
    height: auto;
  }
  .play-icon-podcast {
    top: 220px;
  }
  .error-img {
    max-width: 420px;
  }
}
@media all and (max-width: 1366px){
.rotating-text.banner-head.orange p{
    line-height: 62px !important;
}
}
@media all and (max-width: 1200px) {
    .rotating-text.banner-head.orange p{
    line-height: 55px !important;
}
    .steps {
    width: 580px;
    }
.struggling-txt p {
        font-size: 22px;
        line-height: 30px !important;
    }
    .struggling-txt .w10{
            padding: 0;
    }
  .service-high span{
    font-size: 80px;
}
  .highlighted-green span{
  font-size: 50px;
  }
  .container {
    max-width: 920px;
  }
  .home-video-sec .video-main-box-big .video-img{
    height: 258px;
    top: 56px;
  }
  .comm-section{
    padding: 48px 0;
  }
  .tabel-section{
      padding:48px 0px;
  }
  .card-s .comm-title,.recent-section .comm-title{
    font-size: 35px;
    margin-bottom: 25px;
  }
  .are-you-section{
    padding: 0px 0px 40px 0px;
  }
  .service-faq{
    padding: 48px 0px;
  }
  .strategic_Approach{
    padding: 40px 0;
  }
  .process-wrap{
    padding: 48px 0;
  }
  .power-section{
    padding: 48px 0;
  }
  .white-service-swiper{
    padding:48px 0;
  }
  .tabel-section{
   padding-top: 48px !important;
  }
  .trusted-logo{
    padding-bottom: 48px;
    padding-top: 0px;
  }
  .people-section {
    padding: 48px 0;
  }
  .banner-head {
    font-size: 44px;
  }
  .rotating-text p .word{
    font-size: 44px;
  }
  .banner-img {
    margin-top: 60px;
  }
  .page-banner-txt h1 {
    font-size: 36px;
  }
  .comm-title {
    font-size: 28px;
  }
  .comm-title-wrap.center {
    max-width: 730px;
  }
  .page-banner-txt {
    padding-right: 40px;
  }
  .page-banner-img {
    height: 360px;
  }
  .page-banner-btn {
    margin-top: 0px;
  }
  .logo-swiper-wrap {
    padding: 18px;
  }
  .power-txt {
    margin: auto;
    max-width: none;
    margin-bottom: 40px;
  }
  .power-boxes {
    max-width: none;
  }
  .service-swiper-box {
    padding: 20px;
  }
  .service-swiper-wrap {
    margin-top: 30px;
  }
  .process-number {
    font-size: 18px;
    width: 64px;
    height: 40px;
    margin-bottom: 16px;
  }
  .book-a-call-wrap {
    padding: 40px 0;
  }
  .testi-box p {
    font-size: 18px;
  }
  .testi-box {
    padding: 24px;
  }
  .seo-blog-txt {
    padding-left: 0px;
  }
  .card-s .comm-title,.recent-section .comm-title{
    font-size: 38px;
    margin-bottom: 25px;
  }
  .seo-blog-wrap.reverse .seo-blog-txt {
    padding-right: 0px;
  }
  .big-card-image {
    height: 260px;
  }
  .package {
    margin-bottom: 48px;
    padding: 30px 16px 30px;
  }
  .package-list li {
    margin-bottom: 20px;
  }
  .numbers-head {
    max-width: 300px;
  }
  .swiper-numbers {
    margin-left: 30px;
  }
  .logo-wrap p {
    max-width: 287px;
    font-size: 16px;
    line-height: 28px;
  }
  .big-card-image {
    width: 40%;
  }
  .big-card-txt {
    width: 60%;
  }
  .comm-button-wrap {
    flex-direction: column;
  }
  .bouquet-box-wrap .button {
    margin-top: 24px;
  }
  .bouquet-box-wrap .f-col:last-child .service-swiper-box {
    margin-bottom: 0;
  }
  .bouquet-box-wrap .service-swiper-box {
    margin-bottom: 24px;
    height: auto;
  }
  .banner-head {
    font-size: 44px;
  }
  .banner-head {
    max-width: 700px;
  }
  .affordable-section {
    padding-bottom: 36px;
  }
  .card-txt h3 {
    font-size: 30px;
  }
  .card-txt p {
    font-size: 16px;
  }
  .card-img dotlottie-player {
    height: 370px;
    width: 330px;
  }
  :root {
    --card-height: 440px;
  }
  .hor-txt h3 {
    font-size: 24px;
  }
  .hor-txt span {
    margin-bottom: 20px;
  }
  .hor-illus {
    height: 280px;
  }
  .hor-txt {
    padding-left: 12px;
  }
  .seo-en-box p {
    font-size: 20px;
  }
  .seo-en-box {
    padding: 26px 28px;
    padding-bottom: 0;
  }
  .seo-en-box p {
    margin-bottom: 20px;
  }
  .hor-txt p {
    font-size: 16px;
  }
  .hor-txt {
    padding-left: 0;
    padding-right: 30px;
  }
  .b-elem {
    scale: 0.8;
  }
  .video-main-box {
    height: 350px;
    max-width: 540px;
  }
  .blog-wrap .f-col {
    margin-bottom: 20px;
  }
  .b-detail-right {
    display: none;
  }
  .hor-circle:last-of-type {
    padding-right: 200px;
  }
  .hor-circle:first-of-type {
    padding-left: 150px;
  }
  .hor-txt span {
    font-size: 18px;
    width: 68px;
    height: 44px;
  }
  .grp-img {
    width: 573px;
    height: 372px;
  }
  .team-swiper-wrap {
    display: block;
  }
  .team-swiper-sec {
    background: none;
  }
  .group-swiper-sec {
    padding: 80px 0;
  }
  .team-detail-swiper-box {
    max-width: none;
  }
  .team-img-wrap {
    display: none;
  }
  .team-swiper-wrap .case-study-nav {
    justify-content: center;
  }
  .team-img {
    height: 350px;
  }
  .unique-box-wrap .f-col {
    margin-bottom: 20px;
  }
  .video-card-img {
    height: 167px;
  }
  .blog-box.podcast-card {
    max-width: 320px;
    margin: auto;
  }
  .team-detail-box .team-img {
    display: block;
  }
  .podcast-card .blog-img {
    height: auto;
  }
  .play-icon-podcast {
    top: 180px;
  }
  .blog-txt h4 {
    font-size: 16px;
  }
  .struggling-txt .w40 p{
    padding: 0px 0px;
}
}
@media all and (max-width: 1100px) {
    .steps {
        width: 570px;
    }
}
@media all and (max-width: 990px) {
    

   .w-990-100 {
        width: 100%;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-banner-form-added{
        padding-top:30px;
    }
    .engagebay-forms{
        margin:auto;
    }
    .steps .step{
        padding-bottom:30px;
    }
    .ss-btn .button.orange {
    padding: 12px 12px 12px 12px;
    }
    .ss-section{
        padding:0px;
    }
    .struggling-txt p {
        font-size: 20px;
        }
  html,
  body {
    overflow: visible;
    overflow-x: hidden;
    height: auto;
  }
       .steps .subheader{
        width: 80%;
 }
  .service-high span{
    font-size: 60px;
}
  .highlighted-green span{
  font-size: 48px;
  }
  #main-scrollbar {
    height: auto;
  }
  .container {
    max-width: 100%;
  }
  .banner-head {
    font-size: 40px;
    max-width: 700px;
  }
  .rotating-text p .word{
    font-size: 40px;
  }
  .button {
    font-size: 16px;
    padding: 0 30px;
    height: 50px;
  }
  .page-banner-content-wrap {
    padding-bottom: 0;
  }
  .page-banner-img {
    padding-top: 40px;
  }
  .page-banner-content-wrap,
  .page-banner-img {
    max-width: 600px;
    margin: auto;
  }
  .page-banner-img {
    padding-left: 0;
    margin-bottom: 0;
    padding-bottom: 40px;
  }
  .page-banner-txt {
    padding-right: 0;
  }
  .card-s .comm-title,.recent-section .comm-title{
    font-size: 35px;
    margin-bottom: 25px;
  }
  .page-banner-img {
    display: none;
  }
  .page-banner-img {
    height: auto;
  }
  .page-banner-wrap {
    position: relative;
    background-repeat: no-repeat;
    background: none;
    background: #fff;
  }
  .case-study-img {
    height: 350px;
  }
  .service-swiper-section .comm-title-wrap {
    padding-right: 20px;
  }
  .book-a-call-img {
    height: 350px;
  }
  .book-a-call-txt h4 {
    font-size: 28px;
    margin-bottom: 10px;
  }
  .book-a-call-txt {
    max-width: 410px;
  }
  .book-a-call-txt p {
    font-size: 20px;
    margin-bottom: 20px;
    line-height: 1.5;
  }
  .comm-swiper-wrap {
    padding: 0 50px;
  }
  .numbers-wrap .logo-swiper-wrap {
    display: block;
  }
  .numbers-wrap .numbers-head {
    max-width: none;
  }
  .numbers-wrap.logo-wrap p {
    max-width: none;
  }
  .swiper-numbers {
    margin-left: 0;
    margin-top: 20px;
  }
  .swiper-numbers .swiper-slide {
    height: auto;
  }
  .footer-head {
    display: block;
    justify-content: space-between;
    margin-bottom: 24px;
  }
      .footer-head .stan-footer-link {
        max-width: 100%;
    }
    .fp-text{
        margin-top: 10px;
    }
  .seo-en-box p {
    font-size: 18px;
  }
  .seo-en-img {
    height: 180px;
  }
  .hor-title-wrap {
    display: block;
  }
  .hor-title-wrap .comm-sub-title {
    padding-left: 0;
  }
  .card-txt {
    margin-left: 70px;
  }
  .card-img dotlottie-player {
    height: 310px;
    width: 260px;
    padding-left: 20px;
  }
  .card-txt h3 {
    font-size: 26px;
  }
  .card-number {
    font-size: 32px;
  }
  :root {
    --card-height: 450px;
  }
  .card-txt p {
    margin-bottom: 24px;
  }
  .cards-sticky {
    width: calc(100vw - 40px);
  }
  .vidoe-player-bg {
    display: none;
  }
  .hor-circle-data {
    display: block;
  }
  .home-cs span {
    font-size: 18px;
    width: 64px;
    height: 44px;
  }
  .video-player-box {
    padding: 12px;
  }
  .hor-circle:last-of-type {
    padding-right: 150px;
  }
  .hor-circle-data {
    max-width: 450px;
  }
  .hor-illus,
  .hor-txt {
    width: 100%;
  }
  .hor-circle:first-of-type {
    padding-left: 80px;
  }
  .contact-emails-wrap {
    background: var(--black);
    padding: 40px;
    margin-bottom: 24px;
  }
  .contact-page-banner-wrap .f-row {
    flex-direction: row-reverse;
  }
  .contact-page-banner-wrap .f-row .contact-us-form {
    padding-right: 0;
    padding-bottom: 40px;
  }
  .footer-head .stan-footer-link {
    display: inline-flex;
    gap: 20px;
    max-width: 100%;
  }
  .footer-head .stan-footer-link li{
      margin:0px;
  }
  .grp-img {
    width: 400px;
    height: 260px;
  }
  .group-img-swier {
    max-width: 520px;
  }
  .team-img {
    height: 270px;
    width: 50%;
  }
  .blog-wrap {
    max-width: 600px;
    margin: auto;
  }
  .podcast-card .blog-img {
    height: auto;
  }
  .play-icon-podcast {
    top: 180px;
  }
  .load-button {
    margin-top: 32px;
  }
  .home-video-sec .video-main-box-big .video-img{
    height: 254px;
    top: 65px;
  }
  .struggling-txt .w40 p{
    padding: 0px 0px;
}
.steps .w75{
    padding:0px;
}
.steps .subheader{
        padding-left: 160px;
                width: 75%;
}
}
@media all and (max-width: 768px) {
/*new*/
    .stan-copyright{
        display:block;
    }
.newss {
    padding-bottom: 20px;
}
.case-banner-img{
    display:none;
}
.Quote-first .quotes-left{
    order:2;
}
.Quote-first .quotes-left{
    order:1;
}
    .struggling-txt {
    display: block;
    text-align: center;
}
    .steps {
        width: 100%;
    }
        .steps .subheader {
        padding-left: 25px;
        width: 100%;
    }
.struggling-txt .w40 p{
    padding: 0px 0px;
}
.ss-section h5{
        text-align: center;
        margin:10px 0px;
}
.struggling-section{
        background-position: center;
}
.ss-btn .button.orange {
    padding: 12px 28px 12px 28px;
}
.ss-btn .button.orange{
        margin: auto;
}
     .steps .subheader{
    padding-right: 90px;
 }
 .steps .process-sw-img{
    padding-left: 0px;
    margin:0px;
}
  .banner-head {
    font-size: 36px;
  }
  .relateds{
    margin-top:60px;
}
.case-studies-detail-header .detailed-pg-header-txt{
    padding-right:0px;
}
  .card-s .podcast-card .blog-txt{
padding: 0px;
  }
  .card-s .blog-category{
    margin-top: 10px;
    margin-bottom: 5px;
  }
  .recent-section .note-s{
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }
        .recent-section .comm-title{
              text-align: center;
        }
       .recent-section .blog {
            border: 1px solid #ccc;
            padding: 20px;
            border-radius: 5px;
        }
      .recent-section  .row-span {
            grid-row: span 2; /* This will make the blog span across two rows */
        }
      .recent-section  .full-width {
            grid-column: 1 / -1; /* This will make the blog span across both columns */
        }
       .recent-section  .container.note-s{
          display: block;
        }
        .recent-section .blog-category{
              margin-top: 24px !important;
        }
        .cs-s .w45{
          padding:0px 15px 0px 15px;
        }
        .recent-section .xase-study-blog  img{
          height: 250px;
          padding-left: 16%;
          padding-right: 16%;
        }
        .recent-section .blog-category{
              margin: auto;
        }
        .recent-section .xase-study-link{
              margin: auto;
        }
        .recent-section .xase-study-link .case-study-title{
          margin-top: 10px;
          text-align: center;;
        }
        .recent-section .case-study-description{
          margin: auto;
          text-align: center;
          width: 75%;
        }
        .recent-section .case-sa{
          justify-content: center;
          margin-bottom: 25px;
        }
        .cs-title a:nth-child(2){
          display: none;
        }
  .highlighted-green span{
  font-size: 45px;
  }
  .service-high span{
    font-size: 50px;
}
  .card-s .comm-title,.recent-section .comm-title{
    font-size: 30px;
    margin-bottom: 24px;
  }
  .rotating-text p .word{
    font-size: 36px;
  }
  .logo-wrap p {
    max-width: 250px;
    font-size: 16px;
    line-height: 32px;
  }
  .struggling-section {
    padding: 36px;
  }
  .faqQus h4 {
    padding: 16px 0;
  }
  .faqs {
    margin-top: 30px;
  }
  .faqQus:before {
    right: 0;
  }
  .faqQus h4::before {
    left: -24px;
  }
  .faqQus:after {
    right: 8px;
  }
  .service-swiper-image {
    display: none;
  }
  .people-wrap .comm-title-wrap {
    max-width: none;
    margin-bottom: 24px;
  }
  .people-swiper {
    padding-top: 20px;
  }
  .people-swiper .swiper-slide {
    height: auto;
  }
  .people-prev {
    transform: none;
  }
  .people-next {
    transform: rotate(180deg);
  }
  .people-section {
    height: auto;
    padding: 40px 0;
  }
  .seo-blog-txt {
    padding-bottom: 40px;
  }
  .swiper-google-nav {
    margin-top: 16px;
  }
  .seo-blog-wrap {
    margin-top: 20px;
  }
  .big-card-content {
    display: block;
  }
  .big-card-image {
    margin-bottom: 24px;
  }
  .package-list li {
    margin-bottom: 18px;
  }
  .seo-blog-txt {
    padding-bottom: 0;
  }
  .seo-blog-wrap.reverse .seo-blog-txt {
    padding-left: 0;
    padding-bottom: 0;
    padding-right: 0;
    padding-top: 30px;
  }
  .big-card-txt {
    width: 100%;
  }
  .banner-head {
    max-width: 620px;
  }
  .hor-circle-data {
    display: block;
    padding: 0 20px;
  }
  .hor-txt {
    width: 100%;
  }
  .hor-illus {
    height: 200px;
    margin-bottom: 24px;
  }
  .hor-txt h3 {
    font-size: 22px;
  }
  .hor-txt span {
    width: 73px;
    height: 44px;
    font-size: 18px;
  }
  .card-txt h3 {
    font-size: 24px;
    margin-bottom: 11px;
  }
  .card {
    display: flex;
    flex-direction: column-reverse;
    justify-content: center;
    gap: 20px;
  }
  .card-img {
    margin-right: 0px;
    height: auto;
    max-height: none;
    width: 100%;
  }
  .card-txt {
    max-width: none;
    margin-left: 0;
  }
  :root {
    --card-height: 500px;
    --card-space: 24px;
  }
  .card-img dotlottie-player {
    height: 220px;
    width: 260px;
  }
  .video-main-box {
    height: 300px;
    max-width: 450px;
  }
  .b-elem {
    scale: 0.6;
  }
  .dot-wrap {
    height: 50px;
  }
  .dot-wrap ul li {
    width: 5px;
    height: 5px;
  }
  .vidoe-player-bg {
    max-width: 660px;
    height: 260px;
  }
  .seo-en-box p {
    font-size: 16px;
  }
  .seo-en-box {
    padding: 26px 18px;
    padding-bottom: 0;
  }
  .seo-en-img {
    height: 140px;
    display: flex;
    justify-content: center;
  }
  .home-cs {
    padding: 26px 0;
  }
  .home-case-studies-wrap {
    margin-top: 20px;
  }
  .home-cs span {
    font-size: 18px;
    width: 64px;
    height: 44px;
    margin-right: 18px;
  }
  .pioneer-sec .ser-swiper-nav {
    justify-content: center;
  }
  .grp-img {
    width: 410px;
    height: 270px;
  }
  .team-detail-box {
    padding: 20px;
  }
  .team-img {
    height: 250px;
  }
  .home-video-sec .video-main-box-big .video-img{
    height: 214px;
    top: 56px;
  } 
  .tabel-section .comm-content-wrap
  {
  padding-right: 0px;
  padding-bottom: 20px;
  }
  .tabel-section .table-title p{
    padding-left: 0px;
  }
  .tabel-section .styled-table th, .tabel-section .styled-table td {
    padding: 7px !important;
  }
  .tabel-section .bookcall-s{
    padding-top: 0px;
    padding-bottom: 30px;
  }
  .white-service-swiper .right-s{
    padding-left: 15px;
  }
      .struggling-txt p {
        padding: 20px 0px;
    }
}
@media all and (max-width: 640px) {
  .logo-swiper-wrap {
    display: block;
  }
  .highlighted-green span{
  font-size: 40px;
  }
  .card-s .comm-title,.recent-section .comm-title{
    font-size: 25px;
    margin-bottom: 25px;
  }
  .comm-section{
    padding: 40px 0;
  }
  .tabel-section{
      padding:0px 0px;
  }
  .are-you-section{
    padding: 0px 0px 40px 0px;
  }
  .service-faq{
    padding: 40px 0px;
  }
  .strategic_Approach{
    padding: 40px 0;
  }
  .power-section{
    padding: 40px 0;
  }
  .process-wrap{
    padding: 40px 0;
  }
  .white-service-swiper{
    padding:40px 0;
  }
  .tabel-section{
   padding-top: 40px !important;
  }
  .trusted-logo{
    padding-bottom: 40px;
  }
  .people-section {
    padding: 40px 0;
  }
  .logo-wrap p {
    max-width: none;
    margin-bottom: 16px;
  }
  .logo-wrap:after {
    bottom: -38px;
  }
  .testi-box {
    padding: 20px;
  }
  .testi-box p {
    font-size: 16px;
  }
  .person-name {
    font-size: 20px;
  }
  .quotes-img {
    width: 36px;
    height: 36px;
  }
  .people-swiper {
    padding-right: 0;
  }
  .book-a-call-txt {
    max-width: 260px;
  }
  .book-a-call-txt h4 {
    font-size: 26px;
  }
  .book-a-call-txt p {
    font-size: 16px;
  }
  .book-a-call-img {
    height: 250px;
  }
  .comm-swiper-wrap {
    margin: 40px auto;
  }
  .card-img dotlottie-player {
    height: 160px;
    width: 100%;
  }
  .b-elem-wrap,
  .vidoe-player-bg {
    display: none;
  }
  .banner-head {
    font-size: 32px;
  }
  .rotating-text p .word{
    font-size: 32px;
  }
  .hor-circle:last-of-type {
    padding-right: 80px;
  }
  .comment-form-author,
  .comment-form-email,
  .comment-form-url {
    width: 100%;
    padding: 0;
  }
  .comment-respond .comment-reply-title,
  .comments-title {
    font-size: 30px;
  }
  .comment-respond {
    padding: 20px;
    border-radius: 16px;
  }
}
@media all and (max-width: 576px) {
    .services-first{
        padding:0px;
    }
    .services-video-sec .play-btn {
    top: 50%;
        
    }
        .steps .subheader {
        padding-right: 0px;
    }
  .newsectionlast {
    padding-left: 125px;
  }
  .highlighted-green span{
  font-size: 40px;
  }
  .recent-section .xase-study-blog img{
    padding-left: 0%;
    padding-right: 0%;
    max-height: 180px !important;
  }
  .card-s .comm-title{
    text-align: center;
  }
  .full-width .case-study-title{
    text-align: center;
  }
  .cs-title .case-study-title {
    font-size: 20px;
  }
  .recent-section .case-study-description{
    width: 100%;
  }
   .home-video-sec .video-main-box-big .video-img{
    height: 214px;
    top: 46px;
  }
  .rotating-text{
    margin-left: 200px;
  }
  .schedule-txt h2 {
    font-size: 30px;
  }
  .card-s .comm-title,.recent-section .comm-title{
    font-size: 25px;
    margin-bottom: 24px;
  }
  .schedule-section {
    padding: 80px 0;
  }
  .struggling-section {
    display: block;
  }
  .case-study-title-wrap {
    display: block;
  }
  .case-study-nav {
    margin-top: 20px;
  }
  .struggling-txt p {
    font-size: 24px;
  }
  .comm-content-swiper .case-study-img {
    height: 270px;
  }
  .big-card-image {
    height: 200px;
  }
  .big-card-wrap {
    padding: 30px;
    border-radius: 18px;
  }
  .big-card-image {
    width: 100%;
  }
  .numbers-txt h4 {
    font-size: 26px;
  }
  .logo-wrap p {
    line-height: 22px;
  }
  .swiper-numbers .swiper-slide {
    padding: 0 16px;
  }
  .footer-bottom {
    flex-direction: column;
    justify-content: center;
  }
  .stan-copyright-link {
    margin-top: 16px;
  }
  .footer-bottom a {
    margin: 0 24px;
  }
  .hor-txt h3 {
    font-size: 20px;
  }
  .hor-txt span {
    width: 64px;
    height: 36px;
    font-size: 16px;
  }
  .video-main-box {
    height: auto;
  }
      .comm-video-sec {
        padding: 0px;
      }
  .dot-wrap {
    height: 44px;
  }
  .video-main-box .frame {
    border-radius: 10px;
  }
  .video-player-box {
    padding: 10px;
  }
  .hor-circle:last-of-type {
    padding-right: 40px;
  }
  .hor-circle:first-of-type {
    padding-left: 40px;
  }
  .card-txt p {
    margin-bottom: 20px;
  }
  .card {
    padding: 22px;
  }
  .stan-footer-link li {
    margin-bottom: 14px;
  }
  .grp-img {
    width: 300px;
    height: 200px;
  }
  .grp-nav {
    margin-top: 0;
  }
  .podcast-card .blog-img {
    height: auto;
  }
  .play-icon-podcast {
    top: 200px;
  }
  .what-people-s .service-swiper-box {
        height: 180px;
    }
}
@media all and (max-width: 480px) {
.footer-head .stan-footer-link{
    display: block;
}
   .footer-head .stan-footer-link li {
        margin-bottom: 14px;
    }
    .cf .w25.w-990-100{
        padding-bottom:10px;
    }
     p {
    line-height: 27px !important;
}
    .page-banner-form-added{
        margin-top:10px;
    }
     .seo-blog-txt h4 {
    font-size: 18px;
  }
  .seo-blog-txt p{
              margin-bottom: 5px;
  }
    .page-banner-txt ul li{
            margin-bottom: 5px;
    }
    .steps .header{
        font-size: 18px;
    }
    .services-first .page-banner-txt p {
    font-size: 18px;
    }
    .steps .step::before{
   font-size: 18px;
    width: 60px; 
    }
    .table-title p {
    font-size: 18px;
    }
    .highlighted-g .mobile-center {
    font-size: 18px;
        
    }
      .what-people-s .service-swiper-box {
        height: 213px;
    }
  .comm-title {
    font-size: 26px;
  }
    .relateds{
    margin-top:40px;
}
  .power-section .bookcall-s {
    display: block;
  }
  .power-s p{
    text-align: center;
  }
  .banner-head {
    font-size: 28px;
  }
  .rotating-text p .word{
    font-size: 28px;
  }
  .case-study-img {
    height: 260px;
    padding: 8px;
    border-radius: 16px;
    box-shadow: 0 6px 0 var(--black);
  }
  .struggling-section {
    padding: 24px;
  }
  .swiper-process,
  .process-swiper-nav {
    margin-top: 20px;
  }
  .service-swiper-box {
    background-repeat: 16px;
  }
  .service-swiper-box p {
    margin-top: 4px;
  }
  .faqs {
    margin-top: 20px;
  }
  .card-s .comm-title,.recent-section .comm-title{
    font-size: 25px;
    margin-bottom: 24px;
  }
  .faqAcc {
    padding: 0 0 0 24px;
  }
  .faqQus h4 {
    margin-right: 40px;
  }
  .book-a-call-wrap {
    display: block;
  }
  .book-a-call-txt {
    max-width: none;
    margin-bottom: 36px;
  }
  .book-a-call-img img {
    width: 100%;
  }
  .book-a-call-txt h4 {
    font-size: 24px;
  }
  .comm-content-nav-next,
  .comm-content-nav-prev {
    position: static;
  }
  .comm-content-nav-next {
    transform: translateY(24px) translateX(60px);
  }
  .comm-swiper-wrap {
    padding: 0;
    margin: 30px 0;
  }
 
  .schedule-txt h2 {
    font-size: 28px;
  }
  .package-list li {
    margin-bottom: 16px;
  }
  .comm-sub-title {
    font-size: 16px;
  }
  .ser-nav-wrap {
    flex-direction: column-reverse;
    margin-top: 16px;
  }
  .ser-nav-wrap .ser-swiper-nav {
    margin-top: 0;
    margin-bottom: 16px;
  }
  .logo-wrap p {
    font-size: 14px;
  }
  .swiper-numbers .swiper-slide {
    padding: 0 10px;
  }
  .numbers-txt h4 {
    font-size: 22px;
  }
  .footer-head {
    display: block;
  }
  .card-txt h3 {
    font-size: 24px;
  }
  .card {
    padding: 24px;
  }
  :root {
    --card-height: 550px;
    --header-height: 60px;
    --header-scroll-height: 48px;
  }
  .hor-illus {
    width: fit-content;
    height: 180px;
  }
  .video-main-box {
    width: auto;
    max-width: none;
    padding:0px 20px;
  }
  .video-main-box .frame {
    position: absolute;
    height: 100%;
    width: calc(100vw - 40px);
  }
  .comm-video-sec {
    margin: 0;
  }
  .frameMoveTo {
    padding: 0;
  }
  .video-player-box {
    padding: 12px;
  }
  .service-swiper-section .comm-title-wrap {
    padding-right: 0px;
  }
  .service-swiper-wrap {
    padding-right: 0;
  }
  .seo-en-box {
    padding: 16px 12px;
    padding-bottom: 0;
    border-radius: 12px;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .seo-en-img {
    height: 120px;
  }
  .home-cs::after {
    content: url(../img/cs-arrow.svg);
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }
  .home-cs {
    display: block;
  }
  .home-cs span {
    margin-bottom: 10px;
  }
  .home-cs p {
    font-size: 16px;
    padding-right: 50px;
  }
  .video-player-box {
    height: 100%;
  }
  .video-img {
    height: calc(100% - 50px);
    border-radius: 6px;
  }
  .swiper-blog-btns-wrap .blog-nav-prev {
    margin-right: 8px;
  }
  .swiper-blog-btns-wrap .blog-nav-next {
    margin-left: 8px;
  }
  .swiper-blog-btns-wrap .comm-nav-left,
  .swiper-blog-btns-wrap .comm-nav-right {
    height: 38px;
    width: 38px;
    background-size: contain;
  }
  .swiper-blog-btns .swiper-slide .button {
    padding: 8px 16px;
    height: 40px;
  }
  .swiper-blog-btns {
    padding: 0px;
  }
  .swiper-blog-btns-wrap {
    margin-bottom: 30px;
  }
  .footer-bottom a {
    margin: 0 14px;
  }
  .stan-copyright-link {
    margin-top: 0;
  }
  .footer-divider {
    margin: 20px 0;
  }
  .card-txt p {
    margin-bottom: 16px;
  }
  .hor-circle:first-of-type {
    padding-left: 20px;
  }
  .hor-circle-data {
    max-width: 350px;
  }
  .hor-circle {
    padding-right: 20px;
    padding-left: 20px;
  }
  .hor-circle:last-of-type {
    padding-right: 0;
  }
  .home-cs span {
    font-size: 14px;
    width: 50px;
    height: 32px;
  }
  .home-cs::after {
    transform: translateY(-50%) scale(0.7);
  }
  .banner-img {
    height: 300px;
  }
  .card-number {
    font-size: 32px;
    top: 22px;
    left: 26px;
  }
  .people-swiper {
    padding-top: 16px;
  }
  .comment-respond .comment-reply-title,
  .comments-title {
    font-size: 22px;
  }
  .grp-img {
    width: 280px;
    height: 200px;
  }
  .group-swiper-sec {
    padding: 60px 0;
  }
  .team-img {
    width: 100%;
  }
  .team-detail-box {
    height: auto;
  }
  .team-img {
    height: 180px;
  }
  .unique-box-sec {
    padding: 40px 0;
  }
  .load-button {
    margin-top: 20px;
  }
    .fp-text{
    margin-bottom: 7px;
    margin-top: 20px;
  }
}
@media all and (max-width: 400px) {
     /*new*/
    .newafter .share-img{
        margin-right: 6px;
    }
    .newss{
        gap: 15px;
    }
        .class-fg img {
    max-width: 30% !important;
}
    .engagebay-forms{
        padding:20px !important;
    }
  .banner-head {
    font-size: 30px;
  }
  .people-wrap{
    flex-wrap: wrap !important;
  }
  .card-s .comm-title,.recent-section .comm-title{
    font-size: 24px;
    margin-bottom: 20px;
  }

    .what-people-s .w35,
    .what-people-s .w65 {
        flex: 0 0 100% !important; /* Full width for both sections */
        margin-left: 0; /* Remove left margin on small screens */
    }
  .video-main-box {
      padding: 0;
        height: auto;
  }
  .home-video-sec .video-main-box-big .video-img{
    height: 189px;
    top: 47px;
  }
  .rotating-text p .word{
    font-size: 30px;
  }
  .comm-title {
    font-size: 24px;
  }
  .comm-section{
    padding: 30px 0;
  }
  .tabel-section{
      padding:30px 0px;
  }
  .are-you-section{
    padding: 0px 0px 40px 0px;
  }
  .service-faq{
    padding: 30px 0px;
  }
  .strategic_Approach{
    padding: 30px 0;
  }
  .power-section{
    padding: 30px 0;
  }
  .white-service-swiper{
    padding:30px 0;
  }
  .tabel-section{
   padding-top: 30px !important;
  }
  .trusted-logo{
    padding-bottom: 30px;
  }
  .people-section {
    padding: 30px 0;
  }
  .book-a-call-wrap {
    padding: 30px 0;
  }
  .page-banner-txt h1 {
    font-size: 32px;
  }
  .case-study-img {
    height: 200px;
  }
  .service-swiper-box {
    padding: 16px;
  }
  .process-sw-img {
    max-width: 80px;
  }
  .testi-box {
    padding: 16px;
  }
  .schedule-txt h2 {
    font-size: 24px;
  }
  .big-card-wrap {
    padding: 20px;
  }
  .logo-swiper-wrap {
    padding: 10px;
  }
  .swiper-numbers .swiper-slide {
    padding: 0 8px;
  }
  .card {
    gap: 10px;
    padding: 16px;
  }
  .card-img dotlottie-player {
    height: 120px;
  }
  :root {
    --card-height: 540px;
  }
  .hor-txt {
    padding-right: 16px;
  }
  .card-img dotlottie-player {
    padding-left: 0;
  }
  .card-img {
    display: flex;
  }
  .banner-container.container {
    padding: 0 8px;
  }
  .hor-title {
    display: block;
  }
  .swiper-seo {
    margin-top: 20px;
  }
  .seo-en-img {
    height: 170px;
  }
  .process-number{
    text-align: center;
    margin: auto;
    margin-bottom: 20px;
  }
  .process-sw-img{
    margin: auto;
  }
  .process-wrap .service-swiper-box {
    text-align: center;
  }
  .process-sw-img {
      max-width: max-content;
  }
  .banner-illus {
    padding-top: 50px;
  }
  .schedule-txt h2 {
    font-size: 24px;
  }
  .schedule-txt h4 {
    margin-bottom: 20px;
  }
  .footer-bottom {
    gap: 12px;
  padding: 20px 0px;
    
  }
  .stan-copyright-link {
    gap: 8px;
  }
  .seo-swiper-nav {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
  }
  .seo-en-section {
    padding-bottom: 70px;
    margin-bottom: 30px;
  }
  .stan-footer-link li {
    margin-bottom: 10px;
  }
  .stan-footer-title {
    margin-bottom: 14px;
  }
  .fp-text{
    margin-bottom: 7px;
    margin-top: 20px;
  }
  .stan--footer .f-row {
    gap: 20px 0;
  }
  .review-star-wrap {
    margin-bottom: 14px;
  }
  .video-main-box-big .video-img {
    height: 260px;
  }
  .grp-img {
    width: 250px;
    height: 160px;
  }
  .group-img-swier .comm-nav-right,
  .group-img-swier .comm-nav-left {
    height: 36px;
    width: 36px;
  }
  .team-detail p {
    font-size: 14px;
  }
}
@media all and (max-width: 1600px) {
  .speaker-wrap {
    padding: 20px;
    width: 100%;
  }
  .detail-pg-content-wrap {
    gap: 20px;
  }
  .casestudy-content .detail-pg-content-wrap {
    gap: 0px;
  }
  .subscribe-email .form-grp {
    width: 100%;
  }
  .speaker-name {
    font-size: 18px;
  }
  .speaker-profile {
    font-size: 15px;
  }
  .why-img {
    width: 100%;
    height: auto;
  }
  .why-banner {
    width: 100%;
    height: auto;
  }
  .contact-form-title {
    font-size: 32px;
  }
  .google-search-img {
    max-width: 1298px;
    width: 100%;
    height: auto;
  }
  .program-card {
    padding: 30px;
    gap: 30px;
  }
}
@media all and (max-width: 1440px) {
  .detail-question {
    font-size: 20px;
  }
  .detail-ans p {
    font-size: 16px;
  }
}
@media all and (max-width: 1366px) {
  .detailed-pg-header-txt {
    font-size: 30px;
  }
  .speaker-para p {
    line-height: 1.5;
  }
  .toc-para li {
    font-size: 18px;
    margin-bottom: 20px;
  }
}
@media all and (max-width: 1280px) {
  .detailed-pg-header-txt {
    font-size: 30px;
  }
  .speaker-wrap {
    padding: 20px;
  }
  .toc-para li {
    font-size: 16px;
  }
}
@media all and (max-width: 1200px) {
  .detailed-pg-header-txt {
    font-size: 25px;
  }
  .detail-question {
    font-size: 18px;
  }
  .blog-wrap .f-col {
    padding: 0 10px;
  }
  .blog-wrap .f-row {
    margin-left: -10px;
    margin-right: -10px;
    gap: 20px 0;
    justify-content: center;
  }
  .podcast-card .blog-txt {
    padding: 24px 16px;
  }
  .podcast-card .blog-txt p {
    font-size: 14px;
  }
  .podcast-card .blog-txt h3 {
    font-size: 18px;
  }
  .podcast-card .podcast-channel p {
    font-size: 14px;
  }
  .podcast-card .play-icon {
    width: 44px;
    height: 44px;
  }
  .backlink-detail-sec .detail-pg-content-wrap {
    flex-direction: column;
  }
  .detail-pg-content-wrap {
    flex-direction: column-reverse;
  }
  .podcast-detailed-content .detail-content-right {
    flex-direction: row;
    gap: 30px;
  }
  .speaker-wrap {
    margin-bottom: 60px;
  }
  .contact-form-title {
    font-size: 28px;
  }
  .auhtor-detail-left {
    gap: 18px;
  }
  .auhtor-detail {
    margin-bottom: 14px;
  }
  .popular-card-wrapper .f-row {
    gap: 24px 0;
  }
  .program-wrap .big-card-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }
  .program-wrap .big-card-image {
    width: 100%;
    height: fit-content;
  }
  .program-wrap .comm-title {
    max-width: 100%;
  }
  .program-wrap.orange-bg {
    height: 700px;
  }
}
@media all and (max-width: 1024px) {
  .form-grp .button:hover {
    box-shadow: 0px 0px 0px #000;
    transform: translateY(calc(-50%));
  }
}
@media all and (max-width: 990px) {
.rotating-text.banner-head.orange p{
    line-height: 49px !important;
}  
  .subscribe-btn {
    height: 32px;
    width: 108px;
    padding: 8px;
    font-size: 12px;
        right: 4px;
  }
  .comm-margin {
    margin-bottom: 30px;
  }
  .comm-title-wrap .comm-title.comm-margin {
    margin-bottom: 40px;
  }
  .view-all {
    margin-top: 60px;
  }
  .faq-black-box ol {
    padding-left: 0;
  }
  .black-detail-box .faq-title {
    font-size: 32px;
    margin-bottom: 30px;
  }
  .faq-question {
    font-size: 24px;
  }
  .no-matter.struggling-section {
    padding-right: initial;
  }
  .no-matter .struggling-txt {
    max-width: 100%;
    width: 60%;
  }
}
@media all and (max-width: 768px) {
    .mobile-b {
        display: block;
    }
    .mobile-n {
        display: none;
    }
    .newp img{
        padding-right:0px !important;
    }
    .table-container-price .hoveref td div{
        padding: 10px 10px;
        margin: 10px 0px 0px 0px;   
    }
    .table-container-price .nexts{
        padding: 10px 0px 0px 0px; 
        text-align: center;
    }
    .table-container-price.mobile-b .data-cell.pleft div {
        padding-left: 10px;
    }
    .rotating-text.banner-head.orange p {
        line-height: 43px !important;
    }
  .speaker-wrap {
    padding: 40px 30px;
    width: 100%;
  }
  .detail-pg-content-wrap {
    gap: 30px;
  }
  .speaker-name {
    font-size: 20px;
  }
  .speaker-profile {
    font-size: 18px;
  }
  .detail-content-right {
    width: 100% !important;
  }
  .podcast-detailed-content .detail-content-right {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
  .why-img-wrap {
    gap: 14px;
  }
      .struggling-txt p {
        font-size: 20px;
    }
}
@media all and (max-width: 640px) {
  .audio-brands,
  .detail-ans {
    margin-bottom: 30px;
  }
  .qnsbox:last-child .detail-ans {
    margin-bottom: 0;
  }
  .detail-pg-content-wrap {
    gap: 20px;
  }
  .detail-question {
    margin-bottom: 6px;
  }
  .speaker-head {
    font-style: 15px;
  }
  .speaker-name {
    font-size: 18px;
  }
  .speaker-profile {
    font-size: 16px;
  }
  .detailed-pg-header-txt {
    padding-left: 20px;
  }
  .case-studies-detail-header .detailed-pg-header-txt {
    padding-left: 0px;
  }
  .detail-pg-sec {
    padding: 50px 0 0px !important;
  }
  .form-filed-wrap {
    flex-direction: column-reverse;
  }
  .form-left,
  .form-right {
    width: 100%;
  }
  .form-wrap .form-textarea-group {
    height: 200px;
  }
  .author-img {
    width: 80px;
    height: 80px;
  }
  .auhtor-social {
    gap: 10px;
  }
  .form-bottom {
    flex-direction: column;
    gap: 30px;
  }
  .form-bottom .form-right {
    justify-content: flex-start;
  }
  .author-box,
  .form-wrap {
    padding: 40px 30px;
  }
  .social-share img {
    width: 35px;
    height: 35px;
  }
  .contact-form-title {
    font-size: 24px;
  }
  .author-box {
    margin-bottom: 60px;
  }
  .program-card {
    flex-direction: column;
    align-items: flex-start;
  }
  .program-wrap.orange-bg {
    height: 650px;
  }
  .ready-form-img {
    width: 60%;
    height: auto;
  }
  .faq-black-box .black-detail-box {
    padding: 0;
  }
}
@media all and (max-width: 576px) {
  .auhtor-name {
    font-size: 18px;
  }
  .program-card {
    gap: 20px;
  }
  .program-wrap.orange-bg {
    height: 600px;
  }
  .team-form {
    width: 100%;
  }
}
@media all and (max-width: 480px) {
            .rotating-text.banner-head.orange p {
        line-height: 36px !important;
    }
  .speaker-wrap,
  .author-box,
  .form-wrap {
    padding: 30px 20px;
  }
  .why-img-wrap {
    flex-direction: column;
  }
  .auhtor-detail {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .program-wrap.orange-bg {
    height: 500px;
  }
  .black-detail-box .faq-title {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .faq-question {
    font-size: 20px;
  }
}
@media all and (max-width: 400px) {
  .speaker-wrap {
    padding: 30px 20px;
    width: 100%;
  }
  .struggling-txt .w40{
      padding:0px;
  }
  .detail-pg-content-wrap {
    gap: 0px;
  }
  .speaker-name {
    font-size: 18px;
  }
  .speaker-profile {
    font-size: 15px;
  }
}
@media screen and (max-width:767px){
    .styled-table{
        width:unset;
    }
}
/*# sourceMappingURL=main.css.map */
.navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin: auto;
    }

    .menu-left {
      display: flex;
      align-items: center;
      gap: 20px;
      padding:15px;
    }

    .menu-item {
      cursor: pointer;
      font-size: 18px;
      font-weight: bold;
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 60%;
    }

    .dropdown-icon {
      width: 16px;
      height: 16px;
      transition: transform 0.3s ease;
      transform: rotate(180deg);
    }

    .rotate {
      transform: rotate(0deg); /* Rotate image down */
    }
    #dropdown {
      display: none;
    position: relative;
      width: 100%;
      background-color: white;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      animation: slideDown 0.3s ease forwards;
    }

    #dropdown.show {
      display: block;
    }

    @keyframes slideDown {
      from {
        opacity: 0;
        transform: translateY(-10px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .dropdown-links {
      display: flex;
      flex-direction: column;
      padding: 20px;
    }
    .dropdown-links a:hover{
        color:var(--clr);  
    }
    .dropdown-links a {
      padding: 5px 0;
      text-decoration: none;
      color: #000;
      font-size: 16px;
    }

    .dropdown-links a.active {
      color: #ff5c1b;
      font-weight: bold;
    }

    .proposal-btn {
      width:40%;
      height: 37px !important;
      padding: 5px 0px !important;
      border-radius:8px;
    }

    @media (max-width: 768px) {
        @keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.header-list-for-m-b {
    animation: slideDown 0.6s ease-in-out;
}

        
      .navbar {
        flex-direction: column;
        align-items: stretch;
      }

      .menu-left {
        justify-content: space-between;
        width: 100%;
      }

      .proposal-btn {
        text-align: center;
      }
    }
@media (max-width: 450px){
      .proposal-btn {
        font-size: 13px;
        width: 60%;
    }
}
@media (max-width: 380px) {
    .proposal-btn {
        font-size: 13px;
        width: 50%;
    }
}
/* Montserrat Thin */
@font-face {
  font-family: 'Montserrat';
  src: url('/wp-content/themes/stanventures-new/assets/fonts/montserrat/Montserrat-Thin.ttf') format('truetype');
  font-weight: 100;
  font-style: normal;
}
@font-face {
  font-family: 'Montserrat';
  src: url('/wp-content/themes/stanventures-new/assets/fonts/montserrat/Montserrat-ThinItalic.ttf') format('truetype');
  font-weight: 100;
  font-style: italic;
}

/* Extra Light */
@font-face {
  font-family: 'Montserrat';
  src: url('/wp-content/themes/stanventures-new/assets/fonts/montserrat/Montserrat-ExtraLight.ttf') format('truetype');
  font-weight: 200;
  font-style: normal;
}
@font-face {
  font-family: 'Montserrat';
  src: url('/wp-content/themes/stanventures-new/assets/fonts/montserrat/Montserrat-ExtraLightItalic.ttf') format('truetype');
  font-weight: 200;
  font-style: italic;
}

/* Light */
@font-face {
  font-family: 'Montserrat';
  src: url('/wp-content/themes/stanventures-new/assets/fonts/montserrat/Montserrat-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: 'Montserrat';
  src: url('/wp-content/themes/stanventures-new/assets/fonts/montserrat/Montserrat-LightItalic.ttf') format('truetype');
  font-weight: 300;
  font-style: italic;
}

/* Regular */
@font-face {
  font-family: 'Montserrat';
  src: url('/wp-content/themes/stanventures-new/assets/fonts/montserrat/Montserrat-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Montserrat';
  src: url('/wp-content/themes/stanventures-new/assets/fonts/montserrat/Montserrat-Italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
}

/* Medium */
@font-face {
  font-family: 'Montserrat';
  src: url('/wp-content/themes/stanventures-new/assets/fonts/montserrat/Montserrat-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: 'Montserrat';
  src: url('/wp-content/themes/stanventures-new/assets/fonts/montserrat/Montserrat-MediumItalic.ttf') format('truetype');
  font-weight: 500;
  font-style: italic;
}

/* SemiBold */
@font-face {
  font-family: 'Montserrat';
  src: url('/wp-content/themes/stanventures-new/assets/fonts/montserrat/Montserrat-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: 'Montserrat';
  src: url('/wp-content/themes/stanventures-new/assets/fonts/montserrat/Montserrat-SemiBoldItalic.ttf') format('truetype');
  font-weight: 600;
  font-style: italic;
}

/* Bold */
@font-face {
  font-family: 'Montserrat';
  src: url('/wp-content/themes/stanventures-new/assets/fonts/montserrat/Montserrat-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: 'Montserrat';
  src: url('/wp-content/themes/stanventures-new/assets/fonts/montserrat/Montserrat-BoldItalic.ttf') format('truetype');
  font-weight: 700;
  font-style: italic;
}

/* ExtraBold */
@font-face {
  font-family: 'Montserrat';
  src: url('/wp-content/themes/stanventures-new/assets/fonts/montserrat/Montserrat-ExtraBold.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: 'Montserrat';
  src: url('/wp-content/themes/stanventures-new/assets/fonts/montserrat/Montserrat-ExtraBoldItalic.ttf') format('truetype');
  font-weight: 800;
  font-style: italic;
}

/* Black */
@font-face {
  font-family: 'Montserrat';
  src: url('/wp-content/themes/stanventures-new/assets/fonts/montserrat/Montserrat-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
}
@font-face {
  font-family: 'Montserrat';
  src: url('/wp-content/themes/stanventures-new/assets/fonts/montserrat/Montserrat-BlackItalic.ttf') format('truetype');
  font-weight: 900;
  font-style: italic;
}

/* Roboto Thin */
@font-face {
  font-family: 'Roboto';
  src: url('/wp-content/themes/stanventures-new/assets/fonts/roboto/Roboto-Thin.ttf') format('truetype');
  font-weight: 100;
  font-style: normal;
}
@font-face {
  font-family: 'Roboto';
  src: url('/wp-content/themes/stanventures-new/assets/fonts/roboto/Roboto-ThinItalic.ttf') format('truetype');
  font-weight: 100;
  font-style: italic;
}

/* Light */
@font-face {
  font-family: 'Roboto';
  src: url('/wp-content/themes/stanventures-new/assets/fonts/roboto/Roboto-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: 'Roboto';
  src: url('/wp-content/themes/stanventures-new/assets/fonts/roboto/Roboto-LightItalic.ttf') format('truetype');
  font-weight: 300;
  font-style: italic;
}

/* Regular */
@font-face {
  font-family: 'Roboto';
  src: url('/wp-content/themes/stanventures-new/assets/fonts/roboto/Roboto-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Roboto';
  src: url('/wp-content/themes/stanventures-new/assets/fonts/roboto/Roboto-Italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
}

/* Medium */
@font-face {
  font-family: 'Roboto';
  src: url('/wp-content/themes/stanventures-new/assets/fonts/roboto/Roboto-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: 'Roboto';
  src: url('/wp-content/themes/stanventures-new/assets/fonts/roboto/Roboto-MediumItalic.ttf') format('truetype');
  font-weight: 500;
  font-style: italic;
}

/* Bold */
@font-face {
  font-family: 'Roboto';
  src: url('/wp-content/themes/stanventures-new/assets/fonts/roboto/Roboto-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: 'Roboto';
  src: url('/wp-content/themes/stanventures-new/assets/fonts/roboto/Roboto-BoldItalic.ttf') format('truetype');
  font-weight: 700;
  font-style: italic;
}

/* Black */
@font-face {
  font-family: 'Roboto';
  src: url('/wp-content/themes/stanventures-new/assets/fonts/roboto/Roboto-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
}
@font-face {
  font-family: 'Roboto';
  src: url('/wp-content/themes/stanventures-new/assets/fonts/roboto/Roboto-BlackItalic.ttf') format('truetype');
  font-weight: 900;
  font-style: italic;
}
.comm-title-wrap .comm-title,.service-high.markclass,.comm-title{
    font-family: Montserrat !important;
    font-weight: 800;
    font-style: ExtraBold;
    font-size: 40px;
    line-height: 48px;
    letter-spacing: 0%;
}
body, p, h1, h2, h3, h4, h5, h6, span, div{
  font-family: Roboto !important;
}