@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap");
* {
  padding: 0;
  margin: 0;
}

:root {
  --white: #ffffff;
  --black: #000000;
  --text-black: #173446;
  --primary-color: #ffb025;
  --stroke: #dcdcdc;
  --paragraph: #898ca4;
}

/* Fnot size */
.fs-0 {
  font-size: 0rem;
}

@media screen and (min-width: 576px) {
  .fs-sm-0 {
    font-size: 0rem;
  }
}

.fs-10 {
  font-size: 0.625rem !important;
}

.fs-11 {
  font-size: 0.6875rem !important;
}

.fs-12 {
  font-size: 0.75rem !important;
}

.fs-13 {
  font-size: 0.8125rem !important;
}

.fs-14 {
  font-size: 0.875rem !important;
}

.fs-15 {
  font-size: 0.9375rem !important;
}

.fs-16 {
  font-size: 1rem !important;
}

.fs-17 {
  font-size: 1.0625rem !important;
}

.fs-18 {
  font-size: 1.125rem !important;
}

.fs-19 {
  font-size: 1.1875rem !important;
}

.fs-20 {
  font-size: 1.25rem !important;
}

.fs-21 {
  font-size: 1.3125rem !important;
}

.fs-22 {
  font-size: 1.375rem !important;
}

.fs-23 {
  font-size: 1.4375rem !important;
}

.fs-24 {
  font-size: 1.5rem !important;
}

.fs-25 {
  font-size: 1.5625rem !important;
}

.fs-26 {
  font-size: 1.625rem !important;
}

.fs-27 {
  font-size: 1.6875rem !important;
}

.fs-28 {
  font-size: 1.75rem !important;
}

.fs-29 {
  font-size: 1.8125rem !important;
}

.fs-30 {
  font-size: 1.875rem !important;
}

.fs-31 {
  font-size: 1.9375rem !important;
}

.fs-32 {
  font-size: 2rem !important;
}

/* Font weight */
.fw-100 {
  font-weight: 100;
}

.fw-200 {
  font-weight: 200;
}

.fw-300 {
  font-weight: 300;
}

.fw-400 {
  font-weight: 400;
}

.fw-500 {
  font-weight: 500;
}

.fw-600 {
  font-weight: 600;
}

.fw-700 {
  font-weight: 700;
}

.fw-800 {
  font-weight: 800;
}

.fw-900 {
  font-weight: 900;
}

.fw-1000 {
  font-weight: 1000;
}

/* Line Height */
.lh-32 {
  line-height: 2rem;
}

.lh-48 {
  line-height: 3rem;
}

@media screen and (min-width: 576px) {
  .lh-sm-0 {
    line-height: 0rem;
  }
}

.lh-10 {
  line-height: 0.625rem !important;
}

.lh-11 {
  line-height: 0.6875rem !important;
}

.lh-12 {
  line-height: 0.75rem !important;
}

.lh-13 {
  line-height: 0.8125rem !important;
}

.lh-14 {
  line-height: 0.875rem !important;
}

.lh-15 {
  line-height: 0.9375rem !important;
}

.lh-16 {
  line-height: 1rem !important;
}

.lh-17 {
  line-height: 1.0625rem !important;
}

.lh-18 {
  line-height: 1.125rem !important;
}

.lh-19 {
  line-height: 1.1875rem !important;
}

.lh-20 {
  line-height: 1.25rem !important;
}

.lh-21 {
  line-height: 1.3125rem !important;
}

.lh-22 {
  line-height: 1.375rem !important;
}

.lh-23 {
  line-height: 1.4375rem !important;
}

.lh-24 {
  line-height: 1.5rem !important;
}

.lh-25 {
  line-height: 1.5625rem !important;
}

.lh-26 {
  line-height: 1.625rem !important;
}

.lh-27 {
  line-height: 1.6875rem !important;
}

.lh-28 {
  line-height: 1.75rem !important;
}

.lh-29 {
  line-height: 1.8125rem !important;
}

.lh-30 {
  line-height: 1.875rem !important;
}

/* Letter Spacing */
.ls-1 {
  letter-spacing: 0.0625rem !important;
}

.ls-2 {
  letter-spacing: 0.125rem !important;
}

.ls-3 {
  letter-spacing: 0.1875rem !important;
}

.ls-4 {
  letter-spacing: 0.25rem !important;
}

.ls-5 {
  letter-spacing: 0.3125rem !important;
}

.ls-6 {
  letter-spacing: 0.375rem !important;
}

.ls-7 {
  letter-spacing: 0.4375rem !important;
}

.ls-8 {
  letter-spacing: 0.5rem !important;
}

.ls-9 {
  letter-spacing: 0.5625rem !important;
}

.ls-10 {
  letter-spacing: 0.625rem !important;
}

/* text justify */
.text-justify {
  text-align: justify;
}

.text-white {
  color: var(--white) !important;
}

.text-black {
  color: var(--black) !important;
}

.text-text-black {
  color: var(--text-black) !important;
}

.text-primary-color {
  color: var(--primary-color) !important;
}

.text-stroke {
  color: var(--stroke) !important;
}

.text-paragraph {
  color: var(--paragraph) !important;
}

/* Background Color */
.bg-white {
  background-color: var(--white) !important;
}

.bg-black {
  background-color: var(--black) !important;
}

.bg-text-black {
  background-color: var(--text-black) !important;
}

.bg-primary-color {
  background-color: var(--primary-color) !important;
}

.bg-stroke {
  background-color: var(--stroke) !important;
}

.bg-paragraph {
  background-color: var(--paragraph) !important;
}

/* Border Color */
.bd-c-white {
  border-color: var(--white) !important;
}

.bd-c-black {
  border-color: var(--black) !important;
}

.bd-c-text-black {
  border-color: var(--text-black) !important;
}

.bd-c-primary-color {
  border-color: var(--primary-color) !important;
}

.bd-c-stroke {
  border-color: var(--stroke) !important;
}

.bd-c-paragraph {
  border-color: var(--paragraph) !important;
}

/* z-index */
.z-index-1001 {
  z-index: 1001;
}

.z-index-1 {
  z-index: 1;
}

.z-index-2 {
  z-index: 2;
}

.z-index-3 {
  z-index: 3;
}

.z-index-4 {
  z-index: 4;
}

.z-index-5 {
  z-index: 5;
}

/* Padding */
.p-0 {
  padding: 0rem !important;
}

.p-1 {
  padding: 0.0625rem !important;
}

.p-2 {
  padding: 0.125rem !important;
}

.p-3 {
  padding: 0.1875rem !important;
}

.p-4 {
  padding: 0.25rem !important;
}

.p-5 {
  padding: 0.3125rem !important;
}

.p-6 {
  padding: 0.375rem !important;
}

.p-7 {
  padding: 0.4375rem !important;
}

.p-8 {
  padding: 0.5rem !important;
}

.p-9 {
  padding: 0.5625rem !important;
}

.p-10 {
  padding: 0.625rem !important;
}

.p-11 {
  padding: 0.6875rem !important;
}

.p-12 {
  padding: 0.75rem !important;
}

.p-13 {
  padding: 0.8125rem !important;
}

.p-14 {
  padding: 0.875rem !important;
}

.p-15 {
  padding: 0.9375rem !important;
}

.p-16 {
  padding: 1rem !important;
}

.p-17 {
  padding: 1.0625rem !important;
}

.p-18 {
  padding: 1.125rem !important;
}

.p-19 {
  padding: 1.1875rem !important;
}

.p-20 {
  padding: 1.25rem !important;
}

.p-21 {
  padding: 1.3125rem !important;
}

.p-22 {
  padding: 1.375rem !important;
}

.p-23 {
  padding: 1.4375rem !important;
}

.p-24 {
  padding: 1.5rem !important;
}

.p-25 {
  padding: 1.5625rem !important;
}

.p-26 {
  padding: 1.625rem !important;
}

.p-27 {
  padding: 1.6875rem !important;
}

.p-28 {
  padding: 1.75rem !important;
}

.p-29 {
  padding: 1.8125rem !important;
}

.p-30 {
  padding: 1.875rem !important;
}

@media screen and (min-width: 576px) {
  .p-sm-20 {
    padding: 1.25rem !important;
  }
}

@media screen and (min-width: 576px) {
  .p-sm-25 {
    padding: 1.5625rem !important;
  }
}

@media screen and (min-width: 576px) {
  .p-sm-30 {
    padding: 1.875rem !important;
  }
}

@media screen and (min-width: 576px) {
  .p-sm-40 {
    padding: 2.5rem !important;
  }
}

/* Padding top & bottom */
.py-0 {
  padding-top: 0rem !important;
  padding-bottom: 0rem !important;
}

.py-1 {
  padding-top: 0.0625rem !important;
  padding-bottom: 0.0625rem !important;
}

.py-2 {
  padding-top: 0.125rem !important;
  padding-bottom: 0.125rem !important;
}

.py-3 {
  padding-top: 0.1875rem !important;
  padding-bottom: 0.1875rem !important;
}

.py-4 {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
}

.py-5 {
  padding-top: 0.3125rem !important;
  padding-bottom: 0.3125rem !important;
}

.py-6 {
  padding-top: 0.375rem !important;
  padding-bottom: 0.375rem !important;
}

.py-7 {
  padding-top: 0.4375rem !important;
  padding-bottom: 0.4375rem !important;
}

.py-8 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

.py-9 {
  padding-top: 0.5625rem !important;
  padding-bottom: 0.5625rem !important;
}

.py-10 {
  padding-top: 0.625rem !important;
  padding-bottom: 0.625rem !important;
}

.py-11 {
  padding-top: 0.6875rem !important;
  padding-bottom: 0.6875rem !important;
}

.py-12 {
  padding-top: 0.75rem !important;
  padding-bottom: 0.75rem !important;
}

.py-13 {
  padding-top: 0.8125rem !important;
  padding-bottom: 0.8125rem !important;
}

.py-14 {
  padding-top: 0.875rem !important;
  padding-bottom: 0.875rem !important;
}

.py-15 {
  padding-top: 0.9375rem !important;
  padding-bottom: 0.9375rem !important;
}

.py-16 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

.py-17 {
  padding-top: 1.0625rem !important;
  padding-bottom: 1.0625rem !important;
}

.py-18 {
  padding-top: 1.125rem !important;
  padding-bottom: 1.125rem !important;
}

.py-19 {
  padding-top: 1.1875rem !important;
  padding-bottom: 1.1875rem !important;
}

.py-20 {
  padding-top: 1.25rem !important;
  padding-bottom: 1.25rem !important;
}

.py-21 {
  padding-top: 1.3125rem !important;
  padding-bottom: 1.3125rem !important;
}

.py-22 {
  padding-top: 1.375rem !important;
  padding-bottom: 1.375rem !important;
}

.py-23 {
  padding-top: 1.4375rem !important;
  padding-bottom: 1.4375rem !important;
}

.py-24 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}

.py-25 {
  padding-top: 1.5625rem !important;
  padding-bottom: 1.5625rem !important;
}

.py-26 {
  padding-top: 1.625rem !important;
  padding-bottom: 1.625rem !important;
}

.py-27 {
  padding-top: 1.6875rem !important;
  padding-bottom: 1.6875rem !important;
}

.py-28 {
  padding-top: 1.75rem !important;
  padding-bottom: 1.75rem !important;
}

.py-29 {
  padding-top: 1.8125rem !important;
  padding-bottom: 1.8125rem !important;
}

.py-30 {
  padding-top: 1.875rem !important;
  padding-bottom: 1.875rem !important;
}

@media screen and (min-width: 576px) {
  .py-sm-25 {
    padding-top: 1.5625rem !important;
    padding-bottom: 1.5625rem !important;
  }
}

@media screen and (min-width: 576px) {
  .py-sm-150 {
    padding-top: 9.375rem !important;
    padding-bottom: 9.375rem !important;
  }
}

/* Padding left & right */
.px-33 {
  padding-left: 2.0625rem !important;
  padding-right: 2.0625rem !important;
}

.px-1 {
  padding-left: 0.0625rem !important;
  padding-right: 0.0625rem !important;
}

.px-2 {
  padding-left: 0.125rem !important;
  padding-right: 0.125rem !important;
}

.px-3 {
  padding-left: 0.1875rem !important;
  padding-right: 0.1875rem !important;
}

.px-4 {
  padding-left: 0.25rem !important;
  padding-right: 0.25rem !important;
}

.px-5 {
  padding-left: 0.3125rem !important;
  padding-right: 0.3125rem !important;
}

.px-6 {
  padding-left: 0.375rem !important;
  padding-right: 0.375rem !important;
}

.px-7 {
  padding-left: 0.4375rem !important;
  padding-right: 0.4375rem !important;
}

.px-8 {
  padding-left: 0.5rem !important;
  padding-right: 0.5rem !important;
}

.px-9 {
  padding-left: 0.5625rem !important;
  padding-right: 0.5625rem !important;
}

.px-10 {
  padding-left: 0.625rem !important;
  padding-right: 0.625rem !important;
}

.px-11 {
  padding-left: 0.6875rem !important;
  padding-right: 0.6875rem !important;
}

