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

a {
  text-decoration: none;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

html,
body {
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  background: url(../img/bg.jpg) top left/100% no-repeat #FEFEFC;
  font-family: "Readex Pro", sans-serif;
  color: #0F0F0F;
  overflow-x: hidden;
}
body.active-menu {
  overflow: hidden;
}

h1 {
  margin-bottom: 16px;
  font-family: "Bowlby One", sans-serif;
  font-weight: 400;
  font-size: 50px;
  line-height: 60px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
@media (max-width: 1040px) {
  h1 {
    font-size: 28px;
    line-height: 34px;
    letter-spacing: 0.03em;
  }
}
h1.--inner {
  margin-bottom: 40px;
  font-family: "Red Hat Display", sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 44px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
@media (max-width: 1040px) {
  h1.--inner {
    font-size: 28px;
    line-height: 31px;
    text-align: center;
  }
}
h1 span {
  color: #59C28A;
}

h2 {
  font-weight: 600;
  font-size: 24px;
  line-height: 29px;
}
@media (max-width: 1040px) {
  h2 {
    font-size: 22px;
    line-height: 26px;
  }
}

h3 {
  font-family: "Red Hat Display", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #0F0F0F;
}
@media (max-width: 1040px) {
  h3 {
    font-size: 18px;
    line-height: 22px;
  }
}

h4 {
  font-weight: 500;
  font-size: 18px;
  line-height: 20px;
}

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

header {
  padding: 16px 0;
  background: #0F0F0F;
}
@media (max-width: 1040px) {
  header {
    padding: 12px 0;
  }
}
header .container {
  display: flex;
  align-items: center;
}
header .container .logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1040px) {
  header .container .logo {
    width: 147px;
  }
  header .container .logo img {
    width: 100%;
  }
}
header .container .menu-btn {
  display: none;
  position: relative;
  width: 56px;
  height: 40px;
  margin-left: auto;
  background: none;
  border: none;
  border-radius: 16px;
  cursor: pointer;
}
@media (max-width: 1040px) {
  header .container .menu-btn {
    display: block;
  }
}
header .container .menu-btn .nav-icon {
  margin: 0;
  width: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
header .container .menu-btn .nav-icon::after, header .container .menu-btn .nav-icon::before, header .container .menu-btn .nav-icon span {
  background-color: #fff;
  content: "";
  display: block;
  height: 2px;
  margin: 4px 0;
  transition: all 0.2s ease-in-out 0s;
  border-radius: 10px;
}
header .container .menu {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-left: auto;
}
@media (max-width: 1040px) {
  header .container .menu {
    flex-direction: column;
    position: fixed;
    width: 100%;
    top: 80px;
    right: -100%;
    height: calc(100vh - 80px);
    gap: 24px;
    padding: 48px 24px;
    background: #0F0F0F;
    z-index: 1;
    transition: 0.3s ease;
  }
}
header .container .menu a {
  font-weight: 400;
  color: #FFF;
  text-transform: uppercase;
  transition: 0.3s ease;
}
header .container .menu a:hover {
  color: #59C28A;
}
header .container .menu a.contact-btn {
  padding: 14px 38px;
  font-weight: 500;
  border: 2px solid #59C28A;
  border-radius: 24px;
  background: transparent;
  transition: 0.3s ease;
}
@media (max-width: 1040px) {
  header .container .menu a.contact-btn {
    width: 100%;
    margin-top: 16px;
    text-align: center;
  }
}
header .container .menu a.contact-btn:hover {
  color: #0F0F0F;
  background: #FAE280;
}

.breadcrumbs {
  padding: 24px 0;
}
.breadcrumbs ul {
  display: flex;
  align-items: center;
}
.breadcrumbs ul li {
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: 14px;
  line-height: 15px;
  text-transform: capitalize;
  color: #B3C8CD;
}
.breadcrumbs ul li a {
  font-weight: 400;
  font-size: 14px;
  line-height: 15px;
  color: #121618;
}
.breadcrumbs ul li:not(:first-child):before {
  margin: 0 6px;
  content: "/";
}

.hero {
  margin-bottom: 80px;
  padding-bottom: 170px;
  background: url(../img/hero-bg.svg) left bottom/100% no-repeat;
}
@media (max-width: 1040px) {
  .hero {
    margin-bottom: 72px;
    padding-bottom: 120px;
    background: url(../img/hero-bg-xs.svg) left bottom/100% no-repeat;
  }
}
.hero .container {
  display: flex;
  gap: 100px;
  padding-top: 60px;
}
@media (max-width: 1040px) {
  .hero .container {
    position: relative;
    padding-top: 48px;
  }
}
.hero__title {
  flex: 1 1 58%;
}
@media (max-width: 1040px) {
  .hero__title {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1 1 100%;
  }
}
.hero__title p {
  margin-bottom: 40px;
  font-weight: 300;
  font-size: 17px;
  line-height: 24px;
}
@media (max-width: 1040px) {
  .hero__title p {
    margin-bottom: 32px;
    font-size: 15px;
    line-height: 21px;
  }
}
.hero__img {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  margin-right: -5vw;
}
@media (max-width: 1400px) {
  .hero__img {
    position: absolute;
    bottom: 40px;
    right: 0;
    width: 160px;
    margin: 0;
  }
}
@media (max-width: 660px) {
  .hero__img {
    bottom: 72px;
  }
}
.hero__img img {
  max-width: 100%;
}
.hero__about {
  display: flex;
  max-width: 588px;
  gap: 24px;
  margin-bottom: 56px;
}
@media (max-width: 1040px) {
  .hero__about {
    flex-direction: column;
    max-width: 65%;
    margin-bottom: 40px;
  }
}
.hero__about-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-weight: 500;
  font-size: 16px;
  line-height: 18px;
}
.hero__btn {
  padding: 15px 90px;
  border-radius: 24px;
  background: #0F0F0F;
  font-weight: 500;
  font-size: 16px;
  line-height: 18px;
  letter-spacing: 0.02em;
  color: #FFFFFF;
  text-transform: uppercase;
  transition: 0.3s ease;
}
@media (max-width: 560px) {
  .hero__btn {
    width: 100%;
    text-align: center;
  }
}
.hero__btn:hover {
  color: #0F0F0F;
  background: #FAE280;
}

.about__hero {
  margin-bottom: 24px;
}
.about__hero > .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: calc(100% - 48px);
  max-width: 1332px;
  padding: 22px 54px;
  background: #F8FBF9;
  border-radius: 4px;
}
@media (max-width: 1040px) {
  .about__hero > .container {
    flex-direction: column;
    gap: 40px;
    padding: 24px 16px;
  }
}
.about__hero-desc {
  width: 50%;
  max-width: 600px;
}
@media (max-width: 1040px) {
  .about__hero-desc {
    width: 100%;
    max-width: none;
  }
}
.about__hero-desc p {
  font-weight: 300;
  font-size: 17px;
  line-height: 24px;
}
@media (max-width: 1040px) {
  .about__hero-desc p {
    font-size: 15px;
    line-height: 21px;
  }
}
.about__hero-desc p + p {
  margin-top: 8px;
}
.about__hero-img {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1040px) {
  .about__hero-img {
    max-width: 284px;
  }
}
.about__hero-img img {
  max-width: 100%;
}

.mission {
  margin-bottom: 96px;
}
@media (max-width: 1040px) {
  .mission {
    margin-bottom: 72px;
  }
}
.mission .container {
  display: flex;
  max-width: 1380px;
  gap: 24px;
}
@media (max-width: 1040px) {
  .mission .container {
    flex-direction: column;
  }
}
.mission h3 {
  margin-bottom: 24px;
}
@media (max-width: 1040px) {
  .mission h3 {
    text-align: center;
  }
}
.mission p {
  font-weight: 300;
  font-size: 17px;
  line-height: 24px;
}
@media (max-width: 1040px) {
  .mission p {
    font-size: 15px;
    line-height: 21px;
  }
}
.mission p + p {
  margin-top: 8px;
}
.mission__left {
  padding: 24px 54px;
  max-width: 551px;
  background: rgba(179, 200, 205, 0.24);
  border-radius: 4px;
}
@media (max-width: 1040px) {
  .mission__left {
    max-width: 100%;
    padding: 24px 16px;
  }
}
.mission__right {
  padding: 24px 54px;
  background: rgba(89, 194, 138, 0.24);
  border-radius: 4px;
}
@media (max-width: 1040px) {
  .mission__right {
    padding: 24px 16px;
  }
}

.description {
  margin-bottom: 96px;
}
@media (max-width: 1040px) {
  .description {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 72px;
    padding: 16px;
  }
}
.description .container {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}
.description .container.--top {
  margin-bottom: 60px;
}
@media (max-width: 1040px) {
  .description .container.--top {
    flex-direction: column;
    gap: 16px;
    margin-bottom: 0;
  }
}
.description .container.--bot {
  align-items: center;
}
@media (max-width: 1040px) {
  .description .container.--bot {
    flex-direction: column;
    gap: 16px;
  }
}
.description .container .short__description {
  flex: 1 1 25%;
}
.description .container .short__description h3 {
  margin-bottom: 24px;
}
.description .container .short__description p {
  font-weight: 300;
  font-size: 17px;
  line-height: 24px;
}
@media (max-width: 1040px) {
  .description .container .short__description p {
    font-size: 15px;
    line-height: 21px;
  }
}
.description .container .short__description.--one, .description .container .short__description.--three {
  flex: 1 1 9%;
  position: relative;
}
@media (max-width: 1040px) {
  .description .container .short__description.--one, .description .container .short__description.--three {
    flex: 1 1 100%;
  }
}
.description .container .short__description.--one img, .description .container .short__description.--three img {
  position: absolute;
  left: 94px;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 1040px) {
  .description .container .short__description.--one img, .description .container .short__description.--three img {
    position: relative;
    left: 0;
    top: 0;
    transform: none;
  }
}
.description .container .short__description.--two {
  display: flex;
  gap: 24px;
}
@media (max-width: 1040px) {
  .description .container .short__description.--two {
    flex-direction: column;
    gap: 16px;
  }
}
.description .container .short__description.--two > * {
  flex: 1 1 auto;
}
.description .container .short__description.--two.--column {
  flex-direction: column;
  gap: 0;
}

.services {
  margin-bottom: 96px;
}
@media (max-width: 1040px) {
  .services {
    margin-bottom: 72px;
  }
}
.services__title h3 {
  margin-bottom: 24px;
  text-align: center;
}
.services__title p {
  width: 100%;
  max-width: 807px;
  margin: 0 auto 32px;
  font-weight: 300;
  font-size: 17px;
  line-height: 24px;
  color: #0F0F0F;
  text-align: center;
}
@media (max-width: 1040px) {
  .services__title p {
    font-size: 15px;
    line-height: 21px;
  }
}
.services__title.--wide p {
  max-width: 1016px;
}
.services__list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
@media (max-width: 768px) {
  .services__list {
    flex-direction: column;
  }
}
.services__list-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1 1 23%;
  padding: 24px;
  border-radius: 4px;
  transition: 0.3s ease;
}
@media (max-width: 1040px) {
  .services__list-item {
    flex: 1 1 47%;
  }
}
.services__list-item:hover {
  background: #FEFEFC;
  box-shadow: 2px 2px 24px rgba(179, 200, 205, 0.5);
}
.services__list-item img {
  margin-bottom: 16px;
}
.services__list-item h4 {
  margin-bottom: 34px;
  text-align: center;
}
.services__list-item ul {
  list-style: disc;
  padding-left: 24px;
}
@media (max-width: 768px) {
  .services__list-item ul {
    width: 100%;
  }
}
.services__list-item ul li {
  font-weight: 300;
  font-size: 15px;
  line-height: 19px;
}

