html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
main,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section {
  display: block;
}

*[hidden] {
  display: none;
}

body {
  line-height: 1;
}

menu,
ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  text-decoration: none;
}

button {
  border: none;
  background-color: transparent;
  cursor: pointer;
  padding: 0;
  font-family: var(--font-family);
}

input {
  font-family: var(--font-family);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body,
html,
.wrapper {
  width: 100%;
  height: 100%;
}

:root {
  --container-width: 1165px;
  --container-intend: 15px;
  --white: #fff;
  --black: #000;
  --accent: #FFD44C;
  --font-family: Raleway;
  --font-size: 16px;
  --line-height: normal;
  --font-weight: 400;
  --background: #FFF7EC;
  --color: #000;
}

body {
  position: relative;
  font-size: var(--font-size);
  line-height: var(--line-height);
  font-family: var(--font-family);
  font-weight: var(--font-weight);
  background-color: var(--background);
  color: var(--color);
}

html {
  scroll-behavior: smooth;
  min-width: 360px;
  overflow-x: hidden;
}

[class$=__container] {
  max-width: var(--container-width);
  padding: 0 var(--container-intend);
  margin: 0 auto;
}

html, body {
  height: 100%;
  width: 100%;
}

body {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

.header {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  padding: 30px 0;
}
.header.header-white {
  position: static;
  background: #FFF7EC;
  border-bottom: 1px solid rgba(7, 25, 26, 0.3);
}
.header.header-white .header__logo {
  color: #07191A;
}
.header.header-white .header__nav a {
  color: #07191A;
}
@media (max-width: 576px) {
  .header {
    padding: 14px 0;
  }
}
.header__container {
  display: flex;
  align-items: center;
  gap: 50px;
}
.header__logo {
  margin-right: auto;
  font-size: 20px;
  font-weight: 400;
  color: var(--white);
  text-transform: uppercase;
}
@media (max-width: 576px) {
  .header__logo {
    font-size: 14px;
  }
}
.header__nav {
  display: flex;
  gap: 60px;
}
@media (max-width: 1024px) {
  .header__nav {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .header__nav {
    display: none;
  }
}
.header__nav a {
  color: var(--white);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
}
.header__button {
  font-size: 12px !important;
}
@media (max-width: 768px) {
  .header__button {
    display: none;
  }
}
.header__menu {
  display: none;
}
@media (max-width: 768px) {
  .header__menu {
    display: block;
  }
}

.button {
  padding: 10px 45px;
  font-weight: 500;
  font-size: 16px;
  color: #222;
  text-transform: uppercase;
  background: var(--accent);
}

.menu__nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.menu__nav a {
  text-transform: uppercase;
  color: var(--white);
  font-size: 16px;
  font-weight: 500;
}
.menu__content {
  background: url("../images/menu.png") center/cover no-repeat, #444444;
  position: fixed;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 20px;
  width: 250px;
  gap: 42px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out;
}
.menu__content.active {
  opacity: 1;
  visibility: visible;
}
.menu__close {
  position: absolute;
  right: 23px;
  top: 14px;
}
.menu__social {
  position: relative;
  font-size: 16px;
  line-height: 22px;
  color: var(--white);
}
@media (any-hover: hover) {
  .menu__social:hover::before {
    opacity: 0;
  }
}
.menu__social::before {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  top: 100%;
  z-index: 1;
  height: 1px;
  background: var(--white);
  transition: opacity 0.2s ease-in-out;
}
.menu__button {
  font-size: 12px;
}

.hero {
  padding-top: 100px;
  height: 900px;
  background: url("../images/hero-1.jpg") center/cover no-repeat;
}
@media (max-width: 1024px) {
  .hero {
    height: 730px;
    background: url("../images/hero-tablet.png") center/cover no-repeat;
  }
}
@media (max-width: 576px) {
  .hero {
    background: url("../images/hero-mobile.png") center/cover no-repeat;
  }
}
.hero__container {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
}
.hero__title {
  margin-bottom: 28px;
  font-size: 60px;
  color: var(--white);
  font-weight: 400;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .hero__title {
    font-size: 40px;
  }
}
@media (max-width: 576px) {
  .hero__title {
    font-size: 35px;
  }
}
.hero__subtitle {
  display: flex;
  align-self: flex-end;
  gap: 10px;
  margin-bottom: 20px;
  max-width: 372px;
  font-size: 20px;
  color: var(--white);
  font-style: italic;
}
@media (max-width: 576px) {
  .hero__subtitle {
    font-size: 16px;
  }
}
.hero__list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  padding-top: 35px;
  padding-bottom: 50px;
  border-top: 1px solid rgba(255, 255, 245, 0.3);
}
@media (max-width: 768px) {
  .hero__list {
    grid-template-columns: 1fr 1fr;
    gap: 17px;
  }
}
@media (max-width: 576px) {
  .hero__list {
    padding: 16px 0 30px 0;
  }
}
.hero__list h3 {
  font-size: 40px;
  color: var(--white);
  margin-bottom: 10px;
}
.hero__list p {
  color: var(--white);
}

.work {
  padding: 40px 0;
}
.work__container {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
@media (max-width: 1024px) {
  .work__container {
    flex-direction: column;
    gap: 30px;
  }
}
.work__title {
  max-width: 200px;
}
@media (max-width: 1024px) {
  .work__title {
    max-width: 100%;
  }
}
.work__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 900px;
}
@media (max-width: 1024px) {
  .work__list {
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .work__list {
    grid-template-columns: 1fr;
  }
}
.work__list > li {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 280px;
  padding: 35px 40px;
  font-size: 18px;
  line-height: 140%;
}
@media (max-width: 768px) {
  .work__list > li {
    padding: 20px 30px;
  }
}
@media (max-width: 576px) {
  .work__list > li {
    min-height: 220px;
    padding: 40px 20px;
  }
}
.work__list > li ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.work__list > li ul > li {
  display: flex;
  gap: 8px;
  padding-left: 8px;
}
.work__list > li ul > li::before {
  content: "";
  display: inline-block;
  width: 3px;
  margin-top: 12px;
  height: 3px;
  flex-shrink: 0;
  border-radius: 100%;
  background: #000000;
}

.title {
  font-size: 40px;
  font-weight: 700;
  color: #07191A;
}
@media (max-width: 1024px) {
  .title {
    font-size: 32px;
  }
}

.advantage {
  padding-bottom: 40px;
}
.advantage__container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (max-width: 576px) {
  .advantage__title {
    max-width: 280px;
  }
}
.advantage__list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
}
@media (max-width: 1024px) {
  .advantage__list {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .advantage__list {
    grid-template-columns: 1fr;
  }
}
.advantage__list li {
  display: grid;
  grid-template-rows: 1fr 1fr 1fr;
  justify-items: start;
  padding: 40px;
  min-height: 340px;
  background: #EFEDE5;
}
@media (max-width: 576px) {
  .advantage__list li {
    min-height: 305px;
    padding: 35px 35px 20px 35px;
  }
  .advantage__list li:nth-of-type(5) {
    padding-right: 20px;
  }
}
.advantage__list li h3 {
  font-size: 18px;
  font-weight: 500;
  color: #07191A;
  text-transform: uppercase;
}
.advantage__list li svg {
  flex-shrink: 0;
}
.advantage__list li p {
  color: #07191A;
}
.advantage__list li div {
  display: flex;
  width: 100%;
  gap: 10px;
  justify-content: space-between;
  margin-bottom: 12px;
}
.advantage__list li a {
  margin-top: auto;
  font-size: 12px;
}

.about {
  background: #EFEDE5;
}
.about__container {
  position: relative;
  padding: 60px 15px;
}
@media (max-width: 768px) {
  .about__container {
    padding: 20px 15px;
  }
}
.about__content {
  display: flex;
  justify-content: flex-end;
  padding: 90px 80px 60px 0;
  border: 1px solid #748A80;
  border-radius: 20px;
}
@media (max-width: 1024px) {
  .about__content {
    padding: 50px 30px 50px 0px;
  }
}
@media (max-width: 768px) {
  .about__content {
    padding: 30px 15px 300px 15px;
  }
}
.about__wrapper {
  max-width: 500px;
}
@media (max-width: 1024px) {
  .about__wrapper {
    max-width: 335px;
  }
}
@media (max-width: 768px) {
  .about__wrapper {
    max-width: 100%;
  }
}
.about__list {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
@media (max-width: 1024px) {
  .about__list {
    gap: 10px;
  }
}
.about__list div {
  display: flex;
  align-items: center;
  margin-bottom: 17px;
  gap: 25px;
}
@media (max-width: 1024px) {
  .about__list div {
    gap: 10px;
  }
}
@media (max-width: 576px) {
  .about__list div {
    margin-bottom: 10px;
  }
}
.about__list svg {
  flex-shrink: 0;
}
.about__list h3 {
  font-size: 30px;
  text-transform: uppercase;
  font-weight: 700;
}
@media (max-width: 1024px) {
  .about__list h3 {
    font-size: 23px;
  }
}
@media (max-width: 768px) {
  .about__list h3 {
    font-size: 20px;
  }
}
.about__list p {
  padding-left: 40px;
  margin-bottom: 10px;
}
@media (max-width: 1024px) {
  .about__list p {
    padding-left: 26px;
  }
}
.about__list strong {
  font-weight: 700;
}
.about__person {
  position: absolute;
  bottom: 0;
  right: 600px;
}
@media (max-width: 1024px) {
  .about__person {
    right: 400px;
  }
}
@media (max-width: 768px) {
  .about__person {
    width: 240px;
    right: 50%;
    transform: translateX(50%);
  }
}

.banner {
  margin-top: 40px;
  padding: 70px 0 50px 0;
  background: url("../images/banner.jpg") center/cover no-repeat;
}
.banner__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}
@media (max-width: 576px) {
  .banner__title {
    text-align: center;
  }
}
.banner__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 900px;
  width: 100%;
  gap: 16px;
}
@media (max-width: 768px) {
  .banner__list {
    grid-template-columns: 1fr;
  }
}
.banner__list li {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 411px;
  width: 100%;
  padding: 60px 30px 0 30px;
  border: 1px solid #748A80;
  background: #FFF7EC;
}
@media (max-width: 576px) {
  .banner__list li {
    padding: 60px 10px 0 10px;
  }
}
.banner__list li p {
  margin-bottom: 65px;
  max-width: 260px;
  text-align: center;
  color: #9BAAA3;
  font-size: 20px;
  font-style: italic;
}
.banner__list li h3 {
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
}
.banner__list li h3 span {
  color: #9BAAA3;
}
.banner__list li div {
  max-width: 220px;
  text-align: center;
  font-size: 18px;
}
.banner__list li svg {
  position: absolute;
}
.banner__list li svg:nth-of-type(1) {
  top: 21px;
  left: 21px;
}
.banner__list li svg:nth-of-type(2) {
  top: 21px;
  right: 21px;
}
.banner__list li svg:nth-of-type(3) {
  bottom: 21px;
  left: 21px;
}
.banner__list li svg:nth-of-type(4) {
  bottom: 21px;
  right: 21px;
}
.banner__button {
  margin: 0 auto;
}

.footer {
  padding: 40px 0;
  background: #9BAAA3;
}
.footer__container {
  display: flex;
}
@media (max-width: 768px) {
  .footer__container {
    flex-direction: column;
    align-items: flex-start;
    gap: 35px;
  }
}
.footer__info {
  display: flex;
  flex-direction: column;
  margin-right: 100px;
}
.footer__info a {
  color: #07191A;
  font-size: 20px;
  text-transform: uppercase;
}
.footer__info p {
  margin-top: auto;
  font-size: 14px;
}
.footer__social a {
  position: relative;
  display: block;
  font-size: 20px;
  color: #07191A;
}
@media (any-hover: hover) {
  .footer__social a:hover::before {
    opacity: 0;
  }
}
.footer__social a::before {
  content: "";
  height: 1px;
  background: #07191A;
  width: 120%;
  position: absolute;
  top: 110%;
  left: 0;
  transition: opacity 0.2s ease-in-out;
}
.footer__nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
  margin-left: auto;
}
@media (max-width: 768px) {
  .footer__nav {
    margin-left: 0;
  }
}
.footer__nav a {
  position: relative;
  display: block;
  color: #07191A;
  font-size: 20px;
}
@media (any-hover: hover) {
  .footer__nav a:hover::before {
    opacity: 1;
  }
}
.footer__nav a::before {
  content: "";
  height: 1px;
  background: #07191A;
  width: 110%;
  position: absolute;
  top: 110%;
  left: 0;
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
}

.copyright-mobile {
  display: none;
}
@media (max-width: 768px) {
  .copyright-mobile {
    display: block;
  }
}
@media (max-width: 768px) {
  .copyright-desktop {
    display: none;
  }
}

.advice {
  margin-bottom: 40px;
  padding: 60px 0;
  background: url("../images/advice.png") center/cover no-repeat;
}
@media (max-width: 768px) {
  .advice {
    padding: 40px 0;
  }
}
.advice__container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.advice__title {
  margin-bottom: 14px;
}
@media (max-width: 576px) {
  .advice__title {
    text-align: center;
  }
}
.advice__subtitle {
  margin-bottom: 30px;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 600;
  color: #07191A;
}
.advice__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}
@media (max-width: 576px) {
  .advice__list {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.advice__list li {
  display: flex;
  align-items: center;
  gap: 13px;
}
.advice__list li div {
  color: rgba(116, 138, 128, 0.3);
  font-size: 100px;
  line-height: 1;
}
.advice__list li p {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 18px;
}
.advice__description {
  margin-bottom: 10px;
  color: #000;
}
@media (max-width: 576px) {
  .advice__description {
    text-align: center;
  }
}
.service {
  padding: 40px 0;
}
.service__container {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.accordion {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.accordion__item {
  background: #EFEDE5;
  border: 1px solid rgba(116, 138, 128, 0.41);
}
.accordion__item:nth-of-type(even) {
  background: #FFF7EC;
}
.accordion__item:nth-of-type(even) .accordion__button-icon {
  background: #EFEDE5;
}
.accordion__item.is-active .accordion__button-icon {
  transform: rotate(45deg);
}
.accordion__button {
  display: flex !important;
  align-items: center;
  gap: 30px;
  padding: 31px 54px !important;
  font: 700 18px var(--font-family);
  text-transform: uppercase;
}
@media (max-width: 576px) {
  .accordion__button {
    padding: 24px 10px !important;
    gap: 10px;
  }
}
.accordion__button::after {
  display: none !important;
  content: "";
}
@media (max-width: 576px) {
  .accordion__button-text {
    max-width: 240px;
  }
}
.accordion__button-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background: #FFF7EC;
  transition: transform 0.5s ease-in-out;
}
.accordion__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 30px 50px;
  border-top: 2px solid rgba(116, 138, 128, 0.41);
}
.accordion__content strong {
  font-weight: 700;
}
@media (max-width: 576px) {
  .accordion__content {
    padding: 20px 10px;
  }
}
.accordion__content ul {
  display: flex;
  flex-direction: column;
}
.accordion__content ul.no-disc li {
  padding-left: 0 !important;
}
.accordion__content ul.no-disc li::before {
  display: none;
}
.accordion__content ul li {
  display: flex;
  gap: 8px;
  padding-left: 8px;
}
.accordion__content ul li::before {
  content: "";
  display: inline-block;
  width: 3px;
  margin-top: 8px;
  height: 3px;
  flex-shrink: 0;
  border-radius: 100%;
  background: #000000;
}

.review {
  padding-top: 40px;
  position: relative;
}
.review::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: calc((100vw - var(--container-width)) / 2);
  background: var(--background);
  pointer-events: none;
  z-index: 2;
}
.review__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
.review__title {
  align-self: stretch;
}
.review__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
}
.review__slider {
  width: calc(100% + (100vw - 100%) / 2);
  overflow: visible;
}
@media (max-width: 576px) {
  .review__slider {
    width: 100%;
  }
}
.review__slider-navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  height: 44px;
}
@media (max-width: 576px) {
  .review__slider-navigation--desktop {
    display: none;
  }
}
.review__slider-navigation--mobile {
  display: none;
}
@media (max-width: 576px) {
  .review__slider-navigation--mobile {
    display: flex;
  }
}
.review__slider-navigation button {
  display: flex !important;
  align-items: center;
  justify-content: center;
  position: static;
  margin-top: 0 !important;
}
.review__card {
  border: 1px solid #748A80;
  border-radius: 28px;
  padding: 32px 32px;
}
.review__card-video-wrapper {
  border-radius: 28px;
  overflow: hidden;
  height: 630px;
}
.review__card video {
  max-width: 100%;
}
.review__card svg {
  position: absolute;
}
.review__card svg:nth-of-type(1) {
  top: 21px;
  left: 21px;
}
.review__card svg:nth-of-type(2) {
  top: 21px;
  right: 21px;
}
.review__card svg:nth-of-type(3) {
  bottom: 21px;
  left: 21px;
}
.review__card svg:nth-of-type(4) {
  bottom: 21px;
  right: 21px;
}
.review__item {
  padding: 25px 30px;
  height: 100%;
  background: #EFEDE5;
}
@media (max-width: 576px) {
  .review__item {
    padding: 20px;
  }
}
.review__item strong {
  font-weight: 700;
}
.review__item-top {
  display: flex;
  justify-content: space-between;
  padding-bottom: 13px;
  border-bottom: 1px solid #748A80;
  margin-bottom: 16px;
}
.review__item-top h3 {
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 500;
  line-height: 24px;
  color: #07191A;
}
.review__item-person {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
  font-size: 12px;
}
.review__item-person img {
  flex-shrink: 0;
}
.review__item-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.review__item-content div {
  padding: 16px;
  background: #FFF7EC;
  font-size: 12px;
}
.review__item-content div:last-of-type {
  background: #9BAAA3;
}
.review__item-content ul {
  display: flex;
  flex-direction: column;
}
.review__item-content ul li {
  display: flex;
  gap: 8px;
  padding-left: 8px;
  font-size: 12px;
}
.review__item-content ul li::before {
  content: "";
  display: inline-block;
  margin-top: 5px;
  width: 3px;
  height: 3px;
  flex-shrink: 0;
  border-radius: 100%;
  background: #000000;
}