.px-12 {
  padding-left: 0.75rem !important;
  padding-right: 0.75rem !important;
}

.px-13 {
  padding-left: 0.8125rem !important;
  padding-right: 0.8125rem !important;
}

.px-14 {
  padding-left: 0.875rem !important;
  padding-right: 0.875rem !important;
}

.px-15 {
  padding-left: 0.9375rem !important;
  padding-right: 0.9375rem !important;
}

.px-16 {
  padding-left: 1rem !important;
  padding-right: 1rem !important;
}

.px-17 {
  padding-left: 1.0625rem !important;
  padding-right: 1.0625rem !important;
}

.px-18 {
  padding-left: 1.125rem !important;
  padding-right: 1.125rem !important;
}

.px-19 {
  padding-left: 1.1875rem !important;
  padding-right: 1.1875rem !important;
}

.px-20 {
  padding-left: 1.25rem !important;
  padding-right: 1.25rem !important;
}

.px-21 {
  padding-left: 1.3125rem !important;
  padding-right: 1.3125rem !important;
}

.px-22 {
  padding-left: 1.375rem !important;
  padding-right: 1.375rem !important;
}

.px-23 {
  padding-left: 1.4375rem !important;
  padding-right: 1.4375rem !important;
}

.px-24 {
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
}

.px-25 {
  padding-left: 1.5625rem !important;
  padding-right: 1.5625rem !important;
}

.px-26 {
  padding-left: 1.625rem !important;
  padding-right: 1.625rem !important;
}

.px-27 {
  padding-left: 1.6875rem !important;
  padding-right: 1.6875rem !important;
}

.px-28 {
  padding-left: 1.75rem !important;
  padding-right: 1.75rem !important;
}

.px-29 {
  padding-left: 1.8125rem !important;
  padding-right: 1.8125rem !important;
}

.px-30 {
  padding-left: 1.875rem !important;
  padding-right: 1.875rem !important;
}

@media screen and (min-width: 576px) {
  .px-sm-20 {
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
  }
}

@media screen and (min-width: 576px) {
  .px-sm-24 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }
}

@media screen and (min-width: 576px) {
  .px-sm-25 {
    padding-left: 1.5625rem !important;
    padding-right: 1.5625rem !important;
  }
}

/* Padding top */
.pt-0 {
  padding-top: 0rem !important;
}

.pt-1 {
  padding-top: 0.0625rem !important;
}

.pt-2 {
  padding-top: 0.125rem !important;
}

.pt-3 {
  padding-top: 0.1875rem !important;
}

.pt-4 {
  padding-top: 0.25rem !important;
}

.pt-5 {
  padding-top: 0.3125rem !important;
}

.pt-6 {
  padding-top: 0.375rem !important;
}

.pt-7 {
  padding-top: 0.4375rem !important;
}

.pt-8 {
  padding-top: 0.5rem !important;
}

.pt-9 {
  padding-top: 0.5625rem !important;
}

.pt-10 {
  padding-top: 0.625rem !important;
}

.pt-11 {
  padding-top: 0.6875rem !important;
}

.pt-12 {
  padding-top: 0.75rem !important;
}

.pt-13 {
  padding-top: 0.8125rem !important;
}

.pt-14 {
  padding-top: 0.875rem !important;
}

.pt-15 {
  padding-top: 0.9375rem !important;
}

.pt-16 {
  padding-top: 1rem !important;
}

.pt-17 {
  padding-top: 1.0625rem !important;
}

.pt-18 {
  padding-top: 1.125rem !important;
}

.pt-19 {
  padding-top: 1.1875rem !important;
}

.pt-20 {
  padding-top: 1.25rem !important;
}

.pt-21 {
  padding-top: 1.3125rem !important;
}

.pt-22 {
  padding-top: 1.375rem !important;
}

.pt-23 {
  padding-top: 1.4375rem !important;
}

.pt-24 {
  padding-top: 1.5rem !important;
}

.pt-25 {
  padding-top: 1.5625rem !important;
}

.pt-26 {
  padding-top: 1.625rem !important;
}

.pt-27 {
  padding-top: 1.6875rem !important;
}

.pt-28 {
  padding-top: 1.75rem !important;
}

.pt-29 {
  padding-top: 1.8125rem !important;
}

.pt-30 {
  padding-top: 1.875rem !important;
}

@media screen and (min-width: 576px) {
  .pt-sm-24 {
    padding-top: 1.5rem !important;
  }
}

/* Padding bottom */
.pb-32 {
  padding-bottom: 2rem !important;
}

.pb-35 {
  padding-bottom: 2.1875rem !important;
}

.pb-36 {
  padding-bottom: 2.25rem !important;
}

.pb-37 {
  padding-bottom: 2.3125rem !important;
}

.pb-40 {
  padding-bottom: 2.5rem !important;
}

.pb-48 {
  padding-bottom: 3rem !important;
}

.pb-55 {
  padding-bottom: 3.4375rem !important;
}

.pb-60 {
  padding-bottom: 3.75rem !important;
}

.pb-1 {
  padding-bottom: 0.0625rem !important;
}

.pb-2 {
  padding-bottom: 0.125rem !important;
}

.pb-3 {
  padding-bottom: 0.1875rem !important;
}

.pb-4 {
  padding-bottom: 0.25rem !important;
}

.pb-5 {
  padding-bottom: 0.3125rem !important;
}

.pb-6 {
  padding-bottom: 0.375rem !important;
}

.pb-7 {
  padding-bottom: 0.4375rem !important;
}

.pb-8 {
  padding-bottom: 0.5rem !important;
}

.pb-9 {
  padding-bottom: 0.5625rem !important;
}

.pb-10 {
  padding-bottom: 0.625rem !important;
}

.pb-11 {
  padding-bottom: 0.6875rem !important;
}

.pb-12 {
  padding-bottom: 0.75rem !important;
}

.pb-13 {
  padding-bottom: 0.8125rem !important;
}

.pb-14 {
  padding-bottom: 0.875rem !important;
}

.pb-15 {
  padding-bottom: 0.9375rem !important;
}

.pb-16 {
  padding-bottom: 1rem !important;
}

.pb-17 {
  padding-bottom: 1.0625rem !important;
}

.pb-18 {
  padding-bottom: 1.125rem !important;
}

.pb-19 {
  padding-bottom: 1.1875rem !important;
}

.pb-20 {
  padding-bottom: 1.25rem !important;
}

.pb-21 {
  padding-bottom: 1.3125rem !important;
}

.pb-22 {
  padding-bottom: 1.375rem !important;
}

.pb-23 {
  padding-bottom: 1.4375rem !important;
}

.pb-24 {
  padding-bottom: 1.5rem !important;
}

.pb-25 {
  padding-bottom: 1.5625rem !important;
}

.pb-26 {
  padding-bottom: 1.625rem !important;
}

.pb-27 {
  padding-bottom: 1.6875rem !important;
}

.pb-28 {
  padding-bottom: 1.75rem !important;
}

.pb-29 {
  padding-bottom: 1.8125rem !important;
}

.pb-30 {
  padding-bottom: 1.875rem !important;
}

@media screen and (min-width: 576px) {
  .pb-sm-59 {
    padding-bottom: 3.6875rem !important;
  }
}

/* Padding Left */
.pl-0 {
  padding-left: 0rem !important;
}

.pl-1 {
  padding-left: 0.0625rem !important;
}

.pl-2 {
  padding-left: 0.125rem !important;
}

.pl-3 {
  padding-left: 0.1875rem !important;
}

.pl-4 {
  padding-left: 0.25rem !important;
}

.pl-5 {
  padding-left: 0.3125rem !important;
}

.pl-6 {
  padding-left: 0.375rem !important;
}

.pl-7 {
  padding-left: 0.4375rem !important;
}

.pl-8 {
  padding-left: 0.5rem !important;
}

.pl-9 {
  padding-left: 0.5625rem !important;
}

.pl-10 {
  padding-left: 0.625rem !important;
}

.pl-11 {
  padding-left: 0.6875rem !important;
}

.pl-12 {
  padding-left: 0.75rem !important;
}

.pl-13 {
  padding-left: 0.8125rem !important;
}

.pl-14 {
  padding-left: 0.875rem !important;
}

.pl-15 {
  padding-left: 0.9375rem !important;
}

.pl-16 {
  padding-left: 1rem !important;
}

.pl-17 {
  padding-left: 1.0625rem !important;
}

.pl-18 {
  padding-left: 1.125rem !important;
}

.pl-19 {
  padding-left: 1.1875rem !important;
}

.pl-20 {
  padding-left: 1.25rem !important;
}

@media screen and (min-width: 1400px) {
  .pl-xl-70 {
    padding-left: 4.375rem !important;
  }
}

@media screen and (min-width: 576px) {
  .pl-sm-20 {
    padding-left: 1.25rem !important;
  }
}

/* Padding Right */
.pr-0 {
  padding-right: 0rem !important;
}

.pr-1 {
  padding-right: 0.0625rem !important;
}

.pr-2 {
  padding-right: 0.125rem !important;
}

.pr-3 {
  padding-right: 0.1875rem !important;
}

.pr-4 {
  padding-right: 0.25rem !important;
}

.pr-5 {
  padding-right: 0.3125rem !important;
}

.pr-6 {
  padding-right: 0.375rem !important;
}

.pr-7 {
  padding-right: 0.4375rem !important;
}

.pr-8 {
  padding-right: 0.5rem !important;
}

.pr-9 {
  padding-right: 0.5625rem !important;
}

.pr-10 {
  padding-right: 0.625rem !important;
}

.pr-11 {
  padding-right: 0.6875rem !important;
}

.pr-12 {
  padding-right: 0.75rem !important;
}

.pr-13 {
  padding-right: 0.8125rem !important;
}

.pr-14 {
  padding-right: 0.875rem !important;
}

.pr-15 {
  padding-right: 0.9375rem !important;
}

.pr-16 {
  padding-right: 1rem !important;
}

.pr-17 {
  padding-right: 1.0625rem !important;
}

.pr-18 {
  padding-right: 1.125rem !important;
}

.pr-19 {
  padding-right: 1.1875rem !important;
}

.pr-20 {
  padding-right: 1.25rem !important;
}

/* Top */
.top-10 {
  top: 10px;
}

/* Right */
.right-10 {
  right: 10px;
}

/* Margin Left & Right */
.mx-0 {
  margin-left: 0rem !important;
  margin-right: 0rem !important;
}

/* Margin top */
.mt-0 {
  margin-top: 0rem !important;
}

.mt-1 {
  margin-top: 0.0625rem !important;
}

.mt-2 {
  margin-top: 0.125rem !important;
}

.mt-3 {
  margin-top: 0.1875rem !important;
}

.mt-4 {
  margin-top: 0.25rem !important;
}

.mt-5 {
  margin-top: 0.3125rem !important;
}

.mt-6 {
  margin-top: 0.375rem !important;
}

.mt-7 {
  margin-top: 0.4375rem !important;
}

.mt-8 {
  margin-top: 0.5rem !important;
}

.mt-9 {
  margin-top: 0.5625rem !important;
}

.mt-10 {
  margin-top: 0.625rem !important;
}

.mt-11 {
  margin-top: 0.6875rem !important;
}

.mt-12 {
  margin-top: 0.75rem !important;
}

.mt-13 {
  margin-top: 0.8125rem !important;
}

.mt-14 {
  margin-top: 0.875rem !important;
}

.mt-15 {
  margin-top: 0.9375rem !important;
}

.mt-16 {
  margin-top: 1rem !important;
}

.mt-17 {
  margin-top: 1.0625rem !important;
}

.mt-18 {
  margin-top: 1.125rem !important;
}

.mt-19 {
  margin-top: 1.1875rem !important;
}

.mt-20 {
  margin-top: 1.25rem !important;
}

.mt-21 {
  margin-top: 1.3125rem !important;
}

.mt-22 {
  margin-top: 1.375rem !important;
}

.mt-23 {
  margin-top: 1.4375rem !important;
}

.mt-24 {
  margin-top: 1.5rem !important;
}

.mt-25 {
  margin-top: 1.5625rem !important;
}

.mt-26 {
  margin-top: 1.625rem !important;
}

.mt-27 {
  margin-top: 1.6875rem !important;
}

.mt-28 {
  margin-top: 1.75rem !important;
}

.mt-29 {
  margin-top: 1.8125rem !important;
}

.mt-30 {
  margin-top: 1.875rem !important;
}

/* Margin right */
.mr-0 {
  margin-right: 0rem !important;
}

.mr-1 {
  margin-right: 0.0625rem !important;
}

.mr-2 {
  margin-right: 0.125rem !important;
}

.mr-3 {
  margin-right: 0.1875rem !important;
}

.mr-4 {
  margin-right: 0.25rem !important;
}

.mr-5 {
  margin-right: 0.3125rem !important;
}

.mr-6 {
  margin-right: 0.375rem !important;
}

.mr-7 {
  margin-right: 0.4375rem !important;
}

.mr-8 {
  margin-right: 0.5rem !important;
}

.mr-9 {
  margin-right: 0.5625rem !important;
}

.mr-10 {
  margin-right: 0.625rem !important;
}

.mr-11 {
  margin-right: 0.6875rem !important;
}

