/* prettier-ignore */
@import"https://fonts.googleapis.com/css?family=Inter:100,200,300,regular,500,600,700,800,900,100italic,200italic,300italic,italic,500italic,600italic,700italic,800italic,900italic";
@import 'https://fonts.googleapis.com/css?family=Roboto:100,200,300,regular,500,600,700,800,900,100italic,200italic,300italic,italic,500italic,600italic,700italic,800italic,900italic';
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
  overflow-x: hidden;
}
* {
  padding: 0;
  margin: 0;
  border: 0;
}
*,
*:before,
*:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
:focus,
:active {
  outline: none;
}
a:focus,
a:active {
  outline: none;
}
nav,
footer,
header,
aside {
  display: block;
}
html,
body {
  height: 100%;
  width: 100%;
  font-size: 100%;
  font-size: 14px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
button {
  background-color: transparent;
}
input,
button,
textarea {
  font-family: inherit;
}
input::-ms-clear {
  display: none;
}
button {
  cursor: pointer;
}
button::-moz-focus-inner {
  padding: 0;
  border: 0;
}
a,
a:visited {
  text-decoration: none;
  color: inherit;
}
a:hover {
  text-decoration: none;
}
ul li {
  list-style: none;
}
img {
  vertical-align: top;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: 400;
}
.container {
  max-width: 375px;
  margin: 0 auto;
  padding: 0 16px;
}
@media screen and (min-width: 1440px) {
  .container {
    max-width: 1440px;
    padding: 0 64px;
  }
}
.section {
  display: block;
  scroll-margin-top: 100px;
  padding: 64px 0;
  overflow: hidden;
}
@media screen and (min-width: 1440px) {
  .section {
    padding: 104px 0;
  }
}
.inner {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 1440px) {
  .inner {
    flex-direction: row;
  }
}
.auto {
  width: 100%;
}
@media screen and (min-width: 1440px) {
  .auto {
    width: auto;
  }
}
.wrap {
  flex-wrap: wrap;
  flex-direction: row;
}
.row {
  flex-direction: row;
}
.card {
  display: flex;
  flex-direction: column;
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}
.title-h2 {
  display: block;
  width: 100%;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 28px;
  line-height: 130%;
  color: var(--typography-wight);
  margin-bottom: 24px;
}
@media screen and (min-width: 1440px) {
  .title-h2 {
    font-size: 42px;
  }
}
.f20 {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 18px;
  line-height: 130%;
  color: var(--typography-gray);
}
@media screen and (min-width: 1440px) {
  .f20 {
    font-size: 20px;
  }
}
.center {
  display: block;
  width: 100%;
  text-align: center;
}
.white {
  color: var(--typography-wight);
}
.google_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  margin-top: 32px;
  padding: 12px 20px;
  box-shadow: 0 4px #3a3a3a40;
  border: 2px solid var(--secondary-orange);
  background: var(--button-default);
  width: 100%;
  font-family: var(--third-family);
  gap: 10px;
  transition: background 0.3s ease;
}
@media screen and (min-width: 1440px) {
  .google_btn {
    width: 198px;
    height: 65px;
  }
}
.google_btn * {
  transition: color 0.3s ease;
}
.google_btn img {
  width: 30px;
  max-width: 30px;
}
.google_btn:hover,
.google_btn:focus,
.google_btn:active {
  background: var(--button-hover);
  color: #ebebeb;
}
.play_btn_inner {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.play_btn_inner_text:nth-child(1) {
  font-weight: 400;
  font-family: var(--second-family);
  font-size: 14px;
}
.play_btn_inner_text:nth-child(2) {
  font-weight: 500;
  font-family: var(--second-family);
  font-size: 18px;
}
.wrapper {
  transition: opacity 0.3s ease;
  opacity: 0;
}
.wrapper.loaded {
  opacity: 1;
}
.wrapper + .skeleton-circle {
  display: block;
}
.wrapper.loaded + .skeleton-circle {
  display: none;
}
.skeleton-circle {
  position: fixed;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  z-index: 9999;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  border: 6px solid #ccccccca;
  border-top-color: #1e88e5;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.left,
.bottom,
.right {
  opacity: 1;
}
.gsap_box {
  display: inline-block;
  overflow: hidden;
}
.header {
  width: 100%;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 999;
  border-radius: 0;
  margin: 0 auto;
  background: var(--background-dark-green);
}
@media screen and (min-width: 1440px) {
  .header {
    height: 62px;
  }
}
.header_container {
  display: flex;
  justify-content: end;
  align-items: center;
  padding: 0 !important;
  width: 100%;
}
.header_logo_inner_mobile {
  width: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  height: 52px;
  transition: height 0.3s ease;
}
@media screen and (min-width: 1440px) {
  .header_logo_inner_mobile {
    padding: 0;
    width: 0;
    display: none;
    height: 72px;
  }
}
.header_logo_inner_mobile.is-open {
  height: 100vh;
}
@media screen and (min-width: 1440px) {
  .header_logo_inner_mobile.is-open {
    height: 72px;
  }
}
.header_logo_inner .header_container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 16px !important;
  height: 52px;
  background: var(--siyah50);
}
@media screen and (min-width: 1440px) {
  .header_logo_inner .header_container {
    padding: 0;
  }
}
@media screen and (min-width: 1440px) {
  .header-nav-mobile-button {
    display: none;
  }
}
.header_logo_inner_link {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: var(--second-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  color: var(--body);
}
.header_logo_inner_link > img {
  width: 40px;
}
.header-nav-mobile-button > img {
  width: 40px;
}
.header-nav-mobile-button-close {
  width: 40px;
}
.header-nav-mobile-button-close > img {
  width: 100%;
  height: 100%;
}
.header-nav-mobile-button.active,
.header-nav-mobile-button-close {
  display: none;
}
.header-nav-mobile-button-close.active {
  display: flex;
}
.header-nav-pc {
  display: none;
}
.header-nav-mobile {
  width: 100%;
  height: calc(100vh - 52px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
}
@media screen and (min-width: 1440px) {
  .header-nav-mobile {
    display: none;
  }
}
.header-nav-mobile-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: end;
  margin: 0 auto;
  gap: 40px;
}
.header-nav-mobile-item {
  width: 100%;
  text-align: center;
  transition: transform 0.3s ease;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-nav-mobile-item > a {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 14px;
  line-height: 140%;
  text-transform: capitalize;
  text-align: center;
  color: #ede0de;
}
.header-nav-mobile-item:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  border-bottom: 1px solid var(--pembe100);
  width: 100%;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.header-nav-mobile-item:hover:before {
  transform: scaleX(1);
}
.header-nav-mobile-list_pages {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 8px;
}
.header-nav-mobile-list_pages_item {
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 16px;
  text-decoration: underline;
  text-decoration-skip-ink: none;
  text-align: center;
  color: var(--beyaz);
  width: 100%;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 1440px) {
  .header-nav-pc-item {
    transition: opacity 0.3s ease;
  }
  .header-nav-pc {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
  }
  .header .header_container {
    height: 100%;
    padding: 0 72px !important;
  }
  .header-nav-pc_link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-family: var(--second-family);
    font-weight: 500;
    font-size: 24px;
    line-height: 150%;
    color: var(--body);
  }
  .header-nav-pc_link > img {
    width: 40px;
  }
  .header-nav-pc-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
  }
  .header-nav-pc-item {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: font-weight 0.3s ease;
  }
  .header-nav-pc-item:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    border-bottom: 2px solid #ccc;
    width: 100%;
    transform: scaleX(0);
    transition: transform 0.3s 0.1s ease;
  }
  .header-nav-pc-item:hover:after {
    transform: scaleX(1);
  }
  .header-nav-pc-item > a {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 14px;
    line-height: 140%;
    text-transform: capitalize;
    text-align: center;
    color: #ccc;
    position: relative;
    transition: color 0.3s ease;
  }
  .header-nav-pc-item.active:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    border-bottom: 3px solid var(--pembe100);
    width: 100%;
    transition: transform 0.3s 0.12s ease;
  }
  .header-nav-pc-item.active > a {
    font-weight: 500;
    opacity: 1;
  }
}
.footer {
  padding: 60px 0;
  background: var(--background-dark-green);
}
.footer_container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
@media screen and (min-width: 1440px) {
  .footer_container {
    gap: 60px;
  }
}
.footer_list {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px 60px;
}
@media screen and (min-width: 1440px) {
  .footer_list {
    flex-direction: row;
  }
}
.footer_list_item_link:visited {
  color: var(--typography-wight);
}
.footer_copyright {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 130%;
  text-align: center;
  color: var(--typography-gray);
}
.wrapper_page {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.page_section * {
  line-height: 1.4;
}
.page_container p,
.page_container div,
.page_container ul,
.page_container h2,
.page_container time {
  margin-bottom: 24px;
}
@media screen and (min-width: 1440px) {
  .page_container p,
  .page_container div,
  .page_container ul,
  .page_container h2,
  .page_container time {
    margin-bottom: 16px;
  }
}
.page_container {
  display: block !important;
  padding-top: 92px !important;
  padding-bottom: 60px !important;
}
@media screen and (min-width: 1440px) {
  .page_container {
    padding: 182px 212px 120px !important;
  }
}
.page_title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 32px;
  line-height: 100%;
  text-transform: uppercase;
  text-align: center;
  color: #161616;
  margin-bottom: 40px;
}
@media screen and (min-width: 1440px) {
  .page_title {
    font-size: 52px;
  }
}
.page_second_title {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 20px;
  line-height: 130%;
  color: var(--typography-black);
}
@media screen and (min-width: 1440px) {
  .page_second_title {
    font-size: 24px;
  }
}
.page_text {
  display: block;
  width: 100%;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 18px;
  line-height: 130%;
  color: #161616;
}
@media screen and (min-width: 1440px) {
  .page_text {
    font-size: 20px;
  }
}
.page_text_list_item {
  width: 100%;
  padding-left: 25px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 18px;
  line-height: 130%;
  color: #161616;
  position: relative;
}
@media screen and (min-width: 1440px) {
  .page_text_list_item {
    font-size: 20px;
  }
}
.page_text_list_item:before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #000;
  position: absolute;
  inset: 9px auto auto 5px;
  margin: auto;
}
.link {
  color: var(--secondary-link) !important;
}
li::marker {
  content: '';
  display: none;
}
.email {
  text-decoration: underline;
  color: var(--secondary-link) !important;
}
.cookies-section {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translate(-50%);
  z-index: 999;
  width: 100%;
  background: #ece8e3;
  display: none;
}
@media screen and (min-width: 1440px) {
  .cookies-section {
    width: 100%;
  }
}
.cookies-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 40px 16px;
}
@media screen and (min-width: 1440px) {
  .cookies-container {
    flex-direction: row;
    padding: 40px 88px;
  }
}
.cookies-text {
  margin-bottom: 20px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 130%;
  text-align: center;
  color: #1b1b1b;
}
@media screen and (min-width: 1440px) {
  .cookies-text {
    margin-bottom: 0;
    text-align: left;
    max-width: 808px;
    width: 100%;
    font-size: 20px;
  }
}
.cookies-buttons {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
}
@media screen and (min-width: 1440px) {
  .cookies-buttons {
    flex-direction: row;
  }
}
.cookies-button {
  padding: 16px 32px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s ease 0.05s, color 0.3s ease 0.05s;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 18px;
  line-height: 140%;
  color: #252525;
}
@media screen and (min-width: 1440px) {
  .cookies-button {
    width: 184px;
    height: 60px;
  }
}
.cookies-accept-js {
  background: var(--button-cookie-default);
}
.cookies-accept-js:hover {
  background: var(--button-cookie--hover);
}
.cookies-decline-js {
  border: 1px solid var(--default-100);
}
.cookies-decline-js:hover {
  background: #2a2a2a;
  color: var(--typography-wight);
}
.about {
  background: url(/assets/bg-c12849e4.webp) center/cover no-repeat;
  padding-top: 80px;
}
@media screen and (min-width: 1440px) {
  .about {
    padding-top: 144px;
  }
}
.about_container {
  align-items: center;
  justify-content: space-between;
}
.about_content {
  max-width: 640px;
}
.about_content_text:nth-child(2) {
  margin-bottom: 24px;
}
.about_box {
  max-width: 440px;
  width: 100%;
  background: var(--background-black);
  border: 1px solid var(--typography-wight);
  padding: 54px 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.about_box_title {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 22px;
  line-height: 130%;
  text-decoration: underline;
  text-decoration-skip-ink: none;
  color: var(--typography-wight);
}
@media screen and (min-width: 1440px) {
  .about_box_title {
    font-size: 24px;
  }
}
.about_box_list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.about_box_list_item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.about_box_list_item:before {
  content: '';
  height: 26px;
}
.about_box_list_item:nth-child(1):before {
  width: 26px;
  min-width: 26px;
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACcAAAAnCAYAAACMo1E1AAAACXBIWXMAABCcAAAQnAEmzTo0AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAACdSURBVHgB7ddBDoAgDETR1nD/KytLumhoByos5i1NTQw/BFQ55O1mM49c7OqPU/nRmFK72QyzopoUi6T0MCuqZLdmU3rzzIpyl3xXmpV5ZkWZ5fSWOvvck51nVpRmrzHm5YKUI2ZFubvVDCVzrKQcMSvq2Nkawayokh+cXbueWVEma+Rq5MmeyxHMimort1wvGc/W00I/OBE8W2/yAUFKeD7xI9E9AAAAAElFTkSuQmCC)
    center/cover no-repeat;
}
.about_box_list_item:nth-child(2):before {
  width: 21px;
  min-width: 21px;
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAnCAYAAABuf0pMAAAACXBIWXMAABCcAAAQnAEmzTo0AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAGpSURBVHgB1VeBccMgDJR7GSAblG7QDeoN2g2SDTpCukFHSDpB2wlib9BOUDJBswERF3HmHAzI4MP+O06AkSwknSQAIqGU2qk8+LPl3kFhVL6PqO0ayQst73EIyIOW6A8EFBCW6XaQAX2ZxV2wcm2iZu9IHmlZEz1BAlgy8fDRFbGJCjhlrmBCUBCbW0scDdEgYxYLIP/WCrgn15n55AHUsEayoWVD9FxV1TcwgbL2NJXQmbxFWdLHFDQXQwGDfehscRdkU0Df1lybw1c+E2rf01wXmwPNz8BH69iTlvwvDMJbuZyA4WIReUCn4prmDzoDes4e0IQfEAFLjrTk/4aYtsqP6H6A41a7GP1DlwF1AVnT3OydAj8V0HVMhsff8XiEHbnFaLF5IKkYIY921SstJQ2IDda+MHYx0kpbPBsYgXk2pSFQcAocDZq7ggQsxwIUcKbBbIhKSATHBc843mgu0PJJ7wSDWfQDg4VDXfv6T9przPdctwf6yWDhUBM8TvsYehuaYiQgshiNhssCaoK34RDKFyOrfErozG3oqJcRC8qNpJcRB8VdcAHGPPVe3enK9QAAAABJRU5ErkJggg==)
    center/cover no-repeat;
}
.about_box_list_item:nth-child(3):before {
  width: 21px;
  min-width: 21px;
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACEAAAAnCAYAAACBvSFyAAAACXBIWXMAABCcAAAQnAEmzTo0AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAHcSURBVHgB7ZjdbcIwEIDPJggekBpeaN+aTtARoJM0naBskHaDdoOMwAakG7QTlL40/LygFqlUAR0O2MRJnD8QUpDySSbmfpyLL8nZAeAgYg8DLEghYivTzfCzVLYUSoDmXxXvG6w5QiHJVYRsZTnzI5COE7OVpmcoBWBhOkPV6L48w89S2ZYjHQnyD9ZsSGaUIB+k6MS4cbKm+FScTTr2TFzviVByDYeC5L1zVXuFY4KghHQRoQcHgw77SQ2iNOkweP+O3SOfvP9CCIlFX2/UDMiJ978eRWVs/Ed26PO/JvAnSWMn++IGIykgXTVwu72zzcN0vFKJdekcIM5dinRUQQiqIARVEIIqCEEVhKDUi5o+K2im31mtwFwsdtVuOl7vqixBp3OpPUSdJt/egFB66/frDWr4x2YzVJ31IkHowkHTgurJKqOx1WJQCWUoJRcIuNUJn0h1hqwg5hCslPdBhCFcj+C6f0ZUi4TpMXW1Pectm6Q9o2Dmej02Kxhts1ncFnPscc9m8+NfyY2sXC4Bfn/WdtSp1Yrbcmxp3OKgen85PNZW5jw2P4xnCKbThvyY/JjvachLkXRAAUqRjqyvKiGkd4b/BNwrTGzgLzy2p3iDU4IHfjhLohTp2ABSBMNgAjIJrwAAAABJRU5ErkJggg==)
    center/cover no-repeat;
}
.paths {
  background: url(/assets/bg-af02f6fa.webp) center/cover no-repeat;
}
@media screen and (min-width: 1440px) {
  .container_paths {
    max-width: 1048px;
  }
}
.paths_text {
  max-width: 640px;
  margin-bottom: 48px;
}
@media screen and (min-width: 1440px) {
  .paths_text {
    margin-bottom: 72px;
  }
}
.paths_inner {
  width: 100%;
  margin: 0 auto;
}
.paths_list {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 1440px) {
  .paths_list {
    flex-direction: row;
  }
}
.paths_list_item:nth-child(1) {
  border-bottom: 4px solid var(--typography-wight);
}
.paths_list_item {
  border-left: 1px solid var(--typography-wight);
  border-right: 1px solid var(--typography-wight);
  border-top: 1px solid var(--typography-wight);
  padding: 24px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 130%;
  text-align: center;
  color: var(--typography-wight);
}
.paths_inner img {
  width: 100%;
}
.motivation {
  background: url(/assets/bg-917f3ad5.webp) center/cover no-repeat;
}
.container_motivation {
  gap: 48px 64px;
}
@media screen and (min-width: 1440px) {
  .container_motivation {
    max-width: 1048px;
  }
}
.container_motivation > img {
  width: 100%;
  max-width: 410px;
  order: 2;
}
@media screen and (min-width: 1440px) {
  .container_motivation > img {
    order: 1;
  }
}
.motivation_content {
  order: 1;
}
@media screen and (min-width: 1440px) {
  .motivation_content {
    order: 2;
  }
}
.visual {
  background: url(/assets/bg-d39b17fb.webp) center/cover no-repeat;
}
.container_visual > p {
  margin-bottom: 48px;
  max-width: 527px;
}
@media screen and (min-width: 1440px) {
  .container_visual > p {
    margin-bottom: 72px;
  }
}
.visual_inner {
  gap: 32px;
  padding: 40px;
  background: var(--background-black);
  border: 1px solid var(--typography-wight);
}
.visual_inner img {
  max-width: 390px;
  width: 100%;
}
.play {
  background: url(/assets/bg-29adce13.webp) center/cover;
}
.play_content {
  border: 2px solid var(--typography-wight);
  background: var(--background-black);
  margin: 0 auto;
  padding: 40px 16px;
  max-width: 864px;
  align-items: center;
  justify-content: center;
  gap: 48px;
}
@media screen and (min-width: 1440px) {
  .play_content {
    padding: 64px 40px;
  }
}
.play_content > img {
  border-radius: 20px;
  max-width: 262px;
  width: 100%;
  margin: 0 auto;
}
.faq {
  background: url(/assets/bg-d3c3bd5f.webp) top center/cover no-repeat;
}
.faq_container h2 {
  margin-bottom: 48px;
}
@media screen and (min-width: 1440px) {
  .faq_container h2 {
    margin-bottom: 72px;
  }
}
.faq_inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.faq_inner_item {
  border: 1px solid var(--typography-wight);
  padding: 20px 16px;
  max-width: 506px;
  width: 100%;
}
.faq_inner_item_title-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px;
  border-bottom: 1px solid var(--neyse);
}
.faq_inner_item_btn {
  cursor: pointer;
}
.faq_inner_item_btn_down {
  width: 24px;
  height: 24px;
  min-width: 24px;
}
.faq_inner_item_btn_up {
  display: none;
  width: 24px;
  height: 24px;
  min-width: 24px;
}
.faq_inner_item_text-box {
  overflow: hidden;
  height: 0;
}
.faq_inner_item_btn.active > .faq_inner_item_btn_down {
  display: none;
}
.faq_inner_item_btn.active > .faq_inner_item_btn_up {
  display: block;
}
.faq_inner_item_text-box_text {
  display: block;
  margin-top: 15px;
  font-weight: 300;
}
.features {
  background: url(/assets/bg-5029493b.webp) center/cover no-repeat;
}
.features_text {
  margin-bottom: 42px;
  max-width: 527px;
}
@media screen and (min-width: 1440px) {
  .features_text {
    margin-bottom: 72px;
  }
}
.features_inner {
  align-items: center;
  justify-content: center;
  gap: 24px 32px;
}
.features_inner_item {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 32px;
  gap: 24px;
}
@media screen and (min-width: 1440px) {
  .features_inner_item {
    width: 304px;
    height: 202px;
  }
}
.contacts {
  background: url(/assets/bg-646a4399.webp) center/cover no-repeat;
  padding: 104px 0;
}
@media screen and (min-width: 1440px) {
  .contacts {
    padding: 168px 0;
  }
}
.contacts_container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.contacts_link {
  border: 1px solid var(--typography-wight);
  padding: 16px 0;
  width: 100%;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 22px;
  line-height: 130%;
  text-decoration: underline;
  text-decoration-skip-ink: none;
  text-align: center;
  color: var(--typography-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
@media screen and (min-width: 1440px) {
  .contacts_link {
    width: 344px;
    height: 63px;
  }
}
.contacts_link > img {
  width: 24px;
  min-width: 24px;
}
.contacts_text {
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 14px;
  line-height: 130%;
  text-align: center;
  color: var(--typography-gray);
}
.hero {
  min-height: 812px;
  height: 100vh;
  background: url(/assets/bg-e6fca3f4.webp) center/cover no-repeat;
  padding-top: 200px;
}
@media screen and (min-width: 1440px) {
  .hero {
    padding-top: 126px;
  }
}
.hero_container {
  display: flex;
  justify-content: end;
  align-items: center;
}
.hero_content {
  max-width: 506px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero_content > img {
  width: 100%;
}
@media screen and (min-width: 1440px) {
  .hero_content > img {
    max-width: 402px;
  }
}
.hero_text {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 20px;
  line-height: 130%;
  text-align: center;
  color: var(--typography-wight);
}
@media screen and (min-width: 1440px) {
  .hero_text {
    font-size: 24px;
  }
}
:root {
  --font-family: 'Inter', sans-serif;
  --second-family: 'Roboto', sans-serif;
  --typography-black: #122815;
  --typography-wight: #fff;
  --typography-gray: #c5c5c5;
  --background-dark-green: #25302a;
  --background-black: #000;
  --background-beg: #d3c6b5;
  --default-100: #122815;
  --default-80: #4d5e50;
  --default-60: #89948a;
  --default-40: #c4c9c5;
  --default-0: #fff;
  --secondary-link: #0040ff;
  --secondary-orange: #f8cc09;
  --button-default: #ed9200;
  --button-cookie-default: #64cb4c;
  --button-cookie--hover: #4ea13b;
  --button-hover: #6c6457;
  --bg: var(--typography-black);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  background: var(--background-beg);
}
.about_container {
  gap: 24px;
}
