@charset "UTF-8";
@font-face {
  font-family: "Lato";
  src: url("../assets/fonts/Lato/Lato-Regular.woff") format("woff"), url("/assets/fonts/Lato/Lato-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "Red Hat Display";
  src: url("../assets/fonts/RedHatDisplay/RedHatDisplay-Regular.woff") format("woff"), url("/assets/fonts/RedHatDisplay/RedHatDisplay-Regular.woff2") format("woff2");
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  color: #7B7B7B;
}

html,
body {
  font-size: 16px;
}
@media screen and (max-width: 576px) {
  html,
  body {
    font-size: 16px;
  }
}

ol,
ul {
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  max-width: 1170px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .container {
    max-width: 700px;
  }
}
@media screen and (max-width: 576px) {
  .container {
    max-width: 300px;
  }
}

.flex_container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .flex_container {
    flex-wrap: wrap;
  }
}

.header {
  padding: 44px 0;
}
@media screen and (max-width: 768px) {
  .header {
    padding: 23px 0;
  }
}

.nav {
  flex-grow: 1;
}
@media screen and (max-width: 768px) {
  .nav {
    order: 2;
    flex-grow: 0;
  }
}

.menu {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  gap: 2.9vw;
  padding: 0 30px;
}
@media screen and (max-width: 768px) {
  .menu {
    position: fixed;
    right: -100%;
    top: 65px;
    opacity: 0;
    flex-direction: column;
    background-color: #97cbca;
    padding: 0 0;
    transition: all 0.5s;
    width: 100%;
    gap: 0;
  }
}
@media screen and (max-width: 768px) {
  .menu__item {
    padding: 20px 0;
    border-bottom: 1px solid #fff;
    width: 100%;
    text-align: center;
  }
}
.menu__link {
  font-family: "Lato";
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 30%;
  font-weight: 400;
  color: #000;
  position: relative;
}
.menu__link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: -10px;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background-color: #000;
  opacity: 0;
  transition: all 0.4s;
}
.menu__link:hover::after {
  opacity: 1;
  width: 75%;
  left: 50%;
}

.burger {
  display: none;
}
@media screen and (max-width: 768px) {
  .burger:checked ~ .menu {
    opacity: 1;
    right: 0;
  }
  .burger:checked ~ .burger__img {
    transform: rotate(587deg);
    transition: all 0.4s;
  }
  .burger:checked ~ .burger__img::before {
    opacity: 0;
  }
  .burger:checked ~ .burger__img::after {
    top: 0;
    transform: rotate(90deg);
  }
}
.burger__img {
  display: none;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .burger__img {
    display: inline-block;
    position: relative;
    top: -3px;
    width: 34px;
    height: 2px;
    background-color: #524b4b;
  }
  .burger__img::before, .burger__img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #524b4b;
    top: 10px;
  }
  .burger__img::after {
    top: -10px;
  }
}

.hero {
  background: url(../assets/img/desktop/bg-image_desktop.webp) center/cover no-repeat;
  height: 600px;
  padding-top: 100px;
}
@media screen and (max-width: 768px) {
  .hero {
    background: url(../assets/img/tablet/bg-image_tablet.webp) center/cover no-repeat;
    height: 320px;
    padding-top: 30px;
  }
}
@media screen and (max-width: 576px) {
  .hero {
    background: url(../assets/img/mobile/bg-image_mobile.webp) center/cover no-repeat;
    height: 500px;
    padding-top: 70px;
  }
}

section {
  padding: 45px 0;
}
@media screen and (max-width: 576px) {
  section {
    padding: 35px 0;
  }
}

.title {
  font-family: "Red Hat Display";
  color: #000;
}
.title_1 {
  font-size: 3rem;
  line-height: 1.33;
  font-weight: 600;
  letter-spacing: 5%;
  max-width: 770px;
}
@media screen and (max-width: 768px) {
  .title_1 {
    font-size: 2.25rem;
  }
}
@media screen and (max-width: 576px) {
  .title_1 {
    font-size: 1.875rem;
  }
}
.title_2 {
  font-size: 3rem;
  line-height: 1.33;
  font-weight: 400;
  letter-spacing: 5%;
}
@media screen and (max-width: 768px) {
  .title_2 {
    text-align: center;
  }
}
.title_3 {
  font-size: 1.75rem;
  line-height: 1.66;
  font-weight: 600;
  letter-spacing: 10%;
}
.title_4 {
  font-size: 1.4375rem;
  line-height: 1.66;
  font-weight: 500;
  letter-spacing: 10%;
  margin-bottom: 15px;
}