.mr-12 {
  margin-right: 0.75rem !important;
}

.mr-13 {
  margin-right: 0.8125rem !important;
}

.mr-14 {
  margin-right: 0.875rem !important;
}

.mr-15 {
  margin-right: 0.9375rem !important;
}

.mr-16 {
  margin-right: 1rem !important;
}

.mr-17 {
  margin-right: 1.0625rem !important;
}

.mr-18 {
  margin-right: 1.125rem !important;
}

.mr-19 {
  margin-right: 1.1875rem !important;
}

.mr-20 {
  margin-right: 1.25rem !important;
}

/* Margin bottom */
.mb-0 {
  margin-bottom: 0rem !important;
}

.mb-1 {
  margin-bottom: 0.0625rem !important;
}

.mb-2 {
  margin-bottom: 0.125rem !important;
}

.mb-3 {
  margin-bottom: 0.1875rem !important;
}

.mb-4 {
  margin-bottom: 0.25rem !important;
}

.mb-5 {
  margin-bottom: 0.3125rem !important;
}

.mb-6 {
  margin-bottom: 0.375rem !important;
}

.mb-7 {
  margin-bottom: 0.4375rem !important;
}

.mb-8 {
  margin-bottom: 0.5rem !important;
}

.mb-9 {
  margin-bottom: 0.5625rem !important;
}

.mb-10 {
  margin-bottom: 0.625rem !important;
}

.mb-11 {
  margin-bottom: 0.6875rem !important;
}

.mb-12 {
  margin-bottom: 0.75rem !important;
}

.mb-13 {
  margin-bottom: 0.8125rem !important;
}

.mb-14 {
  margin-bottom: 0.875rem !important;
}

.mb-15 {
  margin-bottom: 0.9375rem !important;
}

.mb-16 {
  margin-bottom: 1rem !important;
}

.mb-17 {
  margin-bottom: 1.0625rem !important;
}

.mb-18 {
  margin-bottom: 1.125rem !important;
}

.mb-19 {
  margin-bottom: 1.1875rem !important;
}

.mb-20 {
  margin-bottom: 1.25rem !important;
}

.mb-21 {
  margin-bottom: 1.3125rem !important;
}

.mb-22 {
  margin-bottom: 1.375rem !important;
}

.mb-23 {
  margin-bottom: 1.4375rem !important;
}

.mb-24 {
  margin-bottom: 1.5rem !important;
}

.mb-25 {
  margin-bottom: 1.5625rem !important;
}

.mb-26 {
  margin-bottom: 1.625rem !important;
}

.mb-27 {
  margin-bottom: 1.6875rem !important;
}

.mb-28 {
  margin-bottom: 1.75rem !important;
}

.mb-29 {
  margin-bottom: 1.8125rem !important;
}

.mb-30 {
  margin-bottom: 1.875rem !important;
}

/* Margin left */
.ml-0 {
  margin-left: 0rem !important;
}

.ml-1 {
  margin-left: 0.0625rem !important;
}

.ml-2 {
  margin-left: 0.125rem !important;
}

.ml-3 {
  margin-left: 0.1875rem !important;
}

.ml-4 {
  margin-left: 0.25rem !important;
}

.ml-5 {
  margin-left: 0.3125rem !important;
}

.ml-6 {
  margin-left: 0.375rem !important;
}

.ml-7 {
  margin-left: 0.4375rem !important;
}

.ml-8 {
  margin-left: 0.5rem !important;
}

.ml-9 {
  margin-left: 0.5625rem !important;
}

.ml-10 {
  margin-left: 0.625rem !important;
}

.ml-11 {
  margin-left: 0.6875rem !important;
}

.ml-12 {
  margin-left: 0.75rem !important;
}

.ml-13 {
  margin-left: 0.8125rem !important;
}

.ml-14 {
  margin-left: 0.875rem !important;
}

.ml-15 {
  margin-left: 0.9375rem !important;
}

.ml-16 {
  margin-left: 1rem !important;
}

.ml-17 {
  margin-left: 1.0625rem !important;
}

.ml-18 {
  margin-left: 1.125rem !important;
}

.ml-19 {
  margin-left: 1.1875rem !important;
}

.ml-20 {
  margin-left: 1.25rem !important;
}

/* Gap */
.g-0 {
  gap: 0px;
}

.g-1 {
  gap: 0.0625rem !important;
}

.g-2 {
  gap: 0.125rem !important;
}

.g-3 {
  gap: 0.1875rem !important;
}

.g-4 {
  gap: 0.25rem !important;
}

.g-5 {
  gap: 0.3125rem !important;
}

.g-6 {
  gap: 0.375rem !important;
}

.g-7 {
  gap: 0.4375rem !important;
}

.g-8 {
  gap: 0.5rem !important;
}

.g-9 {
  gap: 0.5625rem !important;
}

.g-10 {
  gap: 0.625rem !important;
}

.g-11 {
  gap: 0.6875rem !important;
}

.g-12 {
  gap: 0.75rem !important;
}

.g-13 {
  gap: 0.8125rem !important;
}

.g-14 {
  gap: 0.875rem !important;
}

.g-15 {
  gap: 0.9375rem !important;
}

.g-16 {
  gap: 1rem !important;
}

.g-17 {
  gap: 1.0625rem !important;
}

.g-18 {
  gap: 1.125rem !important;
}

.g-19 {
  gap: 1.1875rem !important;
}

.g-20 {
  gap: 1.25rem !important;
}

.g-21 {
  gap: 1.3125rem !important;
}

.g-22 {
  gap: 1.375rem !important;
}

.g-23 {
  gap: 1.4375rem !important;
}

.g-24 {
  gap: 1.5rem !important;
}

.g-25 {
  gap: 1.5625rem !important;
}

.g-26 {
  gap: 1.625rem !important;
}

.g-27 {
  gap: 1.6875rem !important;
}

.g-28 {
  gap: 1.75rem !important;
}

.g-29 {
  gap: 1.8125rem !important;
}

.g-30 {
  gap: 1.875rem !important;
}

/* Row Gap */
.rg-40 {
  row-gap: 40px;
}

.rg-1 {
  row-gap: 0.0625rem !important;
}

.rg-2 {
  row-gap: 0.125rem !important;
}

.rg-3 {
  row-gap: 0.1875rem !important;
}

.rg-4 {
  row-gap: 0.25rem !important;
}

.rg-5 {
  row-gap: 0.3125rem !important;
}

.rg-6 {
  row-gap: 0.375rem !important;
}

.rg-7 {
  row-gap: 0.4375rem !important;
}

.rg-8 {
  row-gap: 0.5rem !important;
}

.rg-9 {
  row-gap: 0.5625rem !important;
}

.rg-10 {
  row-gap: 0.625rem !important;
}

.rg-11 {
  row-gap: 0.6875rem !important;
}

.rg-12 {
  row-gap: 0.75rem !important;
}

.rg-13 {
  row-gap: 0.8125rem !important;
}

.rg-14 {
  row-gap: 0.875rem !important;
}

.rg-15 {
  row-gap: 0.9375rem !important;
}

.rg-16 {
  row-gap: 1rem !important;
}

.rg-17 {
  row-gap: 1.0625rem !important;
}

.rg-18 {
  row-gap: 1.125rem !important;
}

.rg-19 {
  row-gap: 1.1875rem !important;
}

.rg-20 {
  row-gap: 1.25rem !important;
}

.rg-21 {
  row-gap: 1.3125rem !important;
}

.rg-22 {
  row-gap: 1.375rem !important;
}

.rg-23 {
  row-gap: 1.4375rem !important;
}

.rg-24 {
  row-gap: 1.5rem !important;
}

.rg-25 {
  row-gap: 1.5625rem !important;
}

.rg-26 {
  row-gap: 1.625rem !important;
}

.rg-27 {
  row-gap: 1.6875rem !important;
}

.rg-28 {
  row-gap: 1.75rem !important;
}

.rg-29 {
  row-gap: 1.8125rem !important;
}

.rg-30 {
  row-gap: 1.875rem !important;
}

/* Column gap */
.cg-0 {
  -moz-column-gap: 0px;
       column-gap: 0px;
}

.cg-1 {
  -moz-column-gap: 0.0625rem !important;
       column-gap: 0.0625rem !important;
}

.cg-2 {
  -moz-column-gap: 0.125rem !important;
       column-gap: 0.125rem !important;
}

.cg-3 {
  -moz-column-gap: 0.1875rem !important;
       column-gap: 0.1875rem !important;
}

.cg-4 {
  -moz-column-gap: 0.25rem !important;
       column-gap: 0.25rem !important;
}

.cg-5 {
  -moz-column-gap: 0.3125rem !important;
       column-gap: 0.3125rem !important;
}

.cg-6 {
  -moz-column-gap: 0.375rem !important;
       column-gap: 0.375rem !important;
}

.cg-7 {
  -moz-column-gap: 0.4375rem !important;
       column-gap: 0.4375rem !important;
}

.cg-8 {
  -moz-column-gap: 0.5rem !important;
       column-gap: 0.5rem !important;
}

.cg-9 {
  -moz-column-gap: 0.5625rem !important;
       column-gap: 0.5625rem !important;
}

.cg-10 {
  -moz-column-gap: 0.625rem !important;
       column-gap: 0.625rem !important;
}

.cg-11 {
  -moz-column-gap: 0.6875rem !important;
       column-gap: 0.6875rem !important;
}

.cg-12 {
  -moz-column-gap: 0.75rem !important;
       column-gap: 0.75rem !important;
}

.cg-13 {
  -moz-column-gap: 0.8125rem !important;
       column-gap: 0.8125rem !important;
}

.cg-14 {
  -moz-column-gap: 0.875rem !important;
       column-gap: 0.875rem !important;
}

.cg-15 {
  -moz-column-gap: 0.9375rem !important;
       column-gap: 0.9375rem !important;
}

.cg-16 {
  -moz-column-gap: 1rem !important;
       column-gap: 1rem !important;
}

.cg-17 {
  -moz-column-gap: 1.0625rem !important;
       column-gap: 1.0625rem !important;
}

.cg-18 {
  -moz-column-gap: 1.125rem !important;
       column-gap: 1.125rem !important;
}

.cg-19 {
  -moz-column-gap: 1.1875rem !important;
       column-gap: 1.1875rem !important;
}

.cg-20 {
  -moz-column-gap: 1.25rem !important;
       column-gap: 1.25rem !important;
}

.cg-21 {
  -moz-column-gap: 1.3125rem !important;
       column-gap: 1.3125rem !important;
}

.cg-22 {
  -moz-column-gap: 1.375rem !important;
       column-gap: 1.375rem !important;
}

.cg-23 {
  -moz-column-gap: 1.4375rem !important;
       column-gap: 1.4375rem !important;
}

.cg-24 {
  -moz-column-gap: 1.5rem !important;
       column-gap: 1.5rem !important;
}

.cg-25 {
  -moz-column-gap: 1.5625rem !important;
       column-gap: 1.5625rem !important;
}

.cg-26 {
  -moz-column-gap: 1.625rem !important;
       column-gap: 1.625rem !important;
}

.cg-27 {
  -moz-column-gap: 1.6875rem !important;
       column-gap: 1.6875rem !important;
}

.cg-28 {
  -moz-column-gap: 1.75rem !important;
       column-gap: 1.75rem !important;
}

.cg-29 {
  -moz-column-gap: 1.8125rem !important;
       column-gap: 1.8125rem !important;
}

.cg-30 {
  -moz-column-gap: 1.875rem !important;
       column-gap: 1.875rem !important;
}

/* Minimum width */
.min-w-auto {
  min-width: auto !important;
}

.min-w-0 {
  min-width: 0rem;
}

/* Maximum width */
.max-w-20 {
  max-width: 1.25rem;
}

.max-w-26 {
  max-width: 1.625rem;
}

.max-w-150 {
  max-width: 9.375rem;
}

.max-w-160 {
  max-width: 10rem;
}

.max-w-207 {
  max-width: 12.9375rem;
}

.max-w-295 {
  max-width: 18.4375rem;
}

.max-w-366 {
  max-width: 22.875rem;
}

.max-w-400 {
  max-width: 25rem;
}

.max-w-584 {
  max-width: 36.5rem;
}

.max-w-641 {
  max-width: 40.0625rem;
}

@media screen and (min-width: 576px) {
  .max-sm-w-174 {
    max-width: 10.875rem;
  }
}

/* Width */
.w-15 {
  width: 0.9375rem !important;
}

.w-18 {
  width: 1.125rem !important;
}

.w-20 {
  width: 1.25rem !important;
}

.w-22 {
  width: 1.375rem !important;
}

.w-25 {
  width: 1.5625rem !important;
}

.w-30 {
  width: 1.875rem !important;
}

.w-35 {
  width: 2.1875rem !important;
}

.w-40 {
  width: 2.5rem !important;
}

.w-50 {
  width: 3.125rem !important;
}

.w-72 {
  width: 4.5rem !important;
}

.w-77 {
  width: 4.8125rem !important;
}

.w-105 {
  width: 6.5625rem !important;
}

/* Minimum Height */
.min-h-125 {
  min-height: 7.8125rem !important;
}