.why-us {
  margin-bottom: 96px;
}
@media (max-width: 1040px) {
  .why-us {
    margin-bottom: 72px;
  }
}
.why-us .container {
  display: flex;
  gap: 154px;
}
@media (max-width: 1040px) {
  .why-us .container {
    flex-direction: column;
    gap: 40px;
  }
}
.why-us__img {
  display: flex;
  flex-direction: column;
  max-width: 100%;
  gap: 72px;
}
@media (max-width: 1040px) {
  .why-us__img {
    align-items: center;
    gap: 40px;
  }
  .why-us__img img {
    max-width: 240px;
  }
}
.why-us__list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (max-width: 1040px) {
  .why-us__list {
    gap: 16px;
  }
}
.why-us__list-item {
  display: flex;
  align-items: center;
  gap: 24px;
}
.why-us__list-item:nth-child(odd) {
  margin-left: 104px;
}
@media (max-width: 1040px) {
  .why-us__list-item:nth-child(odd) {
    margin-left: 0;
  }
}
.why-us__list-item:nth-child(even) {
  margin-right: 104px;
  padding: 12px 8px;
  background: #F3F8F4;
  box-shadow: 2px 3px 12px rgba(0, 0, 0, 0.12);
  border-radius: 4px;
}
@media (max-width: 1040px) {
  .why-us__list-item:nth-child(even) {
    margin-right: 0;
  }
}
.why-us__list-item p {
  font-weight: 300;
  font-size: 17px;
  line-height: 24px;
}
@media (max-width: 1040px) {
  .why-us__list-item p {
    font-size: 15px;
    line-height: 21px;
  }
}
.why-us__list-item p b {
  font-weight: 600;
  font-size: 18px;
  line-height: 25px;
}