.swiper-slide {
  width: 424px !important;
}
@media (max-width: 576px) {
  .swiper-slide {
    width: 100% !important;
  }
}

.consult {
  background: url("../images/consult.png") center/cover no-repeat;
  padding: 53px 0 20px 0;
  margin-bottom: 20px;
}
.consult__container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.consult__title {
  text-align: center;
  text-transform: uppercase;
}
@media (max-width: 576px) {
  .consult__title {
    font-size: 23px;
  }
}
.consult__text {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 750px;
  margin: 0 auto;
  font-size: 20px;
}
@media (max-width: 1024px) {
  .consult__text {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .consult__text {
    font-size: 16px;
  }
}
.consult__text strong {
  font-weight: 700;
}

.to-top {
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 100;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: opacity 0.3s ease;
  opacity: 0;
  pointer-events: none;
}
@media (max-width: 576px) {
  .to-top {
    display: block;
  }
}

.to-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.hero-about {
  background: url("../images/about_hero_background.png") center/cover no-repeat;
  min-height: 640px;
}
.hero-about__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 640px;
}
@media (max-width: 768px) {
  .hero-about__container {
    flex-direction: column-reverse;
    align-items: center;
    justify-content: flex-start;
    min-height: 750px;
    gap: 40px;
  }
}
.hero-about__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 600px;
}
@media (max-width: 576px) {
  .hero-about__content {
    align-items: center;
    text-align: center;
  }
}
.hero-about__image {
  align-self: flex-end;
}
@media (max-width: 1024px) {
  .hero-about__image {
    width: 300px;
  }
}
@media (max-width: 768px) {
  .hero-about__image {
    align-self: center;
  }
}
.hero-about__title {
  font-size: 60px;
  margin-bottom: 12px;
}
@media (max-width: 1024px) {
  .hero-about__title {
    font-size: 48px;
  }
}
@media (max-width: 576px) {
  .hero-about__title {
    font-size: 32px;
  }
}
.hero-about__title span {
  color: #748A80;
  font-style: italic;
}
.hero-about__subtitle {
  font-size: 30px;
  margin-bottom: 30px;
}
@media (max-width: 1024px) {
  .hero-about__subtitle {
    font-size: 22px;
  }
}
@media (max-width: 576px) {
  .hero-about__subtitle {
    font-size: 18px;
  }
}