/* Maximum Height */
.max-h-80 {
  max-height: 5rem;
}

/* Height */
.h-15 {
  height: 0.9375rem !important;
}

.h-18 {
  height: 1.125rem !important;
}

.h-20 {
  height: 1.25rem !important;
}

.h-22 {
  height: 1.375rem !important;
}

.h-25 {
  height: 1.5625rem !important;
}

.h-30 {
  height: 1.875rem !important;
}

.h-35 {
  height: 2.1875rem !important;
}

.h-40 {
  height: 2.5rem !important;
}

.h-48 {
  height: 3rem !important;
}

.h-50 {
  height: 3.125rem !important;
}

.h-72 {
  height: 4.5rem !important;
}

.h-77 {
  height: 4.8125rem !important;
}

.h-105 {
  height: 6.5625rem !important;
}

/* Border */
.bd-one {
  border-width: 0.0625rem !important;
  border-style: solid;
}

/* Border top */
.bd-t-zero {
  border-top-width: 0rem !important;
  border-top-style: solid;
}

.bd-t-one {
  border-top-width: 0.0625rem !important;
  border-top-style: solid;
}

/* Border Bottom */
.bd-b-one {
  border-bottom-width: 0.0625rem !important;
  border-bottom-style: solid;
}

/* Border right */
.bd-r-one {
  border-right-width: 0.0625rem !important;
  border-right-style: solid;
}

/* Border Radius */
.bd-ra-0 {
  border-radius: 0rem !important;
}

.bd-ra-1 {
  border-radius: 0.0625rem !important;
}

.bd-ra-2 {
  border-radius: 0.125rem !important;
}

.bd-ra-3 {
  border-radius: 0.1875rem !important;
}

.bd-ra-4 {
  border-radius: 0.25rem !important;
}

.bd-ra-5 {
  border-radius: 0.3125rem !important;
}

.bd-ra-6 {
  border-radius: 0.375rem !important;
}

.bd-ra-7 {
  border-radius: 0.4375rem !important;
}

.bd-ra-8 {
  border-radius: 0.5rem !important;
}

.bd-ra-9 {
  border-radius: 0.5625rem !important;
}

.bd-ra-10 {
  border-radius: 0.625rem !important;
}

.bd-ra-11 {
  border-radius: 0.6875rem !important;
}

.bd-ra-12 {
  border-radius: 0.75rem !important;
}

.bd-ra-13 {
  border-radius: 0.8125rem !important;
}

.bd-ra-14 {
  border-radius: 0.875rem !important;
}

.bd-ra-15 {
  border-radius: 0.9375rem !important;
}

.bd-ra-16 {
  border-radius: 1rem !important;
}

.bd-ra-17 {
  border-radius: 1.0625rem !important;
}

.bd-ra-18 {
  border-radius: 1.125rem !important;
}

.bd-ra-19 {
  border-radius: 1.1875rem !important;
}

.bd-ra-20 {
  border-radius: 1.25rem !important;
}

/* Border Top left Radius */
.bd-tl-ra-0 {
  border-top-left-radius: 0rem !important;
}

/* Border Top right Radius */
.bd-tr-ra-0 {
  border-top-right-radius: 0rem !important;
}

/* Border bottom left Radius */
.bd-bl-ra-0 {
  border-bottom-left-radius: 0rem !important;
}

/* Border bottom right Radius */
.bd-br-ra-0 {
  border-bottom-right-radius: 0rem !important;
}

/* Lists */
.zList-pb-4 li {
  padding-bottom: 0.25rem;
}
.zList-pb-4 li:last-child {
  padding-bottom: 0;
}
.zList-pb-10 li {
  padding-bottom: 0.625rem;
}
.zList-pb-10 li:last-child {
  padding-bottom: 0;
}
.zList-pb-14 li {
  padding-bottom: 0.875rem;
}
.zList-pb-14 li:last-child {
  padding-bottom: 0;
}
.zList-pb-16 li {
  padding-bottom: 1rem;
}
.zList-pb-16 li:last-child {
  padding-bottom: 0;
}
.zList-pb-21 li {
  padding-bottom: 1.3125rem;
}
.zList-pb-21 li:last-child {
  padding-bottom: 0;
}

.accordion-style-reset .accordion-item {
  border: none;
  border-radius: 0;
}
.accordion-style-reset .accordion-body {
  padding: 0;
}
.accordion-style-reset .accordion-button {
  border-radius: 0 !important;
  box-shadow: none !important;
  background-color: transparent !important;
  padding: 0 !important;
}
.accordion-style-one {
  display: flex;
  flex-direction: column;
  row-gap: 1.5rem;
}
.accordion-style-one .row div .accordion-item {
  margin-bottom: 1.5rem;
}
.accordion-style-one .row div .accordion-item:last-child {
  margin-bottom: 0;
}
.accordion-style-one .accordion-item {
  border: 0.0625rem solid var(--stroke);
  border-radius: 0.25rem;
  background-color: transparent;
}
.accordion-style-one .accordion-body {
  padding: 0rem 1.875rem 1.375rem;
  font-size: clamp(16px, 0.938vw, 20px);
  font-weight: 400;
  line-height: 1.945;
}
@media screen and (max-width: 767px) {
  .accordion-style-one .accordion-body {
    padding: 0rem 1.25rem 1.25rem !important;
  }
}
@media screen and (max-width: 575px) {
  .accordion-style-one .accordion-body {
    padding: 0rem 0.625rem 0.625rem !important;
    font-size: 1rem;
  }
}
.accordion-style-one .accordion-button {
  padding: 1.875rem !important;
  font-size: clamp(18px, 1.25vw, 30px);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: 0.364px;
  color: var(--text-black);
  -moz-column-gap: 0.25rem;
       column-gap: 0.25rem;
}
@media screen and (max-width: 1399px) {
  .accordion-style-one .accordion-button {
    padding: 1.875rem !important;
  }
}
@media screen and (max-width: 767px) {
  .accordion-style-one .accordion-button {
    padding: 1.25rem !important;
  }
}
@media screen and (max-width: 575px) {
  .accordion-style-one .accordion-button {
    padding: 0.625rem !important;
    font-size: 1rem;
  }
}
.accordion-style-one .accordion-button.collapsed::after {
  background-image: url(../../images/icon/accordion-icon-1.svg);

}
.accordion-style-one .accordion-button::after {
  width: 40px;
  height: 40px;
  background-image: url(../../images/icon/accordion-icon-2.svg);
  background-size: 40px;
}
@media screen and (max-width: 767px) {
  .accordion-style-one .accordion-button::after {
    width: 1.875rem;
    height: 1.875rem;
    background-size: 1.875rem;
  }
}
@media screen and (max-width: 575px) {
  .accordion-style-one .accordion-button::after {
    width: 1.25rem;
    height: 1.25rem;
    background-size: 1.25rem;
  }
}

.tab-style-reset {
  --bs-nav-link-padding-x: 0;
  --bs-nav-link-padding-y: 0;
  --bs-nav-link-font-weight: 400;
  --bs-nav-link-color: #fff;
  --bs-nav-tabs-border-width: 0;
  --bs-nav-tabs-border-color: #fff;
  --bs-nav-tabs-border-radius: 0;
  --bs-nav-tabs-link-active-color: #fff;
  --bs-nav-tabs-link-active-bg: #fff;
  flex-wrap: nowrap;
  border-bottom: none;
}
.tab-style-one {
  padding-bottom: 1.875rem;
  justify-content: center;
}
.tab-style-one .nav-link {
  border: 0.0625rem solid var(--white);
  border-radius: 0;
  background-color: var(--white) !important;
  font-size: clamp(16px, 0.938vw, 20px);
  font-weight: 400;
  line-height: 1.945;
  letter-spacing: 0.234px;
  color: var(--text-black) !important;
  padding: 1rem 1.9375rem;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .tab-style-one .nav-link {
    padding: 1rem;
  }
}
@media screen and (max-width: 575px) {
  .tab-style-one .nav-link {
    padding: 0.5rem;
  }
}
.tab-style-one .nav-link.active {
  border-color: var(--text-black);
}

/* Form */
.sf-form-label {
  margin-bottom: 0.625rem;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 0.875rem;
  color: var(--text-black);
}