.in-touch {
  margin-bottom: 96px;
}
@media (max-width: 1040px) {
  .in-touch {
    margin-bottom: 72px;
  }
}
.in-touch .container {
  max-width: 1332px;
  padding: 40px 0 60px;
  background: url(../img/in-touch-bg.png) left top/100% no-repeat;
}
@media (max-width: 1040px) {
  .in-touch .container {
    padding: 40px 24px;
    background: url(../img/in-touch-bg-xs.svg) left top/100% no-repeat;
  }
}
.in-touch__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 808px;
  margin: 0 auto;
  text-align: center;
}
.in-touch__wrapper h2 {
  margin-bottom: 16px;
  color: #2C3A3A;
}
.in-touch__wrapper h3 {
  margin-bottom: 24px;
}
.in-touch__wrapper p {
  margin-bottom: 16px;
  font-weight: 300;
  font-size: 17px;
  line-height: 24px;
}
@media (max-width: 1040px) {
  .in-touch__wrapper p {
    font-size: 15px;
    line-height: 21px;
  }
}
.in-touch__btn {
  margin-top: 24px;
  padding: 15px 90px;
  border-radius: 24px;
  background: #59C28A;
  font-weight: 500;
  font-size: 16px;
  line-height: 18px;
  letter-spacing: 0.02em;
  color: #0F0F0F;
  text-transform: uppercase;
  transition: 0.3s ease;
}
.in-touch__btn:hover {
  color: #FFF;
  background: #0F0F0F;
}