.numbers {
  background: #748A80;
}
.numbers__list {
  display: flex;
  justify-content: space-between;
  max-width: 980px;
  margin: 0 auto;
  width: 100%;
  padding-top: 35px;
  padding-bottom: 50px;
  border-top: 1px solid rgba(255, 255, 245, 0.3);
}
@media (max-width: 768px) {
  .numbers__list {
    flex-wrap: wrap;
    gap: 17px;
  }
}
@media (max-width: 576px) {
  .numbers__list {
    justify-content: center;
    justify-items: center;
    max-width: 400px;
  }
  .numbers__list li {
    width: 170px;
  }
}
.numbers__list h3 {
  font-size: 40px;
  color: var(--white);
  margin-bottom: 10px;
}
.numbers__list p {
  color: var(--white);
}

.achievement {
  padding: 40px 0;
}
.achievement__container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.achievement__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-content: space-between;
  gap: 20px;
}
@media (max-width: 768px) {
  .achievement__content {
    grid-template-columns: 1fr;
  }
}
.achievement__list {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  max-width: 500px;
}
.achievement__list > li {
  display: flex;
  flex-direction: column;
}
.achievement__list > li h3 {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 12px;
  font-size: 30px;
  font-weight: 700;
}
.achievement__list > li p {
  margin-left: 40px;
}
.achievement__list > li ul {
  display: flex;
  flex-direction: column;
  margin-left: 40px;
}
.achievement__list > li ul li {
  display: flex;
  gap: 8px;
  padding-left: 8px;
}
.achievement__list > li ul li::before {
  content: "";
  display: inline-block;
  width: 3px;
  margin-top: 8px;
  height: 3px;
  flex-shrink: 0;
  border-radius: 100%;
  background: #000000;
}