.sf-form-control {
  display: block;
  width: 100%;
  padding: 1.0625rem 1.875rem 1rem;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.945;
  color: var(--text-black);
  background-color: var(--white);
  background-clip: padding-box;
  border: 0.0625rem solid var(--stroke);
  border-radius: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.sf-form-control:focus, .sf-form-control:hover {
  border: 0.0625rem solid var(--primary-color);
  background-color: var(--white) !important;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}
.sf-form-control:focus {
  color: var(--text-black) !important;
}
.sf-form-control::-moz-placeholder {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.945;
  color: var(--stroke);
}
.sf-form-control::placeholder {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.945;
  color: var(--stroke);
}

textarea.sf-form-control {
  resize: none;
  min-height: 25rem;
}
@media screen and (max-width: 575px) {
    textarea.sf-form-control {
        resize: none;
        min-height: 200px;
    }
}

body {
  font-family: "Inter", sans-serif;
  background-color: var(--white);
  color: var(--paragraph);
  overflow-x: hidden;
}

iframe {
  border: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 0 !important;
}

p {
  margin: 0 !important;
}

input,
input:hover,
input:focus,
input:active,
textarea,
textarea:hover,
textarea:focus,
textarea:active,
select:focus,
select:hover {
  outline: none;
  box-shadow: none;
}

button,
button:hover,
button:focus,
button:active {
  outline: none;
  box-shadow: none;
}

embed,
object,
video {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  outline: 0;
}

a:active,
a:focus,
a:hover,
a:visited {
  text-decoration: none;
  outline: 0;
}

:focus {
  outline: none;
}

img {
  border: none;
  max-width: 100%;
  height: auto;
}

button:focus {
  outline: none;
  box-shadow: none !important;
}

.btn.focus,
.btn:focus {
  border: 1px solid transparent;
}

.form-control:focus,
.btn.focus,
.btn:focus {
  color: #495057;
  background-color: #fff;
  outline: 0;
  box-shadow: none;
}

a:focus {
  outline: 0px solid;
}

a {
  text-decoration: none;
}

a:hover {
  color: var(--primary-color);
  text-decoration: none;
}

a:active,
a:hover {
  outline: 0 none;
  color: var(--hover-color);
}

ul {
  list-style: outside none none;
  margin: 0;
  padding: 0;
}

::-moz-selection {
  background: var(--text-black);
  text-shadow: none;
}

::selection {
  background: var(--text-black);
  text-shadow: none;
  color: #ffffff;
}

.container {
  max-width: 89.375rem;
}

[data-background] {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.mobileMenu {
  display: none;
}
@media screen and (max-width: 1023px) {
  .mobileMenu {
    display: block;
  }
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -webkit-appearance: textfield;
     -moz-appearance: textfield;
          appearance: textfield;
}

.landing-header {
  background-color: var(--text-black);
  padding: 1.875rem 0;
}
@media screen and (max-width: 575px) {
  .landing-header {
    padding: 0.625rem 0;
  }
}
.landing-header.sticky-on {
  top: 0;
  width: 100%;
  z-index: 20;
  position: fixed;
  animation-duration: 0.7s;
  animation-fill-mode: both;
  animation-name: fadeInDown;
  animation-timing-function: ease;
  transition: 0.3s all ease-in-out;
  background-color: var(--text-black) !important;
  box-shadow: 0 0.1875rem 1.125rem rgba(2, 21, 78, 0.09);
  padding: 0.625rem 0;
}
/*.landing-header-btn {*/
/*  display: inline-flex;*/
/*  align-items: center;*/
/*  gap: 0.9375rem;*/
/*  padding: 0.9375rem 1.875rem;*/
/*  background-color: var(--primary-color);*/
/*  font-size: 1.125rem;*/
/*  font-weight: 400;*/
/*  line-height: 2.1875rem;*/
/*  color: var(--text-black);*/
/*  transition: all 0.3s;*/
/*}*/
/*.landing-header-btn:hover {*/
/*  background-color: var(--white);*/
/*  color: var(--text-black);*/
/*}*/
.landing-menu-navbar-collapse {
  background-color: var(--text-black);
  align-items: flex-start;
  padding: 1.875rem;
}
@media screen and (min-width: 992px) {
  .landing-menu-navbar-collapse {
    padding: 0;
  }
}
@media screen and (max-width: 991px) {
  .landing-menu-navbar-collapse {
    height: 100vh;
  }
}
.landing-menu-navbar-nav {
  gap: 0.625rem 1.875rem;
}
.landing-menu-navbar-nav li a {
  position: relative;
  padding: 0 !important;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 2.1875rem;
  color: var(--white);
  letter-spacing: 0.234px;
  transition: all 0.3s;
}
@media screen and (max-width: 991px) {
  .landing-menu-navbar-nav li a {
    color: var(--white);
  }
}
.landing-menu-navbar-nav li a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--primary-color);
  border-radius: 50px;
  transition: all 0.3s;
}
.landing-menu-navbar-nav li a.active, .landing-menu-navbar-nav li a:hover {
  color: var(--primary-color);
}
@media screen and (max-width: 991px) {
  .landing-menu-navbar-nav li a.active, .landing-menu-navbar-nav li a:hover {
    color: var(--white);
  }
}
.landing-menu-navbar-nav li a.active::before, .landing-menu-navbar-nav li a:hover::before {
  width: 100%;
}
@media screen and (min-width: 992px) {
  .landing-menu-navbar-nav li:hover .dropdown-toggle ~ .dropdown-menu {
    opacity: 1;
    visibility: visible;
    top: 30px;
  }
}
.landing-section-gap {
  padding: 7.5rem 0;
}
@media screen and (max-width: 575px) {
  .landing-section-gap {
    padding: 3.125rem 0;
  }
}
.landing-section-gap-alt {
  padding: 9.375rem 0;
}
@media screen and (max-width: 991px) {
  .landing-section-gap-alt {
    padding: 7.5rem 0;
  }
}
@media screen and (max-width: 767px) {
  .landing-section-gap-alt {
    padding: 5rem 0;
  }
}
@media screen and (max-width: 575px) {
  .landing-section-gap-alt {
    padding: 3.125rem 0;
  }
}
.landing-section-gap-bottom-alt {
  padding-bottom: 9.375rem;
}
@media screen and (max-width: 991px) {
  .landing-section-gap-bottom-alt {
    padding-bottom: 7.5rem;
  }
}
@media screen and (max-width: 767px) {
  .landing-section-gap-bottom-alt {
    padding-bottom: 5rem;
  }
}
@media screen and (max-width: 575px) {
  .landing-section-gap-bottom-alt {
    padding-bottom: 3.125rem;
  }
}
.landing-section-content .subtitle {
  font-size: 28px;
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: 0.364px;
  color: var(--primary-color);
  padding-bottom: 1.875rem;
}
@media screen and (max-width: 575px) {
  .landing-section-content .subtitle {
    padding-bottom: 1.25rem;
  }
}
.landing-section-content .title {
  font-size: clamp(26px, 2.083vw, 46px);
  font-weight: 500;
  line-height: 1.225;
  letter-spacing: 0.52px;
  color: var(--text-black);
  padding-bottom: 1.875rem;
}
@media screen and (max-width: 575px) {
  .landing-section-content .title {
    padding-bottom: 1.25rem;
  }
}
.landing-section-content .info {
  font-size: 18px;
  font-weight: 400;
  line-height: 35px;
  letter-spacing: 0.234px;
  color: var(--paragraph);
}
.landing-hero-banner {
  position: relative;
  padding: 17.25rem 0;
}
@media screen and (max-width: 575px) {
  .landing-hero-banner {
    padding: 6.5625rem 0;
  }
}
.landing-hero-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(23, 52, 70, 0.7);
}
.landing-hero-banner[data-background] {
  background-position: center bottom;
}
.landing-hero-banner-content {
  position: relative;
  max-width: 71.875rem;
  margin: 0 auto;
  text-align: center;
}
.landing-hero-banner-content .title {
  padding-bottom: 1.875rem;
  font-size: clamp(44px, 6.771vw, 140px);
  font-style: normal;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 2.6px;
  color: var(--white);
}
.landing-hero-banner-content .title span {
  color: var(--primary-color);
}
.landing-hero-banner-content .info {
  font-size: clamp(16px, 0.938vw, 20px);
  font-weight: 400;
  line-height: 1.95;
  letter-spacing: 0.234px;
  color: var(--stroke);
}
/*.landing-aboutUs {*/
/*  padding: 7.5rem 0;*/
/*}*/
.landing-aboutUs-left .landing-section-content {
  padding-bottom: 3.125rem;
}
@media screen and (max-width: 575px) {
  .landing-aboutUs-left .landing-section-content {
    padding-bottom: 1.875rem;
  }
}
.landing-aboutUs-left .lists {
  position: relative;
  margin-bottom: 50px;
}
@media screen and (max-width: 575px) {
  .landing-aboutUs-left .lists {
    margin-bottom: 1.875rem;
  }
}
.landing-aboutUs-left .lists li {
  position: relative;
  padding-left: 1.875rem;
  padding-bottom: 1.875rem;
  font-size: 18px;
  font-weight: 400;
  line-height: 35px;
  letter-spacing: 0.234px;
  color: var(--text-black);
}
@media screen and (max-width: 575px) {
  .landing-aboutUs-left .lists li {
    padding-bottom: 1.25rem;
  }
}
.landing-aboutUs-left .lists li::before {
  content: "";
  position: absolute;
  top: 0.75rem;
  left: 0;
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 50%;
  background-color: var(--primary-color);
}
.landing-aboutUs-left .lists li::after {
  content: "";
  position: absolute;
  top: 0.75rem;
  left: 0.3125rem;
  width: 0.0625rem;
  height: 100%;
  background-color: var(--primary-color);
}
.landing-aboutUs-left .lists li:last-child {
  padding-bottom: 0;
}
.landing-aboutUs-left .lists li:last-child::after {
  display: none;
}
.landing-aboutUs-left .link {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
  padding: 0.9375rem 1.875rem;
  background-color: var(--primary-color);
  font-size: 18px;
  font-weight: 400;
  line-height: 35px;
  letter-spacing: 0.234px;
  color: var(--text-black);
  transition: all 0.3s;
}
.landing-aboutUs-left .link:hover {
  background-color: var(--text-black);
  color: var(--primary-color);
}
.landing-aboutUs-right {
  position: relative;
  max-width: 43.1875rem;
  margin: 0 auto;
}
.landing-aboutUs-right .video-area {
  position: relative;
  max-width: 35.75rem;
  width: 100%;
    margin-left: auto;
}
.landing-aboutUs-right .video-area .video-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 6.625rem;
  height: 6.625rem;
  border: 0.125rem solid var(--white);
  background-color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  color: var(--white);
}
/*.landing-aboutUs-right .text {*/
/*  position: absolute;*/
/*  bottom: 3.125rem;*/
/*  left: 0;*/
/*  width: 100%;*/
/*  max-width: 14.8125rem;*/
/*  padding: 1.5rem 1.4375rem;*/
/*  background-color: var(--primary-color);*/
/*  font-size: 28px;*/
/*  font-weight: 600;*/
/*  line-height: 35px;*/
/*  letter-spacing: 0.364px;*/
/*  color: var(--text-black);*/
/*}*/
.landing-counter {
  position: relative;
  padding: 7.75rem 0;
}
@media screen and (max-width: 991px) {
  .landing-counter {
    padding: 6.25rem 0;
  }
}
@media screen and (max-width: 767px) {
  .landing-counter {
    padding: 3.125rem 0;
  }
}
.landing-counter::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(23, 52, 70, 0.7);
}
.landing-counter[data-background] {
  background-position: center top;
}
.landing-counter-item {
  position: relative;
  text-align: center;
}
.landing-counter-item .icon {
  max-width: 6.25rem;
  margin: 0 auto;
}
.landing-counter-item .title {
  font-size: 3.125rem;
  font-weight: 700;
  line-height: 2.1875rem;
  color: var(--primary-color);
  letter-spacing: 0.65px;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}