.approach {
  margin-bottom: 96px;
}
@media (max-width: 1040px) {
  .approach {
    margin-bottom: 72px;
  }
}
.approach .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
@media (max-width: 1040px) {
  .approach .container {
    flex-direction: column;
    gap: 40px;
  }
}
.approach__desc {
  width: 58%;
  max-width: 704px;
}
@media (max-width: 1040px) {
  .approach__desc {
    width: 100%;
    max-width: none;
  }
}
.approach__desc h3 {
  margin-bottom: 16px;
}
@media (max-width: 1040px) {
  .approach__desc h3 {
    text-align: center;
  }
}
.approach__desc p {
  font-weight: 300;
  font-size: 17px;
  line-height: 24px;
}
@media (max-width: 1040px) {
  .approach__desc p {
    font-size: 15px;
    line-height: 21px;
  }
}
.approach__img {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 24px;
}
@media (max-width: 1040px) {
  .approach__img {
    max-width: 303px;
    padding-left: 0;
  }
}
.approach__img img {
  max-width: 100%;
}

.contacts__title {
  min-height: 376px;
  margin-bottom: 40px;
  background: url(../img/contacts-bg.png) left bottom/100% no-repeat;
}
@media (max-width: 1040px) {
  .contacts__title {
    min-height: 432px;
    background: url(../img/contacts-bg-xs.svg) left bottom/100% no-repeat;
  }
}
.contacts__title h1 {
  margin-top: 88px;
}
@media (max-width: 1040px) {
  .contacts__title h1 {
    margin-top: 24px;
  }
}

.policy__title {
  min-height: 376px;
  margin-bottom: 40px;
  background: url(../img/privacy-bg.png) left bottom/100% no-repeat;
}
@media (max-width: 1040px) {
  .policy__title {
    min-height: 432px;
    background: url(../img/privacy-bg-xs.svg) left bottom/100% no-repeat;
  }
}
.policy__title h1 {
  margin-top: 88px;
}
@media (max-width: 1040px) {
  .policy__title h1 {
    margin-top: 24px;
  }
}

