body,
main {
  font-family: "__Rubik_784dfb", "__Rubik_Fallback_784dfb";
}

.header-menu__container {
  width: 100%;
  height: 68px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0 20px;
  position: fixed;
  top: 0px;
  z-index: 115;
  background-color: var(--background);
}
.header-menu__container.with-animation {
  -webkit-transition: background 500ms;
  -moz-transition: background 500ms;
  -o-transition: background 500ms;
  transition: background 500ms;
}
.header-menu__logo {
  width: 128px;
  height: auto;
}
.header-menu__burger-localization {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
  width: auto;
}
/* .header-menu__links {
  display: none;
} */
.header-menu__wrapper {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media only screen and (min-width: 767px) {
  .header-menu__logo {
    width: 146px;
  }
  .header-menu__links {
    display: block;
  }
  .header-menu__wrapper {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .burger {
    width: 50px;
    height: 50px;
  }
  .header-menu__container {
    height: 90px;
  }
}
@media only screen and (min-width: 1279px) {
  .header-menu__container {
    height: 86px;
    padding: 0;
  }
  .header-menu__links {
    display: block;
  }
  .header-menu__wrapper {
    width: 100%;
    max-width: 1160px;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 767px) {
  .burger {
    width: 44px;
    height: 44px;
  }
}

.menu__container {
  width: auto;
  letter-spacing: 0;
  color: transparent;
  list-style: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
}
.menu__container > ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: start;
  -moz-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  list-style: none;
  margin: 0;
  padding: 0;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.menu__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  text-decoration: none;
  padding: 32px 0 26px;
  color: var(--primary-text-color);
  border-bottom: 1px solid transparent;
  margin: 0;
}
.menu__container .menu__item:not(:first-child) {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  text-decoration: none;
  padding: 32px 0 26px;
  margin-left: 30px;
  border-bottom: 1px solid transparent;
}
.menu-button {
  margin: auto 0;
  font-weight: 700;
}
.menu__item-title {
  position: relative;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.menu__container li a {
  padding-bottom: 7px;
}
.menu__container > ul > li > a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  background: var(--secondary-color);
  height: 3px;
  width: 0;
  -webkit-transition: 300ms;
  -moz-transition: 300ms;
  -o-transition: 300ms;
  transition: 300ms;
}
.menu__container > ul > li > a:hover:before {
  width: 78%;
}
.menu__container > ul > li > a.active-link:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  background: var(--secondary-color);
  height: 3px;
  width: 78%;
}

@media only screen and (min-width: 320px) and (max-width: 1279px) {
  .menu__container > ul {
    display: none;
  }
}

@media only screen and (min-width: 320px) and (max-width: 1279px) {
  .humburger img {
    display: block;
  }
}


@media only screen and (min-width: 1279px) {
  .menu__container-list {
    display: block;
  }
  .menu-button {
    margin-left: 30px;
    margin-right: 0;
  }
}


.brand-button {
  font-family: var(--font-clash-display);
  font-weight: 700;
  letter-spacing: 0.5px;
  position: relative;
  background-color: var(--secondary-color);
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
  height: 49px;
  min-width: 162px;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: var(--primary-color);
  text-decoration: none;
  font-size: 16px;
  line-height: 21px;
  overflow: hidden;
  cursor: pointer;
  -webkit-transition: background-color.3s, color.3s, border-color.3s;
  -moz-transition: background-color.3s, color.3s, border-color.3s;
  -o-transition: background-color.3s, color.3s, border-color.3s;
  transition: background-color.3s, color.3s, border-color.3s;
  border: none;
  outline: none;
  padding: 14px 28px;
}
.brand-button:hover {
  background-color: #ffe29e;
}
.brand-button-link {
  display: inline-block;
}
@media only screen and (max-width: 767px) {
  .brand-button {
    width: 100%;
    display: none;
  }
}


.humburger {
margin: 0;
line-height: 0;
padding: 0;
display: none;
}

.humburger img {
width: 40px;
margin-left: 40px;
}



.humburger-open {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: #ffffff;
display: flex;
flex-direction: column;
justify-content: flex-start;
padding: 20px 30px;
z-index: 9999;
animation: humOpen 0.2s ease-in forwards;
display: none;
}

@keyframes humOpen {
0% {
  transform: translateX(100%);
  opacity: 1;
}
100% {
  transform: translateX(0);
  opacity: 1;
}
}


.humburger-closed{
display: none;
}

.humburger-close {
position: fixed;
top: 0;
left: 0; /* Important: stay at left 0 */
width: 100%;
height: 100%;
background: #ffffff;
display: flex;
flex-direction: column;
justify-content: flex-start;
padding: 20px 30px;
z-index: 9999;
animation: humClose 0.22s ease-in forwards; /* speed matching */
}

@keyframes humClose {
0% {
  transform: translateX(0);
  opacity: 1;
}
100% {
  transform: translateX(100%);
  opacity: 1;
}
}


.menu-header {
display: flex;
justify-content: space-between;
align-items: center;
}

.logo {
height: 50px;
/* adjust based on your logo */
}

.menu-nav {
margin-top: 80px;
display: flex;
flex-direction: column;
gap: 40px;
text-align: left;
}

.menu-nav a {
text-decoration: none;
font-size: 48px;
font-weight: 900;
color: #1c2628;
}

.menu-nav a:hover {
opacity: 0.7;
}



@media (max-width: 1279px) {

.testimonial-section {
  display: none;
}

.humburger {
  display: block;
}

.humburger-open {
  display: block;
}
}


@media (max-width: 767px) {
.menu-nav a {
  text-decoration: none;
  font-size: 35px;
  font-weight: 800;
  color: #1c2628;
}

.menu-nav {
  gap: 25px;
}
}

@media (max-width: 766px) {
.humburger {
  display: block;
}
}


@media (max-width: 425px) {
section {
  width: unset;
  padding: 50px 0
}

.humburger img {
  width: 35px;
  margin-left: 40px;
}

}




.App {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
  padding-top: 86px;
}
.app-footer {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: var(--background);
}
.cookies-banner {
  position: fixed;
  bottom: 20px;
  z-index: 999;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 50px;
  padding-right: 40px;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  border-radius: 40px;
  background-color: #eaedf1;
  -webkit-box-shadow: 0px 4px 10px rgba(13, 38, 72, 0.2);
  -moz-box-shadow: 0px 4px 10px rgba(13, 38, 72, 0.2);
  box-shadow: 0px 4px 10px rgba(13, 38, 72, 0.2);
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  -webkit-transform: translatey(1e3px);
  -moz-transform: translatey(1e3px);
  -ms-transform: translatey(1e3px);
  -o-transform: translatey(1e3px);
  transform: translatey(1e3px);
}
.cookies-text,
.cookies-text a {
  color: var(--primary-color);
}
.cookies-text a {
  text-decoration: underline;
}
.cookies-image-desktop {
  margin-right: 20px;
}
.cookies-banner.visible {
  -webkit-transform: translatey(0px);
  -moz-transform: translatey(0px);
  -ms-transform: translatey(0px);
  -o-transform: translatey(0px);
  transform: translatey(0px);
  width: -webkit-calc(100% - 230px);
  width: -moz-calc(100% - 230px);
  width: calc(100% - 230px);
}
.cookies-text {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-right: 30px;
}
.cookies-text img {
  margin-right: 20px;
}
.close-cookies-icon {
  cursor: pointer;
  width: 20px;
  height: 20px;
}
.content-wrapper {
  margin: 0 auto;
  max-width: 1160px;
  width: 100%;
}
.scrollable {
  scroll-margin-top: 85px;
}
@media only screen and (max-width: 1279px) {
  .App {
    padding-top: 90px;
  }
  .scrollable {
    scroll-margin-top: 89px;
  }
  .app-footer {
    width: 100%;
  }
  .cookies-banner {
    width: -webkit-calc(100% - 40px);
    width: -moz-calc(100% - 40px);
    width: calc(100% - 40px);
  }
  .content-wrapper {
    max-width: 100%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1279px) {
  .tablet-br-tag {
    display: unset;
  }
}
@media only screen and (max-width: 767px) {
  .App {
    padding-top: 68px;
  }
  .scrollable {
    scroll-margin-top: 67px;
  }
  .tablet-br-tag {
    display: none;
  }
  .cookies-banner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
    -moz-box-orient: vertical;
    -moz-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    left: 0;
    width: 100% !important;
    bottom: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
  }
  .close-icon-container {
    padding-bottom: 100px;
  }
  .cookies-text .text {
    height: 100%;
    padding-right: 40px;
  }
  .close-icon-container {
    width: 100%;
    margin-bottom: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -moz-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
  .cookies-banner {
    display: grid;
    grid-template-columns: auto 20px;
  }
}


.app-footer {
  overflow: hidden;
}
.app-footer.app-footer-dark {
  background-color: var(--primary-text-color);
  color: var(--background);
}
.app-footer-dark .footer-contacts-new {
  background-color: transparent;
}
.footer-contacts-new {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--primary-color);
  padding: 40px 0 20px;
}
.footer-contacts-new_only-socials {
  padding: 20px 0 !important;
}
.footer-contacts-new_only-socials .footer-contacts__copyright {
  padding-top: 0;
  border: none;
}
.footer-contacts_bordered {
  border-top: 1px solid rgba(240, 240, 241, 0.25);
}
@media only screen and (min-width: 768px) {
  .footer-contacts-new {
    padding: 70px 0 30px;
  }
}
@media only screen and (min-width: 1279px) {
  .footer-contacts-new {
    padding: 70px 0 20px;
  }
}

.footer-contacts {
  color: var(--white);
}
.footer-contacts__copyright {
  border-top: 1px solid#f0f0f133;
  padding-top: 30px;
}
.footer-link {
  color: var(--white);
  -webkit-transition: 200ms;
  -moz-transition: 200ms;
  -o-transition: 200ms;
  transition: 200ms;
}
.footer-link:hover {
  color: var(--secondary-color);
}
.footer-contacts-copyright-text {
  color: #8d9091;
  font-size: 12px;
}
.footer-contacts-wrapper {
  margin-bottom: 30px;
}
@media only screen and (min-width: 768px) {
  .footer-contacts-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 100px;
    -moz-column-gap: 100px;
    column-gap: 100px;
    margin-bottom: 40px;
  }
  .footer-contacts-copyright-text {
    font-size: 16px;
  }
}
@media only screen and (min-width: 1279px) {
  .footer-contacts-wrapper {
    -webkit-column-gap: 200px;
    -moz-column-gap: 200px;
    column-gap: 200px;
    margin-bottom: 50px;
  }
  .footer-contacts__copyright {
    padding-top: 20px;
  }
  .footer-contacts__copyright-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
    -moz-box-orient: horizontal;
    -moz-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.footer-contacts__logo-link {
  display: block;
}
.footer-contacts__logo {
  width: 122px;
  height: auto;
  margin-bottom: 30px;
}
.office-contacts-email {
  display: block;
  font-size: 20px;
  line-height: 130%;
  margin-bottom: 30px;
}
.office-contacts__badges-link {
  display: block;
}
.office-contacts__badges-link:not(:last-child) {
  margin-bottom: 30px;
}
.footer-contacts__budge {
  position: relative;
  width: 160px;
}
@media only screen and (min-width: 768px) {
  .footer-contacts__logo {
    width: 138px;
  }
}
@media only screen and (min-width: 1279px) {
  .footer-contacts__logo {
    width: 168px;
    margin-bottom: 40px;
  }
  .office-contacts-email {
    margin-bottom: 40px;
  }
  .office-contacts__badges-link:not(:last-child) {
    margin-bottom: 40px;
  }
}

.footer-contacts__menu-wrapper {
  display: none;
}
@media only screen and (min-width: 768px) {
  .footer-contacts__menu {
    margin-top: 60px;
  }
}
@media only screen and (min-width: 1279px) {
  .footer-contacts__menu {
    margin-top: 0;
    margin-bottom: 0;
  }
  .footer-contacts__menu-wrapper {
    display: block;
  }
  .footer-contacts__title {
    font-size: 20px;
    line-height: 130%;
    margin-bottom: 20px;
  }
  .footer-contacts__menu-item {
    max-width: 205px;
  }
  .footer-contacts__menu-wrapper,
  .footer-contacts__menu {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    gap: 150px;
  }
  .footer-contacts__menu__link {
    display: block;
    line-height: 130%;
  }
  .footer-contacts__menu__link:not(:last-child) {
    margin-bottom: 10px;
  }
}

.footer-contacts__offices {
  margin-top: 40px;
}
.footer-contacts__title {
  font-size: 20px;
  line-height: 130%;
}
.office-contacts__office {
  margin-top: 20px;
}
.office-contacts__country-name {
  line-height: 130%;
  margin-bottom: 10px;
}
.office-contacts-text {
  line-height: 150%;
  margin-bottom: 10px;
}
.footer-contacts__phone {
  line-height: 130%;
}
@media only screen and (min-width: 768px) {
  .office-contacts__container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0 20px;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .footer-contacts__offices {
    margin: 0;
  }
  .office-contacts__office {
    max-width: 205px;
  }
}
@media only screen and (min-width: 1279px) {
  .office-contacts__container {
    display: block;
  }
}

.socials-contacts {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 20px 30px;
  width: 100%;
  margin-bottom: 30px;
}
.socials-contacts__icon-wrapper {
  width: 100%;
  height: 100%;
}
.socials-contacts__icon {
  position: relative;
  -o-object-fit: contain;
  object-fit: contain;
}
@media only screen and (min-width: 768px) {
  .socials-contacts {
    gap: 20px;
  }
}
@media only screen and (min-width: 1279px) {
  .socials-contacts {
    margin: 0;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}