.blog {
  padding-top: 90px;
}

.article {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  padding-top: 50px;
}
@media screen and (max-width: 768px) {
  .article {
    gap: 20px;
  }
}
.article_descr {
  max-width: 450px;
}
@media screen and (max-width: 768px) {
  .article_descr {
    max-width: 340px;
  }
}
.article_revers {
  flex-direction: row-reverse;
}
.article_subtitle {
  font-family: "Lato";
  font-weight: 400;
  font-size: 16px;
  line-height: 1.66;
  letter-spacing: 10%;
  margin-bottom: 30px;
}
.article_date {
  font-family: "Lato";
  font-size: 1rem;
  line-height: 1.66;
  font-weight: 400;
  letter-spacing: 10%;
}
.article_text {
  font-family: "Lato";
  font-size: 1rem;
  line-height: 1.66;
  font-weight: 400;
  letter-spacing: 5%;
  color: #565656;
  margin-top: 50px;
}

.heading {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
  flex-wrap: wrap;
}
@media screen and (max-width: 576px) {
  .heading {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 30px;
  }
}
.heading__link-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
}

@media screen and (max-width: 768px) {
  .post {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    max-width: 100%;
  }
}
@media screen and (max-width: 576px) {
  .post {
    flex-wrap: wrap;
  }
}
.post_info {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 25px 0;
  font-family: "Lato";
  font-size: 0.75rem;
  line-height: 1.66;
  font-weight: 400;
  letter-spacing: 10%;
  color: #7B7B7B;
}
.post_text {
  font-family: "Lato";
  font-size: 1rem;
  line-height: 1.66;
  font-weight: 400;
  letter-spacing: 5%;
  color: #565656;
}

.btn {
  background-color: #565656;
  padding: 9px 45px;
  margin: 50px auto 0 auto;
  display: block;
  border: none;
  color: #fff;
  font-family: "Lato";
  font-size: 1rem;
  line-height: 1.66;
  font-weight: 700;
  letter-spacing: 10%;
}

.info_col {
  max-width: 470px;
}
.info_text {
  font-family: "Red Hat Display";
  color: #000;
  font-size: 1.4375rem;
  line-height: 1.66;
  font-weight: 400;
  letter-spacing: 10%;
}
.info_text_right {
  font-family: "Lato";
  color: #565656;
  font-size: 1.1875rem;
  line-height: 1.68;
  font-weight: 400;
  letter-spacing: 5%;
}
.info_text_right:first-of-type {
  margin-bottom: 32px;
}
.info_arrow {
  margin-top: 20px;
}

.footer {
  background-color: #F4F4F4;
  padding: 70px 0;
  color: #000;
}
@media screen and (max-width: 576px) {
  .footer {
    padding: 50px 0;
  }
}
.footer_container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .footer_container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
  }
}
.footer_text {
  text-align: center;
  margin-top: 20px;
  color: #000;
}
@media screen and (max-width: 768px) {
  .footer_text {
    margin-top: 40px;
  }
}
.footer_contacts {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 30px;
  gap: 15px;
}
.footer_contacts_link {
  font-family: "Lato";
  font-size: 1rem;
  line-height: 1.66;
  font-weight: 400;
  letter-spacing: 10%;
  color: #000;
}
@media screen and (max-width: 768px) {
  .footer_contacts {
    align-items: center;
  }
}

.social {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 23px;
}
.social_link {
  display: block;
  width: 50px;
  height: 50px;
  background-color: transparent;
  border: 1px solid #565656;
  position: relative;
}
.social_link:hover {
  background-color: #565656;
  cursor: url(../assets/img/cursor.png), pointer;
}
.social_link:hover .social_icon {
  fill: #fff;
}
.social_icon {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  fill: #565656;
}

.article_img, .post_img {
  width: 100%; /* Занимать всю ширину родителя */
  height: auto; /* Сохранять пропорции */
  display: block; /* Убрать лишние отступы снизу */
  max-width: 570px; /* Ограничение для десктопа остается */
}/*# sourceMappingURL=main.css.map */