.contacts__wrapper {
  margin-bottom: 96px;
}
@media (max-width: 1040px) {
  .contacts__wrapper {
    margin-bottom: 72px;
  }
}
.contacts__wrapper-title {
  margin-bottom: 32px;
}
.contacts__wrapper-title h3 {
  margin-bottom: 16px;
}
.contacts__wrapper-title p {
  font-weight: 300;
  font-size: 17px;
  line-height: 24px;
}
@media (max-width: 1040px) {
  .contacts__wrapper-title p {
    font-size: 15px;
    line-height: 21px;
  }
}
.contacts__wrapper-items {
  display: flex;
  gap: 24px;
}
@media (max-width: 1040px) {
  .contacts__wrapper-items {
    flex-direction: column;
  }
}
.contacts__wrapper-address {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  min-width: 40%;
  height: 360px;
  background: #F8FBF9;
  border-radius: 4px;
}
@media (max-width: 1040px) {
  .contacts__wrapper-address {
    height: 212px;
  }
}
.contacts__wrapper-address img {
  margin-bottom: 16px;
}
.contacts__wrapper-address p {
  margin-bottom: 12px;
  font-weight: 600;
  font-size: 18px;
  line-height: 20px;
  text-align: center;
  text-transform: capitalize;
}
.contacts__wrapper-address a {
  font-weight: 300;
  font-size: 16px;
  line-height: 21px;
  color: #0F0F0F;
  text-align: center;
}
.contacts__wrapper-map {
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
}
@media (max-width: 1040px) {
  .contacts__wrapper-map {
    height: 360px;
  }
}

.text__wrapper {
  margin-bottom: 96px;
}
@media (max-width: 1040px) {
  .text__wrapper {
    margin-bottom: 24px;
  }
}
.text__wrapper .container {
  padding: 24px 104px;
}
@media (max-width: 1040px) {
  .text__wrapper .container {
    padding: 0 24px;
  }
}
.text__wrapper .container p {
  margin-bottom: 16px;
  font-weight: 300;
  font-size: 17px;
  line-height: 24px;
}
@media (max-width: 1040px) {
  .text__wrapper .container p {
    font-size: 15px;
    line-height: 21px;
  }
}
.text__wrapper .container ul {
  padding: 8px 104px;
  list-style: disc;
}
@media (max-width: 1040px) {
  .text__wrapper .container ul {
    padding: 8px 16px 8px 32px;
  }
}
.text__wrapper .container ul li {
  padding: 16px 8px;
  background: #F8FBF9;
  border-radius: 4px;
  font-weight: 300;
  font-size: 16px;
  line-height: 21px;
}
.text__wrapper .container ul li b {
  font-weight: 500;
}
.text__wrapper .container ul li + li {
  margin-top: 16px;
}
.text__wrapper .container h2 {
  margin-bottom: 24px;
}
.text__wrapper .text-container {
  margin-bottom: 56px;
}
@media (max-width: 1040px) {
  .text__wrapper .text-container {
    margin-bottom: 48px;
  }
}
.text__wrapper-cols {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
@media (max-width: 1040px) {
  .text__wrapper-cols {
    flex-direction: column;
    gap: 16px;
  }
}
.text__wrapper-cols h2 {
  margin-bottom: 24px;
}
.text__wrapper-cols.--col-2 {
  gap: 16px 24px;
}
.text__wrapper-cols.--col-2 h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  text-transform: capitalize;
}
.text__wrapper-cols.--col-2 p {
  font-weight: 300;
  font-size: 16px;
  line-height: 21px;
}
@media (max-width: 1040px) {
  .text__wrapper-cols.--col-2 p {
    font-size: 15px;
  }
}
.text__wrapper-cols.--col-2 .--circle {
  flex: 1 1 calc(50% - 24px);
  padding: 16px;
}
.text__wrapper-cols.--col-2 .--circle h3 span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  padding: 2px;
}
.text__wrapper-cols.--col-2 .--circle h3 span:before {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #56DF83;
  content: "";
}
.text__wrapper-cols.--col-2 .--bg {
  flex: 1 1 calc(50% - 24px);
  padding: 16px;
  background: #F8FBF9;
  border-radius: 4px;
}
.text__wrapper-cols.--col-3 .--shadow {
  flex: 1 1 calc(33% - 24px);
  padding: 8px 16px;
  background: #FFFFFF;
  box-shadow: 4px 4px 12px #F8F3EF;
  border-radius: 2px;
  text-align: center;
}
.text__wrapper-cols.--col-3 .--shadow h3 {
  margin-bottom: 8px;
  text-transform: capitalize;
}
.text__wrapper-cols.--col-3 .--shadow p {
  font-weight: 300;
  font-size: 16px;
  line-height: 21px;
}
@media (max-width: 1040px) {
  .text__wrapper-cols.--col-3 .--shadow p {
    font-size: 15px;
  }
}

