/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

@font-face {
  font-family: Unbounded;
  font-weight: 400;
  src: url("../fonts/Unbounded-Blond.eot");
  src: url("../fonts/Unbounded-Blond.eot?#iefix") format("embedded-opentype"), url("../fonts/Unbounded-Blond.ttf") format("truetype"), url("../fonts/Unbounded-Blond.woff") format("woff"), url("../fonts/Unbounded-Blond.woff2") format("woff2");
}
@font-face {
  font-family: Unbounded;
  font-weight: 500;
  src: url("../fonts/Unbounded-Medium.eot");
  src: url("../fonts/Unbounded-Medium.eot?#iefix") format("embedded-opentype"), url("../fonts/Unbounded-Medium.ttf") format("truetype"), url("../fonts/Unbounded-Medium.woff") format("woff"), url("../fonts/Unbounded-Medium.woff2") format("woff2");
}
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  min-height: 100vh;
  z-index: 999;
  transition: opacity 0.1s ease;
  overflow-y: auto;
}
@media only screen and (max-width: 1024px) {
  .modal {
    overflow-x: hidden;
    min-height: var(--vh);
    height: var(--vh);
  }
}
.modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(28, 24, 64, 0.5);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}
.modal__close {
  position: absolute;
  z-index: 100;
  background-color: transparent;
  top: 4px;
  right: 381px;
  border: 0;
  cursor: pointer;
}
.modal__close * {
  cursor: pointer;
}
.modal__close svg {
  display: block;
  width: 53px;
  height: 53px;
}
@media only screen and (max-width: 1024px) {
  .modal__close {
    top: 23px;
    right: 3px;
  }
  .modal__close svg {
    width: 30px;
    height: 30px;
  }
}
.modal__content {
  position: absolute;
  left: 50%;
  top: 65px;
  max-width: 1250px;
  width: 100%;
  transform: translatex(-50%);
  transition: transform 0.3s ease;
  padding: 10px;
}
@media only screen and (max-width: 1024px) {
  .modal__content {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
}
@media only screen and (max-width: 666px) {
  .modal__content {
    height: 100%;
    display: flex;
    align-items: center;
  }
}

.youtube-popup-video {
  margin: 0 auto;
  position: relative;
}
.youtube-popup-video iframe {
  border-radius: 16px;
  border: 4px solid #fff;
}
@media only screen and (max-width: 666px) {
  .youtube-popup-video {
    width: 100%;
  }
}

.youtube-video-iframe {
  aspect-ratio: 16/9;
  width: 100%;
  max-height: 80vh;
  z-index: 2;
  position: relative;
}

.youtube-popup-close {
  position: absolute;
  top: -56px;
  right: -15px;
  transform: translateX(-50%);
}

.menu-wrapper {
  width: 100%;
  height: 100vh;
  position: fixed;
  right: -100%;
  top: 0;
  z-index: 20;
  padding: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}
.menu-wrapper.show {
  right: 0;
}

.menu-list {
  background-color: #fff;
}
.menu-list .menu-item a {
  color: #000;
}

.menu-content {
  width: 535px;
  height: 100%;
  background: #fdfffc;
  position: relative;
  z-index: 12;
  overflow-y: auto;
  padding-bottom: 50px;
  margin-left: auto;
}
@media only screen and (max-width: 1024px) {
  .menu-content {
    width: 474px;
  }
}
@media only screen and (max-width: 666px) {
  .menu-content {
    width: 100%;
  }
}

.menu-close {
  padding: 26px 100px;
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.07);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  color: #000;
  font-family: Teva Sans;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.154px;
  text-transform: uppercase;
  cursor: pointer;
}
.menu-close span {
  display: block;
  margin-left: 8px;
}
@media only screen and (max-width: 1024px) {
  .menu-close {
    padding: 14px 40px;
  }
  .menu-close span {
    display: none;
  }
}

.menu-overlay {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 11;
  background: rgba(26, 26, 26, 0.5);
  display: none;
}
.menu-overlay.show {
  display: block;
}

.menu-content-links {
  padding: 0 20px;
}

