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

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

-------------------------------------------------------------------*/
/*==========================================================================
=> font
==========================================================================*/
/*==========================================================================
=> anim
==========================================================================*/
/*==========================================================================
=> transform
==========================================================================*/
/*==========================================================================
=> border radius
==========================================================================*/
/*==========================================================================
=> flex
==========================================================================*/
/*==========================================================================
=> ellipsis
==========================================================================*/
/*==========================================================================
=> image
==========================================================================*/
/*==========================================================================
=> box-shadow
==========================================================================*/
/* header */
:root {
  --menuWidth: 300px;
}
#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}
.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: 9px;
  width: 6px;
  height: 6px;
  background: var(--Db-purple);
  display: inline-block;
  vertical-align: middle;
  transition: 0.3s;
}
.drop:hover ul {
  opacity: 1;
  visibility: visible;
}
.drop:hover > a:after {
  transform: rotate(180deg);
  transition: 0.3s;
}
.drop:hover .drop-down-menu,
.drop:hover .menuOverlay {
  opacity: 1;
  visibility: visible;
}
.drop-down-menu {
  background: #fff;
  padding: 40px 0 48px;
  position: fixed;
  top: var(--header-height);
  padding: 40px 0;
  left: 0;
  right: 0;
  opacity: 0;
  visibility: hidden;
  z-index: 3;
  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
}
.drop-down-wrap {
  max-width: 1430px;
  width: 100%;
  margin: 0 auto;
}
.drop-down-wrap ul {
  display: flex;
  gap: 50px 74px;
  flex-wrap: wrap;
}
.drop-down-wrap ul li {
  padding: 0;
  width: calc(25% - 56px);
}
.drop-down-wrap ul li a {
  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;
  color: #212121;
  font-size: var(--fs16);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.32px;
  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
}
.drop-down-wrap ul li a:hover {
  color: var(--Db-purple);
}
.drop-down-wrap ul li a img {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.header-hdn {
  color: var(--Db-purple);
  font-size: var(--fs16);
  font-weight: 600;
  line-height: 1.5;
  text-transform: capitalize;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(124, 146, 167, 0.4);
  margin-bottom: 32px;
}
.header-wrap {
  display: flex;
}
.header-box {
  display: flex;
  height: var(--header-height);
  border-bottom: 1px solid #7c92a7;
  background: var(--Db-white);
}
.menuBtn {
  display: flex;
  align-items: center;
}
.header-list {
  display: -webkit-flex;
  display: -webkit-box;
  display: -moz-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.header-list li {
  padding: 40px 24px;
}
.header-list li a {
  font-size: 18px;
  color: #050505;
}
.header-list li a:hover {
  color: var(--Db-purple);
}
.menuOverlay {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  cursor: pointer;
  pointer-events: none;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  z-index: -1;
}
/* side menu */
.menu {
  display: none;
  position: relative;
  margin-left: 16px;
  z-index: 2;
}
.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: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0;
  color: #000;
  border: 0px 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: #4431f7;
  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: #4431f7;
  left: 0;
  top: 50%;
  margin-top: -7px;
  -webkit-transition: all 0.3s 0.3s;
  transition: all 0.3s 0.3s;
}
.js-nav-toggle span:before {
  margin-top: 5px;
}
.show-menu .js-nav-toggle {
  z-index: 99999;
}
.show-menu .js-nav-toggle span:before,
.show-menu .js-nav-toggle span:after {
  background: #fff;
}
.show-menu .js-nav-toggle span {
  background-color: transparent;
}
.show-menu .js-nav-toggle span:before {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.show-menu .js-nav-toggle span:after {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.show-menu .js-nav-toggle span:before,
.show-menu .js-nav-toggle span:after {
  margin-top: 0;
}
.mob-navigation {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  box-shadow: 0 0 5px 0.2px rgba(255, 255, 255, 0.3);
  background-color: #050505;
}
.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: 20px;
  font-weight: 600;
  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: #ffffff;
}
.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: 0px;
}
.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: #050505;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}
.mob-navigation ul ul {
  display: none;
  left: 100%;
}
.mob-navigation li.has-dropdown > a {
  padding-right: 2.5em;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.mob-navigation li.has-dropdown > a:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1em;
  width: 9px;
  height: 9px;
  border: 1px solid currentcolor;
  border-left-color: transparent;
  border-top-color: transparent;
  -webkit-transform: translateY(-90%) rotateZ(-45deg);
  transform: translateY(-90%) rotateZ(-45deg);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  -webkit-transform-origin: 100%;
  transform-origin: 100%;
}
.mob-navigation li.nav-dropdown-open > ul {
  display: block;
}
@media all and (max-width: 1440px) {
  .logo {
    width: 140px;
  }
  .header-list li {
    padding: 24px;
  }
  .drop-down-wrap {
    max-width: 1100px;
  }
  .header-hdn {
    margin-bottom: 22px;
  }
  .drop-down-wrap ul {
    gap: 30px;
  }
  .drop-down-wrap ul li {
    width: calc(33.333% - 20px);
  }
}
@media all and (max-width: 1366px) {
  .header-list li {
    padding: 24px 16px;
  }
}
@media all and (max-width: 1200px) {
  .navigation {
    display: none;
  }
  .nav-wrapper {
    display: block;
  }
  .header-list {
    display: none;
  }
  .menu {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .menuBtn .button {
    margin-right: 30px;
  }
}
@media all and (max-width: 990px) {
  .logo {
    width: 100px;
  }
}
@media all and (max-width: 480px) {
  .logo {
    width: 90px;
  }
}
:root {
  --header-height: 105px;
  --comm-padding: clamp(50px, 4.2vw, 80px);
  --input-height: 48px;
  --Db-white: #F7F7FC;
  --Db-black: #050505;
  --Db-grey: #282F3F;
  --Db-purple: #4431F7;
  --fs100: clamp(30px, 5.2vw, 100px);
  --fs64: clamp(26px, 3.333vw, 64px);
  --fs48: clamp(24px, 2.5vw, 48px);
  --fs40: clamp(22px, 2.08vw, 40px);
  --fs36: clamp(20px, 1.88vw, 36px);
  --fs32: clamp(18px, 1.67vw, 32px);
  --fs28: clamp(18px, 1.46vw, 28px);
  --fs24: clamp(18px, 1.25vw, 24px);
  --fs20: clamp(16px, 1.04vw, 20px);
  --fs18: clamp(16px, 0.94vw, 18px);
  --fs16: 16px;
  --fs14: 14px;
}
@media all and (max-width: 1750px) {
  :root {
    --header-height: 76px;
  }
}
@media all and (max-width: 1440px) {
  :root {
    --header-height: 66px;
  }
}
@media all and (max-width: 1024px) {
  :root {
    --header-height: 60px;
  }
}
@media all and (max-width: 640px) {
  :root {
    --input-height: 40px;
  }
}
.wh,
.wh p {
  color: var(--Db-white) !important;
}
.comm-page-hdn {
  color: var(--Db-white);
  font-size: var(--fs100);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -5px;
}
.comm-small-hdn {
  color: var(--Db-purple);
  font-size: var(--fs20);
  line-height: 1.1;
}
.comm-sec-hdn {
  color: var(--Db-black);
  font-family: "Space Grotesk", sans-serif;
  font-size: var(--fs64);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -3.2px;
}
.comm-card-hdn {
  color: var(--Db-black);
  font-family: "Space Grotesk", sans-serif;
  font-size: var(--fs36);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.6px;
}
.comm-card-sm-hdn {
  color: var(--Db-black);
  font-family: "Space Grotesk", sans-serif;
  font-size: var(--fs24);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.6px;
}
.comm-para p {
  color: var(--Db-black);
  font-size: var(--fs18);
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 16px;
}
.comm-para p:last-child {
  margin-bottom: 0;
}
.sec-hdn {
  margin-bottom: 56px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.sec-hdn.center {
  max-width: 900px;
  margin: 0 auto 40px;
  text-align: center;
  align-items: center;
}
.sec-hdn.center.big {
  max-width: 1100px;
}
.sec-hdn.center p {
  text-align: center;
}
.sec-hdn.wrap {
  flex-direction: row;
  gap: 68px;
  justify-content: space-between;
  align-items: flex-end;
}
.sec-hdn.wrap .comm-sec-hdn {
  max-width: 860px;
  width: 100%;
}
.sec-hdn.wrap .comm-para {
  max-width: 700px;
  color: var(--Db-grey);
  width: 100%;
}
.sec-hdn p {
  color: #050505;
  font-size: var(--fs18);
  line-height: 1.5;
}
.container {
  max-width: 1740px;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
.main-container {
  padding-top: var(--header-height);
}
.comm-section {
  padding: var(--comm-padding) 0;
}
.comm-section-wip {
  margin: var(--comm-padding) 0;
  padding: var(--comm-padding) 0;
  background: var(--Db-black);
}
.mb16 {
  margin-bottom: 16px !important;
}
.mb24 {
  margin-bottom: 24px !important;
}
.mb40 {
  margin-bottom: 40px !important;
}
.mb0 {
  margin-bottom: 0px !important;
}
.mt0 {
  margin-top: 0px !important;
}
.pt0 {
  padding-top: 0 !important;
}
.pr0 {
  padding-right: 0 !important;
}
.bg-black {
  background: var(--Db-black);
}
img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Service Template Starts */
.comm-service-bann {
  background: var(--Db-black);
  padding: 80px 0 44px;
}
.comm-page-sm-hdn {
  color: var(--Db-white);
  font-size: var(--fs20);
  font-weight: 600;
  line-height: 1.2;
  text-transform: uppercase;
  margin-top: 8px;
}
.service-bann-img {
  width: fit-content;
  height: 350px;
  margin: 0 0 80px auto;
}
.service-bann-img img {
  object-fit: contain;
}
.service-bann-info {
  max-width: 940px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.service-bann-info p {
  color: var(--Db-white);
  font-size: var(--fs18);
  line-height: 2;
}
.text-box {
  max-width: 1430px;
  width: 100%;
  margin: 0 auto;
}
.comm-text-hdn {
  color: #2A01BF;
  font-size: var(--fs20);
  font-weight: 600;
  line-height: 1.2;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.text-btm-para {
  margin-top: 24px;
  color: #282F3F;
  font-size: var(--fs18);
  line-height: 1.6;
}
.reveal-text {
  color: var(--Db-black);
  font-family: "Space Grotesk", sans-serif;
  font-size: var(--fs48);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -2px;
}
.rapid-wrap {
  display: flex;
}
.rapid-img {
  max-width: 850px;
  width: 100%;
}
.rapid-box-wrap {
  max-width: 870px;
  width: 100%;
}
.rapid-box {
  border: 1px solid rgba(124, 146, 167, 0.5);
  display: -webkit-flex;
  display: -webkit-box;
  display: -moz-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 72px;
  padding: 32px;
}
.rapid-box p {
  color: var(--Indium-Black, #101010);
  font-family: "Space Grotesk", sans-serif;
  font-size: var(--fs24);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.72px;
  text-transform: capitalize;
}
.rapid-box span {
  color: var(--Db-purple);
  text-align: right;
  font-size: var(--fs16);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.32px;
}
.trust-box {
  width: 100%;
}
.trust-box .comm-card-sm-hdn {
  color: var(--Db-white);
}
.trust-box p {
  color: var(--Db-white);
  font-size: var(--fs14);
  font-weight: 500;
  line-height: 1.7;
  margin-top: 8px;
}
.trust-img-box {
  margin-bottom: 24px;
  border: 1px solid var(--Light-Grey, #7c92a7);
  width: 100%;
  height: 555px;
  display: -webkit-flex;
  display: -webkit-box;
  display: -moz-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
}
.trust-img {
  width: 280px;
  height: 280px;
}
.trust-para {
  background: #282f3f;
  padding: 24px;
}
.trust-para p {
  color: var(--Db-white);
  text-align: center;
  font-family: "Space Grotesk", sans-serif;
  font-size: var(--fs24);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.72px;
  text-transform: capitalize;
}
.trust-swiper {
  margin-bottom: 80px;
  overflow: visible;
}
.trust-swiper .comm-nav-wrap {
  position: absolute;
  top: -20%;
  right: 0;
}
.trust-sec {
  overflow: hidden;
}
.connect-img {
  width: 100%;
  height: 560px;
}
.scale-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;
  gap: 40px;
}
.scale-wrap .comm-sec-hdn {
  max-width: 560px;
  width: 100%;
}
.scale-wrap .acc-container {
  max-width: 870px;
  width: 100%;
}
.future-box {
  background: #4431f7;
  padding-bottom: 30px;
}
.future-wrap {
  padding: 90px;
  display: -webkit-flex;
  display: -webkit-box;
  display: -moz-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 100px;
}
.future-hdn {
  color: var(--Db-white);
  font-family: "Space Grotesk", sans-serif;
  font-size: var(--fs48);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -2px;
  max-width: 502px;
  width: 100%;
}
.future-info {
  max-width: 750px;
  width: 100%;
}
.future-info p {
  color: var(--Db-white);
  font-size: var(--fs18);
  line-height: 2;
  margin-bottom: 40px;
}
.future-video {
  width: 100%;
  height: 200px;
}
.future-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Service Template Ends */
/* Industry Starts */
.bai-acc .accordion {
  font-size: var(--fs36);
}
.bai-acc .panel p {
  font-size: var(--fs18);
}
.bai-acc .panel {
  padding: 12px 0 0 0;
}
.bai-main-box {
  padding: 56px 60px 64px;
  position: relative;
  width: 100%;
  height: 100%;
}
.bai-main-box .f-row {
  row-gap: 30px;
  margin-bottom: 36px;
  z-index: 4;
}
.bai-main-box .f-col {
  display: flex;
  width: 100%;
  height: auto;
}
.bai-main-box::before {
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(177deg, rgba(255, 255, 255, 0) 78.19%, rgba(255, 255, 255, 0.2) 97.4%);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
}
.bai-main-box::after {
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.2) 100%);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.bai-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.bai-info-box {
  max-width: 930px;
  width: 100%;
  margin-left: auto;
  position: relative;
  z-index: 3;
}
.bai-hdn-box {
  margin-bottom: 24px;
}
.bai-hdn-box p {
  color: #282F3F;
  font-size: var(--fs18);
  line-height: 1.5;
}
.bai-hdn {
  color: #101010;
  font-size: var(--fs36);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -1.8px;
  margin-bottom: 6px;
}
.bai-box {
  padding: 24px;
  background: #fff;
  width: 100%;
  height: 100%;
}
.bai-box p {
  color: #282F3F;
  font-size: var(--fs16);
  line-height: 1.5;
}
.bai-img {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
}
.bai-img img {
  object-fit: contain;
}
.bai-info-hdn {
  color: #050505;
  font-size: var(--fs24);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.72px;
  text-transform: capitalize;
  margin-bottom: 8px;
}
.bai-swiper {
  overflow: visible;
}
.bai-swiper .swiper-slide {
  display: flex;
  height: auto;
}
.bai-section {
  overflow: hidden;
}
.bai-section .container {
  position: relative;
}
.bai-section .container .comm-nav-wrap {
  position: absolute;
  top: 50%;
  left: -1.5%;
  width: 102.5%;
  z-index: 2;
  justify-content: space-between;
}
.bai-pagination {
  width: fit-content;
  top: 66px;
  right: 60px;
  left: unset;
  bottom: unset;
  color: #fff;
}
/* Industry Ends */
/* Industry template Starts */
.cds-para-sec {
  position: relative;
  overflow: hidden;
}
.cds-para-sec::after {
  content: "";
  width: 100%;
  height: 50%;
  background: #050505;
  position: absolute;
  bottom: 0;
  left: 0;
}
.cds-para {
  background: #45fed2;
  padding: 60px;
  z-index: 2;
  position: relative;
  display: -webkit-flex;
  display: -webkit-box;
  display: -moz-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cds-para p {
  max-width: 980px;
  width: 100%;
  text-align: center;
  color: var(--Db-black);
  font-family: "Space Grotesk";
  font-size: var(--fs36);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: -1.8px;
}
.cds-wrap {
  display: flex;
  gap: 56px;
  max-width: 1486px;
  width: 100%;
  margin: 0 auto;
}
.cds-box {
  width: calc(50% - 27px);
  display: flex;
  flex-direction: column;
  height: auto;
}
.cds-box ul {
  background: var(--Db-white);
}
.cds-box ul li {
  border-bottom: 1px solid rgba(76, 92, 115, 0.5);
  position: relative;
  padding: 24px 32px 24px 54px;
  color: var(--Db-grey);
  font-size: var(--fs18);
  line-height: 2;
}
.cds-box ul li::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--Db-purple);
  position: absolute;
  left: 32px;
  top: 50%;
  transform: translate(0, -50%);
}
.cds-box:nth-child(even) ul {
  background: var(--Db-purple);
}
.cds-box:nth-child(even) ul li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  color: var(--Db-white);
}
.cds-box:nth-child(even) ul li::before {
  background: var(--Db-white);
}
.cds-box:nth-child(even) .cds-hdn {
  background: linear-gradient(90deg, rgba(5, 5, 5, 0) 23.36%, #4431f7 68.29%, #f7f7fc 100%);
}
.cds-box:nth-child(even) .cds-hdn::before {
  background: url("../img/cds-icon2.svg") no-repeat;
  background-size: contain;
  background-position: left center;
}
.cds-box:nth-child(even) .vision-box {
  background: var(--Db-purple);
}
.cds-hdn {
  padding: 20px 40px 20px 106px;
  background: linear-gradient(90deg, #050505 37.76%, #f7f7fc 89.37%);
  color: var(--Db-white);
  font-family: "Space Grotesk";
  font-size: var(--fs36);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -1.8px;
  margin-bottom: 24px;
  position: relative;
}
.cds-hdn::before {
  content: "";
  width: 100%;
  height: 100%;
  background: url(../img/cds-icon1.svg) no-repeat;
  background-size: contain;
  background-position: left center;
  position: absolute;
  left: 0;
  top: 0;
}
.cp-sec {
  overflow: hidden;
}
.cp-swiper {
  overflow: visible;
}
.cp-swiper .swiper-slide {
  display: flex;
  height: auto;
}
.cp-swiper .comm-nav-wrap {
  position: absolute;
  top: -24%;
  right: 0;
}
.cp-box {
  background: linear-gradient(180deg, #ffffff 96%, rgba(255, 255, 255, 0) 100%);
  padding: 8px 8px 36px;
  width: 100%;
  height: 100%;
}
.cp-box .comm-card-sm-hdn {
  margin-bottom: 8px;
  width: 80%;
}
.cp-box p {
  color: var(--Db-black);
  font-size: 16px;
  line-height: 1.5;
}
.cp-img {
  width: 100%;
  height: 380px;
  margin-bottom: 16px;
}
.work-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 40px;
}
.work-wrap ul {
  max-width: 730px;
  width: 100%;
}
.work-wrap ul li {
  width: 100%;
  border: 1px solid rgba(124, 146, 167, 0.5);
  background: #fff;
  margin-bottom: 16px;
  padding: 24px 32px 24px 96px;
  position: relative;
  color: var(--Db-black, #050505);
  font-family: "Space Grotesk";
  font-size: var(--Db-black);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.72px;
  text-transform: capitalize;
}
.work-wrap ul li::before {
  content: "";
  width: 32px;
  height: 32px;
  background: url("../img/blue-tick.svg") no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 36px;
  transform: translate(0, -50%);
}
.work-img {
  width: 656px;
  height: 656px;
  margin: 0 auto;
}
.work-img img {
  object-fit: contain;
}
/* Industry template Ends */
/* Blog Starts */
.cp-info {
  padding: 0 10px;
}
.cib-box {
  margin: 60px auto 40px;
  max-width: 940px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.cib-box .comm-para p,
.cib-box .comm-page-hdn {
  color: #050505;
}
.ra-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  height: 650px;
}
.ra-wrap > div {
  width: 100%;
  height: 100%;
}
.ra0 {
  grid-area: 1 / 1 / 4 / 3;
  position: relative;
}
.ra0::before {
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 64.15%, rgba(0, 0, 0, 0.9) 85.54%);
  position: absolute;
  top: 0;
  left: 0;
}
.ra0 .ra-info {
  z-index: 2;
}
.ra1 {
  grid-area: 1 / 3 / 2 / 4;
}
.ra2 {
  grid-area: 2 / 3 / 3 / 4;
}
.ra3 {
  grid-area: 3 / 3 / 4 / 4;
}
.ra-box {
  display: flex;
  gap: 32px;
  position: relative;
}
.ra-box::after {
  content: "";
  position: absolute;
  bottom: -30px;
  border-bottom: 1px solid rgba(124, 146, 167, 0.4);
  width: 100%;
}
.ra-box:first-child {
  border: none;
  padding: 0;
  margin: 0;
}
.ra-box:first-child .ra-img {
  width: 100%;
}
.ra-box:first-child .ra-info {
  position: absolute;
  padding: 32px 38px;
  bottom: 0;
  left: 0;
}
.ra-box:first-child .ra-info .know-more,
.ra-box:first-child .ra-info .comm-card-sm-hdn {
  color: #fff;
}
.ra-box:first-child .ra-info ul li {
  color: #7c92a7;
}
.ra-box:first-child::after {
  display: none;
}
.ra-box:last-child {
  border: none;
}
.ra-box:last-child::after {
  display: none;
}
.ra-img {
  width: 200px;
  height: 100%;
}
.ra-info {
  flex: 1;
}
.ra-info ul {
  display: flex;
  gap: 6px 22px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}
.ra-info ul li {
  color: var(--Grey, #4c5c73);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.75;
  text-transform: uppercase;
  position: relative;
}
.ra-info ul li::after {
  content: "|";
  color: var(--Grey, #4c5c73);
  font-size: 12px;
  position: absolute;
  top: 50%;
  right: -13px;
  transform: translate(0, -50%);
}
.ra-info ul li:last-child::after {
  display: none;
}
.ra-info .comm-card-sm-hdn {
  margin-bottom: 24px;
  white-space: normal;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.know-more {
  color: var(--Db-purple);
  font-size: var(--fs16);
  font-weight: 600;
  line-height: 1.5;
  text-transform: capitalize;
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
}
.know-more:hover {
  color: var(--Db-black);
}
.ui-group {
  position: relative;
  max-width: 270px;
  height: 64px;
  width: 100%;
  border: 1px solid #7c92a7;
  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;
}
.ui-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;
  gap: 16px;
  cursor: pointer;
  width: 100%;
  height: 100%;
  padding: 10px 24px;
}
.ui-detail img {
  width: 16px;
  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  height: auto;
}
.ui-detail .filter-btn {
  white-space: unset;
}
.ui-detail h3 {
  font-size: var(--fs18);
  color: #3a3a3a;
}
.ui-group.active {
  z-index: 3;
}
.ui-group.active .ui-detail img {
  transform: rotate(180deg);
}
.button-group {
  border-top: none;
  padding: 16px 14px;
  min-width: 100%;
  position: absolute;
  top: 63px;
  z-index: 1;
  overflow: hidden;
  border: 1px solid #b9b9b9;
  background: var(--Db-white);
  clip-path: inset(0 0 100% 0);
  transition: 0.5s;
}
.category-btn {
  overflow: hidden;
  overflow-y: auto;
  height: 200px;
  padding-right: 8px;
  position: relative;
}
.category-btn::-webkit-scrollbar {
  width: 3px;
}
.category-btn::-webkit-scrollbar-thumb {
  background: #ededf2;
  border-radius: 10px;
}
.category-btn::-webkit-scrollbar-track {
  border-radius: 10px;
  background: var(--Db-black);
}
.button-group p {
  margin-bottom: 20px;
  font-size: 14px;
  color: #27150c;
  cursor: pointer;
  display: block;
  width: 100%;
  white-space: wrap;
  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
}
.button-group p.active {
  color: var(--Db-purple);
}
.button-group li.is-checked {
  opacity: 1;
}
.ui-group.active .button-group {
  clip-path: inset(0 0 0 0);
}
.search-input {
  width: 100%;
  height: 45px;
  background: rgba(58, 58, 58, 0.05);
  outline: none;
  border: none;
  color: var(--Db-black);
  margin-bottom: 16px;
  padding: 0 16px;
}
.blog-hdn-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;
  gap: 40px;
  margin-bottom: 64px;
  z-index: 1;
  position: relative;
}
.blog-search-wrap {
  display: -webkit-flex;
  display: -webkit-box;
  display: -moz-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 24px;
  width: 100%;
  flex: 1;
}
.blog-search-box {
  background: rgba(58, 58, 58, 0.05);
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: 560px;
  width: 100%;
  height: 64px;
  padding: 8px 8px 8px 24px;
}
.blog-search-box input {
  width: 100%;
  height: 100%;
  border: none;
  outline: none;
  background: transparent;
  font-size: var(--fs18);
  color: #050505;
  flex: 1;
}
.blog-search-box button {
  width: 48px;
  height: 48px;
  border-radius: 2px;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
}
.blog-search-box button img {
  width: 24px;
  height: 24px;
}
.blog-search-box button:hover {
  background: var(--Db-white);
}
.blog-wrap .f-row {
  row-gap: 100px;
  margin-bottom: 60px;
}
.blog-wrap .f-col {
  display: flex;
  height: auto;
  border-right: 1px solid rgba(124, 146, 167, 0.4);
}
.blog-wrap .f-col:nth-child(4n) {
  border: none;
}
.blog-wrap .f-col .comm-card-sm-hdn {
  margin-bottom: 24px;
  white-space: normal;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-img {
  width: 100%;
  height: 280px;
  margin-bottom: 32px;
}
.category {
  color: var(--Grey, #4c5c73);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.blog-box {
  padding-bottom: 20px;
}
/* Blog Ends */
/* Blog Detail Starts */
.bdh-box {
  max-width: 1430px;
  width: 100%;
  margin: 60px auto 50px;
}
.bdh-box .breadcrumbs {
  margin-bottom: 24px;
}
.bdh-hdn {
  color: var(--Db-black);
  font-family: "Space Grotesk";
  font-size: var(--fs64);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -3.2px;
  max-width: 900px;
  width: 100%;
}
.bdh-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-end;
  gap: 24px;
  margin-bottom: 32px;
}
.bdh-social-wrap {
  display: flex;
  gap: 24px;
}
.bdh-social-wrap p {
  font-size: 16px;
  font-weight: 500;
  color: var(--Dark-Grey);
}
.bdh-social-wrap .footer-socials a:hover i {
  color: var(--Db-purple);
}
.bd-wrap {
  max-width: 1580px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  gap: 80px;
  position: relative;
}
.bd-wrap.center {
  justify-content: center;
}
.bd-box {
  max-width: 1430px;
  width: 100%;
  margin: 0 auto;
}
.bd-box .bdh-social-wrap {
  margin-top: 40px;
}
.bd-box .bdh-social-wrap .social-wrap i,
.bd-box .bdh-social-wrap p {
  color: #101010;
}
.author-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.author-wrap h4 {
  color: var(--Indium-Black, #101010);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
}
.author-wrap h5 {
  color: var(--Indium-Black, #3a3a3a);
  font-size: 16px;
  line-height: 1.5;
}
.author-img {
  width: 52px;
  height: 52px;
  border-radius: 100%;
  overflow: hidden;
}
/* Blog Detail Ends */
/* Contact Starts */
.reach-section {
  position: relative;
  overflow: hidden;
}
.contact-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;
  gap: 40px;
}
.contact-left {
  max-width: 530px;
  width: 100%;
}
.contact-left .comm-sec-hdn {
  margin-bottom: 32px;
}
.reach-wrap {
  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: 24px;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(124, 146, 167, 0.5);
}
.reach-wrap:last-child {
  margin: 0;
  padding: 0;
  border: none;
}
.reach-wrap p,
.reach-wrap a {
  color: var(--Grey, #4c5c73);
  font-size: var(--fs18);
  line-height: 2;
  flex: 1;
}
.reach-wrap a {
  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
}
.reach-wrap a:hover {
  color: var(--Db-purple);
}
.reach-icon {
  width: 32px;
  height: 32px;
}
.contact-right {
  max-width: 840px;
  width: 100%;
  background: #fff;
  padding: 48px 40px;
}
.reach-elem {
  width: 35%;
  bottom: 20%;
  position: absolute;
  left: 0;
  height: 50px;
}
.reach-elem::before {
  content: "";
  width: calc(100% - 50px);
  height: 100%;
  background: linear-gradient(90deg, rgba(5, 5, 5, 0) 1.73%, #4431f7 50.86%, #f7f7fc 100%);
  position: absolute;
  left: 0;
  top: 0;
}
.reach-elem::after {
  content: "";
  width: 50px;
  height: 100%;
  background: var(--Db-purple);
  position: absolute;
  right: 0;
  top: 0;
}
.faq-wrap {
  display: flex;
  justify-content: space-between;
  gap: 100px;
}
.faq-wrap .acc-container {
  max-width: 990px;
  width: 100%;
}
.faq-wrap .acc-item {
  background: var(--Db-black);
}
.faq-wrap .accordion {
  color: #ffffff;
}
.faq-wrap .acc-item.active .accordion {
  color: var(--Db-black);
}
.faq-hdn-box {
  max-width: 555px;
  width: 100%;
}
.faq-hdn-box .comm-sec-hdn {
  margin-bottom: 24px;
}
.le-box {
  width: 100%;
  height: 555px;
  position: relative;
}
.le-box::after {
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 45.79%, rgba(0, 0, 0, 0.9) 68.83%);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.le-img {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
.le-info {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 3;
  max-width: 900px;
  width: 100%;
  padding: 36px 40px;
}
.le-info ul {
  margin-bottom: 6px;
}
.le-info ul li {
  color: var(--Light-Grey, #7c92a7);
  font-size: var(--fs14);
  font-weight: 700;
  line-height: 1.5;
  text-transform: uppercase;
}
.le-info p {
  color: var(--Light-Grey, #7c92a7);
  font-size: var(--fs18);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.54px;
  margin-bottom: 24px;
  max-width: 660px;
  width: 100%;
  white-space: normal;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.le-info a {
  color: var(--Cyan, #45fed2);
  font-size: var(--fs16);
  font-weight: 600;
  line-height: 1.5;
  text-transform: capitalize;
  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
}
.le-info a:hover {
  color: #fff;
}
.le-hdn {
  color: var(--Db-white);
  font-family: "Space Grotesk";
  font-size: var(--fs36);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -1.8px;
  margin-bottom: 6px;
}
.event-tab-wrap {
  margin-bottom: 48px;
}
.event-tab-wrap ul {
  height: 64px;
  border-top: 1px solid #7c92a7;
  border-bottom: 1px solid #7c92a7;
  width: fit-content;
  margin: 0 auto;
  display: -webkit-flex;
  display: -webkit-box;
  display: -moz-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
}
.event-tab-wrap ul li {
  border-left: 1px solid #7c92a7;
  background: var(--Db-white);
  padding: 0 54px;
  height: 100%;
  color: var(--Dark-Grey, #3a3a3a);
  text-align: center;
  font-family: "Space Grotesk";
  font-size: var(--fs18);
  line-height: 1.3;
  cursor: pointer;
  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;
}
.event-tab-wrap ul li.active {
  background: var(--Dark-Grey, #282f3f);
  color: var(--Db-white);
}
.event-tab-wrap ul li:hover {
  background: rgba(40, 47, 63, 0.65);
  color: var(--Db-white);
}
.event-tab-wrap ul li:last-child {
  border-right: 1px solid #7c92a7;
}
.event-wrap .f-row {
  margin-bottom: 60px;
}
.event-wrap .f-col {
  margin-bottom: 30px;
}
.event-box {
  width: 100%;
  height: 480px;
  position: relative;
}
.event-box::after {
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 29.74%, rgba(0, 0, 0, 0) 44.88%, rgba(0, 0, 0, 0.81) 61.93%, rgba(0, 0, 0, 0.9) 83.82%);
  z-index: 2;
  position: absolute;
  top: 0;
  left: 0;
}
.event-img {
  width: 100%;
  height: 100%;
}
.event-info {
  width: 100%;
  padding: 24px;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 3;
}
.event-info .comm-card-sm-hdn {
  color: var(--Db-white);
  margin-bottom: 6px;
  white-space: normal;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.event-info p {
  color: var(--Light-Grey, #7c92a7);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
  margin-bottom: 24px;
  width: 80%;
  white-space: normal;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.event-info a {
  color: var(--Cyan, #45fed2);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  text-transform: capitalize;
  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
}
.event-info a:hover {
  color: #fff;
}
/* Contact Ends */
/* Events Detail Starts */
.ed-wrap {
  display: flex;
  margin-bottom: 54px;
}
.ed-img {
  max-width: 850px;
  height: auto;
}
.ed-info {
  background: #fff;
  padding: 48px 64px;
  width: 100%;
}
.ed-cat {
  display: flex;
  gap: 16px;
}
.ed-cat li {
  color: var(--Grey, #4c5c73);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.7;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.ed-hdn {
  color: var(--Dbyte-Black, #050505);
  font-family: "Space Grotesk";
  font-size: var(--fs48);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -2px;
  margin-bottom: 24px;
}
.ed-detail {
  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: 24px 48px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.ed-detail li {
  display: flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
}
.ed-detail li img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}
.ed-detail li p {
  color: var(--Grey, #4c5c73);
  font-size: var(--fs18);
  font-weight: 400;
  line-height: 2;
}
.ed-detail li:last-child {
  width: 100%;
}
.ed-button-wrap {
  display: flex;
  gap: 12px;
}
.ed-button-wrap a {
  height: 64px;
  padding: 0 24px 0 52px;
  background: var(--Db-purple);
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  color: var(--Db-white);
  font-size: var(--fs16);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.32px;
}
.ed-button-wrap a::before {
  content: "+";
  color: var(--Db-white);
  font-size: 24px;
  position: absolute;
  top: 50%;
  left: 24px;
  transform: translate(0, -50%);
}
.ed-button-wrap a:nth-child(even) {
  background: var(--Cyan, #45fed2);
  color: var(--Db-black);
}
.ed-button-wrap a:nth-child(even)::before {
  color: var(--Db-black);
}
.ks-wrap .f-row {
  row-gap: 30px;
}
.ks-wrap .f-col {
  display: flex;
  width: 100%;
  height: 450px;
}
.ks-box {
  width: 100%;
  height: 100%;
  position: relative;
}
.ks-box::after {
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 19.08%, rgba(0, 0, 0, 0) 31.1%, rgba(0, 0, 0, 0.9) 74.01%);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.ks-img {
  width: 100%;
  height: 100%;
}
.ks-img img {
  object-position: top;
}
.ks-info {
  width: 100%;
  padding: 24px;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 3;
}
.ks-info .comm-card-sm-hdn {
  color: var(--Db-white);
  margin-bottom: 6px;
}
.ks-info p {
  color: var(--Light-Grey, #7c92a7);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
  width: 90%;
}
.agenda-info {
  max-width: 584px;
  width: 100%;
}
.agenda-info .comm-sec-hdn {
  margin-bottom: 24px;
}
.agenda-right {
  max-width: 930px;
  width: 100%;
}
.agenda-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
.agenda-box:first-child .agenda-cont::before {
  display: none;
}
.agenda-box:last-child .agenda-cont::after {
  display: none;
}
.agenda-cont {
  display: flex;
  gap: 40px;
  flex: 1;
  min-width: 0;
  align-items: center;
  position: relative;
}
.agenda-cont::before {
  content: "";
  width: 1px;
  opacity: 0.5;
  background: var(--Db-purple);
  position: absolute;
  left: 24px;
  height: 50%;
  top: 0;
}
.agenda-cont::after {
  content: "";
  width: 1px;
  opacity: 0.5;
  background: var(--Db-purple);
  position: absolute;
  left: 24px;
  height: 50%;
  bottom: 0;
}
.agenda-num {
  height: 100%;
}
.agenda-num span {
  width: 48px;
  height: 48px;
  border-radius: 100%;
  overflow: hidden;
  color: var(--Db-white);
  font-family: "Space Grotesk";
  font-size: var(--fs24);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.6px;
  background: var(--Db-purple);
  z-index: 3;
  position: relative;
  display: -webkit-flex;
  display: -webkit-box;
  display: -moz-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
}
.agenda-time {
  color: var(--Dark-Grey, #3a3a3a);
  font-size: var(--fs18);
  line-height: 2;
}
.agenda-wrap {
  display: flex;
  justify-content: space-between;
  gap: 100px;
}
.agenda-detail {
  width: 100%;
  padding: 24px;
  background: #fff;
  margin: 38px 0;
}
.agenda-detail .comm-card-sm-hdn {
  margin-bottom: 12px;
}
.agenda-detail p {
  color: var(--Dark-Grey, #282f3f);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
}
/* Events Detail Ends */
/* Life Starts */
.mg-section {
  overflow: hidden;
}
.mg-swiper {
  overflow: visible;
}
.mg-swiper .swiper-wrapper {
  transition-timing-function: linear;
}
.mg-swiper .swiper-slide {
  width: max-content;
}
.mg-img {
  width: 100%;
  height: 434px;
}
.vc-height {
  padding: 100px 0 150px;
  position: relative;
}
.vc-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: 40px;
  overflow: hidden;
  position: sticky;
  top: calc(var(--header-height) + 20px);
}
.vc-left {
  max-width: 850px;
  width: 100%;
}
.vc-left .comm-sec-hdn {
  margin-bottom: 48px;
}
.vc-img {
  width: 100%;
  height: 640px;
}
.vc-swiper-box {
  max-width: 585px;
  width: 100%;
  height: 750px;
  margin: 0 auto;
  position: relative;
}
.vc-swiper-box::before {
  content: "";
  width: 100%;
  height: 20%;
  background: linear-gradient(0deg, rgba(247, 247, 252, 0) 0%, #f7f7fc 100%);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
}
.vc-swiper-box::after {
  content: "";
  width: 100%;
  height: 20%;
  background: linear-gradient(180deg, rgba(247, 247, 252, 0) 0%, #f7f7fc 100%);
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 3;
}
.vc-box {
  display: -webkit-flex;
  display: -webkit-box;
  display: -moz-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 40px;
}
.vc-swiper-img {
  width: 300px;
  height: 300px;
}
.vc-info {
  text-align: center;
}
.vc-info .comm-card-hdn {
  margin-bottom: 24px;
}
.vc-swiper {
  height: 100%;
}
.et-section {
  overflow: hidden;
}
.et-swiper {
  overflow: visible;
}
.et-swiper .swiper-wrapper {
  padding-bottom: 60px;
}
.et-swiper .swiper-slide {
  opacity: 0.4;
  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  display: flex;
  height: auto;
}
.et-swiper .swiper-slide-active {
  opacity: 1;
}
.et-box {
  padding: 60px;
  background: #282f3f;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 60px;
}
.et-quote {
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
}
.et-wrap p {
  color: var(--Db-white);
  font-family: "Space Grotesk";
  font-size: var(--fs36);
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: -1.8px;
}
.et-detail-wrap {
  display: flex;
  align-items: center;
  gap: 24px;
}
.et-img {
  width: 60px;
  height: 60px;
}
.et-name {
  color: var(--Db-white);
  font-family: "Space Grotesk";
  font-size: var(--fs24);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.72px;
  text-transform: capitalize;
  margin-bottom: 8px;
}
.et-designation {
  color: var(--Light-Grey, #7c92a7);
  font-size: var(--fs18);
  line-height: 2;
}
.job-box {
  padding: 32px;
  background: #fff;
  margin-bottom: 24px;
}
.job-box:last-child {
  margin-bottom: 0;
}
.job-top {
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(124, 146, 167, 0.4);
}
.job-name {
  color: #212121;
  font-family: "Space Grotesk";
  font-size: var(--fs24);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.72px;
  text-transform: capitalize;
  margin-bottom: 16px;
}
.job-detail-wrap {
  display: flex;
  gap: 8px 24px;
  flex-wrap: wrap;
}
.job-detail {
  display: flex;
  align-items: center;
  gap: 8px;
}
.job-detail p {
  color: var(--Grey, #4c5c73);
  font-size: var(--fs16);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.32px;
}
.job-logo {
  width: 20px;
  height: 20px;
}
.job-logo img {
  display: block;
}
.job-btm-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-end;
  gap: 20px;
}
.job-btm-hdn {
  color: var(--Grey, #4c5c73);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.7;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.job-btm p {
  color: var(--Secondary-Grey-1, #464646);
  font-size: var(--fs16);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.32px;
}
/* Life Ends */
/* About Starts */
.abt-img {
  width: 100%;
  height: 600px;
  position: relative;
}
.abt-img::after {
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 64.15%, rgba(0, 0, 0, 0.9) 85.54%);
  position: absolute;
  top: 0;
  left: 0;
}
.who-hdn-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;
  gap: 40px;
  margin-bottom: 40px;
}
.who-hdn-box {
  max-width: 585px;
  width: 100%;
}
.who-hdn-box .comm-card-hdn {
  margin-bottom: 24px;
}
.who-section {
  overflow: hidden;
}
.who-img-wrap {
  display: flex;
}
.db-elem {
  max-width: 590px;
  width: 100%;
}
.who-video {
  flex: 1;
  width: 50%;
  transform: translateX(-50%);
  height: 72px;
  position: relative;
}
.who-video video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.who-video::after {
  content: "";
  width: 50px;
  height: 50px;
  background: var(--Db-purple);
  position: absolute;
  right: -50px;
  top: 50%;
  transform: translate(0, -50%);
}
.who-video:last-child {
  transform: translateX(50%) rotate(180deg);
  margin-top: auto;
}
.vision-box {
  padding: 32px 40px;
  background: #fff;
  flex: 1;
}
.vision-box .comm-card-sm-hdn {
  margin-bottom: 16px;
}
.vision-wrap .cds-hdn::before {
  background: url(../img/vision-icon1.svg) no-repeat;
  background-size: contain;
  background-position: left center;
}
.vision-wrap .cds-box:nth-child(even) .cds-hdn::before {
  background: url(../img/vision-icon2.svg) no-repeat;
  background-size: contain;
  background-position: left center;
}
/* About Ends */
/* Home Starts */
.banner-section {
  height: calc(100dvh - var(--header-height));
  position: relative;
}
.banner-section .container {
  display: -webkit-flex;
  display: -webkit-box;
  display: -moz-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100%;
}
.banner-wrap {
  max-width: 1380px;
  width: 100%;
  height: 680px;
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-bottom: 30px;
}
.banner-hdn {
  color: var(--Db-black);
  font-family: "Space Grotesk";
  font-size: var(--fs100);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -5px;
  max-width: 460px;
  width: 100%;
  height: fit-content;
  transform: translateX(-100%);
  opacity: 0;
  visibility: hidden;
}
.banner-hdn:last-child {
  text-align: right;
  margin-top: auto;
  padding-bottom: 130px;
  max-width: min-content;
  width: fit-content;
  transform: translateX(100%);
}
.banner-img {
  mix-blend-mode: multiply;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-40%, 0) scale(1.2);
}
.banner-img img {
  object-fit: contain;
}
.banner-video {
  flex: 1;
  width: 50%;
  transform: translateX(-100%);
  height: 72px;
  position: absolute;
  bottom: 30%;
  background: #f7f7fc;
}
.banner-video video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: darken;
}
.banner-video::after {
  content: "";
  width: 72px;
  height: 72px;
  background: linear-gradient(270deg, #4431f7 79.37%, rgba(255, 255, 255, 0) 100%);
  position: absolute;
  right: -45px;
  top: 50%;
  transform: translate(0, -50%);
}
.banner-video:last-child {
  transform: translateX(100%) rotate(180deg);
  margin-top: auto;
  right: 0;
  bottom: unset;
  top: 20%;
}
.banner-para {
  transform: translateY(70px);
  opacity: 0;
}
.banner-para p {
  color: var(--Db-black);
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.ta-section {
  width: 100%;
  height: 300vh;
  position: relative;
}
.ta-wrap {
  width: 100%;
  height: calc(100dvh - var(--header-height));
  overflow: hidden;
  position: sticky;
  top: var(--header-height);
  left: 0;
  display: -webkit-flex;
  display: -webkit-box;
  display: -moz-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 60px;
}
.ta-video {
  flex: 1;
  width: 50%;
  transform: translateX(-150%);
  height: 72px;
  background: #f7f7fc;
}
.ta-video video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: darken;
}
.ta-video::after {
  content: "";
  width: 72px;
  height: 72px;
  background: linear-gradient(270deg, #4431f7 79.37%, rgba(255, 255, 255, 0) 100%);
  position: absolute;
  right: -45px;
  top: 50%;
  transform: translate(0, -50%);
}
.ta-video:first-child {
  transform: translateX(150%) rotate(180deg);
  margin-top: auto;
  right: 0;
  bottom: unset;
  top: 20%;
}
.jd-wrap .f-row {
  gap: 40px 0;
}
.jd-main-box {
  width: 100%;
  height: 490px;
  background: linear-gradient(180deg, #ffffff 96%, rgba(255, 255, 255, 0) 100%);
  padding: 8px 9px 100px 9px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
}
.jd-main-box:hover {
  padding-bottom: 170px;
}
.jd-main-box:hover .jd-para {
  transform: translateY(0);
}
.jd-main-box:hover .jd-arrow::after {
  transform: translate(0, -50%) rotate(90deg);
}
.jd-box {
  width: 100%;
  height: 100%;
  z-index: 3;
  position: relative;
}
.jd-box .comm-card-sm-hdn {
  padding: 16px 10px 0;
  background: #fff;
}
.jd-img-box {
  position: relative;
  width: 100%;
  height: 100%;
}
.jd-img {
  width: 100%;
  height: 100%;
}
.jd-arrow {
  width: 100%;
  height: 36px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 1.73%, #4431f7 50.86%, rgba(247, 247, 252, 0.5) 100%);
  position: absolute;
  bottom: 0;
  left: 0;
}
.jd-arrow::before {
  content: "";
  width: 36px;
  height: 100%;
  background: #4431f7;
  position: absolute;
  right: 0;
  bottom: 0;
}
.jd-arrow::after {
  content: "\e904";
  font-family: "icomoon" !important;
  font-size: 12px;
  color: #fff;
  position: absolute;
  top: 50%;
  right: 9px;
  z-index: 2;
  transform: translate(0, -50%);
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
}
.jd-para {
  padding: 16px 20px;
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  transform: translateY(100%);
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
}
.jd-para p {
  color: var(--Db-black);
  font-size: 16px;
  line-height: 1.5;
  white-space: normal;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.os-tab-wrap {
  margin: 28px 0 66px 0;
}
.os-tab-wrap ul {
  height: 64px;
  border: 1px solid #7c92a7;
  width: fit-content;
  margin: 0 auto;
  display: -webkit-flex;
  display: -webkit-box;
  display: -moz-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
}
.os-tab-wrap ul li {
  padding: 0 54px;
  color: var(--Dark-Grey, #3a3a3a);
  text-align: center;
  font-family: "Space Grotesk";
  font-size: var(--fs18);
  line-height: 1.3;
  height: 100%;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  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;
}
.os-tab-wrap ul li:not(:last-child) {
  border-right: 1px solid #7c92a7;
}
.os-tab-wrap ul li:hover {
  background: var(--Dark-Grey, #282f3f);
  color: var(--Db-white);
}
.os-tab-wrap ul li.active {
  background: var(--Dark-Grey, #282f3f);
  color: var(--Db-white);
}
.emp-hdn-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-end;
  gap: 40px;
  margin-bottom: 50px;
}
.emp-hdn-left {
  max-width: 870px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.emp-hdn-left .comm-small-hdn {
  color: var(--Light-Grey, #7c92a7);
}
.emp-wrap .jd-img-box {
  border: 1px solid #7c92a7;
}
.emp-wrap .jd-main-box {
  background: transparent;
  padding: 0 0 100px 0;
}
.emp-wrap .jd-main-box:hover {
  padding-bottom: 110px;
}
.emp-wrap .jd-box .comm-card-sm-hdn {
  padding: 24px 0 0 0;
  background: #050505;
}
.emp-wrap .jd-para {
  padding: 16px 0px;
}
.git-wrap {
  padding: 80px 0;
  background: var(--Db-black);
  display: flex;
  gap: 30px;
  overflow: hidden;
}
.git-info {
  max-width: 580px;
  width: 100%;
  text-align: center;
}
.git-info .comm-sec-hdn {
  margin-bottom: 20px;
}
.git-info .comm-para {
  margin-bottom: 48px;
}
.git-video {
  flex: 1;
  width: 50%;
  transform: translateX(-20%);
  height: 72px;
  position: relative;
}
.git-video video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.git-video::after {
  content: "";
  width: 50px;
  height: 50px;
  background: linear-gradient(270deg, #ffffff 79.37%, rgba(153, 153, 153, 0) 100%);
  position: absolute;
  right: -50px;
  top: 50%;
  transform: translate(0, -50%);
}
.git-video:last-child {
  transform: translateX(20%) rotate(180deg);
  margin-top: auto;
}
.ps-box {
  padding: 10px 48px 10px 10px;
  display: flex;
  align-items: center;
  gap: 48px;
  background: #FFF;
}
.ps-img {
  width: 364px;
  height: 364px;
}
.ps-info {
  flex: 1;
}
.ps-info .comm-card-sm-hdn {
  margin-bottom: 6px;
}
.ps-info p {
  color: var(--Dark-Grey, #282f3f);
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 48px;
}
.ps-tab ul li {
  color: #7C92A7;
}
.ps-section {
  overflow: hidden;
}
.ps-swiper {
  overflow: visible;
}
.ps-swiper .swiper-wrapper {
  padding-bottom: 40px;
}
/* Home Ends */
/*------------------------------------------------------------------
[TABLE OF CONTENTS]

=> Color
=> Common 
=> Fonts
=> Custom Grid
=> Global Styles
=> buttons
=> Form Elements
=> Radio Small
=> Checkbox Small
=> Tooltip
=> Modal
=> Accordion
=> Footer
=> Common 1
=> Breadcrumbs

-------------------------------------------------------------------*/
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 100;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v19/UcCM3FwrK3iLTcvneQg7Ca725JhhKnNqk4j1ebLhAm8SrXTc2dphjQ.ttf) format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 100;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v19/UcCM3FwrK3iLTcvneQg7Ca725JhhKnOKk4j1ebLhAm8SrXTc2dphjQ.ttf) format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 100;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v19/UcCM3FwrK3iLTcvneQg7Ca725JhhKnOCk4j1ebLhAm8SrXTc2dphjQ.ttf) format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 100;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v19/UcCM3FwrK3iLTcvneQg7Ca725JhhKnOak4j1ebLhAm8SrXTc2dphjQ.ttf) format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 100;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v19/UcCM3FwrK3iLTcvneQg7Ca725JhhKnOqk4j1ebLhAm8SrXTc2dphjQ.ttf) format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 100;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v19/UcCM3FwrK3iLTcvneQg7Ca725JhhKnPKk4j1ebLhAm8SrXTc2dphjQ.ttf) format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 100;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v19/UcCM3FwrK3iLTcvneQg7Ca725JhhKnPqk4j1ebLhAm8SrXTc2dphjQ.ttf) format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 200;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v19/UcCM3FwrK3iLTcvneQg7Ca725JhhKnNqk4j1ebLhAm8SrXTcWdthjQ.ttf) format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 200;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v19/UcCM3FwrK3iLTcvneQg7Ca725JhhKnOKk4j1ebLhAm8SrXTcWdthjQ.ttf) format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 200;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v19/UcCM3FwrK3iLTcvneQg7Ca725JhhKnOCk4j1ebLhAm8SrXTcWdthjQ.ttf) format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 200;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v19/UcCM3FwrK3iLTcvneQg7Ca725JhhKnOak4j1ebLhAm8SrXTcWdthjQ.ttf) format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 200;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v19/UcCM3FwrK3iLTcvneQg7Ca725JhhKnOqk4j1ebLhAm8SrXTcWdthjQ.ttf) format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 200;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v19/UcCM3FwrK3iLTcvneQg7Ca725JhhKnPKk4j1ebLhAm8SrXTcWdthjQ.ttf) format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 200;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v19/UcCM3FwrK3iLTcvneQg7Ca725JhhKnPqk4j1ebLhAm8SrXTcWdthjQ.ttf) format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v19/UcCM3FwrK3iLTcvneQg7Ca725JhhKnNqk4j1ebLhAm8SrXTch9thjQ.ttf) format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v19/UcCM3FwrK3iLTcvneQg7Ca725JhhKnOKk4j1ebLhAm8SrXTch9thjQ.ttf) format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v19/UcCM3FwrK3iLTcvneQg7Ca725JhhKnOCk4j1ebLhAm8SrXTch9thjQ.ttf) format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v19/UcCM3FwrK3iLTcvneQg7Ca725JhhKnOak4j1ebLhAm8SrXTch9thjQ.ttf) format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v19/UcCM3FwrK3iLTcvneQg7Ca725JhhKnOqk4j1ebLhAm8SrXTch9thjQ.ttf) format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v19/UcCM3FwrK3iLTcvneQg7Ca725JhhKnPKk4j1ebLhAm8SrXTch9thjQ.ttf) format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v19/UcCM3FwrK3iLTcvneQg7Ca725JhhKnPqk4j1ebLhAm8SrXTch9thjQ.ttf) format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v19/UcCM3FwrK3iLTcvneQg7Ca725JhhKnNqk4j1ebLhAm8SrXTc2dthjQ.ttf) format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v19/UcCM3FwrK3iLTcvneQg7Ca725JhhKnOKk4j1ebLhAm8SrXTc2dthjQ.ttf) format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v19/UcCM3FwrK3iLTcvneQg7Ca725JhhKnOCk4j1ebLhAm8SrXTc2dthjQ.ttf) format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v19/UcCM3FwrK3iLTcvneQg7Ca725JhhKnOak4j1ebLhAm8SrXTc2dthjQ.ttf) format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v19/UcCM3FwrK3iLTcvneQg7Ca725JhhKnOqk4j1ebLhAm8SrXTc2dthjQ.ttf) format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v19/UcCM3FwrK3iLTcvneQg7Ca725JhhKnPKk4j1ebLhAm8SrXTc2dthjQ.ttf) format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v19/UcCM3FwrK3iLTcvneQg7Ca725JhhKnPqk4j1ebLhAm8SrXTc2dthjQ.ttf) format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v19/UcCM3FwrK3iLTcvneQg7Ca725JhhKnNqk4j1ebLhAm8SrXTc69thjQ.ttf) format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v19/UcCM3FwrK3iLTcvneQg7Ca725JhhKnOKk4j1ebLhAm8SrXTc69thjQ.ttf) format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v19/UcCM3FwrK3iLTcvneQg7Ca725JhhKnOCk4j1ebLhAm8SrXTc69thjQ.ttf) format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v19/UcCM3FwrK3iLTcvneQg7Ca725JhhKnOak4j1ebLhAm8SrXTc69thjQ.ttf) format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v19/UcCM3FwrK3iLTcvneQg7Ca725JhhKnOqk4j1ebLhAm8SrXTc69thjQ.ttf) format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v19/UcCM3FwrK3iLTcvneQg7Ca725JhhKnPKk4j1ebLhAm8SrXTc69thjQ.ttf) format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v19/UcCM3FwrK3iLTcvneQg7Ca725JhhKnPqk4j1ebLhAm8SrXTc69thjQ.ttf) format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v19/UcCM3FwrK3iLTcvneQg7Ca725JhhKnNqk4j1ebLhAm8SrXTcB9xhjQ.ttf) format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v19/UcCM3FwrK3iLTcvneQg7Ca725JhhKnOKk4j1ebLhAm8SrXTcB9xhjQ.ttf) format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v19/UcCM3FwrK3iLTcvneQg7Ca725JhhKnOCk4j1ebLhAm8SrXTcB9xhjQ.ttf) format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v19/UcCM3FwrK3iLTcvneQg7Ca725JhhKnOak4j1ebLhAm8SrXTcB9xhjQ.ttf) format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v19/UcCM3FwrK3iLTcvneQg7Ca725JhhKnOqk4j1ebLhAm8SrXTcB9xhjQ.ttf) format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v19/UcCM3FwrK3iLTcvneQg7Ca725JhhKnPKk4j1ebLhAm8SrXTcB9xhjQ.ttf) format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v19/UcCM3FwrK3iLTcvneQg7Ca725JhhKnPqk4j1ebLhAm8SrXTcB9xhjQ.ttf) format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v19/UcCM3FwrK3iLTcvneQg7Ca725JhhKnNqk4j1ebLhAm8SrXTcPtxhjQ.ttf) format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v19/UcCM3FwrK3iLTcvneQg7Ca725JhhKnOKk4j1ebLhAm8SrXTcPtxhjQ.ttf) format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v19/UcCM3FwrK3iLTcvneQg7Ca725JhhKnOCk4j1ebLhAm8SrXTcPtxhjQ.ttf) format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v19/UcCM3FwrK3iLTcvneQg7Ca725JhhKnOak4j1ebLhAm8SrXTcPtxhjQ.ttf) format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v19/UcCM3FwrK3iLTcvneQg7Ca725JhhKnOqk4j1ebLhAm8SrXTcPtxhjQ.ttf) format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v19/UcCM3FwrK3iLTcvneQg7Ca725JhhKnPKk4j1ebLhAm8SrXTcPtxhjQ.ttf) format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v19/UcCM3FwrK3iLTcvneQg7Ca725JhhKnPqk4j1ebLhAm8SrXTcPtxhjQ.ttf) format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 800;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v19/UcCM3FwrK3iLTcvneQg7Ca725JhhKnNqk4j1ebLhAm8SrXTcWdxhjQ.ttf) format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 800;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v19/UcCM3FwrK3iLTcvneQg7Ca725JhhKnOKk4j1ebLhAm8SrXTcWdxhjQ.ttf) format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 800;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v19/UcCM3FwrK3iLTcvneQg7Ca725JhhKnOCk4j1ebLhAm8SrXTcWdxhjQ.ttf) format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 800;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v19/UcCM3FwrK3iLTcvneQg7Ca725JhhKnOak4j1ebLhAm8SrXTcWdxhjQ.ttf) format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 800;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v19/UcCM3FwrK3iLTcvneQg7Ca725JhhKnOqk4j1ebLhAm8SrXTcWdxhjQ.ttf) format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 800;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v19/UcCM3FwrK3iLTcvneQg7Ca725JhhKnPKk4j1ebLhAm8SrXTcWdxhjQ.ttf) format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 800;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v19/UcCM3FwrK3iLTcvneQg7Ca725JhhKnPqk4j1ebLhAm8SrXTcWdxhjQ.ttf) format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 900;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v19/UcCM3FwrK3iLTcvneQg7Ca725JhhKnNqk4j1ebLhAm8SrXTccNxhjQ.ttf) format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 900;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v19/UcCM3FwrK3iLTcvneQg7Ca725JhhKnOKk4j1ebLhAm8SrXTccNxhjQ.ttf) format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 900;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v19/UcCM3FwrK3iLTcvneQg7Ca725JhhKnOCk4j1ebLhAm8SrXTccNxhjQ.ttf) format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 900;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v19/UcCM3FwrK3iLTcvneQg7Ca725JhhKnOak4j1ebLhAm8SrXTccNxhjQ.ttf) format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 900;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v19/UcCM3FwrK3iLTcvneQg7Ca725JhhKnOqk4j1ebLhAm8SrXTccNxhjQ.ttf) format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 900;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v19/UcCM3FwrK3iLTcvneQg7Ca725JhhKnPKk4j1ebLhAm8SrXTccNxhjQ.ttf) format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 900;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v19/UcCM3FwrK3iLTcvneQg7Ca725JhhKnPqk4j1ebLhAm8SrXTccNxhjQ.ttf) format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuLyeMZg.ttf) format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp50qjIw2boKoduKmMEVuLyeMZg.ttf) format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp50ojIw2boKoduKmMEVuLyeMZg.ttf) format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp50ujIw2boKoduKmMEVuLyeMZg.ttf) format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp50ijIw2boKoduKmMEVuLyeMZg.ttf) format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp506jIw2boKoduKmMEVuLyeMZg.ttf) format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp50yjIw2boKoduKmMEVuLyeMZg.ttf) format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuDyfMZg.ttf) format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp50qjIw2boKoduKmMEVuDyfMZg.ttf) format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp50ojIw2boKoduKmMEVuDyfMZg.ttf) format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp50ujIw2boKoduKmMEVuDyfMZg.ttf) format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp50ijIw2boKoduKmMEVuDyfMZg.ttf) format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp506jIw2boKoduKmMEVuDyfMZg.ttf) format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp50yjIw2boKoduKmMEVuDyfMZg.ttf) format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuOKfMZg.ttf) format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp50qjIw2boKoduKmMEVuOKfMZg.ttf) format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp50ojIw2boKoduKmMEVuOKfMZg.ttf) format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp50ujIw2boKoduKmMEVuOKfMZg.ttf) format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp50ijIw2boKoduKmMEVuOKfMZg.ttf) format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp506jIw2boKoduKmMEVuOKfMZg.ttf) format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp50yjIw2boKoduKmMEVuOKfMZg.ttf) format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuLyfMZg.ttf) format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp50qjIw2boKoduKmMEVuLyfMZg.ttf) format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp50ojIw2boKoduKmMEVuLyfMZg.ttf) format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp50ujIw2boKoduKmMEVuLyfMZg.ttf) format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp50ijIw2boKoduKmMEVuLyfMZg.ttf) format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp506jIw2boKoduKmMEVuLyfMZg.ttf) format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp50yjIw2boKoduKmMEVuLyfMZg.ttf) format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuI6fMZg.ttf) format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp50qjIw2boKoduKmMEVuI6fMZg.ttf) format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp50ojIw2boKoduKmMEVuI6fMZg.ttf) format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp50ujIw2boKoduKmMEVuI6fMZg.ttf) format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp50ijIw2boKoduKmMEVuI6fMZg.ttf) format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp506jIw2boKoduKmMEVuI6fMZg.ttf) format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp50yjIw2boKoduKmMEVuI6fMZg.ttf) format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuGKYMZg.ttf) format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp50qjIw2boKoduKmMEVuGKYMZg.ttf) format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp50ojIw2boKoduKmMEVuGKYMZg.ttf) format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp50ujIw2boKoduKmMEVuGKYMZg.ttf) format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp50ijIw2boKoduKmMEVuGKYMZg.ttf) format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp506jIw2boKoduKmMEVuGKYMZg.ttf) format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp50yjIw2boKoduKmMEVuGKYMZg.ttf) format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuFuYMZg.ttf) format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp50qjIw2boKoduKmMEVuFuYMZg.ttf) format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp50ojIw2boKoduKmMEVuFuYMZg.ttf) format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp50ujIw2boKoduKmMEVuFuYMZg.ttf) format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp50ijIw2boKoduKmMEVuFuYMZg.ttf) format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp506jIw2boKoduKmMEVuFuYMZg.ttf) format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp50yjIw2boKoduKmMEVuFuYMZg.ttf) format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuDyYMZg.ttf) format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp50qjIw2boKoduKmMEVuDyYMZg.ttf) format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp50ojIw2boKoduKmMEVuDyYMZg.ttf) format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp50ujIw2boKoduKmMEVuDyYMZg.ttf) format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp50ijIw2boKoduKmMEVuDyYMZg.ttf) format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp506jIw2boKoduKmMEVuDyYMZg.ttf) format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp50yjIw2boKoduKmMEVuDyYMZg.ttf) format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuBWYMZg.ttf) format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp50qjIw2boKoduKmMEVuBWYMZg.ttf) format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp50ojIw2boKoduKmMEVuBWYMZg.ttf) format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp50ujIw2boKoduKmMEVuBWYMZg.ttf) format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp50ijIw2boKoduKmMEVuBWYMZg.ttf) format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp506jIw2boKoduKmMEVuBWYMZg.ttf) format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp50yjIw2boKoduKmMEVuBWYMZg.ttf) format('truetype');
}
@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/spacegrotesk/v21/V8mQoQDjQSkFtoMM3T6r8E7mF71Q-gOoraIAEj62UUsj.ttf) format('truetype');
}
@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/spacegrotesk/v21/V8mQoQDjQSkFtoMM3T6r8E7mF71Q-gOoraIAEj7oUUsj.ttf) format('truetype');
}
@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/spacegrotesk/v21/V8mQoQDjQSkFtoMM3T6r8E7mF71Q-gOoraIAEj7aUUsj.ttf) format('truetype');
}
@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/spacegrotesk/v21/V8mQoQDjQSkFtoMM3T6r8E7mF71Q-gOoraIAEj42Vksj.ttf) format('truetype');
}
@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/spacegrotesk/v21/V8mQoQDjQSkFtoMM3T6r8E7mF71Q-gOoraIAEj4PVksj.ttf) format('truetype');
}
html,
body {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  background: var(--Db-white);
  width: 100%;
}
/*==========================================================================
=> Color
==========================================================================*/
:root {
  --sidebarWidth: 430px;
  --clr: ;
  /* common */
  --clr-red: #f00;
  --clr-grn: #1e7e34;
  --primary: #a24eea;
  /* 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: 700;
  --button-fill: #4431f7;
  --button-line: #050505;
  /* 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;
}
.variable {
  margin-bottom: 30px;
}
.variable p {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  color: #4e68ea;
  margin-bottom: 8px;
}
.variable span {
  display: block;
  font-size: 14px;
  line-height: 1.5;
  color: #212529;
  margin-bottom: 5px;
}
/*==========================================================================
=> Fonts
==========================================================================*/
h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-weight: normal;
  margin-bottom: 0;
}
@font-face {
  font-family: "icomoon";
  src: url("../icomoon/fonts/icomoon.eot?turppd");
  src: url("../icomoon/fonts/icomoon.eot?turppd#iefix") format("embedded-opentype"), url("../icomoon/fonts/icomoon.ttf?turppd") format("truetype"), url("../icomoon/fonts/icomoon.woff?turppd") format("woff"), url("../icomoon/fonts/icomoon.svg?turppd#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
[class^="icon-"],
[class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "icomoon" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.icon-facebook:before {
  content: "\e900";
}
.icon-instagram:before {
  content: "\e901";
}
.icon-linkedin:before {
  content: "\e902";
}
.icon-x:before {
  content: "\e903";
}
.icon-arrow:before {
  content: "\e904";
}
.icon-rocket:before {
  content: "\e905";
}
/*==========================================================================
=> Custom Grid
==========================================================================*/
/* Grid */
.f-row {
  display: flex;
  margin-left: -15px;
  margin-right: -15px;
  flex-wrap: wrap;
}
.f-col {
  padding: 0 15px;
}
/* flex col */
.f-10 .f-col {
  width: 10%;
}
.f-9 .f-col {
  width: 11.11111111%;
}
.f-8 .f-col {
  width: 12.5%;
}
.f-7 .f-col {
  width: 14.28571429%;
}
.f-6 .f-col {
  width: 16.66666667%;
}
.f-5 .f-col {
  width: 20%;
}
.f-4 .f-col {
  width: 25%;
}
.f-3 .f-col {
  width: 33.33333333%;
}
.f-2 .f-col {
  width: 50%;
}
.f-1 .f-col {
  width: 100%;
}
/* flex col end */
/* Grid */
.g-10 {
  grid-template-columns: repeat(10, 1fr);
}
.g-9 {
  grid-template-columns: repeat(9, 1fr);
}
.g-8 {
  grid-template-columns: repeat(8, 1fr);
}
.g-7 {
  grid-template-columns: repeat(7, 1fr);
}
.g-6 {
  grid-template-columns: repeat(6, 1fr);
}
.g-5 {
  grid-template-columns: repeat(5, 1fr);
}
.g-4 {
  grid-template-columns: repeat(4, 1fr);
}
.g-3 {
  grid-template-columns: repeat(3, 1fr);
}
.g-2 {
  grid-template-columns: repeat(2, 1fr);
}
.g-1 {
  grid-template-columns: repeat(1, 1fr);
}
/* Grid */
.gp-70 {
  gap: 70px;
}
.gp-65 {
  gap: 65px;
}
.gp-60 {
  gap: 60px;
}
.gp-55 {
  gap: 55px;
}
.gp-50 {
  gap: 50px;
}
.gp-45 {
  gap: 45px;
}
.gp-40 {
  gap: 40px;
}
.gp-35 {
  gap: 35px;
}
.gp-30 {
  gap: 30px;
}
.gp-25 {
  gap: 25px;
}
.gp-20 {
  gap: 20px;
}
.gp-15 {
  gap: 15px;
}
.gp-10 {
  gap: 10px;
}
.gp-5 {
  gap: 5px;
}
.gp-0 {
  gap: 0px;
}
/* Width */
.w100 {
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
}
.w95 {
  width: 95%;
  padding-left: 15px;
  padding-right: 15px;
}
.w90 {
  width: 90%;
  padding-left: 15px;
  padding-right: 15px;
}
.w85 {
  width: 85%;
  padding-left: 15px;
  padding-right: 15px;
}
.w80 {
  width: 80%;
  padding-left: 15px;
  padding-right: 15px;
}
.w75 {
  width: 75%;
  padding-left: 15px;
  padding-right: 15px;
}
.w70 {
  width: 70%;
  padding-left: 15px;
  padding-right: 15px;
}
.w65 {
  width: 65%;
  padding-left: 15px;
  padding-right: 15px;
}
.w60 {
  width: 60%;
  padding-left: 15px;
  padding-right: 15px;
}
.w55 {
  width: 55%;
  padding-left: 15px;
  padding-right: 15px;
}
.w50 {
  width: 50%;
  padding-left: 15px;
  padding-right: 15px;
}
.w45 {
  width: 45%;
  padding-left: 15px;
  padding-right: 15px;
}
.w40 {
  width: 40%;
  padding-left: 15px;
  padding-right: 15px;
}
.w35 {
  width: 35%;
  padding-left: 15px;
  padding-right: 15px;
}
.w30 {
  width: 30%;
  padding-left: 15px;
  padding-right: 15px;
}
.w25 {
  width: 25%;
  padding-left: 15px;
  padding-right: 15px;
}
.w20 {
  width: 20%;
  padding-left: 15px;
  padding-right: 15px;
}
.w15 {
  width: 15%;
  padding-left: 15px;
  padding-right: 15px;
}
.w10 {
  width: 10%;
  padding-left: 15px;
  padding-right: 15px;
}
.w5 {
  width: 5%;
  padding-left: 15px;
  padding-right: 15px;
}
.w33 {
  width: 33%;
  padding-left: 15px;
  padding-right: 15px;
}
.w16 {
  width: 16.666666%;
  padding-left: 15px;
  padding-right: 15px;
}
/* Margin */
.mb-100 {
  margin-bottom: 100px;
}
.mb-95 {
  margin-bottom: 95px;
}
.mb-90 {
  margin-bottom: 90px;
}
.mb-85 {
  margin-bottom: 85px;
}
.mb-80 {
  margin-bottom: 80px;
}
.mb-75 {
  margin-bottom: 75px;
}
.mb-70 {
  margin-bottom: 70px;
}
.mb-65 {
  margin-bottom: 65px;
}
.mb-60 {
  margin-bottom: 60px;
}
.mb-55 {
  margin-bottom: 55px;
}
.mb-50 {
  margin-bottom: 50px;
}
.mb-45 {
  margin-bottom: 45px;
}
.mb-40 {
  margin-bottom: 40px;
}
.mb-35 {
  margin-bottom: 35px;
}
.mb-30 {
  margin-bottom: 30px;
}
.mb-25 {
  margin-bottom: 25px;
}
.mb-20 {
  margin-bottom: 20px;
}
.mb-15 {
  margin-bottom: 15px;
}
.mb-10 {
  margin-bottom: 10px;
}
.mb-5 {
  margin-bottom: 5px;
}
.mb-0 {
  margin-bottom: 0px;
}
.comm-grid {
  display: grid;
  width: 100%;
}
@media all and (max-width: 1440px) {
  .w-1440-40 {
    width: 40%;
  }
  .w-1440-60 {
    width: 60%;
  }
}
@media all and (max-width: 1366px) {
  .f-1366-10 .f-col {
    width: 10%;
  }
  .f-1366-9 .f-col {
    width: 11.11111111%;
  }
  .f-1366-8 .f-col {
    width: 12.5%;
  }
  .f-1366-7 .f-col {
    width: 14.28571429%;
  }
  .f-1366-6 .f-col {
    width: 16.66666667%;
  }
  .f-1366-5 .f-col {
    width: 20%;
  }
  .f-1366-4 .f-col {
    width: 25%;
  }
  .f-1366-3 .f-col {
    width: 33.33333333%;
  }
  .f-1366-2 .f-col {
    width: 50%;
  }
  .f-1366-1 .f-col {
    width: 100%;
  }
  .g-1366-10 {
    grid-template-columns: repeat(10, 1fr);
  }
  .g-1366-9 {
    grid-template-columns: repeat(9, 1fr);
  }
  .g-1366-8 {
    grid-template-columns: repeat(8, 1fr);
  }
  .g-1366-7 {
    grid-template-columns: repeat(7, 1fr);
  }
  .g-1366-6 {
    grid-template-columns: repeat(6, 1fr);
  }
  .g-1366-5 {
    grid-template-columns: repeat(5, 1fr);
  }
  .g-1366-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .g-1366-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .g-1366-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .g-1366-1 {
    grid-template-columns: repeat(1, 1fr);
  }
  .gp-1366-70 {
    gap: 70px;
  }
  .gp-1366-65 {
    gap: 65px;
  }
  .gp-1366-60 {
    gap: 60px;
  }
  .gp-1366-55 {
    gap: 55px;
  }
  .gp-1366-50 {
    gap: 50px;
  }
  .gp-1366-45 {
    gap: 45px;
  }
  .gp-1366-40 {
    gap: 40px;
  }
  .gp-1366-35 {
    gap: 35px;
  }
  .gp-1366-30 {
    gap: 30px;
  }
  .gp-1366-25 {
    gap: 25px;
  }
  .gp-1366-20 {
    gap: 20px;
  }
  .gp-1366-15 {
    gap: 15px;
  }
  .gp-1366-10 {
    gap: 10px;
  }
  .gp-1366-5 {
    gap: 5px;
  }
  .gp-1366-0 {
    gap: 0px;
  }
  .w-1366-100 {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-1366-95 {
    width: 95%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-1366-90 {
    width: 90%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-1366-85 {
    width: 85%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-1366-80 {
    width: 80%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-1366-75 {
    width: 75%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-1366-70 {
    width: 70%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-1366-65 {
    width: 65%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-1366-60 {
    width: 60%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-1366-55 {
    width: 55%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-1366-50 {
    width: 50%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-1366-45 {
    width: 45%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-1366-40 {
    width: 40%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-1366-35 {
    width: 35%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-1366-30 {
    width: 30%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-1366-25 {
    width: 25%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-1366-20 {
    width: 20%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-1366-15 {
    width: 15%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-1366-10 {
    width: 10%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-1366-5 {
    width: 5%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-1366-33 {
    width: 33%;
  }
  .w-1366-16 {
    width: 16.666666%;
  }
  .mb-1366-100 {
    margin-bottom: 100px;
  }
  .mb-1366-95 {
    margin-bottom: 95px;
  }
  .mb-1366-90 {
    margin-bottom: 90px;
  }
  .mb-1366-85 {
    margin-bottom: 85px;
  }
  .mb-1366-80 {
    margin-bottom: 80px;
  }
  .mb-1366-75 {
    margin-bottom: 75px;
  }
  .mb-1366-70 {
    margin-bottom: 70px;
  }
  .mb-1366-65 {
    margin-bottom: 65px;
  }
  .mb-1366-60 {
    margin-bottom: 60px;
  }
  .mb-1366-55 {
    margin-bottom: 55px;
  }
  .mb-1366-50 {
    margin-bottom: 50px;
  }
  .mb-1366-45 {
    margin-bottom: 45px;
  }
  .mb-1366-40 {
    margin-bottom: 40px;
  }
  .mb-1366-35 {
    margin-bottom: 35px;
  }
  .mb-1366-30 {
    margin-bottom: 30px;
  }
  .mb-1366-25 {
    margin-bottom: 25px;
  }
  .mb-1366-20 {
    margin-bottom: 20px;
  }
  .mb-1366-15 {
    margin-bottom: 15px;
  }
  .mb-1366-10 {
    margin-bottom: 10px;
  }
  .mb-1366-5 {
    margin-bottom: 5px;
  }
  .mb-1366-0 {
    margin-bottom: 0px;
  }
}
@media all and (max-width: 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;
  }
  .g-1200-10 {
    grid-template-columns: repeat(10, 1fr);
  }
  .g-1200-9 {
    grid-template-columns: repeat(9, 1fr);
  }
  .g-1200-8 {
    grid-template-columns: repeat(8, 1fr);
  }
  .g-1200-7 {
    grid-template-columns: repeat(7, 1fr);
  }
  .g-1200-6 {
    grid-template-columns: repeat(6, 1fr);
  }
  .g-1200-5 {
    grid-template-columns: repeat(5, 1fr);
  }
  .g-1200-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .g-1200-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .g-1200-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .g-1200-1 {
    grid-template-columns: repeat(1, 1fr);
  }
  .gp-1200-70 {
    gap: 70px;
  }
  .gp-1200-65 {
    gap: 65px;
  }
  .gp-1200-60 {
    gap: 60px;
  }
  .gp-1200-55 {
    gap: 55px;
  }
  .gp-1200-50 {
    gap: 50px;
  }
  .gp-1200-45 {
    gap: 45px;
  }
  .gp-1200-40 {
    gap: 40px;
  }
  .gp-1200-35 {
    gap: 35px;
  }
  .gp-1200-30 {
    gap: 30px;
  }
  .gp-1200-25 {
    gap: 25px;
  }
  .gp-1200-20 {
    gap: 20px;
  }
  .gp-1200-15 {
    gap: 15px;
  }
  .gp-1200-10 {
    gap: 10px;
  }
  .gp-1200-5 {
    gap: 5px;
  }
  .gp-1200-0 {
    gap: 0px;
  }
  .w-1200-33 {
    width: 33%;
  }
  .w-1200-16 {
    width: 16.666666%;
  }
  .mb-1200-100 {
    margin-bottom: 100px;
  }
  .mb-1200-95 {
    margin-bottom: 95px;
  }
  .mb-1200-90 {
    margin-bottom: 90px;
  }
  .mb-1200-85 {
    margin-bottom: 85px;
  }
  .mb-1200-80 {
    margin-bottom: 80px;
  }
  .mb-1200-75 {
    margin-bottom: 75px;
  }
  .mb-1200-70 {
    margin-bottom: 70px;
  }
  .mb-1200-65 {
    margin-bottom: 65px;
  }
  .mb-1200-60 {
    margin-bottom: 60px;
  }
  .mb-1200-55 {
    margin-bottom: 55px;
  }
  .mb-1200-50 {
    margin-bottom: 50px;
  }
  .mb-1200-45 {
    margin-bottom: 45px;
  }
  .mb-1200-40 {
    margin-bottom: 40px;
  }
  .mb-1200-35 {
    margin-bottom: 35px;
  }
  .mb-1200-30 {
    margin-bottom: 30px;
  }
  .mb-1200-25 {
    margin-bottom: 25px;
  }
  .mb-1200-20 {
    margin-bottom: 20px;
  }
  .mb-1200-15 {
    margin-bottom: 15px;
  }
  .mb-1200-10 {
    margin-bottom: 10px;
  }
  .mb-1200-5 {
    margin-bottom: 5px;
  }
  .mb-1200-0 {
    margin-bottom: 0px;
  }
}
@media all and (max-width: 1024px) {
  .f-1024-10 .f-col {
    width: 10%;
  }
  .f-1024-9 .f-col {
    width: 11.11111111%;
  }
  .f-1024-8 .f-col {
    width: 12.5%;
  }
  .f-1024-7 .f-col {
    width: 14.28571429%;
  }
  .f-1024-6 .f-col {
    width: 16.66666667%;
  }
  .f-1024-5 .f-col {
    width: 20%;
  }
  .f-1024-4 .f-col {
    width: 25%;
  }
  .f-1024-3 .f-col {
    width: 33.33333333%;
  }
  .f-1024-2 .f-col {
    width: 50%;
  }
  .f-1024-1 .f-col {
    width: 100%;
  }
  .g-1024-10 {
    grid-template-columns: repeat(10, 1fr);
  }
  .g-1024-9 {
    grid-template-columns: repeat(9, 1fr);
  }
  .g-1024-8 {
    grid-template-columns: repeat(8, 1fr);
  }
  .g-1024-7 {
    grid-template-columns: repeat(7, 1fr);
  }
  .g-1024-6 {
    grid-template-columns: repeat(6, 1fr);
  }
  .g-1024-5 {
    grid-template-columns: repeat(5, 1fr);
  }
  .g-1024-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .g-1024-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .g-1024-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .g-1024-1 {
    grid-template-columns: repeat(1, 1fr);
  }
  .gp-1024-70 {
    gap: 70px;
  }
  .gp-1024-65 {
    gap: 65px;
  }
  .gp-1024-60 {
    gap: 60px;
  }
  .gp-1024-55 {
    gap: 55px;
  }
  .gp-1024-50 {
    gap: 50px;
  }
  .gp-1024-45 {
    gap: 45px;
  }
  .gp-1024-40 {
    gap: 40px;
  }
  .gp-1024-35 {
    gap: 35px;
  }
  .gp-1024-30 {
    gap: 30px;
  }
  .gp-1024-25 {
    gap: 25px;
  }
  .gp-1024-20 {
    gap: 20px;
  }
  .gp-1024-15 {
    gap: 15px;
  }
  .gp-1024-10 {
    gap: 10px;
  }
  .gp-1024-5 {
    gap: 5px;
  }
  .gp-1024-0 {
    gap: 0px;
  }
  .w-1024-100 {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-1024-95 {
    width: 95%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-1024-90 {
    width: 90%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-1024-85 {
    width: 85%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-1024-80 {
    width: 80%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-1024-75 {
    width: 75%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-1024-70 {
    width: 70%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-1024-65 {
    width: 65%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-1024-60 {
    width: 60%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-1024-55 {
    width: 55%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-1024-50 {
    width: 50%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-1024-45 {
    width: 45%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-1024-40 {
    width: 40%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-1024-35 {
    width: 35%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-1024-30 {
    width: 30%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-1024-25 {
    width: 25%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-1024-20 {
    width: 20%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-1024-15 {
    width: 15%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-1024-10 {
    width: 10%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-1024-5 {
    width: 5%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-1024-33 {
    width: 33%;
  }
  .w-1024-16 {
    width: 16.666666%;
  }
  .mb-1024-100 {
    margin-bottom: 100px;
  }
  .mb-1024-95 {
    margin-bottom: 95px;
  }
  .mb-1024-90 {
    margin-bottom: 90px;
  }
  .mb-1024-85 {
    margin-bottom: 85px;
  }
  .mb-1024-80 {
    margin-bottom: 80px;
  }
  .mb-1024-75 {
    margin-bottom: 75px;
  }
  .mb-1024-70 {
    margin-bottom: 70px;
  }
  .mb-1024-65 {
    margin-bottom: 65px;
  }
  .mb-1024-60 {
    margin-bottom: 60px;
  }
  .mb-1024-55 {
    margin-bottom: 55px;
  }
  .mb-1024-50 {
    margin-bottom: 50px;
  }
  .mb-1024-45 {
    margin-bottom: 45px;
  }
  .mb-1024-40 {
    margin-bottom: 40px;
  }
  .mb-1024-35 {
    margin-bottom: 35px;
  }
  .mb-1024-30 {
    margin-bottom: 30px;
  }
  .mb-1024-25 {
    margin-bottom: 25px;
  }
  .mb-1024-20 {
    margin-bottom: 20px;
  }
  .mb-1024-15 {
    margin-bottom: 15px;
  }
  .mb-1024-10 {
    margin-bottom: 10px;
  }
  .mb-1024-5 {
    margin-bottom: 5px;
  }
  .mb-1024-0 {
    margin-bottom: 0px;
  }
}
@media all and (max-width: 990px) {
  .f-990-10 .f-col {
    width: 10%;
  }
  .f-990-9 .f-col {
    width: 11.11111111%;
  }
  .f-990-8 .f-col {
    width: 12.5%;
  }
  .f-990-7 .f-col {
    width: 14.28571429%;
  }
  .f-990-6 .f-col {
    width: 16.66666667%;
  }
  .f-990-5 .f-col {
    width: 20%;
  }
  .f-990-4 .f-col {
    width: 25%;
  }
  .f-990-3 .f-col {
    width: 33.33333333%;
  }
  .f-990-2 .f-col {
    width: 50%;
  }
  .f-990-1 .f-col {
    width: 100%;
  }
  .w-990-100 {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-990-95 {
    width: 95%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-990-90 {
    width: 90%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-990-85 {
    width: 85%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-990-80 {
    width: 80%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-990-75 {
    width: 75%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-990-70 {
    width: 70%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-990-65 {
    width: 65%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-990-60 {
    width: 60%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-990-55 {
    width: 55%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-990-50 {
    width: 50%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-990-45 {
    width: 45%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-990-40 {
    width: 40%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-990-35 {
    width: 35%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-990-30 {
    width: 30%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-990-25 {
    width: 25%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-990-20 {
    width: 20%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-990-15 {
    width: 15%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-990-10 {
    width: 10%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-990-5 {
    width: 5%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .g-990-10 {
    grid-template-columns: repeat(10, 1fr);
  }
  .g-990-9 {
    grid-template-columns: repeat(9, 1fr);
  }
  .g-990-8 {
    grid-template-columns: repeat(8, 1fr);
  }
  .g-990-7 {
    grid-template-columns: repeat(7, 1fr);
  }
  .g-990-6 {
    grid-template-columns: repeat(6, 1fr);
  }
  .g-990-5 {
    grid-template-columns: repeat(5, 1fr);
  }
  .g-990-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .g-990-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .g-990-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .g-990-1 {
    grid-template-columns: repeat(1, 1fr);
  }
  .gp-990-70 {
    gap: 70px;
  }
  .gp-990-65 {
    gap: 65px;
  }
  .gp-990-60 {
    gap: 60px;
  }
  .gp-990-55 {
    gap: 55px;
  }
  .gp-990-50 {
    gap: 50px;
  }
  .gp-990-45 {
    gap: 45px;
  }
  .gp-990-40 {
    gap: 40px;
  }
  .gp-990-35 {
    gap: 35px;
  }
  .gp-990-30 {
    gap: 30px;
  }
  .gp-990-25 {
    gap: 25px;
  }
  .gp-990-20 {
    gap: 20px;
  }
  .gp-990-15 {
    gap: 15px;
  }
  .gp-990-10 {
    gap: 10px;
  }
  .gp-990-5 {
    gap: 5px;
  }
  .gp-990-0 {
    gap: 0px;
  }
  .w-990-33 {
    width: 33%;
  }
  .w-990-16 {
    width: 16.666666%;
  }
  .mb-990-100 {
    margin-bottom: 100px;
  }
  .mb-990-95 {
    margin-bottom: 95px;
  }
  .mb-990-90 {
    margin-bottom: 90px;
  }
  .mb-990-85 {
    margin-bottom: 85px;
  }
  .mb-990-80 {
    margin-bottom: 80px;
  }
  .mb-990-75 {
    margin-bottom: 75px;
  }
  .mb-990-70 {
    margin-bottom: 70px;
  }
  .mb-990-65 {
    margin-bottom: 65px;
  }
  .mb-990-60 {
    margin-bottom: 60px;
  }
  .mb-990-55 {
    margin-bottom: 55px;
  }
  .mb-990-50 {
    margin-bottom: 50px;
  }
  .mb-990-45 {
    margin-bottom: 45px;
  }
  .mb-990-40 {
    margin-bottom: 40px;
  }
  .mb-990-35 {
    margin-bottom: 35px;
  }
  .mb-990-30 {
    margin-bottom: 30px;
  }
  .mb-990-25 {
    margin-bottom: 25px;
  }
  .mb-990-20 {
    margin-bottom: 20px;
  }
  .mb-990-15 {
    margin-bottom: 15px;
  }
  .mb-990-10 {
    margin-bottom: 10px;
  }
  .mb-990-5 {
    margin-bottom: 5px;
  }
  .mb-990-0 {
    margin-bottom: 0px;
  }
}
@media all and (max-width: 768px) {
  .f-768-10 .f-col {
    width: 10%;
  }
  .f-768-9 .f-col {
    width: 11.11111111%;
  }
  .f-768-8 .f-col {
    width: 12.5%;
  }
  .f-768-7 .f-col {
    width: 14.28571429%;
  }
  .f-768-6 .f-col {
    width: 16.66666667%;
  }
  .f-768-5 .f-col {
    width: 20%;
  }
  .f-768-4 .f-col {
    width: 25%;
  }
  .f-768-3 .f-col {
    width: 33.33333333%;
  }
  .f-768-2 .f-col {
    width: 50%;
  }
  .f-768-1 .f-col {
    width: 100%;
  }
  .w-768-100 {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-768-95 {
    width: 95%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-768-90 {
    width: 90%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-768-85 {
    width: 85%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-768-80 {
    width: 80%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-768-75 {
    width: 75%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-768-70 {
    width: 70%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-768-65 {
    width: 65%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-768-60 {
    width: 60%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-768-55 {
    width: 55%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-768-50 {
    width: 50%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-768-45 {
    width: 45%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-768-40 {
    width: 40%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-768-35 {
    width: 35%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-768-30 {
    width: 30%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-768-25 {
    width: 25%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-768-20 {
    width: 20%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-768-15 {
    width: 15%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-768-10 {
    width: 10%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-768-5 {
    width: 5%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .g-768-10 {
    grid-template-columns: repeat(10, 1fr);
  }
  .g-768-9 {
    grid-template-columns: repeat(9, 1fr);
  }
  .g-768-8 {
    grid-template-columns: repeat(8, 1fr);
  }
  .g-768-7 {
    grid-template-columns: repeat(7, 1fr);
  }
  .g-768-6 {
    grid-template-columns: repeat(6, 1fr);
  }
  .g-768-5 {
    grid-template-columns: repeat(5, 1fr);
  }
  .g-768-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .g-768-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .g-768-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .g-768-1 {
    grid-template-columns: repeat(1, 1fr);
  }
  .gp-768-70 {
    gap: 70px;
  }
  .gp-768-65 {
    gap: 65px;
  }
  .gp-768-60 {
    gap: 60px;
  }
  .gp-768-55 {
    gap: 55px;
  }
  .gp-768-50 {
    gap: 50px;
  }
  .gp-768-45 {
    gap: 45px;
  }
  .gp-768-40 {
    gap: 40px;
  }
  .gp-768-35 {
    gap: 35px;
  }
  .gp-768-30 {
    gap: 30px;
  }
  .gp-768-25 {
    gap: 25px;
  }
  .gp-768-20 {
    gap: 20px;
  }
  .gp-768-15 {
    gap: 15px;
  }
  .gp-768-10 {
    gap: 10px;
  }
  .gp-768-5 {
    gap: 5px;
  }
  .gp-768-0 {
    gap: 0px;
  }
  .w-768-33 {
    width: 33%;
  }
  .w-768-16 {
    width: 16.666666%;
  }
  .mb-768-100 {
    margin-bottom: 100px;
  }
  .mb-768-95 {
    margin-bottom: 95px;
  }
  .mb-768-90 {
    margin-bottom: 90px;
  }
  .mb-768-85 {
    margin-bottom: 85px;
  }
  .mb-768-80 {
    margin-bottom: 80px;
  }
  .mb-768-75 {
    margin-bottom: 75px;
  }
  .mb-768-70 {
    margin-bottom: 70px;
  }
  .mb-768-65 {
    margin-bottom: 65px;
  }
  .mb-768-60 {
    margin-bottom: 60px;
  }
  .mb-768-55 {
    margin-bottom: 55px;
  }
  .mb-768-50 {
    margin-bottom: 50px;
  }
  .mb-768-45 {
    margin-bottom: 45px;
  }
  .mb-768-40 {
    margin-bottom: 40px;
  }
  .mb-768-35 {
    margin-bottom: 35px;
  }
  .mb-768-30 {
    margin-bottom: 30px;
  }
  .mb-768-25 {
    margin-bottom: 25px;
  }
  .mb-768-20 {
    margin-bottom: 20px;
  }
  .mb-768-15 {
    margin-bottom: 15px;
  }
  .mb-768-10 {
    margin-bottom: 10px;
  }
  .mb-768-5 {
    margin-bottom: 5px;
  }
  .mb-768-0 {
    margin-bottom: 0px;
  }
}
@media all and (max-width: 640px) {
  .f-640-10 .f-col {
    width: 10%;
  }
  .f-640-9 .f-col {
    width: 11.11111111%;
  }
  .f-640-8 .f-col {
    width: 12.5%;
  }
  .f-640-7 .f-col {
    width: 14.28571429%;
  }
  .f-640-6 .f-col {
    width: 16.66666667%;
  }
  .f-640-5 .f-col {
    width: 20%;
  }
  .f-640-4 .f-col {
    width: 25%;
  }
  .f-640-3 .f-col {
    width: 33.33333333%;
  }
  .f-640-2 .f-col {
    width: 50%;
  }
  .f-640-1 .f-col {
    width: 100%;
  }
  .w-640-100 {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-640-95 {
    width: 95%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-640-90 {
    width: 90%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-640-85 {
    width: 85%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-640-80 {
    width: 80%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-640-75 {
    width: 75%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-640-70 {
    width: 70%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-640-65 {
    width: 65%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-640-60 {
    width: 60%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-640-55 {
    width: 55%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-640-50 {
    width: 50%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-640-45 {
    width: 45%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-640-40 {
    width: 40%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-640-35 {
    width: 35%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-640-30 {
    width: 30%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-640-25 {
    width: 25%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-640-20 {
    width: 20%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-640-15 {
    width: 15%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-640-10 {
    width: 10%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-640-5 {
    width: 5%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .g-640-10 {
    grid-template-columns: repeat(10, 1fr);
  }
  .g-640-9 {
    grid-template-columns: repeat(9, 1fr);
  }
  .g-640-8 {
    grid-template-columns: repeat(8, 1fr);
  }
  .g-640-7 {
    grid-template-columns: repeat(7, 1fr);
  }
  .g-640-6 {
    grid-template-columns: repeat(6, 1fr);
  }
  .g-640-5 {
    grid-template-columns: repeat(5, 1fr);
  }
  .g-640-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .g-640-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .g-640-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .g-640-1 {
    grid-template-columns: repeat(1, 1fr);
  }
  .gp-640-70 {
    gap: 70px;
  }
  .gp-640-65 {
    gap: 65px;
  }
  .gp-640-60 {
    gap: 60px;
  }
  .gp-640-55 {
    gap: 55px;
  }
  .gp-640-50 {
    gap: 50px;
  }
  .gp-640-45 {
    gap: 45px;
  }
  .gp-640-40 {
    gap: 40px;
  }
  .gp-640-35 {
    gap: 35px;
  }
  .gp-640-30 {
    gap: 30px;
  }
  .gp-640-25 {
    gap: 25px;
  }
  .gp-640-20 {
    gap: 20px;
  }
  .gp-640-15 {
    gap: 15px;
  }
  .gp-640-10 {
    gap: 10px;
  }
  .gp-640-5 {
    gap: 5px;
  }
  .gp-640-0 {
    gap: 0px;
  }
  .w-640-33 {
    width: 33%;
  }
  .w-640-16 {
    width: 16.666666%;
  }
  .mb-640-100 {
    margin-bottom: 100px;
  }
  .mb-640-95 {
    margin-bottom: 95px;
  }
  .mb-640-90 {
    margin-bottom: 90px;
  }
  .mb-640-85 {
    margin-bottom: 85px;
  }
  .mb-640-80 {
    margin-bottom: 80px;
  }
  .mb-640-75 {
    margin-bottom: 75px;
  }
  .mb-640-70 {
    margin-bottom: 70px;
  }
  .mb-640-65 {
    margin-bottom: 65px;
  }
  .mb-640-60 {
    margin-bottom: 60px;
  }
  .mb-640-55 {
    margin-bottom: 55px;
  }
  .mb-640-50 {
    margin-bottom: 50px;
  }
  .mb-640-45 {
    margin-bottom: 45px;
  }
  .mb-640-40 {
    margin-bottom: 40px;
  }
  .mb-640-35 {
    margin-bottom: 35px;
  }
  .mb-640-30 {
    margin-bottom: 30px;
  }
  .mb-640-25 {
    margin-bottom: 25px;
  }
  .mb-640-20 {
    margin-bottom: 20px;
  }
  .mb-640-15 {
    margin-bottom: 15px;
  }
  .mb-640-10 {
    margin-bottom: 10px;
  }
  .mb-640-5 {
    margin-bottom: 5px;
  }
  .mb-640-0 {
    margin-bottom: 0px;
  }
}
@media all and (max-width: 576px) {
  .f-576-10 .f-col {
    width: 10%;
  }
  .f-576-9 .f-col {
    width: 11.11111111%;
  }
  .f-576-8 .f-col {
    width: 12.5%;
  }
  .f-576-7 .f-col {
    width: 14.28571429%;
  }
  .f-576-6 .f-col {
    width: 16.66666667%;
  }
  .f-576-5 .f-col {
    width: 20%;
  }
  .f-576-4 .f-col {
    width: 25%;
  }
  .f-576-3 .f-col {
    width: 33.33333333%;
  }
  .f-576-2 .f-col {
    width: 50%;
  }
  .f-576-1 .f-col {
    width: 100%;
  }
  .g-576-10 {
    grid-template-columns: repeat(10, 1fr);
  }
  .g-576-9 {
    grid-template-columns: repeat(9, 1fr);
  }
  .g-576-8 {
    grid-template-columns: repeat(8, 1fr);
  }
  .g-576-7 {
    grid-template-columns: repeat(7, 1fr);
  }
  .g-576-6 {
    grid-template-columns: repeat(6, 1fr);
  }
  .g-576-5 {
    grid-template-columns: repeat(5, 1fr);
  }
  .g-576-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .g-576-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .g-576-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .g-576-1 {
    grid-template-columns: repeat(1, 1fr);
  }
  .gp-576-70 {
    gap: 70px;
  }
  .gp-576-65 {
    gap: 65px;
  }
  .gp-576-60 {
    gap: 60px;
  }
  .gp-576-55 {
    gap: 55px;
  }
  .gp-576-50 {
    gap: 50px;
  }
  .gp-576-45 {
    gap: 45px;
  }
  .gp-576-40 {
    gap: 40px;
  }
  .gp-576-35 {
    gap: 35px;
  }
  .gp-576-30 {
    gap: 30px;
  }
  .gp-576-25 {
    gap: 25px;
  }
  .gp-576-20 {
    gap: 20px;
  }
  .gp-576-15 {
    gap: 15px;
  }
  .gp-576-10 {
    gap: 10px;
  }
  .gp-576-5 {
    gap: 5px;
  }
  .gp-576-0 {
    gap: 0px;
  }
  .w-576-100 {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-576-95 {
    width: 95%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-576-90 {
    width: 90%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-576-85 {
    width: 85%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-576-80 {
    width: 80%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-576-75 {
    width: 75%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-576-70 {
    width: 70%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-576-65 {
    width: 65%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-576-60 {
    width: 60%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-576-55 {
    width: 55%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-576-50 {
    width: 50%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-576-45 {
    width: 45%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-576-40 {
    width: 40%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-576-35 {
    width: 35%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-576-30 {
    width: 30%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-576-25 {
    width: 25%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-576-20 {
    width: 20%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-576-15 {
    width: 15%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-576-10 {
    width: 10%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-576-5 {
    width: 5%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-576-33 {
    width: 33%;
  }
  .w-576-16 {
    width: 16.666666%;
  }
  .mb-576-100 {
    margin-bottom: 100px;
  }
  .mb-576-95 {
    margin-bottom: 95px;
  }
  .mb-576-90 {
    margin-bottom: 90px;
  }
  .mb-576-85 {
    margin-bottom: 85px;
  }
  .mb-576-80 {
    margin-bottom: 80px;
  }
  .mb-576-75 {
    margin-bottom: 75px;
  }
  .mb-576-70 {
    margin-bottom: 70px;
  }
  .mb-576-65 {
    margin-bottom: 65px;
  }
  .mb-576-60 {
    margin-bottom: 60px;
  }
  .mb-576-55 {
    margin-bottom: 55px;
  }
  .mb-576-50 {
    margin-bottom: 50px;
  }
  .mb-576-45 {
    margin-bottom: 45px;
  }
  .mb-576-40 {
    margin-bottom: 40px;
  }
  .mb-576-35 {
    margin-bottom: 35px;
  }
  .mb-576-30 {
    margin-bottom: 30px;
  }
  .mb-576-25 {
    margin-bottom: 25px;
  }
  .mb-576-20 {
    margin-bottom: 20px;
  }
  .mb-576-15 {
    margin-bottom: 15px;
  }
  .mb-576-10 {
    margin-bottom: 10px;
  }
  .mb-576-5 {
    margin-bottom: 5px;
  }
  .mb-576-0 {
    margin-bottom: 0px;
  }
}
@media all and (max-width: 480px) {
  .f-480-10 .f-col {
    width: 10%;
  }
  .f-480-9 .f-col {
    width: 11.11111111%;
  }
  .f-480-8 .f-col {
    width: 12.5%;
  }
  .f-480-7 .f-col {
    width: 14.28571429%;
  }
  .f-480-6 .f-col {
    width: 16.66666667%;
  }
  .f-480-5 .f-col {
    width: 20%;
  }
  .f-480-4 .f-col {
    width: 25%;
  }
  .f-480-3 .f-col {
    width: 33.33333333%;
  }
  .f-480-2 .f-col {
    width: 50%;
  }
  .f-480-1 .f-col {
    width: 100%;
  }
  .w-480-100 {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-480-95 {
    width: 95%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-480-90 {
    width: 90%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-480-85 {
    width: 85%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-480-80 {
    width: 80%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-480-75 {
    width: 75%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-480-70 {
    width: 70%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-480-65 {
    width: 65%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-480-60 {
    width: 60%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-480-55 {
    width: 55%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-480-50 {
    width: 50%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-480-45 {
    width: 45%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-480-40 {
    width: 40%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-480-35 {
    width: 35%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-480-30 {
    width: 30%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-480-25 {
    width: 25%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-480-20 {
    width: 20%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-480-15 {
    width: 15%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-480-10 {
    width: 10%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-480-5 {
    width: 5%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .g-480-10 {
    grid-template-columns: repeat(10, 1fr);
  }
  .g-480-9 {
    grid-template-columns: repeat(9, 1fr);
  }
  .g-480-8 {
    grid-template-columns: repeat(8, 1fr);
  }
  .g-480-7 {
    grid-template-columns: repeat(7, 1fr);
  }
  .g-480-6 {
    grid-template-columns: repeat(6, 1fr);
  }
  .g-480-5 {
    grid-template-columns: repeat(5, 1fr);
  }
  .g-480-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .g-480-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .g-480-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .g-480-1 {
    grid-template-columns: repeat(1, 1fr);
  }
  .gp-480-70 {
    gap: 70px;
  }
  .gp-480-65 {
    gap: 65px;
  }
  .gp-480-60 {
    gap: 60px;
  }
  .gp-480-55 {
    gap: 55px;
  }
  .gp-480-50 {
    gap: 50px;
  }
  .gp-480-45 {
    gap: 45px;
  }
  .gp-480-40 {
    gap: 40px;
  }
  .gp-480-35 {
    gap: 35px;
  }
  .gp-480-30 {
    gap: 30px;
  }
  .gp-480-25 {
    gap: 25px;
  }
  .gp-480-20 {
    gap: 20px;
  }
  .gp-480-15 {
    gap: 15px;
  }
  .gp-480-10 {
    gap: 10px;
  }
  .gp-480-5 {
    gap: 5px;
  }
  .gp-480-0 {
    gap: 0px;
  }
  .w-480-33 {
    width: 33%;
  }
  .w-480-16 {
    width: 16.666666%;
  }
  .mb-480-100 {
    margin-bottom: 100px;
  }
  .mb-480-95 {
    margin-bottom: 95px;
  }
  .mb-480-90 {
    margin-bottom: 90px;
  }
  .mb-480-85 {
    margin-bottom: 85px;
  }
  .mb-480-80 {
    margin-bottom: 80px;
  }
  .mb-480-75 {
    margin-bottom: 75px;
  }
  .mb-480-70 {
    margin-bottom: 70px;
  }
  .mb-480-65 {
    margin-bottom: 65px;
  }
  .mb-480-60 {
    margin-bottom: 60px;
  }
  .mb-480-55 {
    margin-bottom: 55px;
  }
  .mb-480-50 {
    margin-bottom: 50px;
  }
  .mb-480-45 {
    margin-bottom: 45px;
  }
  .mb-480-40 {
    margin-bottom: 40px;
  }
  .mb-480-35 {
    margin-bottom: 35px;
  }
  .mb-480-30 {
    margin-bottom: 30px;
  }
  .mb-480-25 {
    margin-bottom: 25px;
  }
  .mb-480-20 {
    margin-bottom: 20px;
  }
  .mb-480-15 {
    margin-bottom: 15px;
  }
  .mb-480-10 {
    margin-bottom: 10px;
  }
  .mb-480-5 {
    margin-bottom: 5px;
  }
  .mb-480-0 {
    margin-bottom: 0px;
  }
}
@media all and (max-width: 400px) {
  .f-400-10 .f-col {
    width: 10%;
  }
  .f-400-9 .f-col {
    width: 11.11111111%;
  }
  .f-400-8 .f-col {
    width: 12.5%;
  }
  .f-400-7 .f-col {
    width: 14.28571429%;
  }
  .f-400-6 .f-col {
    width: 16.66666667%;
  }
  .f-400-5 .f-col {
    width: 20%;
  }
  .f-400-4 .f-col {
    width: 25%;
  }
  .f-400-3 .f-col {
    width: 33.33333333%;
  }
  .f-400-2 .f-col {
    width: 50%;
  }
  .f-400-1 .f-col {
    width: 100%;
  }
  .w-400-100 {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-400-95 {
    width: 95%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-400-90 {
    width: 90%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-400-85 {
    width: 85%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-400-80 {
    width: 80%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-400-75 {
    width: 75%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-400-70 {
    width: 70%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-400-65 {
    width: 65%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-400-60 {
    width: 60%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-400-55 {
    width: 55%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-400-50 {
    width: 50%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-400-45 {
    width: 45%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-400-40 {
    width: 40%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-400-35 {
    width: 35%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-400-30 {
    width: 30%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-400-25 {
    width: 25%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-400-20 {
    width: 20%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-400-15 {
    width: 15%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-400-10 {
    width: 10%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .w-400-5 {
    width: 5%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .g-400-10 {
    grid-template-columns: repeat(10, 1fr);
  }
  .g-400-9 {
    grid-template-columns: repeat(9, 1fr);
  }
  .g-400-8 {
    grid-template-columns: repeat(8, 1fr);
  }
  .g-400-7 {
    grid-template-columns: repeat(7, 1fr);
  }
  .g-400-6 {
    grid-template-columns: repeat(6, 1fr);
  }
  .g-400-5 {
    grid-template-columns: repeat(5, 1fr);
  }
  .g-400-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .g-400-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .g-400-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .g-400-1 {
    grid-template-columns: repeat(1, 1fr);
  }
  .gp-400-70 {
    gap: 70px;
  }
  .gp-400-65 {
    gap: 65px;
  }
  .gp-400-60 {
    gap: 60px;
  }
  .gp-400-55 {
    gap: 55px;
  }
  .gp-400-50 {
    gap: 50px;
  }
  .gp-400-45 {
    gap: 45px;
  }
  .gp-400-40 {
    gap: 40px;
  }
  .gp-400-35 {
    gap: 35px;
  }
  .gp-400-30 {
    gap: 30px;
  }
  .gp-400-25 {
    gap: 25px;
  }
  .gp-400-20 {
    gap: 20px;
  }
  .gp-400-15 {
    gap: 15px;
  }
  .gp-400-10 {
    gap: 10px;
  }
  .gp-400-5 {
    gap: 5px;
  }
  .gp-400-0 {
    gap: 0px;
  }
  .w-400-33 {
    width: 33%;
  }
  .w-400-16 {
    width: 16.666666%;
  }
  .mb-400-100 {
    margin-bottom: 100px;
  }
  .mb-400-95 {
    margin-bottom: 95px;
  }
  .mb-400-90 {
    margin-bottom: 90px;
  }
  .mb-400-85 {
    margin-bottom: 85px;
  }
  .mb-400-80 {
    margin-bottom: 80px;
  }
  .mb-400-75 {
    margin-bottom: 75px;
  }
  .mb-400-70 {
    margin-bottom: 70px;
  }
  .mb-400-65 {
    margin-bottom: 65px;
  }
  .mb-400-60 {
    margin-bottom: 60px;
  }
  .mb-400-55 {
    margin-bottom: 55px;
  }
  .mb-400-50 {
    margin-bottom: 50px;
  }
  .mb-400-45 {
    margin-bottom: 45px;
  }
  .mb-400-40 {
    margin-bottom: 40px;
  }
  .mb-400-35 {
    margin-bottom: 35px;
  }
  .mb-400-30 {
    margin-bottom: 30px;
  }
  .mb-400-25 {
    margin-bottom: 25px;
  }
  .mb-400-20 {
    margin-bottom: 20px;
  }
  .mb-400-15 {
    margin-bottom: 15px;
  }
  .mb-400-10 {
    margin-bottom: 10px;
  }
  .mb-400-5 {
    margin-bottom: 5px;
  }
  .mb-400-0 {
    margin-bottom: 0px;
  }
}
/*==========================================================================
=> Global Styles
========================================================================== */
*,
*:before,
*:after {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}
audio,
canvas,
video {
  display: inline-block;
}
audio:not([controls]) {
  display: none;
  height: 0;
}
[hidden] {
  display: none;
}
html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  width: 100%;
}
body {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}
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: 0;
}
button,
input {
  line-height: normal;
}
button,
select {
  text-transform: none;
}
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}
button[disabled],
html input[disabled] {
  cursor: default;
}
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}
input[type="search"] {
  -webkit-appearance: textfield;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
textarea {
  overflow: auto;
  vertical-align: top;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
input,
button,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
button,
input,
select[multiple],
textarea {
  background-image: none;
}
a {
  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}
a:active,
a:hover,
a:focus {
  outline: 0;
  text-decoration: none;
}
img {
  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;
}
/*==========================================================================
=> checkbox contact form 7
========================================================================== */
span.wpcf7-list-item {
  display: block;
}
.wpcf7-list-item {
  display: flex;
  align-items: center;
  margin: 0 0 40px 0;
}
.wpcf7-list-item input {
  display: none;
}
.wpcf7-list-item-label {
  font-size: 24px;
  line-height: 1.1;
  color: #000000;
  position: relative;
  cursor: pointer;
  padding-left: 48px;
  display: block;
}
.wpcf7-list-item input[type="checkbox"] ~ span::before {
  content: "";
  -webkit-appearance: none;
  background-color: transparent;
  border: 1px solid #000;
  padding: 10px;
  display: inline-block;
  position: absolute;
  left: 0;
  vertical-align: middle;
  cursor: pointer;
  width: 26px;
  height: 26px;
  border-radius: 6px;
}
.wpcf7-list-item input[type="checkbox"]:checked ~ span::after {
  content: "";
  display: block;
  position: absolute;
  top: 5px;
  left: 10px;
  width: 7px;
  height: 14px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  border-bottom-right-radius: 2px;
}
.wpcf7-list-item input[type="checkbox"]:checked ~ span::before {
  background: #03333f;
  border: 1px solid #03333f;
}
.wpcf7-list-item-label::before,
.wpcf7-list-item-label::after {
  content: " ";
  display: none;
}
.wpcf7-form .button {
  margin-right: 10px;
}
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
  border: none;
  color: #ff6900;
}
/*==========================================================================
=> buttons
========================================================================== */
.button {
  border: none;
  outline: none;
  border: 1px solid transparent;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 65px;
  line-height: 65px;
  padding: 0 30px;
  background: var(--Db-purple);
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
}
.button:hover {
  background: transparent;
  border: 1px solid var(--button-fill);
  color: var(--button-fill);
}
.button.line {
  background: transparent;
  border: 1px solid var(--button-line);
  color: var(--button-line);
}
.button.line:hover {
  background: var(--button-line);
  border: 1px solid var(--button-line);
  color: #fff;
}
.button.white {
  background: var(--Db-white);
  color: var(--Db-black);
}
.button.white:hover {
  background: var(--button-line);
  border: 1px solid var(--button-line);
  color: #fff;
}
.button.center {
  width: fit-content;
  margin: 0 auto;
  display: flex;
}
.button:hover,
.button:focus,
.button:active {
  text-decoration: none;
  outline: none;
}
button:focus {
  outline: none;
}
.button--block {
  width: 100%;
}
.button svg {
  position: relative;
  top: -2px;
}
.button svg path {
  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
}
.button .phone {
  margin-right: 5px;
}
/*==========================================================================
=> Form Elements
========================================================================== */
.element-section {
  padding: 50px 0;
  border-bottom: 1px solid #ddd;
}
.element-section .ehdn1 {
  margin-bottom: 30px;
}
.element-section .ehdn2 {
  font-size: 18px;
  margin-bottom: 20px;
  margin-top: 30px;
}
.myElem {
  display: block;
  border: 1px solid #ccc;
  padding: 20px;
  text-align: center;
}
.form-grp,
.form-textarea-group {
  position: relative;
  margin-top: 8px;
  margin-bottom: 30px;
}
.form-grp .inputError {
  border-bottom: 1px solid var(--input-error);
}
.error-msg {
  font-size: 12px;
  color: var(--input-error);
  margin: 0;
}
.error-msg2 {
  font-size: 12px;
  color: var(--input-error);
  margin-bottom: 20px;
}
.whatsapp {
  margin-right: 0;
}
.form-field {
  height: 56px;
  font-size: var(--fs16);
  border: 1px solid #ced8de;
  width: 100%;
  z-index: 2;
  position: relative;
  background: transparent;
  color: var(--Db-black);
  outline: none;
  padding: 0 16px;
  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: 1px solid var(--button-fill);
}
.form-label {
  color: var(--Indium-Black, #101010);
  font-size: var(--fs16);
  font-weight: 600;
  line-height: 1.5;
  text-transform: capitalize;
  margin-bottom: 8px;
}
.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: #82929a;
}
input::-webkit-input-placeholder {
  color: #82929a;
}
label.error {
  font-weight: 400;
  margin: 0;
  margin-top: 5px;
  line-height: 2;
  font-size: 14px;
  color: #f71336;
  position: relative;
}
/*==========================================================================
=> Radio Small
========================================================================== */
.radio-box {
  position: relative;
  display: inline-block;
  margin-right: 20px;
  margin-bottom: 30px;
}
.radio-box input {
  position: absolute;
  width: 0;
  opacity: 0;
}
.radio-box label {
  font-size: 18px;
  color: #000;
  margin: 0;
  padding: 5px;
  padding-left: 36px;
  cursor: pointer;
  position: relative;
}
.radio-box label:before {
  content: "";
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid #a24eea;
  display: inline-block;
  position: absolute;
  left: 0;
  top: 5px;
  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
}
.radio-box input:checked ~ label::before {
  border: 7px solid #a24eea;
}
.radio-box label.error {
  display: none !important;
}
.radio-box input.error ~ label {
  color: #ff2323;
}
.radio-box input.error ~ .chk-label:before {
  border: 1px solid #ff2323;
}
/* // Radio Box */
/*==========================================================================
=> Checkbox Small
========================================================================== */
.checkbox-box {
  position: relative;
  display: inline-block;
  margin-bottom: 30px;
}
.checkbox-box input {
  position: absolute;
  width: 0;
  opacity: 0;
}
.checkbox-box input.only-chkbox {
  position: absolute;
  width: 20px;
  height: 20px;
  top: 6px;
  left: 1px;
  cursor: pointer;
  z-index: 2;
  opacity: 0;
}
.checkbox-box .chk-label {
  font-size: 16px;
  color: #30223b;
  line-height: 1.5;
  margin: 0;
  padding: 5px;
  padding-left: 36px;
  cursor: pointer;
  position: relative;
  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
}
.checkbox-box .chk-label:before {
  content: "";
  width: 22px;
  height: 22px;
  border-radius: 4px;
  background: transparent;
  border: 1.5px solid #a24eea;
  display: inline-block;
  position: absolute;
  left: 0;
  top: 5px;
  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
}
.checkbox-box .chk-label:after {
  content: "";
  border-radius: 3px;
  display: inline-block;
  position: absolute;
  left: 5px;
  top: 7px;
}
.checkbox-box input:checked ~ .chk-label::after {
  font-family: "icomoon" !important;
  content: "\e92d";
  color: #a24eea;
  font-size: 12px;
}
.checkbox-box label.error {
  display: none !important;
}
.checkbox-box input.error ~ .chk-label {
  color: #ff2323;
}
.checkbox-box input.error ~ .chk-label:before {
  border: 1px solid #ff2323;
}
/* // Checkbox */
/* checkbox 2 */
.checkbox-box.chk-rd .chk-label:before {
  border-radius: 100%;
}
.checkbox-box input:checked ~ .chk-label::before {
  background: #a24eea;
}
.checkbox-box input:checked ~ .chk-label::after {
  color: #ffffff;
}
/* checkbox 2 end */
/* checkbox 3 */
.checkbox-box.check-three {
  width: 100%;
  margin-bottom: 0;
  padding-bottom: 30px;
}
.checkbox-box.check-three label {
  border: 1px solid #e7e9ec;
  text-align: center;
  border-radius: 8px;
  padding: 25px 50px;
  max-width: 255px;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.checkbox-box.check-three label i {
  display: block;
  font-size: 60px;
  margin-bottom: 20px;
  color: #8594af;
}
.checkbox-box.check-three label span {
  border-radius: 8px;
  font-size: 18px;
  color: #8594af;
}
.checkbox-box.check-three label:before {
  border-radius: 100%;
  border: 1px solid #a24eea;
}
.checkbox-box.check-three label:before,
.checkbox-box.check-three label:after {
  left: inherit;
  right: 15px;
  top: 15px;
}
.checkbox-box.check-three input:checked ~ .chk-label {
  border: 1px solid #a24eea;
}
.checkbox-box.check-three input:checked ~ .chk-label span {
  font-family: 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 */
/* checkbox 5 */
.checkbox-box.check-five .chk-label {
  padding: 12px 25px;
  border: 1px solid #dde3ee;
  border-radius: 8px;
  display: -webkit-flex;
  display: -webkit-box;
  display: -moz-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.checkbox-box.check-five .chk-label span {
  font-family: 500;
  font-size: 16px;
  color: #8594af;
}
.checkbox-box.check-five .chk-label:before {
  border-radius: 100%;
  border: none;
}
.checkbox-box.check-five .chk-label:before,
.checkbox-box.check-five .chk-label:after {
  left: inherit;
  right: -11px;
  top: -11px;
}
.checkbox-box.check-five input:checked ~ .chk-label {
  border: 1px solid #a24eea;
}
.checkbox-box.check-five input:checked ~ .chk-label span {
  color: #000000;
}
.checkbox-box.check-five input:checked ~ .chk-label::after {
  width: 22px;
  height: 22px;
  border-radius: 100%;
  position: absolute;
  color: #fff;
  display: -webkit-flex;
  display: -webkit-box;
  display: -moz-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
}
/* checkbox 5 end */
/*==========================================================================
=> Tooltip
========================================================================== */
[tooltip-title] {
  position: relative;
  text-decoration: none;
}
[tooltip-title]::before {
  opacity: 0;
  pointer-events: none;
  position: absolute;
  /* top: -999; */
}
[tooltip-title]:hover::before {
  content: attr(tooltip-title);
  background-color: #222;
  border-radius: 4px;
  text-shadow: 0 0 5px #000;
  white-space: nowrap;
  color: #fff;
  opacity: 1;
  pointer-events: all;
  padding: 6px 12px;
  overflow: hidden;
  top: unset;
}
[tooltip-title]::after {
  content: "";
  pointer-events: none;
  opacity: 0;
  position: absolute;
}
[tooltip-title]:hover::after {
  z-index: 100;
  opacity: 1;
  pointer-events: all;
}
/* Corrige bug do tooltip ficar sem baixo dos outros buttons*/
[data-placement="right"]:hover {
  position: relative;
  z-index: 1;
}
[tooltip-title]:is([data-placement="top"])::before {
  bottom: 100%;
  left: 0%;
  margin-bottom: 16px;
}
[tooltip-title]:is([data-placement="right"])::before {
  bottom: -10%;
  left: 100%;
  margin-left: 16px;
}
[tooltip-title]:is([data-placement="bottom"])::before {
  top: 100%;
  left: 0%;
  margin-top: 16px;
}
[tooltip-title]:is([data-placement="left"])::before {
  bottom: -10%;
  right: 100%;
  margin-right: 16px;
}
/* Arrow */
[tooltip-title]:is([data-placement="top"])::after {
  bottom: 100%;
  left: 20%;
  margin-bottom: 8px;
  display: inline-block;
  vertical-align: middle;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #222;
}
[tooltip-title]:is([data-placement="right"])::after {
  bottom: 20%;
  left: 100%;
  margin-left: 8px;
  display: inline-block;
  vertical-align: middle;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-right: 10px solid #222;
}
[tooltip-title]:is([data-placement="bottom"])::after {
  left: 20%;
  top: 100%;
  display: inline-block;
  vertical-align: middle;
  margin-top: 8px;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #222;
}
[tooltip-title]:is([data-placement="left"])::after {
  bottom: 20%;
  right: 100%;
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 10px solid #222;
}
/*==========================================================================
=> Modal
==========================================================================*/
.modal-subTitle {
  font-size: 14px;
  line-height: 1.2;
  color: #000000;
  margin-bottom: 4px;
}
.modal-title {
  font-weight: 600;
  font-size: 26px;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #003f59;
  border-bottom: 1px solid rgba(0, 63, 89, 0.1);
  padding-bottom: 10px;
}
.modal-para p {
  font-size: 16px;
  line-height: 1.6;
  color: #8793a2;
  margin-bottom: 8px;
}
.modal-para p:last-child {
  margin-bottom: 0;
}
.modal-cancel {
  cursor: pointer;
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 9;
  font-size: 24px;
  line-height: 1;
  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
}
.modal-cross {
  display: flex;
  font-size: 22px;
  margin: 0 auto 12px;
  margin-right: 0;
  color: #000000;
  width: fit-content;
  cursor: pointer;
}
.modal-cross i {
  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
}
.modal-cross:hover i {
  transform: rotate(90deg);
}
.modal-content {
  display: block;
  border: none;
  border-radius: 10px;
  padding: 24px;
  box-shadow: 0px 5px 25px rgba(0, 0, 0, 0.1);
}
.window-1440 {
  max-width: 1440px;
  padding: 0 15px;
}
.window-990 {
  max-width: 990px;
  padding: 0 15px;
}
.window-500 {
  max-width: 500px;
  padding: 0 15px;
}
.static-cont {
  margin-bottom: 32px;
}
.static-cont li {
  font-size: 14px;
  color: #233037;
  padding-left: 20px;
  margin-bottom: 6px;
  position: relative;
}
.static-cont li p {
  margin-bottom: 10px;
}
.static-cont li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 7px;
  height: 7px;
  background: #fd9933;
  border-radius: 50%;
  top: 7px;
}
.static-cont p {
  font-size: 14px;
  color: #233037;
  margin-bottom: 20px;
}
.modal-backdrop.show {
  opacity: 0.9;
}
.modal-backdrop {
  background-color: #fff;
}
.modal-cancel:hover {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
/* Swiper Slider */
.ellipsis {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ellipsis2 {
  white-space: normal;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ellipsis3 {
  white-space: normal;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ellipsis4 {
  white-space: normal;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.flex-justify {
  display: -webkit-flex;
  display: -webkit-box;
  display: -moz-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
}
.element-head {
  font-size: 40px;
  font-weight: bold;
}
/* content page */
.content-body {
  width: 100%;
  color: var(--Db-black);
}
.content-body img {
  height: 500px;
  width: 100%;
  object-fit: cover;
  overflow: hidden;
  margin-bottom: 24px;
}
.content-body h2 {
  font-weight: 500;
  font-size: calc(var(--fs32) + 6px);
  margin-bottom: 16px;
}
.content-body h3 {
  font-weight: 500;
  font-size: calc(var(--fs32) + 4px);
  margin-bottom: 16px;
}
.content-body h4 {
  font-weight: 500;
  font-size: var(--fs32);
  margin-bottom: 16px;
}
.content-body h5 {
  font-weight: 500;
  font-size: var(--fs24);
  margin-bottom: 16px;
}
.content-body h6 {
  font-weight: 500;
  font-size: var(--fs20);
  margin-bottom: 16px;
}
.content-body p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 26px;
  opacity: 0.7;
}
.content-body p a {
  color: var(--Db-grey);
  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
}
.content-body p a:hover {
  color: var(--Db-purple);
}
.content-body ul {
  margin-bottom: 26px;
}
.content-body ul li {
  position: relative;
  margin-bottom: 14px;
  padding-left: 15px;
  font-size: 16px;
  line-height: 1.6;
}
.content-body ul li p,
.content-body ul li a {
  margin-bottom: 0;
}
.content-body ul li a {
  color: var(--Indium-Orange-Light);
}
.content-body ul li::before {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  display: block;
  top: 8px;
  left: 0;
  background: var(--Db-purple);
}
.content-body ul li:last-child {
  margin-bottom: 0;
}
.content-body blockquote {
  background: #ffffff;
  width: 78%;
  margin: 0 auto;
  color: var(--Indium-Black, #101010);
  font-size: var(--fs20);
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: -0.6px;
  padding: 24px 24px 16px;
}
.content-body blockquote + p {
  width: 78%;
  margin: 0 auto;
  color: var(--Dark-Grey, #3a3a3a);
  font-size: 16px;
  line-height: 1.5;
  background: #ffffff;
  padding: 0 24px 24px 24px;
  margin-bottom: 24px;
}
@media all and (max-width: 1440px) {
  .content-body img {
    height: 400px;
  }
}
@media all and (max-width: 1366px) {
  .content-body img {
    height: 350px;
  }
}
@media all and (max-width: 640px) {
  .content-body img {
    height: 270px;
  }
}
/* content page end */
.thankyou-contain {
  height: 100dvh;
  display: flex;
  align-items: center;
}
.thankyou-card {
  text-align: center;
  margin: auto;
  max-width: 480px;
}
.thankyou-img {
  width: calc(100% - 100px);
  margin: 0 auto 32px;
}
.thankyou-hdn {
  font-size: 48px;
  color: #202135;
  margin-bottom: 18px;
}
.thankyou-para p {
  color: #455a64;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 10px;
}
.thankyou-para p:last-child {
  margin-bottom: 0;
}
@media all and (max-width: 990px) {
  .thankyou-hdn {
    font-size: 42px;
    margin-bottom: 12px;
  }
}
@media all and (max-width: 480px) {
  .thankyou-hdn {
    font-size: 32px;
    margin-bottom: 8px;
  }
}
.error-wrap {
  height: calc(100dvh - var(--header-height));
  display: -webkit-flex;
  display: -webkit-box;
  display: -moz-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 30px;
  position: relative;
}
.error-sec {
  overflow: hidden;
  position: relative;
}
.error-img {
  width: 40vw;
  height: auto;
}
.ty-img {
  width: 11vw;
  height: auto;
}
.error-title {
  color: #fff;
  text-align: center;
  font-size: var(--font48);
  font-weight: 500;
  line-height: 1;
  text-transform: capitalize;
  max-width: 447px;
}
@media all and (max-width: 1366px) {
  .ty-img {
    width: 30vw;
  }
}
/*==========================================================================
=> Accordion
==========================================================================*/
.accordion {
  background: transparent;
  width: 100%;
  transition: 0.4s;
  position: relative;
  padding-right: 24px;
  color: var(--Indium-Black, #101010);
  font-family: "Space Grotesk", sans-serif;
  font-size: var(--fs24);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.72px;
  text-transform: capitalize;
  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
}
.accordion::after,
.accordion:before {
  content: "";
  width: 20px;
  height: 2px;
  background-color: var(--Db-purple);
  position: absolute;
  right: 0;
  top: 50%;
}
.accordion::before {
  transform: rotate(90deg);
  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
}
.panel {
  display: none;
  padding: 12px 24px 0 0;
}
.panel p {
  color: var(--Db-grey);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
}
.panel h3 {
  color: #050505;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.7;
  margin-bottom: 4px;
}
.panel ul {
  margin-top: 26px;
}
.panel ul li {
  position: relative;
  margin-bottom: 14px;
  padding-left: 15px;
  font-size: 16px;
  line-height: 1.6;
}
.panel ul li p,
.panel ul li a {
  margin-bottom: 0;
}
.panel ul li a {
  color: var(--Db-purple);
}
.panel ul li::before {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  display: block;
  top: 8px;
  left: 0;
  background: var(--Db-purple);
}
.panel ul li:last-child {
  margin-bottom: 0;
}
.acc-item {
  padding: 32px;
  overflow: hidden;
  cursor: pointer;
  background: var(--Db-white);
  border: 1px solid rgba(124, 146, 167, 0.5);
}
.acc-item p {
  margin-bottom: 20px;
}
.acc-item p:last-child {
  margin-bottom: 0;
}
.acc-item:last-child {
  margin-bottom: 0;
}
.acc-item.active {
  background: #fff;
  border: 1px solid transparent;
}
.acc-item.active .accordion::before {
  transform: rotate(180deg);
}
/*==========================================================================
=> Multiple Tab
==========================================================================*/
.tabs {
  display: -webkit-flex;
  display: -webkit-box;
  display: -moz-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
}
.tabs ul {
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.14);
  width: fit-content;
  position: relative;
}
.tabs ul li {
  color: #565656;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0 15px 10px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
}
.tabs ul li.active {
  color: var(--primary);
}
.indicator {
  width: 0;
  height: 1px;
  background: var(--primary);
  position: absolute;
  bottom: 0;
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
}
.comm-tab-wrap {
  width: 100%;
  margin: 50px auto;
}
.comm-tab-wrap ul.tabs {
  width: 100%;
  justify-content: center;
}
.comm-tab-wrap ul.tabs li {
  width: 100%;
  text-align: center;
  max-width: 270px;
  flex: 1;
}
.comm-tab-wrap .tab_container {
  max-width: 1060px;
  margin: 0 auto;
}
.tab_content {
  opacity: 0;
  visibility: hidden;
  display: none;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
}
.tab_content.active {
  opacity: 1;
  visibility: visible;
  display: block;
}
.comm-tab-box {
  width: 100%;
  margin-bottom: 60px;
}
/*==========================================================================
=> Footer
==========================================================================*/
.footer-wrap {
  background: var(--Db-black);
  padding: 60px 0 50px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 130px;
}
.footer-column {
  max-width: 354px;
  width: 100%;
}
.footer-desc {
  margin-bottom: 28px;
}
.footer-desc p {
  color: var(--Light-Grey, #7c92a7);
  font-size: var(--fs-18);
  line-height: 2;
}
.footer-hdn {
  color: var(--Db-white);
  font-size: var(--fs16);
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 20px;
}
.footer-socials {
  display: -webkit-flex;
  display: -webkit-box;
  display: -moz-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  gap: 26px;
}
.footer-socials a i {
  font-size: var(--fs28);
  color: #353536;
  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
}
.footer-socials a:hover i {
  color: #fff;
}
.footer-link-wrap {
  display: -webkit-flex;
  display: -webkit-box;
  display: -moz-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 100px;
}
.footer-box ul li {
  margin-bottom: 32px;
}
.footer-box ul li a {
  color: var(--Db-white);
  font-size: 14px;
  line-height: 1.2;
  position: relative;
  padding-left: 18px;
  display: block;
  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
}
.footer-box ul li a:hover {
  color: var(--Db-purple);
}
.footer-box ul li a::after {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--Db-purple);
  position: absolute;
  top: 6px;
  left: 0;
}
.footer-logo {
  max-width: 960px;
  width: 100%;
  margin: 0 auto 48px;
  display: block;
}
.footer-bottom {
  display: -webkit-flex;
  display: -webkit-box;
  display: -moz-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}
.footer-bottom p {
  color: var(--Light-Grey, #7c92a7);
  font-size: 16px;
  line-height: 2;
}
.footer-bottom p a {
  color: var(--Light-Grey, #7c92a7);
  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
}
.footer-bottom p a:hover {
  color: var(--Db-purple);
}
/*==========================================================================
=> Common 1
==========================================================================*/
.comm-nav-wrap {
  display: -webkit-flex;
  display: -webkit-box;
  display: -moz-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}
.comm-nav {
  width: 64px;
  height: 64px;
  background: var(--Db-purple);
  overflow: hidden;
  cursor: pointer;
  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;
}
.comm-nav i {
  font-size: var(--fs14);
  color: var(--Db-white);
  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
}
.comm-nav:hover {
  background: var(--Light-Grey, #7c92a7);
}
.comm-nav:first-child {
  transform: rotate(180deg);
}
.swiper-button-disabled {
  opacity: 0.5;
  pointer-events: none;
}
.swiper-button-lock {
  display: none;
}
/*==========================================================================
=> Breadcrumbs
==========================================================================*/
.breadcrumbs {
  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: 6px 22px;
  width: fit-content;
  flex-wrap: wrap;
}
.breadcrumbs a {
  color: var(--Light-Grey, #7c92a7);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  position: relative;
}
.breadcrumbs a:hover {
  color: var(--Db-white);
}
.breadcrumbs a::after {
  content: "/";
  color: var(--Light-Grey, #7c92a7);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  position: absolute;
  right: -14px;
  top: 50%;
  transform: translate(0, -50%);
}
.breadcrumbs p {
  color: var(--Db-white);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}
.breadcrumbs.dark a:hover {
  color: var(--Db-black);
}
.breadcrumbs.dark p {
  color: var(--Db-black);
}
@media all and (max-width: 1600px) {
  .container {
    max-width: 1400px;
  }
  .button {
    height: 60px;
    line-height: 60px;
  }
  .service-bann-img {
    height: 270px;
    margin: 0 0 60px auto;
  }
  .service-bann-info {
    max-width: 700px;
  }
  .text-box {
    max-width: 1000px;
  }
  .rapid-box {
    gap: 20px;
    padding: 20px 16px;
  }
  .trust-img-box {
    height: 440px;
  }
  .trust-img {
    width: 200px;
    height: 200px;
  }
  .acc-item {
    padding: 20px;
  }
  .future-wrap {
    padding: 40px;
    gap: 60px;
  }
  .future-video {
    height: 90px;
  }
  .footer-top {
    margin-bottom: 80px;
  }
  .footer-logo {
    max-width: 660px;
  }
  .connect-img {
    height: 440px;
  }
  .cds-para {
    padding: 30px;
  }
  .cds-wrap {
    gap: 30px;
    max-width: 1050px;
  }
  .cds-box ul li {
    padding: 20px 16px 20px 30px;
    line-height: 1.6;
  }
  .cds-box ul li::before {
    width: 6px;
    height: 6px;
    left: 12px;
  }
  .cp-img {
    height: 330px;
  }
  .work-wrap ul {
    max-width: 640px;
  }
  .work-img {
    width: 550px;
    height: 550px;
  }
  .ra-wrap {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    height: 600px;
  }
  .ra-box::after {
    bottom: -20px;
  }
  .ra-box {
    gap: 12px;
  }
  .contact-left {
    max-width: 450px;
  }
  .contact-right {
    max-width: 700px;
    padding: 30px 24px;
  }
  .reach-wrap {
    gap: 20px;
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
  .reach-icon {
    width: 26px;
    height: 26px;
  }
  .event-box {
    height: 400px;
  }
  .event-info {
    padding: 14px;
  }
  .event-info p {
    line-height: 1.5;
    margin-bottom: 14px;
    width: 100%;
  }
  .event-wrap .f-row {
    margin-bottom: 40px;
  }
  .le-box {
    height: 450px;
  }
  .le-info {
    padding: 26px 20px;
  }
  .ed-info {
    padding: 30px 50px;
  }
  .ed-img {
    max-width: 650px;
  }
  .ks-wrap .f-col {
    height: 380px;
  }
  .ks-info {
    padding: 20px 16px;
  }
  .agenda-info {
    max-width: 440px;
  }
  .agenda-cont {
    gap: 30px;
  }
  .agenda-detail {
    padding: 20px 16px;
    margin: 30px 0;
  }
  .mg-img {
    height: 380px;
  }
  .ks-info p {
    line-height: 1.5;
    width: 100%;
  }
  .vc-img {
    height: 520px;
  }
  .vc-wrap {
    align-items: flex-start;
  }
  .et-box {
    padding: 30px;
    gap: 40px;
  }
  .vc-swiper-box {
    height: 600px;
  }
  .vc-left .comm-sec-hdn {
    margin-bottom: 20px;
  }
  .db-elem {
    max-width: 300px;
  }
  .banner-wrap {
    max-width: 1100px;
    height: 530px;
  }
  .banner-video {
    height: 50px;
  }
  .banner-video::after {
    content: "";
    width: 50px;
    height: 100%;
    right: 40px;
  }
  .jd-main-box {
    height: 400px;
  }
  .ps-img {
    width: 300px;
    height: 300px;
  }
  .ps-box {
    padding: 10px 30px 10px 10px;
    gap: 30px;
  }
  .bai-swiper .comm-nav-wrap {
    top: 40%;
  }
}
@media all and (max-width: 1440px) {
  .container {
    max-width: 1300px;
  }
  .comm-service-bann {
    padding: 60px 0 30px;
  }
  .button {
    height: 50px;
    line-height: 50px;
    padding: 0 24px;
  }
  .ra-wrap {
    grid-column-gap: 20px;
  }
  .event-box {
    height: 340px;
  }
  .event-tab-wrap ul {
    height: 50px;
  }
  .event-tab-wrap ul li {
    padding: 0 40px;
  }
  .vc-img {
    height: 430px;
  }
  .vc-swiper-box {
    height: 530px;
  }
  .vc-height {
    padding: 60px 0 50px;
  }
  .job-box {
    padding: 30px 24px;
  }
  .abt-img {
    height: 460px;
  }
  .banner-video::after {
    right: 10px;
  }
  .banner-wrap {
    height: 500px;
    margin-bottom: 0;
  }
  .ta-video::after {
    width: 60px;
    height: 60px;
  }
  .banner-img {
    width: 480px;
  }
  .banner-hdn:last-child {
    padding-bottom: 90px;
  }
  .git-info {
    max-width: 466px;
  }
  .bai-info-box {
    max-width: 700px;
  }
  .bai-img {
    width: 36px;
    height: 36px;
    margin-bottom: 14px;
  }
  .bai-box {
    padding: 16px 14px;
  }
  .bai-main-box {
    padding: 36px 42px 44px;
  }
  .bai-pagination {
    top: 38px;
    right: 42px;
  }
}
@media all and (max-width: 1366px) {
  .container {
    max-width: 1170px;
  }
  .sec-hdn {
    margin-bottom: 40px;
  }
  .cib-box {
    margin: 40px auto 20px;
  }
  .service-bann-img {
    height: 230px;
    margin: 0 0 40px auto;
  }
  .trust-img-box {
    height: 380px;
  }
  .connect-img {
    height: 360px;
  }
  .future-wrap {
    padding: 24px 16px;
    gap: 30px;
  }
  .footer-link-wrap {
    gap: 50px;
  }
  .footer-column {
    max-width: 300px;
  }
  .footer-wrap {
    padding: 40px 0 30px;
  }
  .footer-box ul li {
    margin-bottom: 20px;
  }
  .footer-logo {
    max-width: 600px;
  }
  .work-wrap ul li {
    padding: 20px 24px 20px 60px;
  }
  .work-wrap ul li::before {
    width: 20px;
    height: 20px;
    left: 20px;
  }
  .work-wrap ul {
    max-width: 500px;
  }
  .work-img {
    width: 450px;
    height: 450px;
  }
  .cds-hdn {
    padding: 20px 30px 20px 80px;
  }
  .ra-img {
    width: 160px;
  }
  .blog-img {
    height: 220px;
    margin-bottom: 20px;
  }
  .blog-wrap .f-col .comm-card-sm-hdn {
    margin-bottom: 18px;
  }
  .blog-wrap .f-row {
    row-gap: 60px;
    margin-bottom: 40px;
  }
  .blog-search-box {
    max-width: 440px;
    height: 50px;
    padding: 8px 8px 8px 14px;
  }
  .blog-search-box button {
    width: 30px;
    height: 30px;
  }
  .ui-group {
    max-width: 240px;
    height: 50px;
  }
  .bdh-box {
    margin: 40px auto 30px;
  }
  .faq-wrap {
    gap: 60px;
  }
  .faq-hdn-box {
    max-width: 440px;
  }
  .ed-img {
    max-width: 550px;
  }
  .ed-info {
    padding: 26px 40px;
  }
  .ed-button-wrap a {
    height: 50px;
    padding: 0 20px 0 44px;
  }
  .ed-button-wrap a::before {
    left: 16px;
  }
  .ks-wrap .f-col {
    height: 300px;
  }
  .agenda-wrap {
    gap: 30px;
  }
  .agenda-detail {
    margin: 24px 0;
  }
  .jd-main-box {
    height: 370px;
  }
  .emp-wrap .jd-main-box:hover,
  .jd-main-box:hover {
    padding-bottom: 140px;
  }
  .jd-box .comm-card-sm-hdn {
    padding: 12px 8px 0;
  }
  .jd-para {
    padding: 10px 16px;
  }
  .jd-arrow {
    height: 30px;
  }
  .jd-arrow::before {
    width: 30px;
  }
  .jd-arrow::after {
    font-size: 10px;
  }
  .os-tab-wrap {
    margin: 24px 0 36px 0;
  }
  .os-tab-wrap ul li {
    padding: 0 40px;
  }
  .git-video {
    height: 34px;
  }
  .git-video::after {
    width: 34px;
    height: 100%;
    right: -30px;
  }
  .comm-nav {
    width: 54px;
    height: 54px;
  }
  .bai-info-box {
    max-width: 630px;
  }
  .bai-hdn {
    letter-spacing: -1.4px;
  }
  .panel p,
  .jd-para p {
    font-size: 14px;
  }
}
@media all and (max-width: 1200px) {
  .container {
    max-width: 960px;
  }
  .trust-swiper .comm-nav-wrap {
    position: static;
  }
  .sec-hdn.center {
    margin: 0 auto 30px;
  }
  .sec-hdn {
    margin-bottom: 36px;
  }
  .trust-img {
    width: 160px;
    height: 160px;
  }
  .trust-img-box {
    height: 320px;
  }
  .trust-swiper {
    margin-bottom: 40px;
  }
  .trust-swiper .swiper-wrapper {
    padding-bottom: 30px;
  }
  .comm-nav {
    width: 50px;
    height: 50px;
  }
  .comm-nav i {
    font-size: 12px;
  }
  .trust-para {
    padding: 16px;
  }
  .sec-hdn.wrap {
    flex-direction: column;
    gap: 24px;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .connect-img {
    height: 300px;
  }
  .scale-wrap {
    gap: 30px;
    flex-direction: column;
  }
  .future-wrap {
    flex-direction: column;
  }
  .footer-top {
    margin-bottom: 50px;
    flex-direction: column;
    gap: 30px;
  }
  .footer-link-wrap {
    justify-content: flex-start;
  }
  .scale-wrap .acc-container {
    max-width: 100%;
  }
  .accordion::after,
  .accordion:before {
    width: 12px;
    height: 1.5px;
  }
  .cds-para {
    padding: 20px 16px;
  }
  .cds-wrap {
    flex-direction: column;
  }
  .cds-box {
    width: 100%;
  }
  .cds-hdn {
    padding: 16px 20px 16px 70px;
  }
  .work-wrap {
    flex-direction: column;
  }
  .work-img {
    max-width: 350px;
    width: 100%;
    height: auto;
  }
  .work-wrap ul {
    max-width: 100%;
  }
  .cds-hdn {
    margin-bottom: 14px;
  }
  .cp-swiper .swiper-wrapper {
    padding-bottom: 40px;
  }
  .cp-swiper .comm-nav-wrap {
    position: static;
  }
  .ra-wrap {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  .ra-box:first-child {
    height: 350px;
  }
  .blog-hdn-wrap {
    gap: 30px;
    margin-bottom: 40px;
    flex-direction: column;
  }
  .blog-search-wrap {
    flex-direction: column;
    gap: 14px;
  }
  .blog-search-box,
  .ui-group {
    max-width: 100%;
    height: 42px;
  }
  .blog-wrap .f-col:nth-child(4n) {
    border-right: 1px solid rgba(124, 146, 167, 0.4);
  }
  .blog-wrap .f-col:nth-child(3n) {
    border: none;
  }
  .blog-search-box button img {
    width: 20px;
    height: 20px;
  }
  .button-group {
    top: 40px;
  }
  .ui-detail {
    padding: 10px 14px;
  }
  .ra-box:first-child .ra-info {
    padding: 20px;
  }
  .ra-info .comm-card-sm-hdn {
    margin-bottom: 14px;
  }
  .ra-box::after {
    bottom: -16px;
  }
  .bdh-wrap {
    align-items: flex-start;
    flex-direction: column;
  }
  .contact-wrap {
    gap: 30px;
    flex-direction: column;
  }
  .contact-left {
    max-width: 100%;
  }
  .contact-right {
    max-width: 100%;
  }
  .reach-elem {
    display: none;
  }
  .faq-wrap {
    gap: 30px;
  }
  .le-box {
    height: 380px;
  }
  .event-wrap .f-row {
    margin-bottom: 30px;
  }
  .event-tab-wrap ul {
    margin: 0;
  }
  .event-tab-wrap ul li {
    white-space: nowrap;
    flex-shrink: 0;
  }
  .event-tab-wrap {
    margin-bottom: 30px;
    overflow: auto;
    padding-bottom: 6px;
  }
  .event-tab-wrap::-webkit-scrollbar-track {
    background: var(--Db-white);
  }
  .event-tab-wrap::-webkit-scrollbar-thumb {
    background: var(--Db-grey);
    border-radius: 4px;
  }
  .event-tab-wrap::-webkit-scrollbar {
    height: 3px;
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
  }
  .ed-img {
    max-width: 370px;
  }
  .ed-info {
    padding: 20px 16px 20px 24px;
  }
  .ed-detail {
    gap: 14px 26px;
    margin-bottom: 30px;
  }
  .ed-detail li img {
    width: 18px;
    height: 18px;
  }
  .ed-wrap {
    margin-bottom: 24px;
  }
  .agenda-wrap {
    flex-direction: column;
  }
  .vc-wrap {
    position: static;
    flex-direction: column;
    gap: 30px;
  }
  .vc-img {
    height: 370px;
  }
  .vc-left {
    max-width: 100%;
  }
  .vc-swiper-box {
    height: auto;
    max-width: 100%;
  }
  .vc-swiper-img {
    width: 200px;
    height: 200px;
  }
  .vc-swiper-box::before,
  .vc-swiper-box::after {
    display: none;
  }
  .vc-info .comm-card-hdn {
    margin-bottom: 14px;
  }
  .vc-box {
    gap: 20px;
  }
  .job-box {
    padding: 24px 16px;
  }
  .abt-img {
    height: 300px;
  }
  .who-hdn-wrap {
    gap: 14px;
    flex-direction: column;
  }
  .who-hdn-box .comm-card-hdn {
    margin-bottom: 14px;
  }
  .who-video::after {
    width: 30px;
    height: 100%;
    right: -30px;
  }
  .who-video {
    height: 30px;
  }
  .db-elem {
    max-width: 220px;
  }
  .vision-box {
    padding: 22px 30px;
  }
  .banner-section {
    height: 100%;
    padding: 24px 0 40px;
  }
  .banner-video::after {
    right: 0;
  }
  .banner-wrap {
    height: 100%;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    margin-bottom: 30px;
  }
  .banner-hdn:last-child {
    padding-bottom: 0;
    text-align: center;
    max-width: 310px;
  }
  .banner-img {
    max-width: 360px;
    width: 100%;
    transform: translate(0, 0) scale(1.2);
  }
  .banner-hdn {
    letter-spacing: -3px;
  }
  .banner-img {
    max-width: 330px;
    position: static;
  }
  .jd-para {
    position: static;
    transform: translateY(0);
  }
  .jd-main-box {
    height: 100%;
    padding: 8px 9px 20px 9px;
  }
  .jd-para {
    padding: 0 8px;
  }
  .jd-box .comm-card-sm-hdn {
    padding: 12px 8px;
  }
  .jd-img-box {
    height: auto;
  }
  .jd-arrow::after {
    transform: translate(0, -50%) rotate(90deg);
  }
  .emp-wrap .jd-main-box:hover,
  .jd-main-box:hover {
    padding-bottom: 20px;
  }
  .emp-wrap .jd-main-box {
    padding: 0 0 20px 0;
  }
  .emp-hdn-wrap {
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 40px;
    flex-direction: column;
  }
  .rapid-wrap {
    flex-direction: column;
    align-items: center;
  }
  .rapid-img {
    max-width: 480px;
  }
  .rapid-box-wrap {
    max-width: 100%;
  }
  .emp-wrap .jd-box .comm-card-sm-hdn {
    padding: 14px 0 0 0;
  }
  .jd-box {
    height: auto;
  }
  .emp-wrap .jd-para {
    padding: 16px 0 0 0;
  }
  .banner-video {
    height: 40px;
  }
  .banner-video::after {
    width: 40px;
  }
  .banner-hdn {
    transform: translateX(0);
    transform: translateY(-40px);
  }
  .banner-hdn:last-child {
    transform: translateX(0);
    transform: translateY(40px);
  }
  .os-tab-wrap {
    overflow: auto;
    padding-bottom: 6px;
  }
  .os-tab-wrap::-webkit-scrollbar-track {
    background: var(--Db-white);
  }
  .os-tab-wrap::-webkit-scrollbar-thumb {
    background: var(--Db-grey);
    border-radius: 4px;
  }
  .os-tab-wrap::-webkit-scrollbar {
    height: 3px;
    width: 100%;
    border-radius: 4px;
    overflow: hidden;
  }
  .bai-main-box {
    padding: 0;
  }
  .bai-bg-img {
    position: static;
    height: 340px;
    margin-bottom: 30px;
    position: relative;
    inset: unset;
  }
  .bai-bg-img::after {
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    position: absolute;
    top: 0;
    left: 0;
  }
  .bai-bg-img img {
    object-position: left;
  }
  .bai-main-box::before,
  .bai-main-box::after {
    display: none;
  }
  .bai-section .container .comm-nav-wrap {
    width: 100%;
    justify-content: center;
    height: fit-content;
    margin: 0;
    position: fixed;
    bottom: 0;
    left: 0;
    top: unset;
    background: #fff;
    padding: 12px;
    transform: translateY(100%);
  }
  .bai-info-box {
    max-width: 100%;
  }
}
@media all and (max-width: 990px) {
  :root {
    --input-height: 45px;
  }
  .container {
    max-width: 800px;
  }
  .button {
    font-size: 14px;
    height: 45px;
    line-height: 45px;
  }
  .rapid-wrap {
    flex-direction: column;
  }
  .rapid-img {
    max-width: 100%;
    height: 400px;
  }
  .rapid-box {
    flex-direction: row-reverse;
    justify-content: flex-end;
  }
  .faq-wrap {
    flex-direction: column;
  }
  .faq-hdn-box .comm-sec-hdn {
    margin-bottom: 14px;
  }
  .bdh-hdn,
  .comm-page-hdn,
  .comm-sec-hdn {
    letter-spacing: -2px;
  }
  .ed-wrap {
    flex-direction: column;
  }
  .ed-img {
    max-width: 100%;
    height: 250px;
  }
  .ed-info {
    padding: 22px 16px;
  }
  .ta-video::after {
    width: 40px;
    height: 40px;
    right: -32px;
  }
  .ta-section {
    height: 250vh;
  }
  .git-wrap {
    padding: 60px 0;
    flex-direction: column;
    align-items: center;
  }
  .git-video {
    transform: translateX(-80%);
  }
  .git-video:last-child {
    transform: translateX(80%) rotate(180deg);
  }
  .bai-hdn {
    letter-spacing: -1.1px;
  }
  .bai-info-hdn {
    letter-spacing: -0.32px;
  }
}
@media all and (max-width: 768px) {
  .container {
    max-width: 100%;
  }
  .bdh-hdn,
  .comm-page-hdn,
  .comm-sec-hdn {
    letter-spacing: -1px;
  }
  .contact-right {
    padding: 30px 16px;
  }
  .reach-wrap {
    gap: 14px;
  }
  .reach-wrap p,
  .reach-wrap a {
    line-height: 1.6;
  }
  .form-field {
    height: 50px;
  }
  .mg-img {
    height: 330px;
  }
  .banner-video {
    display: none;
  }
  .banner-para p {
    font-size: 14px;
  }
  .ta-video {
    width: 100%;
  }
  .bai-pagination {
    top: 20px;
    right: 22px;
  }
}
@media all and (max-width: 640px) {
  .footer-link-wrap {
    flex-wrap: wrap;
    gap: 20px 30px;
  }
  .footer-logo {
    margin: 0 auto 26px;
  }
  .acc-item {
    padding: 18px 16px;
  }
  .panel {
    padding: 12px 10px 0 0;
  }
  .panel p {
    line-height: 1.6;
  }
  .trust-img-box {
    height: 260px;
    margin-bottom: 14px;
  }
  .rapid-box {
    gap: 10px;
    padding: 15px 10px;
  }
  .footer-socials {
    gap: 16px;
  }
  .comm-page-sm-hdn {
    margin: 30px 0 6px 0;
    font-size: 14px;
  }
  .service-bann-info p {
    line-height: 1.5;
  }
  .service-bann-info {
    gap: 10px;
  }
  .cds-para p {
    line-height: 1.5;
    letter-spacing: -1px;
  }
  .cds-box ul li::before {
    top: 30px;
    transform: none;
  }
  .ra0::before {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 15%, rgba(0, 0, 0, 0.9) 60%);
  }
  .ra-box:first-child .ra-info {
    padding: 20px 16px;
  }
  .blog-wrap .f-row {
    row-gap: 40px;
  }
  .blog-wrap .f-col {
    border: none;
  }
  .content-body blockquote + p,
  .content-body blockquote {
    width: 100%;
    padding: 18px 20px 16px;
  }
  .le-box::after {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 10%, rgba(0, 0, 0, 0.9) 60%);
  }
  .le-info {
    padding: 20px 14px;
  }
  .blog-hdn-wrap {
    margin-bottom: 30px;
  }
  .agenda-cont::after,
  .agenda-cont::before {
    display: none;
  }
  .agenda-box {
    align-items: flex-start;
    gap: 12px;
    flex-direction: column;
    margin-bottom: 30px;
  }
  .agenda-box:last-child {
    margin-bottom: 0;
  }
  .agenda-cont {
    gap: 12px;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }
  .agenda-detail {
    margin: 0;
  }
  .mg-img {
    height: 240px;
  }
  .ed-button-wrap {
    flex-direction: column;
  }
  .agenda-num span {
    width: 38px;
    height: 38px;
  }
  .ed-detail li p {
    line-height: 1.5;
  }
  .et-quote {
    width: 30px;
    height: 30px;
    margin-bottom: 14px;
  }
  .et-wrap p {
    line-height: 1.5;
    letter-spacing: -1px;
  }
  .et-detail-wrap {
    gap: 20px;
  }
  .job-btm-wrap {
    align-items: flex-start;
    flex-direction: column;
  }
  .vc-img {
    height: 300px;
  }
  .vc-height {
    padding: 0 0 50px;
  }
  .who-img-wrap {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  .vision-box {
    padding: 20px 16px;
  }
  .cds-hdn {
    letter-spacing: -1px;
  }
  .work-wrap ul li {
    padding: 20px 16px 20px 48px;
  }
  .work-wrap ul li::before {
    width: 18px;
    height: 18px;
    left: 14px;
  }
  .banner-hdn {
    letter-spacing: -1px;
  }
  .git-video {
    width: 100%;
  }
  .git-info {
    padding: 0 16px;
  }
  .git-video {
    transform: translateX(-70%);
  }
  .git-video:last-child {
    transform: translateX(70%) rotate(180deg);
  }
  .ps-box {
    padding: 20px 16px;
    gap: 20px;
    flex-direction: column;
  }
  .ps-img {
    width: 100%;
    height: 260px;
  }
  .jd-wrap .f-row {
    gap: 30px 0;
  }
  .service-bann-img {
    margin: 0 auto 30px;
  }
  .comm-text-hdn {
    margin-bottom: 14px;
  }
  .text-btm-para {
    margin-top: 14px;
  }
}
@media all and (max-width: 576px) {
  .menuBtn .button {
    margin-right: 22px;
  }
  .et-box {
    padding: 20px 16px;
    gap: 30px;
  }
  .who-video {
    width: 100%;
  }
}
@media all and (max-width: 480px) {
  .rapid-img {
    height: auto;
  }
  .footer-bottom {
    gap: 10px;
    flex-direction: column;
  }
  .future-info p {
    line-height: 1.6;
  }
  .cp-img {
    height: 280px;
  }
  .cp-box {
    padding: 8px 8px 24px;
  }
  .ra-img {
    width: 130px;
  }
  .cib-box {
    margin: 30px auto 16px;
  }
  .ps-box {
    padding: 10px 10px 20px 10px;
  }
  .ps-info p {
    margin-bottom: 20px;
  }
  .reveal-text {
    font-size: 20px;
    letter-spacing: -1px;
  }
  .bai-bg-img {
    height: 280px;
  }
}
/*# sourceMappingURL=main.css.map */