:root {
  --primary: #1C3B33;
  --primary-hov: #fdf6ab;
  --primary-light: #FEF4F4;
  --secondary: #000010;
  --bg-color: #fff;
  --white: #fff;
  --gray: #363431;
  --black: #000010;
  --green: #20C992;
  --radius: 8px;
  --paddSection: 48px;
  --paddSmSection: 60px;
  --border-color: #e5e5e5;
}

@media (min-width: 992px) {
  :root {
    --paddSection: 96px;
  }
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

::selection {
  background: var(--primary);
  color: var(--white);
}

body {
  font-size: 16px;
  font-weight: 400;
  background: #FFF;
  color: #111927;
  margin: 0;
  padding: 0;
  line-height: 1.3;
}

.bg-white {
  background: #FFF;
}

.bg-light {
  background: #EFFAF5;
}

body.overf {
  overflow: hidden;
}

.overf-x {
  overflow-x: hidden;
}

.overf-hidden {
  overflow: hidden;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

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

ul, ol {
  padding-left: 25px;
}

ul li, ol li {
  margin: 7px 0;
  line-height: 1.8;
}

a,
input,
textarea,
select,
.btn,
.link,
svg path,
.btn-plain {
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5 {
  font-weight: 500;
  color: #111927;
}

h1, .h1 {
  font-size: 48px;
  line-height: 56px;
  letter-spacing: -1px;
}

h2, .h2 {
  font-size: 36px;
  line-height: 44px;
  letter-spacing: -1px;
}

h3, .h3 {
  font-size: 39px;
}

h4, .h4 {
  font-size: 20px;
  line-height: 30px;
}

h5, .h5 {
  font-size: 23px;
}

.subtitle {
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  color: var(--primary);
  background: var(--primary-light);
  padding: 8px 16px;
  border-radius: var(--radius);
}

@media (max-width: 767px) {
  h1, .h1 {
    font-size: 32px;
    line-height: 40px;
  }
  h2, .h2 {
    font-size: 24px;
    line-height: 32px;
  }
  h3, .h3 {
    font-size: 27px;
  }
  h4, .h4 {
    font-size: 20px;
  }
  .subtitle {
    font-size: 14px;
    margin-bottom: 11px;
  }
}
.green {
  color: var(--green);
}

.see-green {
  color: #5EBF99;
}

.jungle-green {
  color: #1C3B33;
}

.l-blue {
  color: #4D5761;
}

.bg-gray {
  background: #F9FAFB;
}

.bg-blue {
  background: rgba(234, 247, 255, 0.4);
}

.bg-green {
  background: #EEFAF4;
}

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

.bg-yellow {
  background: #FFFEF3;
}

.maxw1270 {
  max-width: 1270px;
}

.maxw960 {
  max-width: 960px;
}

.maxw890 {
  max-width: 890px;
}

.maxw768 {
  max-width: 768px;
}

.maxw680 {
  max-width: 680px;
}

.maxw600 {
  max-width: 600px;
}

.maxw650 {
  max-width: 650px;
}

.maxw550 {
  max-width: 550px;
}

.maxw510 {
  max-width: 510px;
}

.maxw448 {
  max-width: 448px;
}

@media (min-width: 575px) {
  .maxw340 {
    max-width: 340px;
  }
}
a {
  text-decoration: none;
  color: var(--black);
}

.footer-link:hover,
.link-gray:hover {
  color: var(--gray);
}

button {
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 16px;
}

.btn {
  font-size: 18px;
  line-height: 1;
  padding: 12px 20px;
  background: var(--primary);
  color: #fff;
  border: 2px solid transparent;
  position: relative;
  display: inline-block;
  cursor: pointer;
  outline: none;
  min-width: 108px;
  text-align: center;
  letter-spacing: 0.1px;
}

.btn-small {
  padding: 12px 26px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  min-width: unset;
  color: #46370F;
}

.btn:active,
.btn:hover {
  opacity: 0.85;
}

.btn-green {
  background: #44A57A;
  color: #fff;
}

.btn-green:hover,
.btn-green:active {
  background: #65a789;
}

.btn-outline {
  background: transparent;
  color: #246150;
  border-color: #5EBF99;
  padding: 9px 26px;
}

.btn-secondary {
  color: var(--black);
  background: transparent;
  border-color: var(--border-color);
}

.btn-secondary:hover,
.btn-secondary:active {
  color: var(--primary);
  background: var(--white);
  border-color: var(--primary);
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  background: var(--gray300);
  color: #fff;
}

.btn-plain, .btn-plain:hover,
.btn-plain:active {
  background: transparent;
  border-color: transparent;
}

.py-7 {
  padding-top: 7px;
  padding-bottom: 7px;
}

.pt-7 {
  padding-top: 7px;
}

.pt-20 {
  padding-top: 20px;
}

.pt-32 {
  padding-top: 32px;
}

.pb-32 {
  padding-bottom: 32px;
}

.lh-1 {
  line-height: 1;
}

main {
  margin-top: 79px;
  min-height: calc(100vh - 471px);
}

@media (min-width: 992px) {
  main {
    margin-top: 123px;
  }
}
p {
  margin: 0;
  font-size: 16px;
  line-height: 24px;
}

p + p {
  margin-top: 12px;
}

.word-spacing {
  word-spacing: 100vw;
}

.white {
  color: #fff;
}

.l-green {
  color: #2C9D75;
}

@media (min-width: 992px) {
  .word-lg-spacing {
    word-spacing: 100vw;
  }
}
.nice-select .current.black {
  color: #000 !important;
}

b, strong {
  font-weight: 500;
}

.f12 {
  font-size: 12px;
}

.f13 {
  font-size: 13px;
}

.f14 {
  font-size: 14px;
  line-height: 150%;
}

.f15 {
  font-size: 15px;
}

.f16 {
  font-size: 16px;
  line-height: 24px;
}

.f17 {
  font-size: 17px;
}

.f18 {
  font-size: 18px;
  line-height: 140%;
}

.f19 {
  font-size: 19px;
}

.f20, .f20 p {
  font-size: 20px;
  line-height: 28px;
}

.f22 {
  font-size: 22px;
  line-height: 100%;
}

.f23, .f23 p {
  font-size: 23px;
  line-height: 130%;
}

.f24 {
  font-size: 24px;
  line-height: 32px;
}

.f25 {
  font-size: 25px;
}

.f28, .f28 p {
  font-size: 28px;
  line-height: 130%;
  letter-spacing: -0.5px;
}

.f32, .f32 p {
  font-size: 32px;
  line-height: 40px;
}

.f35 {
  font-size: 35px;
  line-height: 120%;
}

@media (max-width: 767px) {
  .f32, .f32 p {
    font-size: 24px;
    line-height: 32px;
  }
  .f35 {
    font-size: 24px;
  }
}
.f36 {
  font-size: 36px;
  line-height: 44px;
}

.f44 {
  font-size: 44px;
}

.f64 {
  font-size: 64px;
  line-height: 84%;
}

.f40 {
  font-size: 40px;
  line-height: 120%;
  letter-spacing: -1px;
}

.f48 {
  font-size: 48px;
  line-height: 120%;
}

.f54, .f54 p {
  font-size: 54px;
  line-height: 100%;
}

.f66, .f66 p {
  font-size: 66px;
  line-height: 110%;
}

.f60, .f60 p {
  font-size: 60px;
  line-height: 110%;
}

.f55, .f55 p {
  font-size: 55px;
  line-height: 120%;
}

@media (max-width: 991px) {
  .f28, .f28 p {
    font-size: 22px;
  }
  .f66, .f66 p {
    font-size: 40px;
  }
  .f60, .f60 p {
    font-size: 37px;
  }
  .f55, .f55 p {
    font-size: 35px;
  }
}
@media (max-width: 767px) {
  .f44 {
    font-size: 35px;
  }
  .f48 {
    font-size: 30px;
  }
  .f64 {
    font-size: 30px;
  }
  .font-sm-16 {
    font-size: 16px;
    line-height: 24px;
  }
}
.bold {
  font-weight: bold;
}

.bold700 {
  font-weight: 700;
}

.bold600 {
  font-weight: 600;
}

.bold500 {
  font-weight: 500;
}

.bold400 {
  font-weight: 400;
}

.bold300 {
  font-weight: 300;
}

.ps-r {
  position: relative;
}

.gap12 {
  gap: 12px;
}

.gap16 {
  gap: 16px;
}

.gap20 {
  gap: 20px;
}

.gap24 {
  gap: 24px;
}

.gap-y-16 {
  gap: 16px 0;
}

.gap-y-20 {
  gap: 20px 0;
}

.gap-y-25 {
  gap: 25px 0;
}

.gap-y-32 {
  gap: 32px 0;
}

.gap-y-24 {
  gap: 24px 0;
}

.gap-y-48 {
  gap: 48px 0;
}

.gap-x-25 {
  gap: 0 25px;
}

.gap-x-16 {
  gap: 0 16px;
}

.gap-x-32 {
  gap: 0 32px;
}

.mr-20 {
  margin-right: 20px;
}

.mb-12 {
  margin-bottom: 12px;
}

.mb-15 {
  margin-bottom: 15px;
}

.mb-32 {
  margin-bottom: 32px;
}

.mr-12 {
  margin-right: 12px;
}

.mt70 {
  margin-top: 70px;
}

.mt60 {
  margin-top: 60px;
}

.mt52 {
  margin-top: 52px;
}

.mt32 {
  margin-top: 32px;
}

.mt38 {
  margin-top: 38px;
}

.br-5 {
  border-radius: 5px;
}

.br-4 {
  border-radius: 4px;
}

.br-8 {
  border-radius: 8px;
}

.mt12 {
  margin-top: 12px;
}

.pt45 {
  padding-top: 45px;
}

.pb45 {
  padding-bottom: 45px;
}

.pb40 {
  padding-bottom: 40px;
}

.pb60 {
  padding-bottom: 60px;
}

.py45 {
  padding-top: 45px;
  padding-bottom: 45px;
}

.py48 {
  padding-top: 48px;
  padding-bottom: 48px;
}

.py30 {
  padding-top: 30px;
  padding-bottom: 30px;
}

.p-10 {
  padding: 10px;
}

.p-16 {
  padding: 16px;
}

.p-20 {
  padding: 20px;
}

.p-24 {
  padding: 24px;
}

.p-32 {
  padding: 32px;
}

.p-48 {
  padding: 48px;
}

.p64 {
  padding: 64px;
}

.pt104 {
  padding-top: 104px;
}

.pb104 {
  padding-bottom: 104px;
}

.pt64 {
  padding-top: 64px;
}

.pb64 {
  padding-bottom: 64px;
}

.pt88 {
  padding-top: 88px;
}

.pb88 {
  padding-bottom: 88px;
}

@media (max-width: 991px) {
  .pt-lg-45 {
    padding-top: 45px;
  }
  .pt-lg-60 {
    padding-top: 60px;
  }
  .pt-lg-80 {
    padding-top: 80px;
  }
}
.max-content {
  max-width: max-content;
}

.container-slider {
  padding-right: 0;
  margin-right: unset;
  max-width: 1683px;
}

@media (min-width: 1921px) {
  .container-slider {
    max-width: calc(var(--container) + 48px);
    margin-right: auto;
  }
}
@media (max-width: 1536px) {
  .container-slider {
    padding-left: calc((100vw - var(--container)) / 2);
    margin-left: 0;
  }
}
@media (max-width: 1440px) {
  .container-slider {
    max-width: var(--container);
    padding-left: 24px;
  }
}
@media (max-width: 575px) {
  .container-sm-slider {
    padding-right: 0;
  }
  .container-slider {
    padding-left: 16px;
  }
  .container-slider .header-section {
    padding-right: 16px;
  }
}
.pb52 {
  padding-bottom: 52px;
}

.pt52 {
  padding-top: 52px;
}

.py52 {
  padding-top: 52px;
  padding-bottom: 52px;
}

.pb30 {
  padding-bottom: 30px;
}

.mb40 {
  margin-bottom: 40px;
}

.mb50 {
  margin-bottom: 50px;
}

.pb20 {
  padding-bottom: 20px;
}

.radius {
  border-radius: var(--radius);
}

.padd-section {
  padding-top: var(--paddSection);
  padding-bottom: var(--paddSection);
}

.padd-top {
  padding-top: var(--paddSection);
}

.padd-bottom {
  padding-bottom: var(--paddSection);
}

.padd-sm-section {
  padding-top: var(--paddSmSection);
  padding-bottom: var(--paddSmSection);
}

.padd-sm-top {
  padding-top: var(--paddSmSection);
}

.padd-sm-bottom {
  padding-bottom: var(--paddSmSection);
}

@media (max-width: 991px) {
  .padd-sm-top {
    padding-top: 40px;
  }
  .padd-sm-bottom {
    padding-bottom: 40px;
  }
  .f40 {
    font-size: 32px;
  }
  main {
    margin-top: 67px;
  }
}
.header-section {
  padding-bottom: 24px;
}

.h100 {
  height: 100%;
}

.grecaptcha-badge {
  display: none;
}

.breadcrumbs-list {
  list-style: none;
  margin: 0;
  padding: 0;
  overflow-x: auto;
  white-space: nowrap;
  padding-bottom: 10px;
}

.breadcrumbs-list li::after {
  content: "/";
  position: relative;
  top: 1px;
  padding: 0 12px;
}

.breadcrumbs-list li:last-of-type::after {
  display: none;
}

.breadcrumbs {
  padding: 18px 0 18px;
  font-size: 12px;
  overflow: hidden;
}

.breadcrumbs-item:last-of-type span {
  display: inline-block;
}

.breadcrumbs-item:last-of-type span::first-letter {
  text-transform: capitalize;
}

.breadcrumbs-item a,
.breadcrumbs-item span {
  color: var(--gray700);
}

.breadcrumbs-item a:hover span {
  color: var(--gray900);
}

input,
textarea,
select {
  border: 1px solid var(--border-color);
  background: transparent;
  padding: 10px 20px;
  height: 48px;
  width: 100%;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  color: var(--black);
  background-color: #fff;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px #f2f2f2 inset !important;
  -webkit-text-fill-color: black;
}

input[type=radio] {
  padding: unset;
  height: 16px;
  width: 16px;
  background-color: transparent;
  border-color: #fff;
  padding: 3px;
  border: 1px solid #E3E4E6;
  border-radius: 100%;
  accent-color: #E3E4E6;
  appearance: unset;
}

input[type=radio]:checked {
  border-color: #E3E4E6;
  background-color: #E3E4E6;
}

textarea {
  height: 100px;
  max-width: 100%;
}

input:focus,
textarea:focus {
  outline: none;
}

input:hover,
textarea:hover,
input:focus,
textarea:focus {
  border-color: #8b8b8b;
}

.form-group {
  position: relative;
}

.form-group label {
  position: absolute;
  top: calc(50% - 15px);
  left: 15px;
  transform: translateY(0);
  pointer-events: none;
  padding: 5px;
  color: #555555;
  background: #fff;
  transition: transform 0.2s ease, font-size 0.2s ease, color 0.2s ease;
  will-change: transform;
}

.label-hidden {
  height: 0;
  font-size: 0;
  padding: 0;
  border: 0;
  margin: 0;
  width: 0;
  display: initial;
}

.form-textarea label {
  top: 13px;
}

.form-group.active label {
  transform: translateY(-22px);
  font-size: 13px;
  color: var(--gray900);
}

.form-group.error label {
  transform: translateY(-38px);
  font-size: 13px;
  color: var(--gray900);
}

.form-group.error input, .form-group.error textarea {
  border-color: var(--primary900);
}

.form-textarea.active label, .form-group.error.form-textarea label {
  transform: translateY(-28px);
}

@media (min-width: 768px) {
  .novalidate.default label {
    transform: translateY(-13px);
  }
  .novalidate.default.active label {
    transform: translateY(-33px);
  }
}
.invalid-feedback {
  color: var(--primary900);
  padding: 7px 7px 0;
  width: 100%;
  display: none;
  font-size: 12px;
}

.checkbox-wrapper {
  padding: 12px 7px;
  border: 2px solid var(--black);
  width: 181px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.checkbox-wrapper:hover,
.checkbox-wrapper.active {
  background: var(--primary900);
  color: var(--black);
}

.checkbox-wrapper .checkbox {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary900);
  color: var(--black);
  border-radius: 0;
  border: none;
  transition: none;
  display: none;
}

.checkbox-wrapper input[type=radio]:checked ~ .checkbox {
  display: block;
}

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

.checkbox-label-first {
  border-right: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}

.checkbox-label-second {
  border-right: 0;
}

.checkbox-label-last {
  border-left: 0;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

.form-group.error input,
.form-group.error textarea {
  border-color: #a70000;
}

.invalid-feedback {
  color: #a70000;
  padding: 7px 7px;
  width: 100%;
  display: none;
  font-size: 12px;
  font-weight: 500;
  background: #ffcdcd;
}

.nice-select .option.disabled {
  display: none;
}

.valid {
  display: none;
  margin-top: 8px;
  color: #a70000;
  font-size: 14px;
}

.valid-el {
  position: relative;
}

.valid-el.error input,
.valid-el.error textarea {
  border-color: #a70000;
}

.valid-el.error::before {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 2px;
  right: 4px;
  z-index: 3;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M17 4.41L15.59 3L10 8.59L4.41 3L3 4.41L8.59 10L3 15.59L4.41 17L10 11.41L15.59 17L17 15.59L11.41 10L17 4.41Z' fill='%23a70000'/%3E%3C/svg%3E") no-repeat center;
  background-size: 20px;
}

input[type=checkbox] {
  display: none;
}

.checkbox {
  position: relative;
  min-width: 22px;
  width: 22px;
  height: 22px;
  background: #fff;
  margin-right: 12px;
  border: 1px solid #555555;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.checkbox::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 7px;
  width: 6px;
  height: 12px;
  border: solid #000;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  display: none;
}

input[type=checkbox]:checked ~ .checkbox::after {
  display: block;
}

input[type=checkbox]:checked ~ .checkbox {
  border-color: #000;
  background: #fff;
}

.pointer-none {
  pointer-events: none;
}

label {
  display: block;
}

.checkbox-label:hover .checkbox {
  border-color: var(--gray600);
}

.form-check.error ~ .checkbox {
  border-color: #a70000;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

.t-c {
  text-align: center;
}

@media (min-width: 992px) {
  .t-lg-c {
    text-align: center;
  }
}
@media (min-width: 768px) {
  .t-md-c {
    text-align: center;
  }
}
.t-r {
  text-align: right;
}

.select-none {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.w100 {
  width: 100%;
}

@media (max-width: 991px) {
  .w-lg-100 {
    width: 100%;
  }
  .mt-lg-60 {
    margin-top: 60px;
  }
  .pt64 {
    padding-top: 32px;
  }
}
@media (max-width: 575px) {
  .btn {
    padding: 12px 24px;
  }
  .mt-sm-60 {
    margin-top: 60px;
  }
}
@media (max-width: 767px) {
  .btns-wrapper-xs-column {
    flex-direction: column;
    width: 100%;
  }
  .btns-wrapper-xs-column a,
  .btns-wrapper-xs-column button {
    width: 100%;
  }
  .btns-wrapper-xs-column {
    display: flex;
    flex-direction: column;
    gap: 16px 0;
    width: 100%;
  }
  .link::after {
    display: none;
  }
}
.primary {
  color: var(--primary);
}

.gray {
  color: var(--gray);
}

.l-gray {
  color: #BABABA;
}

.c-pointer {
  cursor: pointer;
}

.hr {
  max-width: 200px;
  border: none;
  border-top: 1px solid #ebebeb;
}

.px-0 {
  padding-left: 0;
  padding-right: 0;
}

.border-t {
  border-top: 1px solid var(--border-color);
}

.border-b {
  border-bottom: 1px solid var(--border-color);
}

.border {
  border: 1px solid var(--border-color);
}

.pb-0 {
  padding-bottom: 0;
}

.vis-auto {
  content-visibility: auto;
}

.nowrap {
  white-space: nowrap;
}

.alert {
  display: none;
  padding: 10px;
  border-radius: 5px;
  text-align: center;
  margin-top: 12px;
}

.alert-success {
  background: #91ff91;
}

.alert-danger {
  background: #ff5a5a;
}

.splide__sr {
  display: none;
}

.header {
  padding: 15px 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #EFFAF5;
  z-index: 10;
  border-bottom: 1px solid transparent;
  transition: padding 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

@media (min-width: 992px) {
  .header {
    padding: 39px 0;
  }
  .header.sticky {
    padding: 25px 0;
  }
}
.hero-bg-light {
  background: #EFFAF5;
  height: 286px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: -1;
}

@media (max-width: 991px) {
  .hero-bg-light {
    height: 160px;
  }
}
.nav--menu-link {
  padding: 10px 14px;
  margin: 0 4px;
  position: relative;
  color: #1C3B33;
}

.link {
  position: relative;
}

.search-icon {
  background-color: #1C3B33;
  padding: 10px 18px;
}

@media (min-width: 992px) {
  .nav--menu-link::after,
  .link::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 50%;
    right: 0;
    width: calc(100% - 16px);
    height: 2px;
    border-radius: 5px;
    background: var(--black);
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.2s ease;
  }
  footer .link::after {
    background: #BABABA;
  }
  .user-icon {
    margin-left: 6px;
  }
}
.link::after {
  width: 100%;
  bottom: -7px;
}

.nav--menu-link:hover::after,
.link:hover::after {
  opacity: 1;
}

.nav--big-menu {
  position: fixed;
  top: 99px;
  left: 0;
  right: 0;
  width: 100%;
  background: #fff;
  border-bottom: 1px solid var(--border-color);
  transform: translateY(0);
  transition: transform 0.2s ease;
  z-index: 10;
  display: none;
}

@media (max-width: 991px) {
  .nav--big-menu {
    top: 67px;
  }
}
@media (min-width: 992px) {
  .header.sticky ~ .nav--big-menu {
    transform: translateY(-24px);
  }
}
.nav--big-menu-arrow {
  transition: transform 0.2s ease;
  margin-bottom: 1px;
  margin-left: 4px;
}

.nav--big-menu-btn.active .nav--big-menu-arrow {
  transform: rotate(-180deg);
}

.nav--big-menu-row {
  padding-top: 52px;
  padding-bottom: 52px;
  gap: 40px 0;
}

.nav--big-menu-desc {
  line-height: 1.8;
  max-width: 325px;
  margin-top: 16px;
}

.nav--menu-dot::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -4px;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 8px;
}

.nav--menu-dot.dot-yellow::before {
  background: #FBF286;
}

.nav--menu-dot.dot-green::before {
  background: #44A57A;
}

@media (max-width: 991px) {
  .header--nav {
    position: fixed;
    top: 66px;
    left: 0;
    right: 0;
    width: 100%;
    height: calc(100% - 66px - env(safe-area-inset-top) - env(safe-area-inset-bottom));
    z-index: 100;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(0.64, 0.03, 0.42, 1.01);
    padding: 40px 0;
    background: #fff;
  }
  .header {
    padding: 11px 0;
  }
  .header::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    z-index: -1;
    background: #fff;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    opacity: 0;
    visibility: hidden;
  }
  .header.sticky::after {
    transition: unset;
  }
  .header.nav-open::after {
    visibility: visible;
    opacity: 1;
  }
  .header--nav.mobile-hidden {
    display: none;
  }
  .header--nav.active {
    transform: translateX(0);
  }
  .nav--menu-link {
    margin: 15px 0;
    width: fit-content;
  }
  .nav--btn {
    width: calc(100% - 48px);
    text-align: center;
    padding: 18px 32px;
  }
  .header--nav-wrapper {
    width: 100%;
    padding: 0 3px;
  }
  .nav--big-menu-desc {
    display: none;
  }
  .nav--big-menu-arrow,
  .nav--big-menu-btn.active .nav--big-menu-arrow {
    transform: rotate(-90deg);
    width: 12px;
  }
  .nav--big-menu-row {
    gap: 10px 0;
  }
  .nav--big-menu-row a {
    display: block;
    width: fit-content;
    padding: 12px 0;
  }
  .nav--big-menu-title {
    font-size: 16px;
    width: fit-content;
    padding: 0 13px;
  }
  .nav--big-menu {
    display: block;
    background: #fff;
    border-bottom: unset;
    transform: translateX(100%);
    height: 100vh;
    transition: transform 0.3s cubic-bezier(0.64, 0.03, 0.42, 1.01);
  }
  .header--nav.bigmenu-active .nav--menu-link {
    opacity: 0;
  }
  .nav--big-menu.active {
    transform: translateX(0);
  }
  .nav--menu-back-btn {
    padding: 10px 29px;
    margin-bottom: 15px;
  }
  .nav--big-menu-row {
    padding-top: 15px;
    padding-bottom: 15px;
    display: block;
  }
  .menu-over-mobile {
    max-height: calc(100vh - 200px);
    overflow-y: auto;
  }
  .nav--big-menu-services {
    overflow-y: auto;
    min-height: calc(100vh - 200px);
    display: block;
  }
  .nav--menu-dot::before {
    display: none;
  }
  .nav--menu-link {
    padding: 12px 14px;
  }
  .nav--menu-dot {
    width: 100%;
    padding: 24px;
    border-radius: 16px;
  }
  .nav--menu-dot.dot-yellow {
    background: #FBF286;
  }
  .nav--menu-dot.dot-green {
    background: #EEFAF4;
    margin-top: 4px;
    margin-bottom: 30px;
  }
  .nav--menu-link {
    margin: 0;
    font-size: 20px;
    line-height: 28px;
  }
  .account-link-mobile {
    padding: 16px;
  }
  .header--nav {
    padding: 0;
  }
  .nav-menu_btn_wrapper {
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    z-index: 33;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(0.64, 0.03, 0.42, 1.01);
  }
  .nav-menu_btn_wrapper.active {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  .nav-menu-mobile-btn {
    width: 100%;
    padding: 16px;
  }
  .nav-menu-mobile-btn-first {
    margin-bottom: 12px;
  }
}
.hamburger {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4px;
  margin-right: -4px;
  outline: none;
}

.hamburger.active .hamburger-top {
  top: 17px;
  transform: translate(0) rotate(225deg);
}

.hamburger.active .hamburger-middle {
  opacity: 0;
}

.hamburger.active .hamburger-bottom {
  top: 17px;
  transform: translate(0) rotate(135deg);
}

.hamburger-container {
  position: relative;
  width: 36px;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #5EBF99;
}

.hamburger-top,
.hamburger-middle,
.hamburger-bottom {
  position: absolute;
  width: 20px;
  height: 2px;
  background-color: #fff;
  transition: top 0.25s, background-color 0.5s, transform 0.25s;
}

.hamburger-top {
  top: 12px;
  left: 8px;
  transform: translate(0);
}

.hamburger-middle {
  top: 17px;
  left: 8px;
  transform: translate(0px);
}

.hamburger-bottom {
  top: 22px;
  left: 8px;
}

.subtitle.green::before {
  content: "";
  position: absolute;
  top: 1px;
  left: 0;
  width: 16px;
  height: 16px;
  border-radius: 20px;
  background: var(--green);
}

.subtitle.green {
  padding-left: 32px;
}

.footer-small {
  padding-top: 48px;
  padding-bottom: 48px;
}

.footer-container {
  padding-top: 44px;
  padding-bottom: 44px;
  max-width: 1342px;
}

.fsocial-row {
  gap: 0 10px;
}

.fsocial-icon:hover {
  opacity: 0.7;
}

@media (min-width: 992px) {
  .footer-col {
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
  }
}
@media (max-width: 991px) {
  .footer-wrapper {
    padding-bottom: 20px;
  }
  .footer-header .arrow-down {
    transition: all 0.2s ease;
  }
  .footer-header.active .arrow-down {
    transform: rotate(-180deg);
  }
  .footer-col {
    padding-top: 12px;
  }
  .footer-container {
    padding-top: 32px;
    padding-bottom: 32px;
  }
}
footer {
  background: #1C3B33;
}

.footer-logos-wrapper {
  gap: 48px 0;
}

.footer-small-border {
  border-top: 1px solid rgba(255, 255, 255, 0.1176470588);
}

.footer-contact-col {
  gap: 30px 0;
}

.contact-section {
  background: #5EBF99;
}

.footer-gray-contact {
  color: #B5B7BB;
}

.footer-address {
  font-size: 16px;
  line-height: 26px;
}

.subscribe-inp {
  background: transparent;
  border: 0;
  border-bottom: 1px solid #fff;
  border-radius: 0;
  padding-left: 0;
  padding-right: 0;
  color: #fff;
}

.subscribe-inp::placeholder {
  color: #fff;
}

.subscribe-btn {
  position: absolute;
  bottom: 4px;
  right: 0;
  padding: 10px 0 10px 14px;
}

.prefooter-box {
  background: #fff;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 115px 0;
}

.subscribe-inp[dir=rtl] ~ .subscribe-btn {
  right: unset;
  left: 0;
  padding: 10px 14px 10px 0;
}

@media (max-width: 1440px) {
  .prefooter-box {
    padding: 40px 35px;
  }
}
@media (min-width: 992px) {
  .prefooter-col2 {
    padding-top: 170px;
  }
  .contact-section {
    padding-top: 35px;
    padding-bottom: 90px;
  }
  .contact-col:first-of-type {
    transform: translateY(-10%);
  }
  .contact-col:last-of-type {
    transform: translateY(10%);
  }
}
@media (max-width: 991px) {
  .prefooter-box {
    gap: 60px 0;
  }
  .get-in-touch {
    max-width: 174px;
  }
  .footer-contact-col {
    gap: 20px 0;
    margin-top: 32px;
  }
  .help-wrapper {
    gap: 40px 0;
  }
  .footer-col-logo {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 32px;
  }
  .footer-col-menu1,
  .footer-col-menu2,
  .footer-contact-col {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .footer-contact-col1 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .footer-contact-col2 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .footer-logo {
    max-width: 152px;
  }
  .google-logo {
    max-width: 162px;
  }
  .footer-col a,
  .footer-address {
    font-size: 14px;
    line-height: 22px;
  }
  .footer-address {
    font-size: 13px;
  }
}
@media (min-width: 992px) {
  .footer-col {
    flex: 0 0 20%;
    max-width: 20%;
  }
  .footer-col-logo {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .footer-col-menu1,
  .footer-col-menu2 {
    flex: 0 0 17.5%;
    max-width: 17.5%;
  }
  .help-wrapper {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.ipoexit-tag {
  position: absolute;
  top: 0;
  right: 0;
}

.portfolio-list.grid-list .ipoexit-tag {
  left: 108px;
}

.home-portfolios-section .ipoexit-tag {
  top: 8px;
  right: 8px;
}

@media (min-width: 992px) {
  .footer-top-animation {
    height: 106px;
    position: absolute;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    will-change: transform, opacity;
  }
  .footerBottomAnimContainer {
    position: relative;
    width: 100%;
    max-width: 1920px;
    aspect-ratio: 1920/110;
    margin: 0 auto;
  }
  .footerBottomAnimation {
    will-change: transform, opacity;
  }
}
.card {
  display: block;
  padding: 24px;
  border-radius: 24px;
  border: 2px solid var(--border-color);
  transition: border-color 0.2s ease;
}

.card-gray {
  background: #f3f3f3;
  border-color: #f3f3f3;
}

.card-clickable {
  height: 100%;
}

.card.card-clickable:hover {
  border-color: var(--primary);
}

.card.card-border {
  border-color: var(--white);
}

.card.card-border:hover {
  background: var(--primary);
  border-color: var(--primary);
}

@media (max-width: 991px) {
  .card.card-clickable p {
    font-size: 14px;
  }
  .mobile-img-padding-x {
    padding-left: 5px;
    padding-right: 5px;
  }
  .mobile-img-padding-left {
    padding-left: 5px;
  }
  .mobile-img-padding-right {
    padding-right: 5px;
  }
  .faq-section {
    padding-top: 0;
  }
}
.arr-right {
  transition: transform 0.2s ease;
}

.card:hover .arr-right,
.link-img:hover .arr-right {
  transform: translateX(7px);
}

.link-hov {
  width: fit-content;
}

.link-hov:hover {
  text-decoration: underline;
}

.circle-icon {
  min-width: 24px;
  height: 24px;
}

.card2 {
  padding: 48px;
}

.card3 {
  padding: 62px 75px;
}

.form-card {
  background: #f9fafb;
  border-radius: 8px;
  padding: 40px 32px;
}

.form-policy {
  display: none;
}

.person-social-link {
  position: absolute;
  top: 19px;
  left: 19px;
  padding: 7px;
}

.person-social-link:hover {
  transform: scale(1.1);
}

.block-item--wrapper {
  border-radius: var(--radius);
  overflow: hidden;
}

.block-item--img {
  transition: transform 0.2s ease;
  transform: scale(1);
}

.block-item:hover img {
  transform: scale(1.02);
}

.is-style-rounded img {
  border-radius: var(--radius);
}

.blog-placeholder-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.blog-content {
  max-width: 1250px;
}

.blog-content p + p {
  margin-top: 22px;
}

.form-secure {
  height: 0;
  font-size: 0;
  padding: 0;
  border: 0;
  margin: 0;
  width: 0;
  display: initial;
}

.form-response {
  padding: 10px 15px;
  background: #24b124;
  border-radius: var(--radius);
  text-align: center;
  font-weight: 500;
  color: #fff;
}

.card-bottom {
  position: absolute;
  bottom: 8px;
  left: 0;
  width: calc(100% - 16px);
  right: 0;
  background: rgba(143, 143, 143, 0.4);
  backdrop-filter: blur(8px);
  color: #fff;
  border-radius: var(--radius);
  padding: 12px 16px;
}

@media (min-width: 1120px) {
  .footer-social-wrapper,
  .footer-contact-wrapper {
    margin-right: 76px;
  }
}
.search-form input {
  height: 44px;
  border: 0;
}

.search-form {
  position: absolute;
  top: 0;
  right: 60px;
  width: 0;
  transition: all 0.3s ease;
}

.search-form.active {
  width: 177px;
}

.search-btn-form {
  position: absolute;
  top: 9px;
  right: 16px;
  opacity: 0;
  transition: all 0.15s ease;
}

.search-form.active .search-btn-form {
  opacity: 1;
}

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

.search-icon .search-close,
.search-icon.active .search-open {
  display: none;
}

.search-icon.active .search-close {
  display: block;
}

.screen-reader-text {
  display: none;
}

.nav-links {
  margin-top: 60px;
  display: flex;
  justify-content: center;
  gap: 0 32px;
}

.btn-history {
  background: transparent;
  color: #5EBF99;
  max-width: 200px;
  cursor: pointer;
  font-size: 40px;
  padding-top: 5px;
  padding-bottom: 10px;
  transition: all 0.2s ease;
  position: relative;
}

.btn-history::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #246150;
  transition: all 0.2s ease;
}

.btn-history:hover {
  color: #fff;
}

.btn-history:not(.active):hover::after {
  height: 4px;
  background: #246150;
}

.btn-history.active {
  background: #5EBF99;
  color: #fff;
  padding: 8px 0 8px 16px;
  font-size: 54px;
  transition: all 0.2s ease;
}

.history-content {
  display: none;
}

.history-content.active {
  display: block;
}

.btn-tabs {
  background: transparent;
  border: 4px solid transparent;
  border-left: 0;
  border-right: 0;
  border-bottom-color: #384250;
  padding: 17px;
  cursor: pointer;
  text-align: center;
  min-width: 120px;
}

.btn-tabs.active {
  background: #384250;
  color: #fff;
}

@media (max-width: 991px) {
  .btn-tabs-wrapper {
    gap: 0;
  }
  .btn-tabs-wrapper .btn-tabs {
    width: 100%;
  }
}
@media (min-width: 992px) {
  .btn-tabs {
    min-width: 200px;
  }
}
.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

@media (max-width: 991px) {
  .btn-history.active {
    padding-top: 5px;
    padding-bottom: 10px;
    font-size: 40px;
  }
  .history-wrapper {
    margin-left: -8px;
    margin-right: -8px;
  }
  .history-wrapper .history-col {
    max-width: 50%;
    flex: 0 0 50%;
    padding-left: 8px;
    padding-right: 8px;
  }
}

/*# sourceMappingURL=core.css.map */