.landing-counter-item .info {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 2.1875rem;
  color: var(--white);
  letter-spacing: 0.234px;
}
.landing-ourCourse-section-content {
  max-width: 47.75rem;
  margin: 0 auto;
  text-align: center;
  padding-bottom: 3.125rem;
}
.landing-ourCourse-item {
  padding: 1.25rem 1.25rem 2.375rem;
  border: 0.0625rem solid var(--stroke);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: all 0.3s;
}
@media screen and (max-width: 575px) {
  .landing-ourCourse-item {
    padding: 0.625rem;
  }
}
.landing-ourCourse-item:hover {
  border-color: var(--primary-color);
}
.landing-ourCourse-item > .img > img {
  width: 100%;
}
.landing-ourCourse-item .user-price {
  padding-bottom: 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.625rem;
}
.landing-ourCourse-item .user-price .user {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.landing-ourCourse-item .user-price .user .img {
  flex-shrink: 0;
  width: 3.75rem;
  height: 3.75rem;
  border-radius: 50%;
  overflow: hidden;
}
@media screen and (max-width: 575px) {
  .landing-ourCourse-item .user-price .user .img {
    width: 2.5rem;
    height: 2.5rem;
  }
}
.landing-ourCourse-item .user-price .user .name {
  display: flex;
  font-size: clamp(18px, 1.458vw, 30px);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: 0.364px;
  color: var(--text-black);
}
.landing-ourCourse-item .user-price .user .degi {
  font-size: clamp(16px, 0.938vw, 20px);
  font-weight: 400;
  line-height: 1.945;
  letter-spacing: 0.234px;
  color: var(--paragraph);
}
.landing-ourCourse-item .user-price .price {
  flex: 1 0 auto;
  max-width: 8.25rem;
  width: 100%;
  padding-left: 1.875rem;
  border-left: 0.0625rem solid var(--stroke);
  font-size: clamp(16px, 0.938vw, 20px);
  font-weight: 400;
  line-height: 1.945;
  letter-spacing: 0.234px;
  color: var(--paragraph);
}
@media screen and (max-width: 1199px) and (min-width: 992px) {
  .landing-ourCourse-item .user-price .price {
    max-width: 5.8125rem;
    padding-left: 0.5rem;
  }
}
.landing-ourCourse-item .user-price .price span {
  color: var(--primary-color);
}
.landing-ourCourse-item .text-content {
  text-align: center;
}
.landing-ourCourse-item .text-content .title {
  display: inline-flex;
  padding-bottom: 1.25rem;
  font-size: clamp(22px, 1.458vw, 35px);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: 0.364px;
  color: var(--text-black);
}
.landing-ourCourse-item .text-content .info {
  padding-bottom: 1.5625rem;
  font-size: clamp(16px, 0.938vw, 20px);
  font-weight: 400;
  line-height: 1.945;
  letter-spacing: 0.234px;
  color: var(--paragraph);
}
.landing-ourCourse-item .text-content .link {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
  padding: 0.9375rem 1.875rem;
  background-color: var(--primary-color);
  font-size: 18px;
  font-weight: 400;
  line-height: 35px;
  letter-spacing: 0.234px;
  color: var(--text-black);
  transition: all 0.3s;
}
.landing-ourCourse-item .text-content .link:hover {
  background-color: var(--text-black);
  color: var(--primary-color);
}
.landing-gallery-section-content {
  max-width: 47.75rem;
  margin: 0 auto;
  text-align: center;
  padding-bottom: 3.125rem;
}
.landing-expertInstructor {
  padding: 4.0625rem 0;
  background-color: var(--primary-color);
}
.landing-expertInstructor-section-content {
  max-width: 47.75rem;
  margin: 0 auto;
  text-align: center;
  padding-bottom: 3.125rem;
}
.landing-expertInstructor-section-content .info {
  color: var(--text-black);
}
.landing-expertInstructor-slide {
  padding-bottom: 4.625rem;
}
.landing-expertInstructor-slide .swiper-pagination-bullet {
  background-color: rgba(23, 52, 70, 0.7);
  transition: all 0.3s;
}
.landing-expertInstructor-slide .swiper-pagination-bullet-active {
  background-color: var(--text-black);
  border-radius: 0;
  transform: rotate(45deg);
}
.landing-expertInstructor-item {
  background-color: var(--white);
  padding: 1.875rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  transition: all 0.3s;
}
@media screen and (max-width: 1199px) {
  .landing-expertInstructor-item {
    flex-direction: column;
  }
}
.landing-expertInstructor-item .img {
  flex: 1 0 auto;
  max-width: 19.0625rem;
}
@media screen and (max-width: 1199px) {
  .landing-expertInstructor-item .img {
    max-width: 100%;
  }
}
.landing-expertInstructor-item .img img {
  width: 100%;
}
@media screen and (max-width: 1199px) {
  .landing-expertInstructor-item .content {
    text-align: center;
  }
}
.landing-expertInstructor-item .content .degi {
  padding-bottom: 0.3125rem;
  font-size: clamp(16px, 0.938vw, 20px);
  font-weight: 400;
  line-height: 1.945;
  letter-spacing: 0.234px;
  color: var(--paragraph);
}
.landing-expertInstructor-item .content .title {
  display: inline-flex;
  font-size: clamp(18px, 1.458vw, 30px);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: 0.364px;
  color: var(--text-black);
  padding-bottom: 1.875rem;
  transition: all 0.3s;
}
.landing-expertInstructor-item .content .social-links {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.landing-expertInstructor-item .content .social-links a {
  width: 3.125rem;
  height: 3.125rem;
  border: 0.0625rem solid var(--stroke);
  border-radius: 50%;
  background-color: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 27px;
  color: var(--text-black);
  transition: all 0.3s;
}
.landing-expertInstructor-item:hover {
  background-color: var(--text-black);
}
.landing-expertInstructor-item:hover .title {
  color: var(--primary-color);
}
.landing-expertInstructor-item:hover .social-links a {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}
.landing-faq-section-content {
  max-width: 47.75rem;
  margin: 0 auto;
  text-align: center;
  padding-bottom: 3.125rem;
}
.landing-testimonial-section-content {
  max-width: 47.75rem;
  margin: 0 auto;
  text-align: center;
  padding-bottom: 4.0625rem;
}
.landing-testimonial-item {
  position: relative;
  text-align: center;
}
.landing-testimonial-item .text-content {
  padding: 3.125rem 1.875rem 5.5625rem;
  border: 0.0625rem solid var(--primary-color);
  background-color: var(--white);
}
.landing-testimonial-item .text-content .quote {
  position: relative;
  display: inline-block;
  font-size: clamp(16px, 0.938vw, 20px);
  font-weight: 400;
  line-height: 1.945;
  letter-spacing: 0.234px;
  color: var(--text-black);
  padding: 0 2.1875rem;
}
.landing-testimonial-item .text-content .quote::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0.9375rem;
  height: 2.1875rem;
  background-image: url("../images/icon/quote-1.svg");
  background-repeat: no-repeat;
}
.landing-testimonial-item .text-content .quote::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0.9375rem;
  height: 0.625rem;
  background-image: url("../images/icon/quote-2.svg");
  background-repeat: no-repeat;
}
.landing-testimonial-item .text-content .title {
  position: relative;
  font-size: clamp(18px, 1.458vw, 30px);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: 0.364px;
  color: var(--text-black);
  padding-bottom: 1.875rem;
  padding-top: 1.875rem;
}
.landing-testimonial-item .text-content .details {
  position: relative;
  font-size: clamp(16px, 0.938vw, 20px);
  font-weight: 400;
  line-height: 1.945;
  letter-spacing: 0.234px;
  color: var(--paragraph);
  transition: all 0.3s;
}
.landing-testimonial-item .testi-user {
  position: relative;
  margin-top: -70px;
}
.landing-testimonial-item .testi-user .img {
  width: 8.75rem;
  height: 8.75rem;
  border: 0.125rem solid var(--primary-color);
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto;
  transform: scale(0.57);
  transition: all 0.3s;
}
.landing-testimonial-item .testi-user .img img {
  width: 100%;
    height: 100%;
}
.landing-testimonial-item .testi-user .content {
  position: relative;
  margin-top: -37px;
  transition: all 0.3s;
}
.landing-testimonial-item .testi-user .content .name {
  font-size: clamp(18px, 1.458vw, 30px);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: 0.364px;
  color: var(--text-black);
  padding: 0.3125rem 0;
}
.landing-testimonial-item .testi-user .content .degi {
  font-size: clamp(16px, 0.938vw, 20px);
  font-weight: 400;
  line-height: 1.945;
  letter-spacing: 0.234px;
  color: var(--text-black);
}
.landing-testimonial-item:hover .text-content {
  background-color: var(--primary-color);
}
.landing-testimonial-item:hover .text-content .details {
  color: rgba(23, 52, 70, 0.6);
}
.landing-testimonial-item:hover .testi-user .img {
  transform: scale(1);
}
.landing-testimonial-item:hover .testi-user .content {
  margin-top: 0;
}
.landing-contactUs-section-content {
  max-width: 47.75rem;
  margin: 0 auto;
  text-align: center;
  padding-bottom: 3.125rem;
}
.landing-contactUs-form .link {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
  padding: 0.9375rem 1.875rem;
  background-color: var(--primary-color);
  border: none;
  font-size: 18px;
  font-weight: 400;
  line-height: 35px;
  letter-spacing: 0.234px;
  color: var(--text-black);
  transition: all 0.3s;
}
.landing-contactUs-form .link:hover {
  background-color: var(--text-black);
  color: var(--primary-color);
}
.landing-contactUs-map {
  border: 0.0625rem solid var(--stroke);
  padding: 1rem 1.25rem 1.75rem;
}
.landing-contactUs-map .map-wrap {
  margin-bottom: 2.1875rem;
}
.landing-contactUs-map .map-wrap iframe {
  width: 100%;
  height: 25.1875rem;
}
.landing-contactUs-map .contact-info .item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding-bottom: 1.25rem;
}
.landing-contactUs-map .contact-info .item:last-child {
  padding-bottom: 0;
}
.landing-contactUs-map .contact-info .item .icon {
  flex-shrink: 0;
  display: flex;
}
.landing-contactUs-map .contact-info .item .info {
  font-size: clamp(16px, 0.938vw, 20px);
  font-weight: 400;
  line-height: 1.945;
  letter-spacing: 0.234px;
  color: var(--text-black) !important;
}
.landing-footer {
  position: relative;
  padding: 3.125rem 0 30px;
}
.landing-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(23, 52, 70, 0.9);
}
.landing-footer-title {
  font-size: clamp(16px, 0.938vw, 20px);
  font-weight: 600;
  line-height: 1.945;
  letter-spacing: 0.234px;
  color: var(--white);
  padding-bottom: 1.875rem;
}
.landing-footer-top {
  padding-bottom: 3.125rem;
}
@media screen and (max-width: 575px) {
  .landing-footer-top {
    padding-bottom: 1.875rem;
  }
}
.landing-header-logo {
  display: flex;
    max-width: 250px;
}
.landing-footer-info .logo {
  display: block;
  padding-bottom: 1.875rem;
    max-width: 250px;
}
.landing-footer-info .text {
  font-size: clamp(16px, 0.938vw, 20px);
  font-weight: 400;
  line-height: 1.945;
  letter-spacing: 0.234px;
  color: rgba(220, 220, 220, 0.7);
}
.landing-footer-menu li {
  padding-bottom: 1.25rem;
}
.landing-footer-menu li:last-child {
  padding-bottom: 0;
}
.landing-footer-menu li a {
  font-size: clamp(16px, 0.938vw, 20px);
  font-weight: 400;
  line-height: 1.945;
  letter-spacing: 0.234px;
  color: rgba(220, 220, 220, 0.7);
  transition: all 0.3s;
}
.landing-footer-menu li a:hover {
  color: var(--primary-color);
}
.landing-footer-contact .items li {
  padding-bottom: 1.875rem;
}
.landing-footer-contact .items li:last-child {
  padding-bottom: 0;
}
.landing-footer-contact .items li .item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}
.landing-footer-contact .items li .item .icon {
  flex-shrink: 0;
  margin-top: 0.3125rem;
}
.landing-footer-contact .items li .item .text {
  font-size: clamp(16px, 0.938vw, 20px);
  font-weight: 400;
  line-height: 1.945;
  letter-spacing: 0.234px;
  color: var(--white);
}
.landing-footer-newsletter .info {
  font-size: clamp(16px, 0.938vw, 20px);
  font-weight: 400;
  line-height: 1.945;
  letter-spacing: 0.234px;
  color: rgba(220, 220, 220, 0.7);
  padding-bottom: 1.875rem;
}
.landing-footer-newsletter .newsletter-form input {
  background-color: transparent !important;
  margin-bottom: 1.875rem;
}
.landing-footer-newsletter .newsletter-form input::-moz-placeholder {
  color: rgba(220, 220, 220, 0.2);
}
.landing-footer-newsletter .newsletter-form input::placeholder {
  color: rgba(220, 220, 220, 0.2);
}
.landing-footer-newsletter .newsletter-form .link {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
  padding: 0.9375rem 1.875rem;
  background-color: var(--primary-color);
  border: none;
  font-size: 18px;
  font-weight: 400;
  line-height: 35px;
  letter-spacing: 0.234px;
  color: var(--text-black);
  transition: all 0.3s;
}
.landing-footer-newsletter .newsletter-form .link:hover {
  background-color: var(--text-black);
  color: var(--primary-color);
}
.landing-footer-bottom {
  border-top: 0.0625rem solid var(--stroke);
    padding-top: 1.875rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.625rem;
}
@media screen and (max-width: 575px) {
  .landing-footer-bottom {
    flex-direction: column;
    padding-top: 1.875rem;
  }
}
.landing-footer-bottom .copyright {
  font-size: clamp(16px, 0.938vw, 20px);
  font-weight: 400;
  line-height: 1.945;
  letter-spacing: 0.234px;
  color: var(--stroke);
}
@media screen and (max-width: 575px) {
  .landing-footer-bottom .copyright {
    text-align: center;
  }
}
.landing-footer-bottom .social-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 0.625rem 1.875rem;
}
@media screen and (max-width: 575px) {
  .landing-footer-bottom .social-links {
    justify-content: center;
    gap: 0.625rem;
  }
}
.landing-footer-bottom .social-links a {
  width: 3rem;
  height: 3rem;
  border: 0.0625rem solid var(--primary-color);
  border-radius: 50%;
  background-color: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.25rem;
  color: var(--primary-color);
  transition: all 0.3s;
}
.landing-footer-bottom .social-links a:hover {
  background-color: var(--primary-color);
  color: var(--text-black);
}

:root {
    --white: #fff;
    --black: #000;
    --landing-text-black: #173446;
    --landing-primary-color: #ffb025;
    --landing-stroke: #dcdcdc;
    --paragraph: #898ca4;
}
.landing-body {
    background-color: var(--white);
}
.landing-header {
    background-color: var(--landing-text-black);
    padding: 1.875rem 0;
}
@media screen and (max-width: 575px) {
    .landing-header {
        padding: 0.625rem 0;
    }
}
.landing-header.sticky-on {
    top: 0;
    width: 100%;
    z-index: 20;
    position: fixed;
    animation-duration: 0.7s;
    animation-fill-mode: both;
    animation-name: fadeInDown;
    animation-timing-function: ease;
    transition: 0.3s all ease-in-out;
    background-color: var(--landing-text-black) !important;
    box-shadow: 0 0.1875rem 1.125rem rgba(2, 21, 78, 0.09);
    padding: 0.625rem 0;
}
/*.landing-header-btn {*/
/*    display: inline-flex;*/
/*    align-items: center;*/
/*    gap: 0.9375rem;*/
/*    padding: 0.9375rem 1.875rem !important;*/
/*    background-color: var(--landing-primary-color);*/
/*    font-size: 1.125rem !important;*/
/*    font-weight: 400 !important;*/
/*    line-height: 2.1875rem !important;*/
/*    color: var(--landing-text-black) !important;*/
/*    transition: all 0.3s !important;*/
/*}*/
/*@media screen and (max-width: 1399px) {*/
/*    .landing-header-btn {*/
/*        padding: 0.625rem 0.9375rem;*/
/*    }*/
/*}*/
/*.landing-header-btn:hover {*/
/*    background-color: var(--white);*/
/*    color: var(--landing-text-black);*/
/*}*/
.landing-menu-navbar-collapse {
    background-color: var(--landing-text-black);
    align-items: flex-start;
    padding: 1.875rem;
}
@media screen and (min-width: 992px) {
    .landing-menu-navbar-collapse {
        padding: 0;
    }
}
@media screen and (max-width: 991px) {
    .landing-menu-navbar-collapse {
        height: 100vh;
    }
}
.landing-menu-navbar-nav {
    gap: 0.625rem 1.875rem;
}
.landing-menu-navbar-nav li a {
    position: relative;
    padding: 0 !important;
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 2.1875rem;
    color: var(--white) !important;
    letter-spacing: 0.234px;
    transition: all 0.3s;
}
.landing-menu-navbar-nav li a.landing-header-btn {
    padding: 0.9375rem 1.875rem !important;
    color: var(--landing-text-black) !important;
}
@media screen and (max-width: 991px) {
    .landing-menu-navbar-nav li a {
        color: var(--white);
    }
}
.landing-menu-navbar-nav li a::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--landing-primary-color);
    border-radius: 50px;
    transition: all 0.3s;
}
.landing-menu-navbar-nav li a.active, .landing-menu-navbar-nav li a:hover {
    color: var(--landing-primary-color) !important;
}
@media screen and (max-width: 991px) {
    .landing-menu-navbar-nav li a.active, .landing-menu-navbar-nav li a:hover {
        color: var(--white);
    }
}
.landing-menu-navbar-nav li a.active::before, .landing-menu-navbar-nav li a:hover::before {
    width: 100%;
}
@media screen and (min-width: 992px) {
    .landing-menu-navbar-nav li:hover .dropdown-toggle ~ .dropdown-menu {
        opacity: 1;
        visibility: visible;
        top: 30px;
    }
}

