body {
  margin: 0;
}

.header {
  height: 90px;
  color: #ffffff;
  background-color: #262626;
}
.header header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
  max-width: 1440px;
  height: 100%;
  margin: 0 auto;
  padding: 0 80px;
}
.header header .mobile {
  display: none;
}
.header header div a {
  color: #ffffff;
  font-family: Inter, sans-serif;
  text-decoration: none;
}
.header header div a.active {
  font-weight: 700;
}
.header header div a:not(:last-child) {
  margin-right: 30px;
}
@media screen and (max-width: 768px) {
  .header {
    height: 68px;
  }
  .header header {
    display: flex;
    padding: 0 24px;
  }
  .header header .desktop {
    display: none;
  }
  .header header .mobile {
    display: block;
  }
  .header header .navigation {
    position: relative;
  }
  .header header .navigation .burger-icon.active path {
    fill: #9cff94;
  }
  .header header .navigation .opened-menu {
    position: absolute;
    top: 34px;
    right: 0;
    z-index: 1000;
    display: none;
    flex-direction: column;
    width: 170px;
    height: 118px;
    overflow: hidden;
    background-color: #ffffff;
    border-radius: 4px;
  }
  .header header .navigation .opened-menu.active {
    display: flex;
  }
  .header header .navigation .opened-menu a {
    display: flex;
    align-items: center;
    height: 50%;
    margin: 0;
    padding-left: 20px;
    color: #262626;
  }
  .header header .navigation .opened-menu a.active {
    font-weight: 700;
    background-color: #9cff94;
  }
  .header header .navigation .opened-menu a:not(:last-child) {
    border-bottom: 1px solid rgba(38, 38, 38, 0.1);
  }
}

.content {
  box-sizing: border-box;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 80px;
}
@media screen and (max-width: 768px) {
  .content {
    width: 100%;
    padding: 0 24px;
  }
}
.footer {
  padding-top: 116px;
  padding-bottom: 52px;
  background-color: #262626;
}
.footer footer {
  color: #ffffff;
  font-family: Inter, sans-serif;
}
.footer footer .first-row {
  display: flex;
  justify-content: space-between;
}
.footer footer .first-row .layer {
  font-weight: 700;
  font-size: 18px;
}
.footer footer .first-row .email {
  color: #ffffff;
  font-weight: 700;
  font-size: 18px;
  text-decoration: none;
}
.footer footer .second-row {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
  font-size: 20px;
}
.footer footer .second-row .links {
  display: flex;
  flex-direction: column;
}
.footer footer .second-row .links a {
  color: #ffffff;
  text-align: end;
  text-decoration: none;
}
.footer footer .second-row .links a:not(:last-child) {
  margin-bottom: 11px;
}
.footer footer .bottom-line {
  display: flex;
  justify-content: space-between;
  margin-top: 70px;
  padding-top: 25px;
  border-top: 2px solid rgba(255, 255, 255, 0.15);
}
.footer footer .bottom-line .copyright {
  color: #7d7e86;
  font-weight: 600;
  font-size: 13px;
}
.footer footer .bottom-line .icons {
  display: flex;
}
.footer footer .bottom-line .icons .link:not(:last-child) {
  margin-right: 24px;
}
@media screen and (max-width: 768px) {
  .footer {
    padding-top: 60px;
    padding-bottom: 29px;
  }
  .footer footer {
    color: #ffffff;
    font-family: Inter, sans-serif;
  }
  .footer footer .first-row {
    display: flex;
    justify-content: space-between;
  }
  .footer footer .first-row .email {
    font-weight: 700;
    font-size: 14px;
  }
  .footer footer .second-row {
    display: flex;
    justify-content: space-between;
    margin-top: 36px;
    font-size: 16px;
  }
  .footer footer .second-row .desktop {
    display: none;
  }
  .footer footer .second-row .links {
    display: flex;
    flex-direction: column;
  }
  .footer footer .second-row .links a {
    text-align: start;
  }
  .footer footer .second-row .links a:not(:last-child) {
    margin-bottom: 11px;
  }
  .footer footer .bottom-line {
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-end;
    margin-top: 70px;
    padding-top: 25px;
    border-top: 2px solid rgba(255, 255, 255, 0.15);
  }
  .footer footer .bottom-line .copyright {
    color: #7d7e86;
    font-weight: 600;
    font-size: 13px;
  }
  .footer footer .bottom-line .icons {
    display: flex;
    margin-bottom: 20px;
  }
  .footer footer .bottom-line .icons .link:not(:last-child) {
    margin-right: 24px;
  }
}