.info__container {
  padding: 50px 15px;
}
.info__content {
  display: flex;
  flex-direction: column;
  gap: 25px;
  padding: 40px 50px;
  border: 1px solid #748A80;
  border-radius: 28px;
}
@media (max-width: 576px) {
  .info__content {
    padding: 30px 15px;
  }
}
.info ul {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 576px) {
  .info ul {
    gap: 12px;
  }
}
.info ul li {
  display: flex;
  gap: 8px;
  padding-left: 8px;
}
.info ul li::before {
  content: "";
  display: inline-block;
  width: 3px;
  margin-top: 8px;
  height: 3px;
  flex-shrink: 0;
  border-radius: 100%;
  background: #000000;
}

.value__container {
  padding: 50px 15px;
}
.value__content {
  display: flex;
  flex-direction: column;
  gap: 25px;
  padding: 40px 50px;
  border: 1px solid #748A80;
  border-radius: 28px;
}
@media (max-width: 576px) {
  .value__content {
    padding: 30px 15px;
  }
}
.value__title {
  text-align: center;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .value__title {
    margin-bottom: 10px;
  }
}
.value ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  justify-items: center;
}
@media (max-width: 1024px) {
  .value ul {
    gap: 20px;
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .value ul {
    justify-items: start;
  }
}
.value ul li {
  display: flex;
  gap: 20px;
  max-width: 420px;
}
@media (max-width: 576px) {
  .value ul li {
    gap: 10px;
  }
}
.value ul li svg {
  flex-shrink: 0;
}
@media (max-width: 576px) {
  .value ul li svg {
    width: 32px;
    height: 32px;
  }
}
.value ul li div {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.value ul li h3 {
  font-weight: 700;
  font-size: 30px;
}
@media (max-width: 768px) {
  .value ul li h3 {
    font-size: 20px;
  }
}
.value ul li p {
  display: flex;
  gap: 8px;
  padding-left: 8px;
}
.value ul li p::before {
  content: "";
  display: inline-block;
  width: 3px;
  margin-top: 8px;
  height: 3px;
  flex-shrink: 0;
  border-radius: 100%;
  background: #000000;
}

@media (min-width: 576px) {
  .swiper-no-swiping {
    pointer-events: auto;
  }
}

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