.landing-header-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.9375rem;
    padding: 0.9375rem 1.875rem !important;
    background-color: var(--landing-primary-color);
    font-size: 1.125rem !important;
    font-weight: 400 !important;
    line-height: 2.1875rem !important;
    color: var(--landing-text-black) !important;
    transition: all 0.3s !important;
}
@media screen and (max-width: 1399px) {
    .landing-header-btn {
        padding: 0.625rem 0.9375rem;
    }
}
.landing-header-btn:hover {
    background-color: var(--white);
    color: var(--landing-text-black);
}
.landing-section-gap {
    padding: 7.5rem 0;
}
@media screen and (max-width: 575px) {
    .landing-section-gap {
        padding: 3.125rem 0;
    }
}
.landing-section-gap-alt {
    padding: 9.375rem 0;
}
@media screen and (max-width: 991px) {
    .landing-section-gap-alt {
        padding: 7.5rem 0;
    }
}
@media screen and (max-width: 767px) {
    .landing-section-gap-alt {
        padding: 5rem 0;
    }
}
@media screen and (max-width: 575px) {
    .landing-section-gap-alt {
        padding: 3.125rem 0;
    }
}
.landing-section-gap-bottom-alt {
    padding-bottom: 9.375rem;
}
@media screen and (max-width: 991px) {
    .landing-section-gap-bottom-alt {
        padding-bottom: 7.5rem;
    }
}
@media screen and (max-width: 767px) {
    .landing-section-gap-bottom-alt {
        padding-bottom: 5rem;
    }
}
@media screen and (max-width: 575px) {
    .landing-section-gap-bottom-alt {
        padding-bottom: 3.125rem;
    }
}
.landing-section-content .subtitle {
    font-size: 28px;
    font-weight: 400;
    line-height: 1.25;
    letter-spacing: 0.364px;
    color: var(--landing-primary-color);
    padding-bottom: 1.875rem;
}
@media screen and (max-width: 575px) {
    .landing-section-content .subtitle {
        padding-bottom: 1.25rem;
    }
}
.landing-section-content .title {
    font-size: clamp(26px, 2.083vw, 46px);
    font-weight: 500;
    line-height: 1.225;
    letter-spacing: 0.52px;
    color: var(--landing-text-black);
    padding-bottom: 1.875rem;
}
@media screen and (max-width: 575px) {
    .landing-section-content .title {
        padding-bottom: 1.25rem;
    }
}
.landing-section-content .info {
    font-size: 18px;
    font-weight: 400;
    line-height: 35px;
    letter-spacing: 0.234px;
    color: var(--paragraph);
}
.landing-hero-banner {
    position: relative;
    padding: 17.25rem 0;
}
@media screen and (max-width: 1399px) {
    .landing-hero-banner {
        padding: 12.5rem 0;
    }
}
@media screen and (max-width: 1199px) {
    .landing-hero-banner {
        padding: 9.375rem 0;
    }
}
@media screen and (max-width: 575px) {
    .landing-hero-banner {
        padding: 6.5625rem 0;
    }
}
.landing-hero-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(23, 52, 70, 0.7);
}
.landing-hero-banner[data-background] {
    background-position: center bottom;
}
.landing-hero-banner-content {
    position: relative;
    max-width: 71.875rem;
    margin: 0 auto;
    text-align: center;
}
.landing-hero-banner-content .title {
    padding-bottom: 1.875rem;
    font-size: clamp(44px, 6.771vw, 140px);
    font-style: normal;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 2.6px;
    color: var(--white);
}
.landing-hero-banner-content .title span {
    color: var(--landing-primary-color);
}
.landing-hero-banner-content .info {
    font-size: clamp(16px, 0.938vw, 20px);
    font-weight: 400;
    line-height: 1.95;
    letter-spacing: 0.234px;
    color: var(--landing-stroke);
}
.landing-aboutUs {
    padding: 7.5rem 0;
}
@media screen and (max-width: 991px) {
    .landing-aboutUs {
        padding: 80px 0;
    }
}
@media screen and (max-width: 575px) {
    .landing-aboutUs {
        padding: 50px 0;
    }
}
.landing-aboutUs-left .landing-section-content {
    padding-bottom: 3.125rem;
}
@media screen and (max-width: 575px) {
    .landing-aboutUs-left .landing-section-content {
        padding-bottom: 1.875rem;
    }
}
.landing-aboutUs-left .lists {
    position: relative;
    margin-bottom: 50px;
}
@media screen and (max-width: 575px) {
    .landing-aboutUs-left .lists {
        margin-bottom: 1.875rem;
    }
}
.landing-aboutUs-left .lists li {
    position: relative;
    padding-left: 1.875rem;
    padding-bottom: 1.875rem;
    font-size: 18px;
    font-weight: 400;
    line-height: 35px;
    letter-spacing: 0.234px;
    color: var(--landing-text-black);
}
@media screen and (max-width: 575px) {
    .landing-aboutUs-left .lists li {
        padding-bottom: 1.25rem;
    }
}
.landing-aboutUs-left .lists li::before {
    content: "";
    position: absolute;
    top: 0.75rem;
    left: 0;
    width: 0.625rem;
    height: 0.625rem;
    border-radius: 50%;
    background-color: var(--landing-primary-color);
}
.landing-aboutUs-left .lists li::after {
    content: "";
    position: absolute;
    top: 0.75rem;
    left: 0.3125rem;
    width: 0.0625rem;
    height: 100%;
    background-color: var(--landing-primary-color);
}
.landing-aboutUs-left .lists li:last-child {
    padding-bottom: 0;
}
.landing-aboutUs-left .lists li:last-child::after {
    display: none;
}
.landing-aboutUs-left .link {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 1.25rem;
    padding: 0.9375rem 1.875rem;
    background-color: var(--landing-primary-color);
    font-size: 18px;
    font-weight: 400;
    line-height: 35px;
    letter-spacing: 0.234px;
    color: var(--landing-text-black);
    transition: all 0.3s;
}
.landing-aboutUs-left .link:hover {
    background-color: var(--landing-text-black);
    color: var(--landing-primary-color);
}
.landing-aboutUs-right {
    position: relative;
    max-width: 43.1875rem;
    margin: 0 auto;
}
.landing-aboutUs-right .video-area {
    position: relative;
    max-width: 35.75rem;
    width: 100%;
    margin: 0 auto;
}
.landing-aboutUs-right .video-area .video-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6.625rem;
    height: 6.625rem;
    border: 0.125rem solid var(--white);
    background-color: var(--landing-primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    color: var(--white);
}
.landing-aboutUs-right .text {
    position: absolute;
    bottom: 3.125rem;
    left: 0;
    width: 100%;
    max-width: 14.8125rem;
    padding: 1.5rem 1.4375rem;
    background-color: var(--landing-primary-color);
    font-size: 28px;
    font-weight: 600;
    line-height: 35px;
    letter-spacing: 0.364px;
    color: var(--landing-text-black);
}
@media screen and (max-width: 767px) {
    .landing-aboutUs-right .text {
        display: none;
    }
}
.landing-counter {
    position: relative;
    padding: 7.75rem 0;
}
@media screen and (max-width: 991px) {
    .landing-counter {
        padding: 6.25rem 0;
    }
}
@media screen and (max-width: 767px) {
    .landing-counter {
        padding: 3.125rem 0;
    }
}
.landing-counter::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(23, 52, 70, 0.7);
}
.landing-counter[data-background] {
    background-position: center top;
}
.landing-counter-item {
    position: relative;
    text-align: center;
}
.landing-counter-item .icon {
    max-width: 6.25rem;
    margin: 0 auto;
}
.landing-counter-item .title {
    font-size: 3.125rem;
    font-weight: 700;
    line-height: 2.1875rem;
    color: var(--landing-primary-color);
    letter-spacing: 0.65px;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
}
.landing-counter-item .info {
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 2.1875rem;
    color: var(--white);
    letter-spacing: 0.234px;
}
.landing-ourCourse-section-content {
    max-width: 47.75rem;
    margin: 0 auto;
    text-align: center;
    padding-bottom: 3.125rem;
}
.landing-ourCourse-item {
    padding: 1.25rem 1.25rem 2.375rem;
    border: 0.0625rem solid var(--landing-stroke);
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    transition: all 0.3s;
}
@media screen and (max-width: 575px) {
    .landing-ourCourse-item {
        padding: 0.625rem;
    }
}
.landing-ourCourse-item:hover {
    border-color: var(--landing-primary-color);
}
.landing-ourCourse-item > .img > img {
    width: 100%;
}
.landing-ourCourse-item .user-price {
    padding-bottom: 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.625rem;
}
.landing-ourCourse-item .user-price .user-multi {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}
.landing-ourCourse-item .user-price .user-multi .img {
    flex-shrink: 0;
    width: 3.75rem;
    height: 3.75rem;
    border: 0.0625rem solid var(--white);
    border-radius: 50%;
    overflow: hidden;
}
.landing-ourCourse-item .user-price .user-multi .img:not(:first-child) {
    margin-left: -11px;
}
.landing-ourCourse-item .user-price .user-multi .img self:not(:nth-child(1), :nth-child(2)) {
    display: none;
}
.landing-ourCourse-item .user-price .user-multi .iconPlus {
    flex-shrink: 0;
    width: 3.75rem;
    height: 3.75rem;
    border: 0.0625rem solid var(--white);
    border-radius: 50%;
    margin-left: -11px;
    background-color: var(--landing-primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 26px;
    color: var(--white);
}
.landing-ourCourse-item .user-price .user {
    display: flex;
    align-items: center;
    gap: 0.625rem;
}
.landing-ourCourse-item .user-price .user .img {
    flex-shrink: 0;
    width: 3.75rem;
    height: 3.75rem;
    border-radius: 50%;
    overflow: hidden;
}
.landing-ourCourse-item .user-price .user-multi .img img {
    width: 100%;
    height: 100%;
}
@media screen and (max-width: 575px) {
    .landing-ourCourse-item .user-price .user .img {
        width: 2.5rem;
        height: 2.5rem;
    }
}
.landing-ourCourse-item .user-price .user .name {
    display: flex;
    font-size: clamp(15px, 1.458vw, 30px);
    font-weight: 400;
    line-height: 1.25;
    letter-spacing: 0.364px;
    color: var(--landing-text-black);
}
.landing-ourCourse-item .user-price .user .degi {
    font-size: clamp(16px, 0.938vw, 20px);
    font-weight: 400;
    line-height: 1.945;
    letter-spacing: 0.234px;
    color: var(--paragraph);
}
.landing-ourCourse-item .user-price .price {
    flex: 1 0 auto;
    max-width: 8.25rem;
    width: 100%;
    padding-left: 1.875rem;
    border-left: 0.0625rem solid var(--landing-stroke);
    font-size: clamp(16px, 0.938vw, 20px);
    font-weight: 400;
    line-height: 1.945;
    letter-spacing: 0.234px;
    color: var(--paragraph);
}
@media screen and (max-width: 1199px) and (min-width: 992px) {
    .landing-ourCourse-item .user-price .price {
        max-width: 5.8125rem;
        padding-left: 0.5rem;
    }
}
.landing-ourCourse-item .user-price .price span {
    color: var(--landing-primary-color);
}
.landing-ourCourse-item .text-content {
    text-align: center;
}
.landing-ourCourse-item .text-content .title {
    display: inline-flex;
    padding-bottom: 1.25rem;
    font-size: clamp(22px, 1.458vw, 35px);
    font-weight: 400;
    line-height: 1.25;
    letter-spacing: 0.364px;
    color: var(--landing-text-black);
}
.landing-ourCourse-item .text-content .info {
    padding-bottom: 1.5625rem;
    font-size: clamp(16px, 0.938vw, 20px);
    font-weight: 400;
    line-height: 1.945;
    letter-spacing: 0.234px;
    color: var(--paragraph);
}
.landing-ourCourse-item .text-content .link {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 1.25rem;
    padding: 0.9375rem 1.875rem;
    background-color: var(--landing-primary-color);
    font-size: 18px;
    font-weight: 400;
    line-height: 35px;
    letter-spacing: 0.234px;
    color: var(--landing-text-black);
    transition: all 0.3s;
}
.landing-ourCourse-item .text-content .link:hover {
    background-color: var(--landing-text-black);
    color: var(--landing-primary-color);
}
.landing-gallery-section-content {
    max-width: 47.75rem;
    margin: 0 auto;
    text-align: center;
    padding-bottom: 3.125rem;
}
.landing-expertInstructor {
    padding: 4.0625rem 0;
    background-color: var(--landing-primary-color);
}
.landing-expertInstructor-section-content {
    max-width: 47.75rem;
    margin: 0 auto;
    text-align: center;
    padding-bottom: 3.125rem;
}
.landing-expertInstructor-section-content .info {
    color: var(--landing-text-black);
}
.landing-expertInstructor-slide {
    padding-bottom: 4.625rem;
}
.landing-expertInstructor-slide .swiper-pagination-bullet {
    background-color: rgba(23, 52, 70, 0.7);
    transition: all 0.3s;
}
.landing-expertInstructor-slide .swiper-pagination-bullet-active {
    background-color: var(--landing-text-black);
    border-radius: 0;
    transform: rotate(45deg);
}
.landing-expertInstructor-item {
    background-color: var(--white);
    padding: 1.875rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    transition: all 0.3s;
}
@media screen and (max-width: 1199px) {
    .landing-expertInstructor-item {
        flex-direction: column;
    }
}
.landing-expertInstructor-item .img {
    flex: 1 0 auto;
    max-width: 19.0625rem;
}
@media screen and (max-width: 1199px) {
    .landing-expertInstructor-item .img {
        max-width: 100%;
    }
}
.landing-expertInstructor-item .img img {
    width: 100%;
}
@media screen and (max-width: 1199px) {
    .landing-expertInstructor-item .content {
        text-align: center;
    }
}
.landing-expertInstructor-item .content .degi {
    padding-bottom: 0.3125rem;
    font-size: clamp(16px, 0.938vw, 20px);
    font-weight: 400;
    line-height: 1.945;
    letter-spacing: 0.234px;
    color: var(--paragraph);
}
.landing-expertInstructor-item .content .title {
    display: inline-flex;
    font-size: clamp(18px, 1.458vw, 30px);
    font-weight: 400;
    line-height: 1.25;
    letter-spacing: 0.364px;
    color: var(--landing-text-black);
    padding-bottom: 1.875rem;
    transition: all 0.3s;
}
.landing-expertInstructor-item .content .social-links {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
}
.landing-expertInstructor-item .content .social-links a {
    width: 3.125rem;
    height: 3.125rem;
    border: 0.0625rem solid var(--landing-stroke);
    border-radius: 50%;
    background-color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 27px;
    color: var(--landing-text-black);
    transition: all 0.3s;
}
.landing-expertInstructor-item:hover {
    background-color: var(--landing-text-black);
}
.landing-expertInstructor-item:hover .title {
    color: var(--landing-primary-color);
}
.landing-expertInstructor-item:hover .social-links a {
    background-color: var(--landing-primary-color);
    border-color: var(--landing-primary-color);
}
.landing-faq-section-content {
    max-width: 47.75rem;
    margin: 0 auto;
    text-align: center;
    padding-bottom: 3.125rem;
}
.landing-testimonial-section-content {
    max-width: 47.75rem;
    margin: 0 auto;
    text-align: center;
    padding-bottom: 4.0625rem;
}
.landing-testimonial-item {
    position: relative;
    text-align: center;
}
.landing-testimonial-item .text-content {
    padding: 3.125rem 1.875rem 5.5625rem;
    border: 0.0625rem solid var(--landing-primary-color);
    background-color: var(--white);
}
.landing-testimonial-item .text-content .quote {
    position: relative;
    display: inline-block;
    font-size: clamp(16px, 0.938vw, 20px);
    font-weight: 400;
    line-height: 1.945;
    letter-spacing: 0.234px;
    color: var(--landing-text-black);
    padding: 0 2.1875rem;
}
.landing-testimonial-item .text-content .quote::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0.9375rem;
    height: 2.1875rem;
    background-image: url("../../images/icon/quote-1.svg");
    background-repeat: no-repeat;
}
.landing-testimonial-item .text-content .quote::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0.9375rem;
    height: 0.625rem;
    background-image: url("../../images/icon/quote-2.svg");
    background-repeat: no-repeat;
}
.landing-testimonial-item .text-content .title {
    position: relative;
    font-size: clamp(18px, 1.458vw, 30px);
    font-weight: 400;
    line-height: 1.25;
    letter-spacing: 0.364px;
    color: var(--landing-text-black);
    padding-bottom: 1.875rem;
    padding-top: 1.875rem;
}
.landing-testimonial-item .text-content .details {
    position: relative;
    font-size: clamp(16px, 0.938vw, 20px);
    font-weight: 400;
    line-height: 1.945;
    letter-spacing: 0.234px;
    color: var(--paragraph);
    transition: all 0.3s;
}
.landing-testimonial-item .testi-user {
    position: relative;
    margin-top: -70px;
}
.landing-testimonial-item .testi-user .img {
    width: 8.75rem;
    height: 8.75rem;
    border: 0.125rem solid var(--landing-primary-color);
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto;
    transform: scale(0.57);
    transition: all 0.3s;
}
/*.landing-testimonial-item .testi-user .img img {*/
/*    width: 100%;*/
/*}*/
.landing-testimonial-item .testi-user .content {
    position: relative;
    margin-top: -37px;
    transition: all 0.3s;
}
.landing-testimonial-item .testi-user .content .name {
    font-size: clamp(18px, 1.458vw, 30px);
    font-weight: 400;
    line-height: 1.25;
    letter-spacing: 0.364px;
    color: var(--landing-text-black);
    padding: 0.3125rem 0;
}
.landing-testimonial-item .testi-user .content .degi {
    font-size: clamp(16px, 0.938vw, 20px);
    font-weight: 400;
    line-height: 1.945;
    letter-spacing: 0.234px;
    color: var(--landing-text-black);
}
.landing-testimonial-item:hover .text-content {
    background-color: var(--landing-primary-color);
}
.landing-testimonial-item:hover .text-content .details {
    color: rgba(23, 52, 70, 0.6);
}
.landing-testimonial-item:hover .testi-user .img {
    transform: scale(1);
}
.landing-testimonial-item:hover .testi-user .content {
    margin-top: 0;
}
.landing-contactUs-section-content {
    max-width: 47.75rem;
    margin: 0 auto;
    text-align: center;
    padding-bottom: 3.125rem;
}
.landing-contactUs-form .link {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 1.25rem;
    padding: 0.9375rem 1.875rem;
    background-color: var(--landing-primary-color);
    border: none;
    font-size: 18px;
    font-weight: 400;
    line-height: 35px;
    letter-spacing: 0.234px;
    color: var(--landing-text-black);
    transition: all 0.3s;
}
.landing-contactUs-form .link:hover {
    background-color: var(--landing-text-black);
    color: var(--landing-primary-color);
}
.landing-contactUs-map {
    border: 0.0625rem solid var(--landing-stroke);
    padding: 1rem 1.25rem 1.75rem;
}
.landing-contactUs-map .map-wrap {
    margin-bottom: 2.1875rem;
}
.landing-contactUs-map .map-wrap iframe {
    width: 100%;
    height: 25.1875rem;
}
.landing-contactUs-map .contact-info .item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding-bottom: 1.25rem;
}
.landing-contactUs-map .contact-info .item:last-child {
    padding-bottom: 0;
}
.landing-contactUs-map .contact-info .item .icon {
    flex-shrink: 0;
    display: flex;
}
.landing-contactUs-map .contact-info .item .info {
    font-size: clamp(16px, 0.938vw, 20px);
    font-weight: 400;
    line-height: 1.945;
    letter-spacing: 0.234px;
    color: var(--landing-text-black) !important;
}
.landing-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(23, 52, 70, 0.9);
}
.landing-footer-title {
    font-size: clamp(16px, 0.938vw, 20px);
    font-weight: 600;
    line-height: 1.945;
    letter-spacing: 0.234px;
    color: var(--white);
    padding-bottom: 1.875rem;
}
.landing-footer-top {
    padding-bottom: 3.125rem;
}
@media screen and (max-width: 575px) {
    .landing-footer-top {
        padding-bottom: 1.875rem;
    }
}
.landing-footer-info .text {
    font-size: clamp(16px, 0.938vw, 20px);
    font-weight: 400;
    line-height: 1.945;
    letter-spacing: 0.234px;
    color: rgba(220, 220, 220, 0.7);
}
.landing-footer-menu li {
    padding-bottom: 1.25rem;
}
.landing-footer-menu li:last-child {
    padding-bottom: 0;
}
.landing-footer-menu li a {
    font-size: clamp(16px, 0.938vw, 20px);
    font-weight: 400;
    line-height: 1.945;
    letter-spacing: 0.234px;
    color: rgba(220, 220, 220, 0.7);
    transition: all 0.3s;
}
.landing-footer-menu li a:hover {
    color: var(--landing-primary-color);
}
.landing-footer-contact .items li {
    padding-bottom: 1.875rem;
}
.landing-footer-contact .items li:last-child {
    padding-bottom: 0;
}
.landing-footer-contact .items li .item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}
.landing-footer-contact .items li .item .icon {
    flex-shrink: 0;
    margin-top: 0.3125rem;
}
.landing-footer-contact .items li .item .text {
    font-size: clamp(16px, 0.938vw, 20px);
    font-weight: 400;
    line-height: 1.945;
    letter-spacing: 0.234px;
    color: var(--white);
}
.landing-footer-newsletter .info {
    font-size: clamp(16px, 0.938vw, 20px);
    font-weight: 400;
    line-height: 1.945;
    letter-spacing: 0.234px;
    color: rgba(220, 220, 220, 0.7);
    padding-bottom: 1.875rem;
}
.landing-footer-newsletter .newsletter-form input {
    background-color: transparent !important;
    margin-bottom: 1.875rem;
}
.landing-footer-newsletter .newsletter-form input::placeholder {
    color: rgba(220, 220, 220, 0.2);
}
.landing-footer-newsletter .newsletter-form .link {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 1.25rem;
    padding: 0.9375rem 1.875rem;
    background-color: var(--landing-primary-color);
    border: none;
    font-size: 18px;
    font-weight: 400;
    line-height: 35px;
    letter-spacing: 0.234px;
    color: var(--landing-text-black);
    transition: all 0.3s;
}
.landing-footer-newsletter .newsletter-form .link:hover {
    background-color: var(--landing-text-black);
    color: var(--landing-primary-color);
}
.landing-footer-bottom {
    border-top: 0.0625rem solid var(--landing-stroke);
    padding-top: 1.875rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.625rem;
}
@media screen and (max-width: 1399px) {
    .landing-footer-bottom {
        padding-top: 1.875rem;
    }
}
@media screen and (max-width: 575px) {
    .landing-footer-bottom {
        flex-direction: column;
    }
}
.landing-footer-bottom .copyright {
    font-size: clamp(16px, 0.938vw, 20px);
    font-weight: 400;
    line-height: 1.945;
    letter-spacing: 0.234px;
    color: var(--landing-stroke);
}
@media screen and (max-width: 575px) {
    .landing-footer-bottom .copyright {
        text-align: center;
    }
}
.landing-footer-bottom .social-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 0.625rem 1.875rem;
}
@media screen and (max-width: 575px) {
    .landing-footer-bottom .social-links {
        justify-content: center;
        gap: 0.625rem;
    }
}
.landing-footer-bottom .social-links a {
    width: 3rem;
    height: 3rem;
    border: 0.0625rem solid var(--landing-primary-color);
    border-radius: 50%;
    background-color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.25rem;
    color: var(--landing-primary-color);
    transition: all 0.3s;
}
.landing-footer-bottom .social-links a:hover {
    background-color: var(--landing-primary-color);
    color: var(--landing-text-black);
}

