* {
  position: relative;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

ul {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
}

body {
  font-family: 'sbsansdisplaylight', sans-serif;
  font-weight: 300;
  font-size: 18px;
  line-height: 1.3;
  color: #fff;
}

body.no-scrolling {
  overflow: hidden;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: -8px -15px;
}

.col {
  padding: 8px 15px;
}

.col-3 {
  width: 25%;
}

.col-5 {
  width: 42%;
}

.col-6 {
  width: 50%;
}

.col-7 {
  width: 58%;
}

.heading {
  font-family: 'FFFAcidGroteskRegular', sans-serif;
  font-weight: 500;
  line-height: 1;
}

.heading-1 {
  font-size: 62px;
}

.heading-2 {
  font-size: 57px;
}

.heading-3 {
  font-size: 47px;
}

.heading-4 {
  font-size: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 66px;
  padding: 0 60px;
  background-color: transparent;
  font-family: 'FFFAcidGroteskRegular', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 16px;
  text-transform: uppercase;
  border: 2px solid;
  border-radius: 35px;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  cursor: pointer;
}

.btn-sm {
  height: 50px;
  padding: 0 21px;
  font-size: 15px;
}

.btn-primary {
  background-color: #FF7500;
  border-color: #FF7500;
  color: #f5f5f5;
}

.btn-primary:hover {
  background-color: transparent;
  border-color: #fff;
}

.btn-secondary {
  background-color: #fff;
  border-color: #fff;
  color: #FF7500;
}

.btn-secondary:hover {
  background-color: transparent;
  color: #fff;
}

.wrapper {
  min-height: 100vh;
}

.container {
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
  padding: 0 30px;
}

.header {
  position: absolute;
  left: 0;
  right: 0;
  top: 30px;
  z-index: 10;
}

.header__content,
.header__inner {
  display: flex;
  align-items: center;
}

.header__inner {
  flex-grow: 1;
}

.header .logo {
  margin-right: 62px;
}

.header .nav {
  margin-right: 52px;
}

.header.is-open-menu .logo,
.header.is-open-menu .btn-close {
  z-index: 15;
}

.header.is-open-menu .btn-close {
  position: absolute;
  top: 42px;
  right: 22px;
}

.header.is-open-menu .header__inner {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  padding-top: 54px;
  padding-bottom: 42px;
  backdrop-filter: blur(100px);
  z-index: 10;
}

.header.is-open-menu .lang {
  position: absolute;
  top: 34px;
  right: 75px;
}

.header.is-open-menu .nav {
  display: flex;
  align-items: center;
  flex-grow: 1;
  margin-right: 0;
}

.header.is-open-menu .menu {
  display: block;
  font-size: 26px;
  text-align: center;
}

.header.is-open-menu .menu__item {
  margin-bottom: 15px;
}

.header.is-open-menu .menu__item:last-child {
  margin-bottom: 0;
}

.header.is-open-menu .profile {
  margin-left: 0;
}

.btn-close,
.btn-menu {
  display: none;
}

.menu {
  display: flex;
  font-weight: 400;
  font-size: 16px;
}

.menu__item {
  margin-right: 20px;
  -webkit-transition: color .3s ease-in-out;
  transition: color .3s ease-in-out;
}

.menu__item:last-child {
  margin-right: 0;
}

.menu__item:hover {
  color: #FF7500;
}

.lang {
  width: 35px;
  height: 35px;
  line-height: 35px;
  font-weight: 400;
  font-size: 14px;
  text-align: center;
  border: 1px solid;
  border-radius: 50%;
  text-transform: uppercase;
}

.profile {
  display: flex;
  margin-left: auto;
}

.profile .btn {
  margin-right: 10px;
}

.profile .btn:last-child {
  margin-right: 0;
}

.first {
  padding-top: 270px;
  padding-bottom: 187px;
  background: url("../img/bg1.jpg") no-repeat center top;
  background-size: cover;
}

.first .heading-1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 194px;
}

.first .heading-1 span:last-child {
  padding: 20px 30px;
}

.first .heading-1 span i {
  position: absolute;
  width: 25px;
  height: 25px;
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: contain;
  background-image: url("../img/round.svg");
}

.first .heading-1 span i:first-child {
  top: 0;
  left: 0;
}