.menu-content-link {
  display: block;
  padding: 20px 0;
  border-bottom: 1px solid var(--grey-2, #dadada);
  color: var(--black, #1a1a1a);
  font-family: Teva Sans;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 135%; /* 24.3px */
}

.menu-content-has {
  border-bottom: 1px solid var(--grey-2, #dadada);
}

.menu-content-has-head {
  padding: 20px 0;
  padding-right: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--black, #1a1a1a);
  font-family: Teva Sans;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 135%; /* 24.3px */
  transition: all 0.3s ease-in-out;
}
.menu-content-has-head svg {
  transition: all 0.3s ease-in-out;
}
.menu-content-has-head.in {
  padding-left: 20px;
  background: var(--green, #00a03b);
  color: #fff;
}
.menu-content-has-head.in svg {
  transform: rotate(180deg);
}
.menu-content-has-head.in svg path {
  stroke: #fff;
}

.menu-content-has-drop {
  padding-left: 20px;
  display: none;
}
.menu-content-has-drop a {
  display: block;
  color: var(--black, #1a1a1a);
  font-family: Teva Sans;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 135%; /* 24.3px */
  margin-bottom: 20px;
  margin-top: 20px;
}

.header {
  width: 100%;
  padding: 18px 100px;
  background: #fafafa;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 5;
}
@media only screen and (max-width: 1560px) {
  .header {
    padding: 18px 80px;
  }
}
@media only screen and (max-width: 1024px) {
  .header {
    padding: 14px 40px;
  }
}
@media only screen and (max-width: 666px) {
  .header {
    padding: 10px 20px;
  }
}

.header-up {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-left {
  display: flex;
  align-items: center;
}

.header-left-title {
  color: var(--black, #1a1a1a);
  font-family: Teva Sans;
  font-size: 26px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  margin-right: 30px;
}
@media only screen and (max-width: 1024px) {
  .header-left-title {
    font-size: 22px;
  }
}
@media only screen and (max-width: 666px) {
  .header-left-title {
    display: none;
  }
}

.header-left-mode {
  display: flex;
  align-items: center;
}

.header-left-mode-btn {
  width: 60px;
  padding: 4px 8px 4px 6px;
  border-radius: 25px;
  background: #00a03b;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-right: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.header-left-mode-btn.dark .header-left-mode-btn-light-icon {
  transform: translatex(9px);
  opacity: 0;
}
.header-left-mode-btn.dark .header-left-mode-btn-dark-icon {
  transform: translatex(0px);
  opacity: 1;
}

.header-left-mode-btn-light-icon {
  transition: all 0.3s ease;
}

.header-left-mode-btn-dark-icon {
  transition: all 0.3s ease;
  transform: translatex(-9px);
  opacity: 0;
}

.header-left-mode-label {
  color: var(--black, #1a1a1a);
  font-family: Teva Sans;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 24px */
}
@media only screen and (max-width: 1024px) {
  .header-left-mode-label {
    display: none;
  }
}

.header-right {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 666px) {
  .header-right {
    width: 80%;
    flex-direction: row-reverse;
    justify-content: space-between;
  }
}

.header-right-find-btn {
  padding: 12px 20px;
  border-radius: 30px;
  background: var(--purple, #aa198d);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white, #fafafa);
  text-align: center;
  font-family: Teva Sans;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}
.header-right-find-btn:hover {
  box-shadow: 0px 4px 4px 0px rgba(67, 32, 60, 0.2);
}
@media only screen and (max-width: 1024px) {
  .header-right-find-btn {
    padding: 11px 18px;
    font-size: 13px;
  }
}
@media only screen and (max-width: 666px) {
  .header-right-find-btn {
    font-size: 12px;
  }
}

.header-right-search-btn {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black, #1a1a1a);
  font-family: Teva Sans;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.154px;
  text-transform: uppercase;
  margin-left: 40px;
}
.header-right-search-btn svg {
  margin-right: 8px;
}
@media only screen and (max-width: 1024px) {
  .header-right-search-btn {
    margin-left: 20px;
  }
  .header-right-search-btn span {
    display: none;
  }
}

.header-right-menu-btn {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black, #1a1a1a);
  font-family: Teva Sans;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.154px;
  text-transform: uppercase;
  margin-left: 40px;
}
.header-right-menu-btn svg {
  margin-right: 8px;
}
@media only screen and (max-width: 1024px) {
  .header-right-menu-btn {
    margin-left: 20px;
  }
  .header-right-menu-btn span {
    display: none;
  }
}
@media only screen and (max-width: 666px) {
  .header-right-menu-btn {
    display: none;
  }
}

.header-down {
  display: none;
}
@media only screen and (max-width: 666px) {
  .header-down {
    border-top: 2px solid var(--grey1, #f0f0f0);
    padding: 6px 0px 0px 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
  }
}

.header-down-title {
  color: var(--black, #1a1a1a);
  font-family: Teva Sans;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.breadcrumbs {
  position: absolute;
  left: 100px;
  top: 82px;
  display: flex;
  align-items: center;
  z-index: 2;
}
@media only screen and (max-width: 1560px) {
  .breadcrumbs {
    left: 80px;
  }
}
@media only screen and (max-width: 1024px) {
  .breadcrumbs {
    top: 77px;
    left: 40px;
  }
}
@media only screen and (max-width: 666px) {
  .breadcrumbs {
    top: 124px;
    left: 20px;
  }
}

.breadcrumbs-item {
  color: #eaf0ec;
  font-family: Teva Sans;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 135%; /* 27px */
}
.breadcrumbs-item.active {
  color: #fff;
}
@media only screen and (max-width: 1024px) {
  .breadcrumbs-item {
    font-size: 14px;
  }
}
@media only screen and (max-width: 666px) {
  .breadcrumbs-item {
    font-size: 14px;
  }
}

.breadcrumbs-dot {
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  margin: 0 8px;
}

.footer {
  padding: 60px 100px 40px;
  background: var(--teal, #3c7e79);
  box-shadow: 0px -2px 2px 0px rgba(0, 0, 0, 0.07);
}
@media only screen and (max-width: 1024px) {
  .footer {
    padding: 51px 40px 32px;
  }
}
@media only screen and (max-width: 666px) {
  .footer {
    padding: 50px 10px 30px;
  }
}

.footer-top {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 51px;
  margin-bottom: 55px;
}
@media only screen and (max-width: 1024px) {
  .footer-top {
    display: none;
  }
}

.footer-top-col-head {
  color: var(--grey-2, #dadada);
  font-family: Teva Sans;
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.52px;
  text-transform: uppercase;
  min-height: 32px;
  padding-bottom: 10px;
  margin-bottom: 15px;
  border-bottom: 1px solid var(--grey-2, #dadada);
}

.footer-top-col-link {
  color: var(--white, #fafafa);
  font-family: Teva Sans;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  display: block;
  margin-bottom: 15px;
}

.footer-accordeon {
  display: none;
}
@media only screen and (max-width: 1024px) {
  .footer-accordeon {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 50px;
  }
}
@media only screen and (max-width: 666px) {
  .footer-accordeon {
    flex-direction: column;
    margin-bottom: 20px;
  }
}

.footer-accordeon-item {
  width: 48%;
  border-bottom: 1px solid var(--grey-2, #dadada);
  margin-bottom: 21px;
}
@media only screen and (max-width: 666px) {
  .footer-accordeon-item {
    width: 100%;
  }
}

.footer-accordeon-item-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--white, #fafafa);
  font-family: Teva Sans;
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.52px;
  text-transform: uppercase;
  padding-bottom: 6px;
}
.footer-accordeon-item-head svg {
  transition: all 0.3s ease;
}
.footer-accordeon-item-head.in svg {
  transform: rotate(180deg);
}

.footer-accordeon-item-drop {
  display: none;
  padding-top: 15px;
}
.footer-accordeon-item-drop a {
  display: block;
  color: #fff;
  font-family: Teva Sans;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 135%; /* 21.6px */
  margin-bottom: 10px;
}

.footer-bottom {
  border-top: 1px solid #dadada;
  padding-top: 20px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media only screen and (max-width: 1024px) {
  .footer-bottom {
    flex-direction: column;
  }
}
@media only screen and (max-width: 666px) {
  .footer-bottom {
    border: none;
  }
}

.footer-bottom-left {
  width: 45.967742%; /* 570/1240 */
  display: flex;
  align-items: flex-start;
}
@media only screen and (max-width: 1024px) {
  .footer-bottom-left {
    width: 50%;
    flex-direction: column;
    margin-bottom: 30px;
  }
}

.footer-bottom-left-logo {
  margin-right: 100px;
}
@media only screen and (max-width: 1024px) {
  .footer-bottom-left-logo {
    display: none;
  }
}

.footer-bottom-left-contact-head {
  color: var(--grey-1, #f0f0f0);
  font-family: Teva Sans;
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.52px;
  text-transform: uppercase;
  padding-bottom: 9px;
  border-bottom: 1px solid var(--grey-2, #dadada);
  margin-bottom: 10px;
}

.footer-bottom-left-contact-address {
  color: var(--white, #fafafa);
  font-family: Teva Sans;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.footer-bottom-right {
  width: 37.5%; /* 465/1240 */
}
@media only screen and (max-width: 1024px) {
  .footer-bottom-right {
    width: 100%;
  }
}

.footer-bottom-right-head {
  color: var(--white, #fafafa);
  font-family: Teva Sans;
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 25px;
}
@media only screen and (max-width: 1024px) {
  .footer-bottom-right-head {
    margin-bottom: 10px;
  }
}

.footer-bottom-right-text {
  color: var(--white, #fafafa);
  font-family: Teva Sans;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.footer-bottom-mobail-logo {
  display: none;
}
@media only screen and (max-width: 1024px) {
  .footer-bottom-mobail-logo {
    display: block;
    margin-top: 30px;
  }
}

.home-main {
  width: 100%;
  padding: 28px 6.944444vw 6.944444vw;
  position: relative;
}
@media only screen and (max-width: 1024px) {
  .home-main {
    padding: 24px 30px;
  }
}
@media only screen and (max-width: 666px) {
  .home-main {
    padding: 15px 20px;
  }
}

.home-first-bg {
  width: 20vw; /* 288/1440 */
  position: absolute;
  left: 0;
  top: 28px;
  z-index: 1;
}
.home-first-bg img {
  width: 100%;
}
@media only screen and (max-width: 1024px) {
  .home-first-bg {
    top: 95px;
    width: 230px;
  }
}
@media only screen and (max-width: 666px) {
  .home-first-bg {
    top: 76px;
    width: 156px;
  }
}

.home-header {
  width: 100%;
  margin-bottom: 84px;
}
@media only screen and (max-width: 1024px) {
  .home-header {
    margin-bottom: 100px;
  }
}

.home-header-logo {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 15px;
}
.home-header-logo-ribas {
  width: 6.736111vw; /* 97/1440 */
}
.home-header-logo-ribas img {
  width: 100%;
}
@media only screen and (max-width: 1024px) {
  .home-header-logo-ribas {
    width: 11.067708vw; /* 85/768 */
  }
}
@media only screen and (max-width: 666px) {
  .home-header-logo-ribas {
    width: 18.133333vw; /* 68/375 */
  }
}

.home-header-logo-pg {
  width: 7.847222vw; /* 113/1440 */
}
.home-header-logo-pg img {
  width: 100%;
}
@media only screen and (max-width: 1024px) {
  .home-header-logo-pg {
    width: 12.890625vw; /* 99/768 */
  }
}
@media only screen and (max-width: 666px) {
  .home-header-logo-pg {
    width: 21.066667vw; /* 79/375 */
  }
}

.home-first {
  position: relative;
  z-index: 2;
}

.home-first-top {
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 30px;
}
@media only screen and (max-width: 1024px) {
  .home-first-top {
    margin-bottom: 80px;
  }
}
@media only screen and (max-width: 666px) {
  .home-first-top {
    margin-bottom: 13.333333vw; /* 50/375 */
    position: relative;
    z-index: 5;
  }
}

.home-first-title {
  color: var(--name, #1c1c1b);
  font-family: Unbounded;
  font-size: 3.333333vw; /* 48/1440 */
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
}
@media only screen and (max-width: 1024px) {
  .home-first-title {
    font-size: 36px;
  }
}
@media only screen and (max-width: 666px) {
  .home-first-title {
    font-size: 8.533333vw; /* 32/375 */
  }
}

.home-first-counter {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
}
@media only screen and (max-width: 666px) {
  .home-first-counter {
    position: absolute;
    top: 81vw;
    left: 50%;
    width: 89.066667vw; /* 334/375 */
    width: -moz-fit-content;
    width: fit-content;
    justify-content: center;
    transform: translateX(-50%);
  }
}

.home-first-counter-name {
  color: #8e8e8e;
  text-align: center;
  font-family: Unbounded;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 21px */
  position: absolute;
  top: -31px;
  left: 0.694444vw; /* 10/1440 */
}
@media only screen and (max-width: 666px) {
  .home-first-counter-name {
    display: none;
  }
}

.counter_box {
  display: flex;
}
@media only screen and (max-width: 666px) {
  .counter_box {
    margin: 0 auto;
  }
}

.counter_box .number {
  display: block;
  width: 4.166667vw; /* 60/1440 */
  height: 4.166667vw; /* 60/1440 */
  overflow: hidden;
  border-radius: 10px;
  background: #00e662;
  margin-left: 0.694444vw; /* 10/1440 */
}
.counter_box .number:nth-last-child(3n) {
  margin-left: 1.736111vw; /* 25/1440 */
}
@media only screen and (max-width: 1024px) {
  .counter_box .number {
    border-radius: 6.158px;
  }
}
@media only screen and (max-width: 666px) {
  .counter_box .number {
    width: 32px; /* 31/375 */
    height: 32px; /* 38/375 */
  }
}

.counter_box .number .track {
  display: flex;
  flex-direction: column;
  position: relative;
  transform: translateY(0px);
  transition: all 1s ease-in-out;
}

.counter_box .number span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.166667vw; /* 60/1440 */
  height: 4.166667vw; /* 60/1440 */
  color: #1c1c1b;
  text-align: center;
  font-family: Unbounded;
  font-size: 2.777778vw; /* 40/1440 */
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
}
@media only screen and (max-width: 666px) {
  .counter_box .number span {
    font-size: 22px; /* 22/375 */
    width: 32px; /* 31/375 */
    height: 32px; /* 38/375 */
  }
}

.home-first-counter-currancy {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.166667vw; /* 60/1440 */
  height: 4.027778vw; /* 58/1440 */
  border-radius: 10px;
  background: #1c1c1b;
  color: #00e662;
  font-family: Unbounded;
  font-size: 2.777778vw; /* 40/1440 */
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
  margin-left: 1.736111vw; /* 25/1440 */
}
@media only screen and (max-width: 666px) {
  .home-first-counter-currancy {
    font-size: 22px; /* 22/375 */
    width: 32px; /* 31/375 */
    height: 32px; /* 38/375 */
    border-radius: 5.131px;
  }
}

.home-first-content {
  position: relative;
  height: 40.625vw; /* 585/1440 */
  margin-bottom: 100px;
}
@media only screen and (max-width: 1024px) {
  .home-first-content {
    height: 87.369792vw; /* 671/768 */
  }
}
@media only screen and (max-width: 666px) {
  .home-first-content {
    height: auto;
    margin-bottom: 8vw; /* 30/375 */
  }
}

.home-first-content-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 40.625vw; /* 585/1440 */
  z-index: 1;
}
.home-first-content-img img {
  width: 100%;
}
@media only screen and (max-width: 666px) {
  .home-first-content-img {
    display: none;
  }
}

.home-first-content-capture {
  color: var(--white, #fff);
  text-align: center;
  font-family: Unbounded;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 18px */
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
}
@media only screen and (max-width: 666px) {
  .home-first-content-capture {
    display: none;
  }
}

.home-first-links {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  align-items: center;
  padding: 0.763889vw 0.833333vw 0.763889vw 1.875vw; /* 27/1440 */
}
@media only screen and (max-width: 1024px) {
  .home-first-links {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media only screen and (max-width: 666px) {
  .home-first-links {
    padding: 0 5.333333vw; /* 20/375 */
    margin-bottom: 8vw; /* 30/375 */
  }
}

.home-first-links-alive {
  display: flex;
  align-items: center;
  opacity: 0;
  visibility: hidden;
}
.home-first-links-alive:hover .home-first-links-alive-icon {
  border-right: 2px solid #00e662;
}
.home-first-links-alive:hover .home-first-links-alive-icon svg path {
  fill: #00e662;
}
.home-first-links-alive:hover .home-first-links-alive-name {
  color: #00e662;
}
@media only screen and (max-width: 1024px) {
  .home-first-links-alive {
    width: 35.15625vw; /* 270/768 */
  }
}
@media only screen and (max-width: 666px) {
  .home-first-links-alive {
    display: none;
    width: 100%;
    margin: 0 auto;
  }
}

.home-first-links-alive-icon {
  width: 3.055556vw; /* 44/1440 */
  height: 3.194444vw; /* 46/1440 */
  border-right: 2px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1c1c1b;
}
@media only screen and (max-width: 1024px) {
  .home-first-links-alive-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
  }
}

.home-first-links-alive-name {
  width: 15.972222vw; /* 230/1440 */
  height: 3.194444vw; /* 46/1440 */
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: Unbounded;
  font-size: 0.972222vw; /* 14/1440 */
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  background: #1c1c1b;
  text-transform: uppercase;
}
@media only screen and (max-width: 1024px) {
  .home-first-links-alive-name {
    width: 35.15625vw; /* 270/768 */
    height: 44px;
    font-size: 14px;
  }
}
@media only screen and (max-width: 666px) {
  .home-first-links-alive-name {
    width: 100%;
  }
}

.home-first-links-monobank {
  width: 10.347222vw; /* 149/1440 */
  padding: 1.041667vw 1.388889vw; /* 20/1440 */
  height: 3.194444vw; /* 46/1440 */
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: Unbounded;
  font-size: 0.972222vw; /* 14/1440 */
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  background: #1c1c1b;
  text-transform: uppercase;
  margin-left: 1.041667vw; /* 15/1440 */
  margin-right: 2.58111vw;
  opacity: 0;
  visibility: hidden;
}
.home-first-links-monobank svg {
  width: 100%;
}
.home-first-links-monobank:hover svg path {
  fill: #00e662;
}
@media only screen and (max-width: 1024px) {
  .home-first-links-monobank {
    width: 35.15625vw; /* 270/768 */
    margin: 0;
    height: 44px;
    margin-top: 12px;
  }
}
@media only screen and (max-width: 666px) {
  .home-first-links-monobank {
    width: 100%;
    display: none;
  }
}

.home-first-links-ribas {
  color: #1c1c1b;
  text-align: center;
  font-family: Unbounded;
  font-size: 1.25vw; /* 18/1440 */
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 27px */
  border-radius: 14px;
  background: #fff;
  padding: 1.388889vw; /* 20/1440 */
}
@media only screen and (max-width: 1024px) {
  .home-first-links-ribas {
    position: absolute;
    top: 10px;
    right: 10px;
    border-radius: 12px;
    width: 49.869792vw; /* 383/768 */
    font-size: 15px;
  }
}
@media only screen and (max-width: 666px) {
  .home-first-links-ribas {
    display: none;
  }
}

.home-second {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 35px 0;
  border-top: 2px solid #1c1c1b;
  border-bottom: 2px solid #1c1c1b;
  margin-bottom: 100px;
}
@media only screen and (max-width: 1024px) {
  .home-second {
    flex-direction: column;
  }
}
@media only screen and (max-width: 666px) {
  .home-second {
    margin-bottom: 80px;
  }
}

.home-second-left {
  width: 36.935484%; /* 458/1240 */
}
.home-second-left h2 {
  color: #1c1c1b;
  font-family: Unbounded;
  font-size: 2.5vw; /* 36/1440 */
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.home-second-left p {
  color: #1c1c1b;
  font-family: Unbounded;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 24px */
  margin-bottom: 20px;
}
.home-second-left p:last-child() {
  margin-bottom: 0;
}
@media only screen and (max-width: 1024px) {
  .home-second-left {
    width: 100%;
  }
  .home-second-left h2 {
    font-size: 30px;
  }
  .home-second-left p {
    font-size: 16px;
  }
}
@media only screen and (max-width: 666px) {
  .home-second-left h2 {
    font-size: 26px;
  }
}

.home-second-right {
  width: 60.403226%; /* 749/1240 */
}
.home-second-right img {
  width: 100%;
}
@media only screen and (max-width: 1024px) {
  .home-second-right {
    width: 100%;
  }
}

.wrapper {
  width: 100%;
  padding: 0 20px;
  position: relative;
  z-index: 1;
  border-radius: 20px;
}
@media only screen and (max-width: 666px) {
  .wrapper {
    padding: 0;
  }
}

.youtube-video {
  width: 100%;
  margin: 0 auto;
  position: relative;
}
.youtube-video iframe {
  aspect-ratio: 16/9;
  width: 100%;
  z-index: 1;
  position: relative;
}

.home-video-bg {
  position: absolute;
  left: 50%;
  top: 0;
  z-index: 3;
  transform: translateX(-50%);
  width: 26.25vw; /* 378/1440 */
}
.home-video-bg img {
  width: 100%;
}
@media only screen and (max-width: 1024px) {
  .home-video-bg {
    width: 38.802083vw; /* 298/768 */
  }
}
@media only screen and (max-width: 666px) {
  .home-video-bg {
    display: none;
  }
}

.home-video-text {
  width: 48.611111vw; /* 700/1440 */
  margin: 0 auto;
  text-align: center;
  color: #1c1c1b;
  text-align: center;
  font-family: Unbounded;
  font-size: 1.25vw; /* 18/1440 */
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 27px */
  margin-bottom: -1.244444vw; /* -28/1440 */
  position: relative;
  z-index: 4;
}
@media only screen and (max-width: 1024px) {
  .home-video-text {
    font-size: 2.083333vw; /* 16/768 */
    width: 81.770833vw; /* 628/768 */
    margin-bottom: -1.944444vw;
  }
}
@media only screen and (max-width: 666px) {
  .home-video-text {
    font-size: 16px;
    margin: 0;
    width: 100%;
    margin-bottom: 20px;
  }
}

.home-support {
  margin: 100px auto;
}

@media only screen and (max-width: 666px) {
  .home-support {
    margin: 80px auto;
  }
}

.home-support-title {
  color: #1c1c1b;
  font-family: Unbounded;
  font-size: 36px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 20px;
}
@media only screen and (max-width: 1024px) {
  .home-support-title {
    font-size: 30px;
  }
}
@media only screen and (max-width: 666px) {
  .home-support-title {
    font-size: 26px;
  }
}

.home-support-text {
  color: #1c1c1b;
  text-align: center;
  font-family: Unbounded;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 24px */
  width: 550px;
  max-width: 100%;
  margin-inline: auto;
}
  .home-support p:not(:last-child) {
    margin-bottom: 1rem;
  }
  .home-support .arm_popup_btn{
    margin-top: 2rem;
  }
@media only screen and (max-width: 1024px) {
  .home-support-text {
    font-size: 16px;
  }
}

.home-support-images{
  display: flex;
  align-items: flex-start;
  gap: 24px;
  max-width: 100%;
  margin: 0 auto 36px;
}
  .home-support-images img{
    width: calc(50% - 12px);
    height: auto;
    aspect-ratio: 6.2 / 4.1;
    object-fit: cover;
  }

  @media only screen and (max-width: 666px) {
    .home-support-images{
      flex-direction: column;
    }
      .home-support-images img{
        width: 100%;
      }
  }


.home-goal {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 0;
  border-top: 2px solid #1c1c1b;
  border-bottom: 2px solid #1c1c1b;
  margin-bottom: 100px;
}

.home-goal-title {
  color: #1c1c1b;
  font-family: Unbounded;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 21px */
}
@media only screen and (max-width: 1024px) {
  .home-goal-title {
    font-size: 12px;
  }
}

.home-goal-sum {
  color: #00e662;
  text-align: center;
  font-family: Unbounded;
  font-size: 48px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 40px;
}
@media only screen and (max-width: 1024px) {
  .home-goal-sum {
    font-size: 40px;
  }
}
@media only screen and (max-width: 666px) {
  .home-goal-sum {
    font-size: 34px;
  }
}

.home-goal-bottom {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
}
.home-goal-bottom .home-first-links-monobank {
  margin-right: 0;
}
@media only screen and (max-width: 1024px) {
  .home-goal-bottom .home-first-links-monobank {
    margin: 0;
    margin-left: 20px;
  }
}
@media only screen and (max-width: 666px) {
  .home-goal-bottom {
    width: 80%;
    flex-direction: column;
  }
  .home-goal-bottom .home-first-links-monobank {
    margin: 0;
    margin-top: 20px;
  }
}

.home-partner {
  width: 100%;
}

.home-partner-title {
  color: #1c1c1b;
  text-align: center;
  font-family: Unbounded;
  font-size: 36px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 40px;
}
@media only screen and (max-width: 1024px) {
  .home-partner-title {
    font-size: 30px;
  }
}
@media only screen and (max-width: 666px) {
  .home-partner-title {
    font-size: 26px;
  }
}

.home-partner-image {
  width: 100%;
}
.home-partner-image picture {
  width: 100%;
}
.home-partner-image picture img {
  width: 100%;
}

.home-footer {
  width: 100%;
  background: #1c1c1b;
  padding: 40px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.home-footer-title {
  color: #fff;
  font-family: Unbounded;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.56px;
  margin-bottom: 22px;
}

.home-footer-social {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 15px;
}
.home-footer-social a {
  display: block;
  transition: all 0.2s ease-in-out;
}
.home-footer-social a:hover {
  transform: scale(1.17);
}
.home-footer-social a {
  width: 40px;
}
.home-footer-social a img {
  width: 100%;
}

.home-mob-first {
  display: none;
}
@media only screen and (max-width: 666px) {
  .home-mob-first {
    display: block;
    position: relative;
    height: 129.066667vw; /* 484/375 */
    margin-bottom: 80px;
    padding: 5.333333vw 2.666667vw; /* 10/375 */
  }
}

.home-mob-first-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.home-mob-first-img img {
  width: 100%;
  height: 100%;
}

.home-mob-first-title {
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: center;
  font-family: Unbounded;
  font-size: 3.2vw; /* 12/375 */
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 18px */
  margin-bottom: 18.133333vw; /* 68/375 */
}

.home-mob-first-text {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 4vw 4.033333vw; /* 17/375 */
  color: #fff;
  text-align: center;
  font-family: Unbounded;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 21px */
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.3);
}

.home-mob-first-capture {
  position: relative;
  z-index: 2;
  color: var(--white, #fff);
  text-align: center;
  font-family: Unbounded;
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 18px */
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
}

html,
body {
  font-family: Unbounded;
  font-weight: 400;
  background: #fff;
}
html.is-hidden,
body.is-hidden {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

* {
  box-sizing: border-box;
  outline: none;
}

a {
  text-decoration: none;
}

img {
  vertical-align: bottom;
}
/*# sourceMappingURL=main.css.map */





/*         ARM   POPUP           */
 
  html._open_arm_popup{
    overflow: hidden;
}



.arm_overlay{
    cursor: pointer;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    transition: .3s ease all;
    visibility: hidden;
    opacity: 0;
    z-index: 98;
}
    .arm_overlay._open {
        visibility: visible;
        opacity: 1;
    }

.arm_popup{
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%) scale(.7);
    transform-origin: center;
    transition: .3s ease all;
    width: 450px;
    max-width: calc(100% - 20px);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
}
    .arm_popup._open{
        transform: translate(-50%,-50%) scale(1);
        visibility: visible;
        opacity: 1;
    }

    .arm_popup_wrap{
        position: relative;
        background: #fff;
        color: #000;
        padding: 48px;
    }
        .arm_popup_close{
            cursor: pointer;
            position: absolute;
            top: 24px;
            right: 24px;
            transition: .5s ease all;
            transform: rotate(0deg);
        }
            .arm_popup_close:hover{
                transform: rotate(270deg);
            }
            .arm_popup_close svg{
                width: 20px;
                height: auto;
                display: block;
            }

    .arm_popup_title{
        width: 100%;
        color: #000;
        font-size: 28px;
        line-height: 1.3;
        text-align: center;
        margin-bottom: 24px;
    }

    .arm_popup p{
        line-height: 1.35;
    }
        .arm_popup p:not(:last-child){
            margin-bottom: 1rem;
        }
    

        .arm_popup_btn{
            cursor: pointer;
            display: block;
            width: 100%;
            background: #1c1c1b;
            color: #fff;
            transition: .3s ease all;
            font-size: 20px;
            font-weight: 500;
            text-align: center;
            line-height: 1;      
            padding: 16px;
            margin-top: 16px;
        }

        @media (hover:hover) {
            .arm_popup_btn:hover{
                color: #00e662;
            }
        }

@media screen and (max-width:600px) {
    .arm_popup_wrap{
        padding: 48px 24px 36px;
    }
    .arm_popup_title{
        font-size: 24px;
    }
    .arm_popup_close{
        top: 16px;
        right: 10px;
    }
}



/*     END    ARM   POPUP           */