.sitemap {
  display: flex;
  flex-direction: column;
  padding-top: 127px;
}
@media (max-width: 1040px) {
  .sitemap {
    padding-top: 96px;
  }
}
.sitemap h1 {
  text-align: center;
}
.sitemap__wrapper {
  width: 100%;
  margin-bottom: 96px;
  padding: 40px 24px;
  background: #F8FBF9;
  border-radius: 8px;
}
@media (max-width: 1040px) {
  .sitemap__wrapper {
    padding: 24px 16px;
  }
}
.sitemap__wrapper h3 {
  margin-bottom: 40px;
}
@media (max-width: 1040px) {
  .sitemap__wrapper h3 {
    margin-bottom: 24px;
  }
}
.sitemap__wrapper-list {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
@media (max-width: 1040px) {
  .sitemap__wrapper-list {
    gap: 16px;
    flex-direction: column;
  }
}
.sitemap__wrapper-list a {
  display: flex;
  align-items: center;
  flex: 1 1 calc(33% - 40px);
  gap: 8px;
  font-weight: 400;
  font-size: 17px;
  line-height: 24px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #0F0F0F;
  transition: 0.3s ease;
}
.sitemap__wrapper-list a:hover {
  color: #56DF83;
}
.sitemap__wrapper-list a span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  padding: 2px;
}
.sitemap__wrapper-list a span:before {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #56DF83;
  content: "";
}

footer {
  margin-top: auto;
  padding: 64px 0 55px;
  background: #0F0F0F;
}
@media (max-width: 1040px) {
  footer {
    padding-bottom: 48px;
  }
}
footer hr {
  width: 100%;
  height: 0;
  margin: 40px 0 24px;
  border: 1px solid #FFFFFF;
}
footer .container.--top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1040px) {
  footer .container.--top {
    flex-direction: column;
    gap: 24px;
  }
}
footer .container.--top .menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
@media (max-width: 1040px) {
  footer .container.--top .menu {
    flex-direction: column;
    gap: 24px;
  }
}
footer .container.--top .menu a {
  font-weight: 400;
  font-size: 16px;
  line-height: 18px;
  letter-spacing: 0.02em;
  color: #FFF;
  text-transform: uppercase;
}
footer .container.--top .socials {
  display: flex;
  align-items: center;
  gap: 24px;
}
footer .container.--top .socials a {
  display: flex;
  align-items: center;
  justify-content: center;
}
footer .container.--bot {
  display: flex;
  justify-content: center;
}
footer .container.--bot .links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
@media (max-width: 1040px) {
  footer .container.--bot .links {
    flex-direction: column;
    gap: 24px;
  }
}
footer .container.--bot .links a {
  font-weight: 300;
  font-size: 16px;
  line-height: 18px;
  color: #59C28A;
}
footer .container.--bot .links a:hover {
  text-decoration: underline;
}

@media (max-width: 1040px) {
  .active-menu header .menu {
    right: 0 !important;
  }
  .active-menu .menu-btn .nav-icon::before {
    transform: translateY(12px) rotate(135deg);
  }
  .active-menu .menu-btn .nav-icon::after {
    transform: translateY(-12px) rotate(-135deg);
  }
  .active-menu .menu-btn .nav-icon span {
    transform: scale(0);
  }
  .active-menu .menu-btn .nav-icon::after,
  .active-menu .menu-btn .nav-icon::before,
  .active-menu .menu-btn .nav-icon span {
    margin: 10px 0 !important;
  }
}

/*# sourceMappingURL=main.css.map */