.first .heading-1 span i:nth-child(2) {
  top: 0;
  right: 0;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.first .heading-1 span i:nth-child(3) {
  right: 0;
  bottom: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.first .heading-1 span i:last-child {
  bottom: 0;
  left: 0;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

.first .row {
  align-items: flex-end;
}

.first p {
  max-width: 625px;
  margin-bottom: 16px;
}

.first p:last-child {
  margin-bottom: 0;
}

.first .buttons {
  display: flex;
}

.first .btn {
  width: 240px;
  margin-right: 12px;
}

.first .btn:last-child {
  margin-right: 0 !important;
}

.second {
  margin-top: -30px;
  padding-bottom: 30px;
  background: url("../img/bg2.png") no-repeat center center;
  background-size: cover;
  border-radius: 30px 30px 0 0;
}

.second .container {
  padding-top: 68px;
  padding-bottom: 140px;
}

.second .heading-2 {
  display: flex;
  justify-content: space-between;
  margin-bottom: 42px;
}

.second .btn-contact {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  max-width: 355px;
  width: 100%;
  height: 68px;
  padding-top: 6px;
  border-radius: 35px 35px 0 0;
  border-bottom: none;
}

.fact-item.lg {
  flex-grow: 1;
}

.fact-item.lg .fact-item__inner {
  width: 100%;
}

.fact-item__inner {
  width: 332px;
  padding: 29px 20px 29px 44px;
  background-color: rgba(217, 217, 217, 0.04);
  -webkit-backdrop-filter: blur(100px);
  backdrop-filter: blur(100px);
  border-radius: 30px;
  -webkit-transform: translate3d(0,0,0);
  transform: translate3d(0,0,0);
}

.second .fact-item__title {
  display: inline-flex;
  margin-bottom: 0 !important;
  line-height: 1;
}

.fact-item__title a {
  margin-left: 30px;
}

.fact-item__text {
  margin-top: -10px;
  color: #F5F5F2;
}

.footer {
  margin-top: -30px;
  padding: 67px 0;
  background-color: #222;
  border-radius: 30px 30px 0 0;
}

.footer .heading-3 {
  margin-bottom: 84px;
  text-align: center;
  line-height: 1.3;
}

.footer .row {
  justify-content: space-between;
}

.footer .logo {
  display: block;
  margin-bottom: 30px;
  top: -4px;
}

.footer .copyright,
.footer ul a {
  font-size: 14px;
  color: #F5F5F2;
}

.copyright.is-mobile {
  display: none;
}

.footer ul {
  line-height: 1;
}

.footer ul li {
  margin-bottom: 6px;
}

.footer ul li:last-child {
  margin-bottom: 0;
}

.footer ul a {
  display: block;
}

.footer ul a:hover {
  color: #FF7500;
}

.footer .heading-4 {
  margin-bottom: 8px;
}

.footer .social-links li {
  border: 1px solid #F5F5F2;
  margin-bottom: 9px;
  text-align: center;
}

.footer .social-links li:hover {
  border-color: #FF7500;
}

.footer .social-links li:last-child {
  margin-bottom: 0px;
}

.footer .social-links li a {
  display: block;
  width: 34px;
  height: 34px;
  line-height: 34px;
  color: #F5F5F2;
}

@media (max-width: 1166px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .first .row {
    margin: 0;
  }

  .first .col {
    width: 100%;
    padding: 0;
    margin-bottom: 30px;
  }

  .first .col:last-child {
    margin-bottom: 0;
  }

  .first p {
    max-width: 100%;
  }

  .fact-item {
    width: 50%;
  }

  .fact-item__inner {
    width: 100%;
  }
}

@media (max-width: 1024px) {
  .header {
    top: 20px;
  }

  .header__content {
    justify-content: space-between;
  }

  .header__inner {
    display: none;
  }

  .header.is-open-menu .header__inner {
    display: flex;
    flex-direction: column;
  }

  .btn-close,
  .btn-menu {
    display: block;
  }
}

@media (max-width: 767px) {
  .first {
    padding-top: 151px;
    padding-bottom: 79px;
  }

  .first .heading-1 {
    flex-direction: column;
    max-width: 360px;
    margin: 0 auto 82px;
  }

  .first .heading-1 span:first-child {
    margin-right: auto;
  }

  .first .heading-1 span:nth-child(2) {
    margin-left: auto;
  }

  .first .heading-1 span:last-child {
    margin-top: 20px;
  }

  .first .btn {
    width: calc(50% - 4px);
    margin-right: 8px;
  }

  .second {
    background-image: url("../img/bg2-1.png");
  }

  .second .row {
    margin: 0;
  }

  .fact-item {
    width: 100%;
    padding: 0;
    margin-bottom: 18px;
  }

  .fact-item:last-child {
    margin-bottom: 0;
  }

  .second .heading-2 {
    max-width: 360px;
    margin: 0 auto 82px;
    flex-direction: column;
    align-items: center;
  }

  .second .heading-2 span:first-child {
    margin-right: auto;
    margin-bottom: 10px;
  }

  .second .heading-2 span:last-child {
    margin-left: auto;
  }

  .second .fact-item__title {
    flex-direction: row;
  }

  .footer .row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .footer .col.grid-column-1 {
    margin-bottom: 44px;
    grid-column: 1/span 3;
    grid-row: 1/2;
  }

  .footer .col.grid-column-2 {
    grid-column: 1/span 2;
    grid-row: 2/3;
  }

  .footer .col.grid-column-3 {
    grid-column: 3/4;
    grid-row: 2/4;
  }

  .footer .col.grid-column-4 {
    grid-column: 1/span 2;
    grid-row: 3/4;
  }

  .footer .col.grid-column-5 {
    grid-column: 1/span 3;
    grid-row: 5;
  }

  .footer .heading-3 {
    margin-bottom: 10px;
    padding: 0 30px;
  }

  .footer .logo img {
    width: 127px;
    margin: 0 auto;
  }

  .footer .row {
    margin: 0;
    margin-bottom: 60px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .footer .col {
    padding: 0;
  }

  .footer .col:last-child {
    margin-top: 20px;
  }

  .copyright.is-mobile {
    display: block;
    text-align: center;
  }

  .copyright.is-desktop {
    display: none;
  }

  .footer .social-links {
    display: flex;
    justify-content: center;
  }

  .footer .social-links li {
    margin-bottom: 0;
    margin-right: 9px;
  }

  .footer .social-links li:last-child {
    margin-right: 0;
  }
}

@media (max-width: 374px) {
  .fact-item__inner {
    padding-left: 20px;
  }

  .second .btn-contact {
    max-width: 300px;
  }

  .fact-item__title a {
    margin-left: 15px;
  }
}