.header-wrapper {
  padding: 0 16px;
}

.header {
  max-width: 1440px;
  z-index: 100;
  position: relative;
  background: #050b11;
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.7);
  margin: 20px auto 0 auto;
  border-radius: 20px;
  padding: 0 10px;
}
@media screen and (max-width: 768px) {
  .header {
    padding: 0;
  }
}
.header .menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 24px;
}
.header .menu-list .menu-item a {
  display: inline-flex;
  align-items: center;
  height: 40px;
  padding: 0 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-3);
  border: 1px solid var(--color-3);
  text-decoration: none;
  transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  border-radius: 999px;
}
.header .menu-list .menu-item a:hover {
  color: #0f172a;
  background: var(--color-3);
}
.header__top {
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}
.header__top-inner {
  padding: 8px 24px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .header__top-inner {
    justify-content: space-between;
    gap: 4px;
    padding: 0;
  }
}
.header__top .header-top__nav {
  width: 100%;
}
.header__top .header-top__menu .menu-item a {
  border-radius: 6px;
  padding: 0 10px;
  height: 32px;
  font-size: 13px;
}
@media screen and (max-width: 768px) {
  .header__top .header-top__menu .menu-item a {
    border: none;
    color: white;
    font-size: 18px;
    font-weight: 400;
  }
}
.header__top .header-top__menu .menu-item .submenu {
  border: none;
}
@media screen and (max-width: 768px) {
  .header__top .header-top__menu .menu-item .submenu li.menu-item a {
    font-size: 16px;
  }
}
.header__main-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.header__main-inner .header-top__nav .menu-item a {
  border: none;
  color: white;
  font-size: 16px;
}
.header__main-inner .header-top__nav .menu-item a:hover {
  color: var(--color-3);
  background: none;
  box-shadow: none;
}
.header__main-inner .menu-list {
  position: relative;
  gap: 32px;
}
.header__main-inner > .menu-item-has-children > a {
  position: relative;
}
@media screen and (min-width: 601px) {
  .header__main-inner > .menu-item-has-children > a {
    padding-right: 20px;
  }
}
@media screen and (max-width: 600px) {
  .header__main-inner > .menu-item-has-children > a:after {
    transform: rotate(0deg);
  }
  .header__main-inner > .menu-item-has-children > a.active:after {
    transform: rotate(180deg);
  }
}
@media screen and (min-width: 601px) {
  .header__main-inner > .menu-item-has-children > a:hover:after {
    transform: rotate(180deg);
  }
}
@media screen and (max-width: 600px) {
  .header__main-inner > .menu-item-has-children > a a {
    justify-content: center;
  }
}
.header__logo a {
  display: flex;
  align-items: center;
}
.header__logo a img {
  max-height: 40px;
}
@media screen and (max-width: 768px) {
  .header__logo a img {
    max-width: 107px;
    width: 100%;
  }
}
.header__nav {
  flex: 1;
  display: flex;
  justify-content: end;
  margin-right: 10%;
}
.header .menu-item-with-submenu {
  height: 100%;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 600px) {
  .header .menu-item-with-submenu {
    height: auto;
    justify-content: center;
  }
}
.header .menu-item-with-submenu .menu-shape {
  font-size: 20px;
  transition: all 0.2s;
}
@media screen and (max-width: 600px) {
  .header .menu-item-with-submenu .menu-shape {
    color: white;
  }
}
.header .menu-item-with-submenu:hover a {
  color: var(--black);
}
@media screen and (max-width: 600px) {
  .header .menu-item-with-submenu:hover a {
    color: white;
  }
}
.header .menu-item-with-submenu:hover .menu-shape {
  transform: rotate(180deg);
  color: var(--color-3);
}
.header .menu-item {
  position: relative;
}
.header .menu-item .submenu {
  display: inline-block;
  padding: 12px;
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 100%;
  transform: translateY(-1rem);
  z-index: 99;
  list-style: none;
  transition: transform 0.2s;
  font-size: 14px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  min-width: 100%;
  width: max-content;
  border: 1px solid #96A0A8;
  overflow: hidden;
}
@media screen and (max-width: 600px) {
  .header .menu-item .submenu {
    padding: 0 20px;
  }
}
.header .menu-item .submenu li a {
  color: white;
  font-size: 14px;
  padding: 0;
  font-weight: normal;
}
.header .menu-item .submenu li a:hover {
  color: var(--color-3);
  background: none;
  box-shadow: none;
}
.header .menu-item .submenu li .submenu li a {
  text-transform: unset !important;
  margin-left: 0;
}
@media screen and (max-width: 600px) {
  .header .menu-item .submenu li .submenu li a {
    margin-right: 0;
  }
}
.header .menu-item .submenu .menu-item.has-dropdown .menu-shape {
  display: none;
}
.header .menu-item .submenu.submenu--0 {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.header .menu-item .submenu.submenu--0 .menu-item {
  font-weight: bold;
}
.header .menu-item .submenu.submenu--1 {
  position: relative;
  box-shadow: unset;
}
.header .menu-item .submenu.submenu--1:before {
  display: none;
}
.header .menu-item .submenu.submenu--1 > .menu-item {
  font-weight: normal;
}
@media screen and (max-width: 600px) {
  .header .menu-item .submenu {
    position: relative;
    top: unset;
    height: 0;
    width: 100%;
    background: unset;
    transform: unset;
    box-shadow: unset;
    display: none;
  }
  .header .menu-item .submenu.active {
    visibility: visible;
    opacity: 1;
    height: auto !important;
    display: block;
  }
}
.header .menu-item .submenu:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(0, 0, 0, 0.5);
  border-radius: 0 0 10px 10px;
}
@media screen and (max-width: 600px) {
  .header .menu-item .submenu:before {
    display: none;
  }
}
.header .menu-item .submenu > .menu-item {
  margin: 0;
  width: 100%;
  position: relative;
  max-width: 333px;
}
@media screen and (max-width: 600px) {
  .header .menu-item .submenu > .menu-item {
    width: 100%;
  }
}
@media screen and (min-width: 601px) {
  .header .menu-item:hover .submenu {
    visibility: visible;
    opacity: 1;
    height: auto !important;
    z-index: 99;
    -webkit-transform: translateY(0%);
    -ms-transform: translateY(0%);
    transform: translateY(0%);
    -webkit-transition-delay: 0s, 0s, 0.2s;
    transition-delay: 0s, 0s, 0.2s;
  }
}
.header .header-main__menu .menu-item a {
  font-size: 16px;
  font-weight: 600;
  text-transform: none;
  border-radius: 10px;
  padding: 0 18px;
  height: 40px;
  background: transparent;
}
.header .header-main__menu .menu-item a:hover {
  border-color: var(--color-1);
}
.header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.header__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  height: 42px;
  border-radius: 999px;
  background: linear-gradient(90deg, #14f195 0%, #4ade80 50%, #22c55e 100%);
  color: #022c22;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 0 24px rgba(34, 197, 94, 0.8);
  white-space: nowrap;
}
.header__lang {
  font-size: 14px;
}

