@import url(https://fonts.googleapis.com/css?family=Poppins:regular,500,700&display=swap);
html {
  max-width: 100%;
  margin: 0;
  font-family: "Poppins";
}

[class$=__container] {
  max-width: 1326px;
  padding: 0 25px;
  margin: 0 auto;
}

main {
  overflow: hidden;
}

.header {
  background: #121212;
}

.header__container {
  min-height: 85px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  gap: 20px;
}
@media (max-width: 576px) {
  .header__container {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-top: 20px;
    gap: 30px;
  }
}
.header__block-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
@media (max-width: 576px) {
  .header__block-menu {
    width: 100%;
  }
}
.header__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header__logo {
  z-index: 20;
  margin-right: 107px;
}
@media (max-width: 576px) {
  .header__logo {
    margin-right: 0;
  }
}
.header__logo img {
  display: block;
  height: 38px;
  width: auto;
}
.header__menu {
  position: relative;
}
.header__menu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 37px;
}
@media (max-width: 1220px) {
  .header__menu ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    line-height: 2;
    padding: 150px 15px 100px;
  }
}
.header__menu ul a {
  position: relative;
  font-size: 15px;
  font-weight: 500;
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}
@media (max-width: 1220px) {
  .header__menu ul a {
    font-size: 28px;
    color: gainsboro;
  }
}
.header__menu ul a::before {
  content: "";
  height: 3px;
  position: absolute;
  background-color: #52CECE;
  top: calc(100% + 2px);
  left: 50%;
  width: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border-radius: 2px;
}
.header__menu ul a:hover {
  color: #52CECE;
}
.header__menu ul a:hover::before {
  width: 100%;
  left: 0;
}
.header__link {
  -ms-flex-item-align: center;
      align-self: center;
  border-radius: 5px;
  border: 1px solid #52CECE;
  min-width: 175px;
  display: inline-block;
  padding: 10px;
  color: #52CECE;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  z-index: 20;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.header__link:hover {
  color: #252525;
  background-color: #52CECE;
  opacity: 0.9;
}
@media (max-width: 576px) {
  .header__link {
    display: none;
  }
}

.menu-header-menu-container {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (max-width: 1220px) {
  .menu-header-menu-container {
    position: fixed;
    z-index: 10;
    width: 100%;
    height: 100%;
    top: 0;
    left: -100%;
    background-color: #252525;
    overflow-y: auto;
  }
}
.burger-open .menu-header-menu-container {
  left: 0;
}

.footer {
  width: 100%;
  background: #121212;
}
.footer span {
  color: #52CECE;
}
@media (max-width: 768px) {
  .footer {
    padding: 32px 0;
  }
}
@media (max-width: 920px) {
  .footer__left {
    margin-bottom: 20px;
  }
}
.footer__text {
  color: #FFF;
  font-family: "Nexa Bold";
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 10px;
}

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

.text {
  max-width: 324px;
  width: 100%;
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
  line-height: 1.2;
}

.footer__cols {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 51px;
}
@media (max-width: 1020px) {
  .footer__cols {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-bottom: 20px;
  }
}

.footer__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 82px;
     -moz-column-gap: 82px;
          column-gap: 82px;
}
@media (max-width: 480px) {
  .footer__right {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    row-gap: 20px;
  }
}

.footer__block {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.footer__block-title {
  color: #FFF;
  font-size: 15px;
  line-height: 1.2;
  margin-bottom: 15px;
}

.menu-item {
  color: rgba(255, 255, 255, 0.5);
  font-size: 15px;
  line-height: 1.2;
  margin-bottom: 10px;
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}
.menu-item:hover {
  color: #52CECE;
}

.footer__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  min-height: 100%;
}
@media (max-width: 1020px) {
  .footer__bottom {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 20px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.footer__box-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  gap: 41px;
  -ms-flex-item-align: stretch;
      align-self: stretch;
}
@media (max-width: 1020px) {
  .footer__box-bottom {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 10px;
  }
}
@media (max-width: 768px) {
  .footer__box-bottom {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

p.footer__copy {
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
  line-height: 1.2;
}

.footer__bottom-cols {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 22px;
}

.footer__bottom-cols > li {
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
  line-height: 1.2;
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}
.footer__bottom-cols > li:hover {
  color: #52CECE;
}

.footer-logo-link {
  width: 794px;
}
@media (max-width: 768px) {
  .footer-logo-link {
    max-width: 575px;
    width: 100%;
    height: auto;
  }
}
.footer-logo-link img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  border: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

*::before,
*::after {
  display: inline-block;
}

a {
  text-decoration: none;
  color: inherit;
  display: inline-block;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  font-size: inherit;
}

html,
body {
  line-height: 1;
  height: 100%;
}

input,
button,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  background-color: transparent;
}

button,
select {
  cursor: pointer;
}

input[type=text],
input[type=email],
input[type=tel],
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

@font-face {
  font-family: "Nexa Bold";
  src: url("../fonts/NexaBold.woff") format("woff"), url("../fonts/NexaBold.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}
.header__burger {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background-color: transparent;
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  z-index: 20;
  border: 2px solid #52CECE;
  display: none;
}
.header__burger span, .header__burger::before, .header__burger::after {
  content: "";
  -webkit-transition: all 0.1s ease 0s;
  transition: all 0.1s ease 0s;
  right: 15%;
  position: absolute;
  width: 70%;
  height: 2px;
  background-color: #52CECE;
}
.header__burger::before {
  top: 12px;
}
.header__burger::after {
  bottom: 12px;
}
.header__burger span {
  top: calc(50% - 1px);
}
.burger-open .header__burger span {
  width: 0;
}
.burger-open .header__burger::before {
  top: calc(50% - 1px);
  -webkit-transform: rotate(135deg);
      -ms-transform: rotate(135deg);
          transform: rotate(135deg);
}
.burger-open .header__burger::after {
  bottom: calc(50% - 1px);
  -webkit-transform: rotate(225deg);
      -ms-transform: rotate(225deg);
          transform: rotate(225deg);
}
@media (max-width: 1220px) {
  .header__burger {
    display: block;
  }
}

.no-scroll {
  overflow: hidden;
}

body {
  background-color: #121212;
}