/*.cookie-consent-wrap {*/
/*    position: fixed;*/
/*    bottom: 0;*/
/*    left: 0;*/
/*    width: 100%;*/
/*    background-color: var(--landing-text-black) !important;*/
/*    padding: 20px 15px;*/
/*}*/
/*.cookie-consent-wrap:not(:has(.cookie-consent)){*/
/*    display: none;*/
/*}*/
.cookie-consent-wrap .cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--landing-text-black) !important;
    padding: 20px 15px !important;
}
.cookie-consent-wrap .cookie-consent .max-w-7xl{
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 15px;
}
.cookie-consent-wrap .cookie-consent .cookie-consent__message {
    font-size: 20px;
    font-weight: 400;
    line-height: 24px;
    color: white !important;
    padding-bottom: 15px;
}
.cookie-consent-wrap .cookie-consent .cookie-consent__agree {
    display: inline-flex;
    align-items: center;
    gap: 0.9375rem;
    padding: 6px 20px !important;
    border: none;
    border-radius: 10px;
    background-color: var(--landing-primary-color);
    font-size: 1.125rem !important;
    font-weight: 400 !important;
    line-height: 2.1875rem !important;
    color: var(--landing-text-black) !important;
    transition: all 0.3s !important;
}

.preloader {
    background-color: var(--landing-text-black);
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 99999999;
    overflow: hidden;
}
.preloader .vertical-centered-box {
    position: absolute;
    width: 100%;
    height: 100%;
    text-align: center;
}
.preloader .vertical-centered-box:after {
    content: "";
    display: inline-block;
    height: 100%;
    vertical-align: middle;
    margin-right: -0.25em;
}
.preloader .vertical-centered-box .content {
    box-sizing: border-box;
    display: contents;
    vertical-align: middle;
    text-align: left;
    font-size: 0;
}
.preloader .vertical-centered-box .content img{
    max-width: 300px;
}
.preloader * {
    transition: all 0.001s;
}
.preloader .loader-circle {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    box-shadow: inset 0 0 0 1px rgba(255, 176, 37, 0.1);
    transform: translate(-50%, -50%);
}
.preloader .loader-line-mask {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 180px;
    height: 180px;
    margin-left: -90px;
    margin-top: -90px;
    overflow: hidden;
    mask-image: -webkit-linear-gradient(top, #ffb025, rgba(0, 0, 0, 0));
    animation: rotate 1.5s infinite linear;
    transform: translate(-50%,-50%);
}
.preloader .loader-line-mask .loader-line {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    box-shadow: inset 0 0 0 1px rgba(255, 176, 37, 0.5);
}
.preloader #particles-background, .preloader #particles-foreground {
    left: -51%;
    top: -51%;
    width: 202%;
    height: 202%;
    transform: scale3d(0.5, 0.5, 1);
}
.preloader #particles-background {
    background: #ffb025;
    background-image: linear-gradient(45deg, #3f3251 2%, #ffb025 100%);
}
.preloader lesshat-selector {
    -lh-property: 0;
}
@-webkit-keyframes rotate {
    0% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
    }
}
@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
.preloader lesshat-selector {
    -lh-property: 0;
}
@keyframes fade {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.25;
    }
}
.preloader lesshat-selector {
    -lh-property: 0;
}
@keyframes fade-in {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
.preloader [not-existing] {
    zoom: 1;
}

.mdi-max-width-26{
    max-width: 26px;
}