.hamburger {
  display: none;
  position: relative;
  width: 25px;
  height: 18px;
  cursor: pointer;
  z-index: 100;
  margin-left: auto;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  position: absolute;
  right: 0;
  height: 2px;
  background: #fff;
  border-radius: 1px;
  transition: transform 0.25s ease, opacity 0.2s ease, background 0.25s ease, width 0.25s ease;
}
.hamburger span:nth-child(1) {
  top: 0;
  width: 100%;
}
.hamburger span:nth-child(2) {
  top: 50%;
  margin-top: -1px;
  width: 100%;
}
.hamburger span:nth-child(3) {
  bottom: 0;
  width: 70%;
}
.hamburger.is-open span {
  background: #ef4444;
}
.hamburger.is-open span:nth-child(1) {
  top: 50%;
  margin-top: -1px;
  transform: rotate(45deg);
}
.hamburger.is-open span:nth-child(2) {
  opacity: 0;
}
.hamburger.is-open span:nth-child(3) {
  bottom: auto;
  top: 50%;
  margin-top: -1px;
  width: 100%;
  transform: rotate(-45deg);
}
@media screen and (max-width: 768px) {
  .hamburger {
    display: block;
  }
}

@media screen and (max-width: 1024px) {
  .header .header__main-inner {
    gap: 16px;
  }
}
@media screen and (max-width: 768px) {
  .header .menu-container {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 83px;
    right: -110vw;
    z-index: 99;
    -webkit-transition: all 0.3s cubic-bezier(0.77, 0.2, 0.05, 1);
    -o-transition: all 0.3s cubic-bezier(0.77, 0.2, 0.05, 1);
    transition: all 0.3s cubic-bezier(0.77, 0.2, 0.05, 1);
    display: block;
    overflow-y: auto;
    padding: 30px 16px;
    box-sizing: border-box;
    background: rgba(0, 0, 0, 0.5019607843);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }
  .header .menu-container.is-open {
    right: 0;
  }
  .header .menu-container .menu-list {
    flex-direction: column;
    justify-content: unset;
  }
  .header .menu-container .header-top__nav--mobile-in-drawer {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(148, 163, 184, 0.25);
  }
  .header .menu-container .header-top__nav--mobile-in-drawer .menu-list {
    gap: 12px;
  }
  .header__top-inner, .header__main-inner {
    padding: 4px 8px;
  }
  .header__main .header-top__nav {
    display: none;
  }
  .header__actions {
    margin-left: auto;
    gap: 8px;
  }
  .header__btn {
    padding: 0 14px;
    font-size: 12px;
    height: 36px;
  }
}
.header__actions {
  display: flex;
  gap: 50px;
}
@media screen and (max-width: 768px) {
  .header__actions {
    gap: 10px;
  }
}
.header__actions .header__cta {
  background-image: url("../img/cta-bg.png");
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 55px;
  overflow: hidden;
  color: white;
  padding-right: 13px;
}
.header__actions .header__cta img {
  height: 50px;
}
.header__actions .header__cta .header__cta-btn {
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .header__actions .header__cta .header__cta-btn {
    display: none;
  }
}
.header__actions .header__cta .btn.btn-main {
  padding: 6px 10px !important;
}

.pll-switcher-select {
  font-size: 25px;
  text-transform: uppercase;
  background: none;
  color: white;
  border: none;
}
@media screen and (max-width: 768px) {
  .pll-switcher-select {
    font-size: 20px;
  }
}

.footer-wrapper {
  padding: 0 16px;
}

.footer {
  padding-top: 22px;
  background: var(--color-4);
  color: white;
  margin-top: auto;
  border-top: 1px solid rgba(57, 230, 0, 0.18);
  max-width: 1560px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  border-radius: 20px;
  margin-bottom: 60px;
  padding: 45px;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .footer {
    padding: 25px;
  }
}
.footer .footer-container .footer-top {
  display: flex;
  gap: 36px;
  align-items: flex-start;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .footer .footer-container .footer-top {
    flex-direction: column;
  }
}
.footer .footer-container .footer-top .footer-brand {
  flex: 0 0 180px;
}
@media screen and (max-width: 768px) {
  .footer .footer-container .footer-top .footer-brand {
    margin: 0 auto 30px auto;
  }
}
.footer .footer-container .footer-top .footer-brand__logo {
  width: 160px;
  max-width: 100%;
  height: auto;
  display: block;
}
@media screen and (max-width: 768px) {
  .footer .footer-container .footer-top .footer-menu {
    width: 100%;
  }
}
.footer .footer-container .footer-top .footer-menu .footer-menu-container ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer .footer-container .footer-top .footer-menu .footer-menu-container .footer-menu-list {
  display: flex;
  grid-template-columns: repeat(2, minmax(90px, 1fr));
  gap: 60px;
}
@media screen and (max-width: 768px) {
  .footer .footer-container .footer-top .footer-menu .footer-menu-container .footer-menu-list {
    justify-content: space-between;
    gap: 30px;
  }
}
.footer .footer-container .footer-top .footer-menu .footer-menu-container .footer-menu-list .menu-item {
  font-size: 20px;
  flex-shrink: 0;
}
.footer .footer-container .footer-top .footer-menu .footer-menu-container .footer-menu-list .menu-item a {
  color: #fff;
  text-decoration: none;
}
.footer .footer-container .footer-top .footer-menu .footer-menu-container .footer-menu-list .menu-item a:hover {
  color: var(--color-3);
}
.footer .footer-container .footer-top .footer-menu .footer-menu-container .footer-menu-list .menu-item .menu-item-no-link {
  font-weight: 600;
  font-size: 20px;
  line-height: 1.2;
  margin-bottom: 12px;
  color: var(--color-3);
}
.footer .footer-container .footer-top .footer-menu .footer-menu-container .footer-menu-list .menu-item .menu-shape {
  display: none;
}
.footer .footer-container .footer-top .footer-menu .footer-menu-container .footer-menu-list .menu-item .submenu {
  padding: 0;
}
.footer .footer-container .footer-top .footer-menu .footer-menu-container .footer-menu-list .menu-item .submenu .menu-item {
  font-weight: normal;
  margin-top: 4px;
  margin-bottom: 0;
  font-size: 16px;
  line-height: 24px;
}
.footer .footer-container .footer-top .footer-menu .footer-menu-container .footer-menu-list .menu-item .submenu .menu-item .menu-item-no-link {
  font-size: 20px;
  line-height: 28px;
  color: var(--color-3);
}
.footer .footer-container .footer-top .footer-menu .footer-menu-container .footer-menu-list .menu-item .submenu .menu-item a {
  color: white;
}
.footer .footer-container .footer-top .footer-disclaimer {
  flex: 1;
  max-width: 45%;
  position: relative;
}
@media screen and (max-width: 768px) {
  .footer .footer-container .footer-top .footer-disclaimer {
    display: flex;
    flex-direction: column-reverse;
  }
}
.footer .footer-container .footer-top .footer-disclaimer__text {
  color: #ADB2B1;
}
.footer .footer-container .footer-top .footer-disclaimer__text p {
  margin-top: 0;
}
.footer .footer-container .footer-top .footer-disclaimer__age {
  width: 42px;
  height: 42px;
  border: 2px solid rgba(255, 255, 255, 0.75);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .footer .footer-container .footer-top .footer-disclaimer__age {
    position: absolute;
    top: -70px;
    right: 40px;
  }
}
.footer .footer-rights {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 16px;
  padding: 14px 0;
  color: rgba(255, 255, 255, 0.7);
}
@media screen and (max-width: 980px) {
  .footer .footer-container .footer-top {
    display: flex;
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .footer .footer-container .footer-top .footer-brand {
    flex: none;
  }
  .footer .footer-container .footer-top .footer-menu {
    flex: none;
  }
  .footer .footer-container .footer-top .footer-disclaimer {
    max-width: none;
  }
}
@media screen and (max-width: 600px) {
  .footer {
    padding-top: 18px;
  }
  .footer .footer-container .footer-top {
    gap: 16px;
  }
  .footer .footer-container .footer-top .footer-brand__logo {
    width: 140px;
  }
  .footer .footer-container .footer-top .menu-item .menu-item-no-link {
    font-size: 18px;
  }
  .footer .footer-disclaimer__text {
    font-size: 14px;
  }
  .footer .footer-disclaimer__age {
    width: 38px;
    height: 38px;
    font-size: 14px;
  }
}
.footer .footer-rights {
  font-size: 14px;
  padding: 12px 0;
}

:root {
  --color-1: #02FD71;
  --color-2: #09141A;
  --color-3: #04F36A;
  --color-4: #09141A;
  --black: #000000;
  --gray-dark: #787878;
  --gray-light: #dbdbdb;
  --black-secondary: #2D2D2D;
}

div {
  box-sizing: border-box;
}

html {
  font-family: "Lato", sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: white;
}

main {
  overflow-x: hidden;
  padding-bottom: 50px;
}
main > h1, main h2, main h3, main h4, main h5, main h6, main p, main ul, main ol {
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 16px;
}
main > p, main ul, main ol, main a {
  color: #ADB2B1;
  font-size: 25px;
  line-height: 35px;
}
@media screen and (max-width: 600px) {
  main > p, main ul, main ol, main a {
    font-size: 20px;
    line-height: 28px;
  }
}
main > p > a, main ul > a, main ol > a, main a > a {
  color: var(--color-3);
}
main > p > a:hover, main ul > a:hover, main ol > a:hover, main a > a:hover {
  text-decoration: underline;
}
main > ul, main ol {
  margin-top: 30px;
  margin-bottom: 30px;
  list-style: none;
}
main > ul {
  margin-bottom: 40px;
}
main > ul > li {
  margin: 30px 0;
  position: relative;
  padding-left: 54px;
}
@media screen and (max-width: 600px) {
  main > ul > li {
    margin: 20px 0;
    padding-left: 40px;
  }
}
main > ul > li::before {
  content: "";
  position: absolute;
  left: 0;
  top: calc(50% - 40px);
  transform: translateY(50%);
  width: 40px;
  height: 40px;
  background: url("../img/icons/li-icon.svg") no-repeat center;
  background-size: contain;
}
@media screen and (max-width: 600px) {
  main > ul > li::before {
    width: 30px;
    height: 30px;
    top: 0;
    transform: translateY(0);
  }
}
main > ol {
  list-style: none;
  counter-reset: num;
  margin-top: 30px;
  margin-bottom: 60px;
}
main > ol:has(li:last-child:nth-child(even)) {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 60px;
}
@media screen and (max-width: 600px) {
  main > ol:has(li:last-child:nth-child(even)) {
    gap: 20px;
  }
}
main > ol:has(li:last-child:nth-child(even)) li {
  max-width: calc(50% - 90px);
  margin: 0;
}
@media screen and (max-width: 600px) {
  main > ol:has(li:last-child:nth-child(even)) li {
    max-width: 100%;
  }
}
main > ol li {
  counter-increment: num;
  margin: 30px 0;
  padding-left: 60px;
  position: relative;
}
main > ol li::before {
  content: counter(num);
  position: absolute;
  left: 0;
  top: 0px;
  width: 40px;
  height: 40px;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-family: sans-serif;
  border: 1px solid var(--color-3);
}

body {
  padding: 0;
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
body.no-scroll {
  overflow: hidden;
}

body {
  position: relative;
  background: linear-gradient(115deg, rgb(14, 48, 14) 1%, rgb(15, 15, 15) 20%, rgb(15, 15, 15) 100%);
}
@media screen and (max-width: 600px) {
  body {
    background: #0F0F0F;
  }
}
body .background-gradient {
  position: absolute;
  margin-top: 200vh;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  height: calc(100% - 200vh);
  background: radial-gradient(42% 28% at 82% 18%, rgba(25, 140, 45, 0.42) 0%, transparent 70%), radial-gradient(46% 32% at 52% 78%, rgba(20, 120, 38, 0.4) 0%, transparent 72%), radial-gradient(34% 30% at 14% 48%, rgba(18, 110, 35, 0.6) 0%, transparent 72%), #0b0f12;
  background-size: 100% 1900px, 100% 1900px, 100% 1900px, auto;
  background-repeat: repeat-y, repeat-y, repeat-y, no-repeat;
}
input,
textarea {
  box-sizing: border-box;
  padding: 12px 20px;
  border: 1px solid #EDEDED;
  background: #EDEDED;
  font-size: 16px;
  line-height: 24px;
  width: 100%;
}
input::placeholder,
textarea::placeholder {
  color: #c1c1c1;
}
input:focus-visible,
textarea:focus-visible {
  outline: unset;
}

input[type=checkbox] {
  width: 20px;
  height: 20px;
}

.breadcrumbs a {
  color: #0f172a;
  text-decoration: underline;
}

h1,
.h1 {
  font-size: 36px;
  line-height: 42px;
}
h2,
.h2 {
  font-size: 50px;
  line-height: 60px;
}
@media screen and (max-width: 768px) {
  h2,
  .h2 {
    font-size: 30px;
    line-height: 38px;
  }
}

h3,
.h3 {
  font-size: 30px;
  line-height: 38px;
}
@media screen and (max-width: 768px) {
  h3,
  .h3 {
    font-size: 25px;
    line-height: 32px;
  }
}

h2,
h3 {
  margin-top: 40px;
}

h4,
h5,
h6 {
  margin-top: 30px;
}

a {
  color: white;
  text-decoration: unset;
  transition: all 0.2s ease;
}
a:hover {
  text-decoration: underline;
  color: white;
}

p {
  margin: 20px 0 0px 0;
}

.px-50 {
  padding: 0 50px;
}
@media screen and (max-width: 600px) {
  .px-50 {
    padding: 0 20px;
  }
}

.py-50 {
  padding: 50px 0;
}
@media screen and (max-width: 600px) {
  .py-50 {
    padding: 20px 0;
  }
}

.hide {
  display: none !important;
}

button {
  font-size: 16px;
  line-height: 24px;
  border: unset;
}

.w-full {
  width: 100%;
}

.buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}
@media screen and (max-width: 600px) {
  .buttons {
    flex-direction: column-reverse;
    width: 100%;
  }
}
@media screen and (max-width: 600px) {
  .buttons .btn {
    width: 100%;
  }
}

.btn {
  box-sizing: border-box;
  padding: 8px 10px;
  white-space: nowrap;
  color: white !important;
  background: var(--color-1) !important;
  border: 1px solid var(--color-1) !important;
  transition: all 0.2s;
  cursor: pointer;
  display: block;
  width: max-content;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn.btn-main {
  color: #06441E !important;
  background: var(--color-1) !important;
  border: 2px solid var(--color-1) !important;
  box-shadow: inset 0px 0px 8px 2px #0a5029;
}
.btn.btn-main:hover {
  text-decoration: unset;
  color: white !important;
  background: var(--color-2) !important;
}
.btn:hover {
  text-decoration: unset;
  color: white !important;
  background: #000 !important;
}
.btn.btn-lg {
  padding: 20px 60px;
  font-size: 20px;
  min-width: 280px;
}
@media screen and (max-width: 600px) {
  .btn.btn-lg {
    padding: 12px 40px;
    min-width: 180px;
  }
}
.btn.btn-secondary {
  background: var(--color-2) !important;
  border: 1px solid var(--color-1) !important;
  color: white;
}
.btn.btn-secondary:hover {
  background: white !important;
  color: var(--color-2) !important;
  border: 1px solid var(--color-2) !important;
}
.btn.btn-disabled {
  background: #59595d;
  color: #eeeeee !important;
  box-shadow: 0px 8px 30px 0px rgba(56, 50, 61, 0.5);
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.gap-8 {
  gap: 8px;
}

.gap-20 {
  gap: 20px;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 16px;
}

.container-m {
  max-width: 1235px;
  margin: 0 auto;
  padding: 0 16px;
}

.container-sm {
  max-width: 950px;
  margin: 0 auto;
  padding: 0 16px;
}

.container-400 {
  max-width: 400px;
  margin: 0 auto;
  padding: 0 16px;
}

.text-white {
  color: white;
}

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

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

.text-black {
  color: black;
}

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

.text-bold {
  font-weight: 700;
}

.text-italic {
  font-style: italic;
}

.fz-12 {
  font-size: 12px;
  line-height: 16px;
}

.fz-14 {
  font-size: 14px;
  line-height: 18px;
}

.fz-15 {
  font-size: 15px;
  line-height: 20px;
}

.fz-18 {
  font-size: 18px;
  line-height: 28px;
}
@media screen and (max-width: 600px) {
  .fz-18 {
    font-size: 17px;
  }
}

.fz-20 {
  font-size: 20px;
  line-height: 28px;
}
@media screen and (max-width: 600px) {
  .fz-20 {
    font-size: 14px;
    line-height: 20px;
  }
}

.fz-26 {
  font-size: 26px;
  line-height: 38px;
}
@media screen and (max-width: 600px) {
  .fz-26 {
    font-size: 22px;
  }
}

.fz-36 {
  font-size: 36px;
  line-height: 42px;
}
@media screen and (max-width: 600px) {
  .fz-36 {
    font-size: 30px;
    line-height: 34px;
  }
}

.fz-30 {
  font-size: 30px;
  line-height: 38px;
}
@media screen and (max-width: 600px) {
  .fz-30 {
    font-size: 20px;
    line-height: 28px;
  }
}

.input-group input {
  display: block;
}

.inset-border {
  box-shadow: inset 1px 0px 1px 1px #fff;
}

.primary-color {
  color: #F7FA72;
}

.gray-color {
  color: #595959;
}

.secont-text-color {
  color: #537C6F;
}

.text-and-icon {
  display: flex;
  gap: 8px;
  align-items: center;
}

.m-0 {
  margin: 0;
}

.mt-0 {
  margin-top: 0 !important;
}

.mt-8 {
  margin-top: 8px;
}

.mt-16 {
  margin-top: 16px;
}

.mt-20 {
  margin-top: 20px;
}

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

.mt-30 {
  margin-top: 30px;
}

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

.mt-40 {
  margin-top: 40px;
}

.mt-60 {
  margin-top: 60px;
}

.my-40 {
  margin-top: 40px;
  margin-bottom: 40px;
}
@media screen and (max-width: 600px) {
  .my-40 {
    margin-top: 20px;
    margin-bottom: 20px;
  }
}

.my-76 {
  margin-top: 76px;
  margin-bottom: 76px;
}
@media screen and (max-width: 600px) {
  .my-76 {
    margin-top: 46px;
    margin-bottom: 46px;
  }
}

.my-40-80 {
  margin-top: 40px;
  margin-bottom: 80px;
}
@media screen and (max-width: 600px) {
  .my-40-80 {
    margin-top: 20px;
    margin-bottom: 40px;
  }
}

.my-60 {
  margin-top: 60px;
  margin-bottom: 60px;
}

.my-80 {
  margin-top: 80px;
  margin-bottom: 80px;
}
@media screen and (max-width: 600px) {
  .my-80 {
    margin-top: 40px;
    margin-bottom: 40px;
  }
}

.my-100 {
  margin-top: 100px;
  margin-bottom: 100px;
}
@media screen and (max-width: 600px) {
  .my-100 {
    margin-top: 60px;
    margin-bottom: 60px;
  }
}

.mt-100 {
  margin-top: 100px !important;
}
@media screen and (max-width: 600px) {
  .mt-100 {
    margin-top: 70px !important;
  }
}

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

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

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

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

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

.pt-70 {
  padding-top: 70px;
}
@media screen and (max-width: 600px) {
  .pt-70 {
    padding-top: 40px;
  }
}

.pb-70 {
  padding-bottom: 70px;
}
@media screen and (max-width: 600px) {
  .pb-70 {
    padding-bottom: 40px;
  }
}

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

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

.text-uppercase {
  text-transform: uppercase;
}

.single-post-container ul,
.single-post-container ol {
  max-width: 950px;
}

.editor p,
.single-post-container p {
  margin: 20px auto;
  padding: 0 16px;
}
.editor a,
.single-post-container a {
  color: #9f60ff;
}
.editor h1,
.editor h2,
.editor h3,
.editor h4,
.editor h5,
.editor h6,
.editor p,
.editor hr,
.single-post-container h1,
.single-post-container h2,
.single-post-container h3,
.single-post-container h4,
.single-post-container h5,
.single-post-container h6,
.single-post-container p,
.single-post-container hr {
  max-width: 950px;
  margin-left: auto;
  margin-right: auto;
}
.editor h2,
.single-post-container h2 {
  margin: 60px auto 40px auto;
  text-transform: uppercase;
}
.editor ol,
.editor ul,
.single-post-container ol,
.single-post-container ul {
  margin: 20px auto;
}
.editor ol li,
.editor ul li,
.single-post-container ol li,
.single-post-container ul li {
  margin-bottom: 12px;
}

.alignright {
  float: right;
  margin: 24px 0px 24px 24px;
}
@media screen and (max-width: 600px) {
  .alignright {
    float: none;
    margin: 14px 0;
    width: 100%;
  }
}

.alignleft {
  float: left;
  margin: 24px 24px 24px 0px;
}
@media screen and (max-width: 600px) {
  .alignleft {
    float: none;
    margin: 14px 0;
    width: 100%;
  }
}

.nav-links {
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 8px;
}
.nav-links .page-numbers {
  padding: 2px 8px;
  display: block;
  color: var(--color-1);
  border-radius: 5px;
}
.nav-links .page-numbers.current {
  color: white;
  background: var(--color-1);
}

.wpcf7-spinner {
  position: relative;
  top: 10px;
  left: calc(50% - 40px);
}

.wpcf7-list-item {
  width: 100%;
  margin: 0;
}
.wpcf7-list-item > label {
  display: flex;
}

.wpcf7-not-valid-tip {
  color: var(--black);
}

.wp-block-table {
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 16px;
}
.wp-block-table table {
  border-collapse: separate;
  font-size: 30px;
  line-height: 38px;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .wp-block-table table {
    font-size: 18px;
    line-height: 26px;
  }
}
.wp-block-table table thead {
  border-bottom: none;
}
.wp-block-table table thead tr th {
  color: var(--color-3);
  border: 1px solid #96A0A8;
  text-align: left;
  padding: 22px 34px;
}
@media screen and (max-width: 767px) {
  .wp-block-table table thead tr th {
    padding: 24px 15px;
  }
}
.wp-block-table table thead tr th:nth-child(1) {
  border-radius: 16px 0 0 0;
}
.wp-block-table table thead tr th:nth-last-child(1) {
  border-radius: 0 0 0 16px;
}
.wp-block-table table tbody tr td {
  border: 1px solid #96A0A8;
  color: #ADB2B1;
  padding: 34px;
}
@media screen and (max-width: 767px) {
  .wp-block-table table tbody tr td {
    padding: 24px 15px;
  }
}
.wp-block-table table tbody tr td:nth-child(1) {
  border-radius: 16px 0 0 16px;
}
.wp-block-table table tbody tr td:nth-last-child(1) {
  border-radius: 0 16px 16px 0;
}

@media (max-width: 767px) {
  .wp-block-table {
    position: relative;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 18px;
  }
  .wp-block-table table {
    width: max-content;
    min-width: 720px;
    margin-bottom: 0;
  }
  .wp-block-table::-webkit-scrollbar {
    height: 6px;
  }
  .wp-block-table::-webkit-scrollbar-track {
    background: rgb(255, 255, 255);
    border-radius: 999px;
    margin: 0 16px;
  }
  .wp-block-table::-webkit-scrollbar-thumb {
    background: var(--color-3);
    border-radius: 999px;
  }
}
/*# sourceMappingURL=main.css.map */
