:root {
  --main-color: #212121;
  --header-color: #f2722b;
  --header-studio-color: #000000;
  --header-tel: #757575;
  --hero-text: #ffffff;
  --background-color: #2f303a;
  --footer-tel: rgba(255, 255, 255, 0.6);
  --hero-section-4: #f5f4fa;
  --hero-btn-focus: #188ce8;
  --border: #ececec;
  --portfolio-border: #f5f5f5;
}

.visualy-hidden {
  position: absolute;
  white-space: nowrap;
  width: 1px;
  height: 1px;
  overflow: hidden;
  border: 0;
  padding: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  margin: -1px;
}

.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.alink {
  color: var(--header-color);
}

button {
  border: none;
  border-radius: 4px;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding-left: 0;
}

img {
  display: block;
  max-width: 100%;
}

html,
body {
  height: 100%;
}

.modal-btn, .menu__mail,
.menu__tel, .header__container, .navigation {
  display: flex;
  align-items: center;
}

.container {
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
  /* outline: 2px solid red; */
  margin: 0 auto;
}
@media screen and (min-width: 480px) {
  .container {
    width: 480px;
  }
}
@media screen and (min-width: 768px) {
  .container {
    width: 768px;
  }
}
@media screen and (min-width: 1200px) {
  .container {
    min-width: 1260px;
  }
}

.container-mob-menu {
  width: 100vw;
  height: 100vh;
  padding-left: 40px;
  padding-right: 15px;
  margin: 0 auto;
}

.list {
  list-style: none;
}

.link {
  text-decoration: none;
}

.body {
  font-family: "Roboto", sans-serif;
  background-color: var(--hero-text);
}

.no-scroll {
  overflow: hidden;
}

.style-btn {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.62;
  letter-spacing: 0.03em;
  color: var(--main-color);
  background: var(--hero-section-4);
}

.main-btn {
  padding: 6px 22px;
  transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1), color 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.main-btn:focus {
  color: var(--hero-text);
  background-color: var(--header-color);
}
.main-btn:hover {
  background-color: var(--header-color);
  color: var(--hero-text);
  cursor: pointer;
}

.header {
  position: fixed;
  z-index: 3;
  background-color: #fff;
  width: 100vw;
  padding-top: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--border);
}
@media screen and (min-width: 1200px) {
  .header {
    padding-top: 24px;
    padding-bottom: 15px;
    justify-content: center;
  }
}

.logo {
  width: 150px;
}
@media screen and (min-width: 1200px) {
  .logo {
    width: 200px;
  }
}

.navigation__web {
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.17;
  letter-spacing: 0.03em;
  width: 134px;
  height: 28px;
  color: var(--header-color);
}
@media screen and (min-width: 768px) {
  .navigation__web {
    margin-right: 88px;
  }
}
@media screen and (min-width: 1200px) {
  .navigation__web {
    font-weight: 700;
    font-size: 26px;
    line-height: 1.19;
    letter-spacing: 0.03em;
    width: 145px;
    height: 31px;
    margin-right: 93px;
  }
}

@media screen and (min-width: 768px) {
  .auth-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
}
@media screen and (min-width: 1200px) {
  .auth-nav {
    flex-direction: row;
  }
}

.navigation__studio {
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.17;
  letter-spacing: 0.03em;
  width: 134px;
  height: 28px;
}
@media screen and (min-width: 1200px) {
  .navigation__studio {
    font-weight: 700;
    font-size: 26px;
    line-height: 1.19;
    letter-spacing: 0.03em;
    width: 145px;
    height: 31px;
  }
}
.navigation__studio {
  color: var(--header-studio-color);
}

.menu__link {
  font-family: "Nunito", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.14;
  letter-spacing: 0.02em;
  color: var(--main-color);
  position: relative;
  transition: color 250ms linear;
}
.menu__link::after {
  display: block;
  position: absolute;
  right: 0;
  bottom: -32px;
  width: 0;
  height: 4px;
  border-radius: 2px;
  background-color: var(--header-color);
  content: "";
  transition: width 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
@media screen and (min-width: 768px) {
  .menu__link {
    margin-right: 50px;
  }
}
@media screen and (min-width: 1200px) {
  .menu__link {
    margin-right: 0;
  }
}

.menu__link:hover::after {
  width: 100%;
  display: block;
  position: absolute;
  left: 0;
  bottom: -32px;
  height: 4px;
  border-radius: 2px;
  background-color: var(--header-color);
  content: "";
  transition: width 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

@media screen and (min-width: 1200px) {
  .border-studio::after {
    width: 100%;
    display: block;
    position: absolute;
    left: 0;
    bottom: -32px;
    height: 4px;
    border-radius: 2px;
    background-color: var(--header-color);
    content: "";
    transition: width 250ms cubic-bezier(0.4, 0, 0.2, 1);
  }
}

.menu__mail,
.menu__tel,
.menu__mail-icon,
.menu__tel-icon {
  transition: color 250ms linear;
}

.menu {
  display: none;
}
@media screen and (min-width: 768px) {
  .menu {
    display: flex;
    margin-left: 40px;
  }
}
@media screen and (min-width: 1200px) {
  .menu {
    display: inline-flex;
    gap: 50px;
    margin-left: 110px;
  }
}

@media screen and (min-width: 768px) {
  .alink {
    color: var(--header-color);
  }
}
@media screen and (min-width: 1200px) {
  .alink {
    color: var(--header-color);
  }
}

.header__container {
  display: flex;
}
@media screen and (min-width: 1200px) {
  .header__container {
    justify-content: space-between;
  }
}

.menu__link:hover,
.menu__mail:hover,
.menu__tel:hover,
.footer-mail:hover,
.footer-tel:hover,
.footer-map:hover {
  color: var(--header-color);
}

.menu__link:focus,
.menu__mail:focus,
.menu__tel:focus,
.footer-mail:focus,
.footer-tel:focus,
.footer-map:focus {
  color: var(--header-color);
}

.menu__mail-icon,
.menu__tel-icon {
  fill: currentColor;
}
.menu__mail-icon:hover, .menu__mail-icon:hover,
.menu__tel-icon:hover,
.menu__tel-icon:hover {
  color: var(--header-color);
}

.menu__tel,
.menu__mail {
  gap: 10px;
}

.menu__mail,
.menu__tel {
  font-family: "Nunito", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.14;
  letter-spacing: 0.02em;
  color: var(--header-tel);
}

.mob-menu {
  position: fixed;
  top: 0;
  background-color: var(--hero-text);
  width: 100vw;
  height: 100vh;
  z-index: 1;
  padding: 10px 0;
}
.mob-menu > .container-mob-menu {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 130px;
  overflow: auto;
}

.menu-close-btn {
  display: block;
  margin-left: auto;
  background-color: transparent;
  border: none;
}

.menu-tel__link {
  font-family: "Nunito", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 35px;
  line-height: 1.18;
  letter-spacing: 0.02em;
  color: var(--main-color);
}

.connect-tel-menu__tel {
  font-family: "Nunito", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 25px;
  line-height: 1.18;
  letter-spacing: 0.02em;
  color: var(--header-color);
}

.connect-tel-menu__mail {
  font-family: "Nunito", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.17;
  letter-spacing: 0.02em;
  color: #757575;
}

.connect-tel-menu__item {
  margin-bottom: 32px;
}

.menu-tel__item:not(:last-child) {
  margin-bottom: 32px;
}

.mob-menu-tel {
  padding-bottom: 50px;
}

.mob-soc-list {
  display: flex;
  gap: 10px;
  padding-bottom: 48px;
  flex-wrap: wrap;
}

.mob-soc-item {
  font-family: "Nunito";
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.22;
  letter-spacing: 0.02em;
  color: var(--header-color);
}

.mob-soc-item:not(:last-child) {
  border-right: 1px solid rgba(33, 33, 33, 0.2);
  padding-right: 10px;
}

.hero {
  margin: 0;
  background-image: url("../images/bg1.jpg");
  background-size: cover;
  background-size: 200% 150%;
  width: 100%;
  height: 470px;
  display: inline-grid;
  position: relative;
}
@media screen and (min-width: 1200px) {
  .hero {
    height: 650px;
    padding-right: 50px;
  }
}

@keyframes gradient {
  0% {
    background-position: 0 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0 50%;
  }
}
.hero {
  width: 100%;
  justify-content: center;
}

.hero-text {
  font-family: "Nunito", sans-serif;
  color: var(--hero-text);
  margin-bottom: 40px;
  margin-left: 27px;
  color: black;
  max-width: 150px;
  font-weight: 400;
  font-size: 10px;
  line-height: 1.01;
  letter-spacing: 0.06em;
  display: inline-block;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  animation: fadeInRight 2s ease-out;
}
@media screen and (min-width: 1200px) {
  .hero-text {
    font-weight: 600;
    font-size: 30px;
    line-height: 1.36;
    letter-spacing: 0.06em;
    max-width: 650px;
    margin-top: 50px;
    width: 700px;
    margin-left: auto;
    margin-bottom: none;
  }
}

.highlight-text {
  color: #fff;
  text-transform: uppercase;
  display: inline-block;
  white-space: nowrap;
}

@media screen and (min-width: 1200px) {
  .hero-photo {
    margin-left: 50px;
    position: relative;
  }
}

.hero-photo img {
  box-shadow: 7px 0px 20px rgb(0, 0, 0);
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.hero__text {
  display: flex;
  justify-content: space-between;
}

.hero__info {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.first-photo {
  width: 120px;
  height: 170px;
  border-radius: 20px;
}
@media screen and (min-width: 1200px) {
  .first-photo {
    border-radius: 80px;
    width: 300px;
    height: 350px;
  }
}

.second-photo {
  width: 110px;
  height: 140px;
  border-radius: 20px;
  top: 270px;
  left: 100px;
  position: absolute;
}
@media screen and (min-width: 1200px) {
  .second-photo {
    width: 250px;
    height: 300px;
    top: 170px;
    left: 220px;
    border-radius: 80px;
  }
}

.information {
  padding-bottom: 50px;
  width: 100%;
  justify-content: center;
}

.all-information {
  justify-content: center;
}
@media screen and (min-width: 1200px) {
  .all-information {
    gap: 200px;
    display: flex;
  }
}

.information-text {
  font-family: "Nunito", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.61;
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
@media screen and (min-width: 1200px) {
  .information-text {
    font-weight: 600;
    font-size: 20px;
    line-height: 1.61;
    letter-spacing: 0.06em;
    width: 350px;
  }
}

.information-text__span {
  font-weight: 400;
  font-size: 15px;
  line-height: 1.61;
  letter-spacing: 0.06em;
  display: flex;
  color: var(--header-color);
  margin: 0 auto;
}
@media screen and (min-width: 1200px) {
  .information-text__span {
    font-weight: 600;
    font-size: 23px;
    line-height: 1.61;
    letter-spacing: 0.06em;
  }
}

.information-photo {
  margin: 0 auto;
  width: 150px;
  height: 150px;
}
@media screen and (min-width: 1200px) {
  .information-photo {
    width: 350px;
    height: 350px;
  }
}

.photo {
  padding: 20px;
  padding-bottom: 50px;
  width: 100%;
  justify-content: center;
}

.photo-all {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 200px;
}

.photo-one {
  width: 200px;
  height: 140px;
  border-radius: 10px;
}
@media screen and (min-width: 1200px) {
  .photo-one {
    width: 300px;
    height: 300px;
    border-radius: 30px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 2s ease, transform 2s ease;
  }
}

.photo-two {
  width: 200px;
  height: 140px;
  border-radius: 10px;
}
@media screen and (min-width: 1200px) {
  .photo-two {
    width: 300px;
    height: 300px;
    border-radius: 30px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 4s ease, transform 4s ease;
  }
}

.photo-three {
  width: 200px;
  border-radius: 10px;
  height: 140px;
}
@media screen and (min-width: 1200px) {
  .photo-three {
    width: 300px;
    height: 300px;
    border-radius: 30px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 6s ease, transform 6s ease;
  }
}

.photo-list {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 30px;
}
@media screen and (min-width: 1200px) {
  .photo-list {
    gap: 50px;
    flex-direction: row;
  }
}

.photo-list img {
  box-shadow: 12px 0px 10px rgba(0, 0, 0, 0.5);
}

.photo-title {
  font-family: "Nunito", sans-serif;
  font-weight: 600;
  font-size: 50px;
  line-height: 1.61;
  letter-spacing: 0.06em;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}

.street {
  margin-bottom: 30px;
}

.street-leonida {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
@media screen and (min-width: 1200px) {
  .street-leonida {
    gap: 100px;
    flex-direction: initial;
  }
}

.street-title {
  font-weight: 600;
  font-size: 13px;
  line-height: 1.61;
  letter-spacing: 0.06em;
  color: var(--header-color);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
}
@media screen and (min-width: 1200px) {
  .street-title {
    font-family: "Nunito", sans-serif;
    font-weight: 600;
    font-size: 28px;
    line-height: 1.61;
    letter-spacing: 0.06em;
  }
}

.tarif-item-one,
.tarif-item-two {
  border: 3px solid var(--header-color);
  border-radius: 15px;
  padding: 10px;
  background-color: #f1f1f1;
  width: 260px;
}
@media screen and (min-width: 1200px) {
  .tarif-item-one,
  .tarif-item-two {
    width: 400px;
  }
}

.tarif-title {
  font-family: "Nunito", sans-serif;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.61;
  letter-spacing: 0.06em;
  display: flex;
  justify-content: center;
}
@media screen and (min-width: 1200px) {
  .tarif-title {
    font-weight: 600;
    font-size: 22px;
    line-height: 1.61;
    letter-spacing: 0.06em;
  }
}

.tarif-text {
  font-family: "Nunito", sans-serif;
  font-weight: 600;
  font-size: 13px;
  line-height: 1.61;
  letter-spacing: 0.06em;
  display: flex;
  justify-content: center;
  color: var(--header-color);
}
@media screen and (min-width: 1200px) {
  .tarif-text {
    font-weight: 600;
    font-size: 20px;
    line-height: 1.61;
    letter-spacing: 0.06em;
  }
}

.visible {
  opacity: 1;
  transform: translateY(0);
}

.footer {
  width: 100%;
  height: 290px;
  border-top: 4px solid #f1f1f1;
  background-color: var(--header-color);
  justify-content: center;
}
@media screen and (min-width: 1200px) {
  .footer {
    height: 130px;
  }
}

.footer-all {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-top: 15px;
}
@media screen and (min-width: 1200px) {
  .footer-all {
    gap: 120px;
    flex-direction: row;
  }
}

.footer-container {
  margin-top: 60px;
}

.footer-logo {
  display: flex;
  align-items: center;
}

.footer-title {
  font-family: "Nunito", sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.61;
  letter-spacing: 0.06em;
  color: #fff;
  display: flex;
  justify-content: center;
}
@media screen and (min-width: 1200px) {
  .footer-title {
    display: block;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.61;
    letter-spacing: 0.06em;
  }
}

.footer-map {
  font-family: "Nunito", sans-serif;
  font-weight: 600;
  font-size: 12px;
  line-height: 1.61;
  letter-spacing: 0.06em;
  color: #fff;
}
@media screen and (min-width: 1200px) {
  .footer-map {
    font-weight: 600;
    font-size: 14px;
    line-height: 1.61;
    letter-spacing: 0.06em;
  }
}

.footer-map:hover {
  color: black;
}

.footer-tel {
  font-family: "Nunito", sans-serif;
  font-weight: 600;
  font-size: 12px;
  line-height: 1.61;
  letter-spacing: 0.06em;
  color: #fff;
}
@media screen and (min-width: 1200px) {
  .footer-tel {
    font-weight: 600;
    font-size: 14px;
    line-height: 1.61;
    letter-spacing: 0.06em;
  }
}

.footer-list {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
@media screen and (min-width: 1200px) {
  .footer-list {
    display: block;
  }
}

.footer-tel:hover {
  color: #fff;
}

.footer-telephone {
  font-size: 12px;
}

.footer-telephone:hover {
  color: black;
}

.footer-mail {
  font-family: "Nunito", sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.61;
  letter-spacing: 0.06em;
  color: #fff;
}

.footer-mail:hover {
  color: black;
}

.dogovir {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  background-image: url("../images/dogovir-logo.png");
  background-size: 500px 458px;
  background-repeat: no-repeat;
  background-position: right center;
  padding-top: 240px;
  margin-bottom: 150px;
  flex: 1 1 auto;
}

.wrapper {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.dogovir-title {
  display: flex;
  justify-content: center;
  font-weight: 600;
  font-size: 24px;
  line-height: 1.61;
  letter-spacing: 0.06em;
  margin-bottom: 30px;
}
@media screen and (min-width: 1200px) {
  .dogovir-title {
    font-family: "Nunito", sans-serif;
    font-weight: 600;
    font-size: 30px;
    line-height: 1.61;
    letter-spacing: 0.06em;
  }
}

.dogovir-button {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-bottom: 30px;
}
@media screen and (min-width: 1200px) {
  .dogovir-button {
    gap: 99px;
    margin-top: 20px;
  }
}

.open-file,
.download-file {
  font-family: "Nunito", sans-serif;
  font-weight: 600;
  font-size: 10px;
  line-height: 1.61;
  letter-spacing: 0.06em;
  align-items: center;
  background-color: #f1f1f1;
  border: 3px solid rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: center;
  width: 130px;
  height: 40px;
  border-radius: 30px;
  color: black;
}
@media screen and (min-width: 1200px) {
  .open-file,
  .download-file {
    font-weight: 600;
    font-size: 17px;
    line-height: 1.61;
    letter-spacing: 0.06em;
    width: 300px;
    height: 70px;
    cursor: pointer;
    border-radius: 50px;
    justify-content: center;
    padding: 0;
    transition: background-color 0.5s ease, color 0.5s ease;
  }
  .open-file:hover,
  .download-file:hover {
    background-color: var(--header-color);
    color: #fff;
  }
}

.backdrop {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  transition: opacity 250ms linear, visibility 250ms linear;
  z-index: 5;
}

.modal {
  width: 320px;
  min-height: 512px;
}
@media screen and (min-width: 480px) {
  .modal {
    width: 450px;
    min-height: 609px;
  }
}
@media screen and (min-width: 768px) {
  .modal {
    width: 450px;
    min-height: 609px;
  }
}
.modal {
  background-color: var(--hero-text);
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.12), 0px 1px 1px rgba(0, 0, 0, 0.14), 0px 2px 1px rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scaleX(1);
  transition: transform 250ms linear;
}
.backdrop.is-hidden .modal {
  transform: translate(-50%, -50%) scaleY(0);
}
@media screen and (min-width: 1200px) {
  .modal {
    width: 1200px;
    min-height: 581px;
  }
}

.modal-btn {
  width: 30px;
  height: 30px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  background-color: transparent;
  position: absolute;
  right: 8px;
  top: 8px;
  justify-content: center;
  padding: 0;
  cursor: pointer;
}
.modal-btn:hover, .modal-btn:focus {
  background-color: var(--header-color);
}

.questionnaire {
  margin-left: 20px;
  margin-right: 20px;
  min-height: 340px;
}
@media screen and (min-width: 1200px) {
  .questionnaire {
    margin-left: 40px;
    margin-right: 40px;
    min-height: 581px;
  }
}

.questionnaire iframe {
  width: 100%;
  margin-top: 40px;
  min-height: 500px;
  margin-bottom: 10px;
}
@media screen and (min-width: 1200px) {
  .questionnaire iframe {
    margin-top: 10px;
    min-height: 581px;
  }
}

.news {
  width: 100%;
  flex: 1 1 auto;
}

.news-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 200px;
  padding-bottom: 150px;
}

.news-title {
  font-family: "Nunito", sans-serif;
  font-weight: 600;
  font-size: 45px;
  line-height: 1.61;
  letter-spacing: 0.06em;
}

.news-section__content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.news-content {
  display: flex;
  justify-content: center;
  align-items: center;
}

.news-title {
  display: flex;
  justify-content: center;
  font-weight: 600;
  font-size: 24px;
  line-height: 1.61;
  letter-spacing: 0.06em;
}
@media screen and (min-width: 1200px) {
  .news-title {
    font-family: "Nunito", sans-serif;
    font-weight: 600;
    font-size: 30px;
    line-height: 1.61;
    letter-spacing: 0.06em;
  }
}

.news-section__item {
  border: 3px solid var(--header-color);
  border-radius: 15px;
  padding: 10px;
  background-color: #f1f1f1;
  width: 260px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  margin: 20px 0 20px 20px;
}
@media screen and (min-width: 1200px) {
  .news-section__item {
    flex-direction: initial;
    width: 700px;
  }
}

.new-news {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.title-news {
  font-weight: bold;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.61;
  letter-spacing: 0.06em;
}
@media screen and (min-width: 1200px) {
  .title-news {
    font-weight: 600;
    font-size: 30px;
    line-height: 1.61;
    letter-spacing: 0.06em;
  }
}

.news-text {
  font-weight: 600;
  font-size: 15px;
  line-height: 1.61;
  letter-spacing: 0.06em;
}

.file-open {
  font-family: "Nunito", sans-serif;
  font-weight: 600;
  font-size: 10px;
  line-height: 1.61;
  letter-spacing: 0.06em;
  align-items: center;
  background-color: #f1f1f1;
  border: 3px solid rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: center;
  width: 130px;
  height: 40px;
  border-radius: 30px;
  color: black;
}
@media screen and (min-width: 1200px) {
  .file-open {
    font-weight: 600;
    font-size: 17px;
    line-height: 1.61;
    letter-spacing: 0.06em;
    width: 300px;
    height: 60px;
    cursor: pointer;
    border-radius: 50px;
    justify-content: center;
    padding: 0;
    transition: background-color 0.5s ease, color 0.5s ease;
  }
  .file-open:hover {
    background-color: var(--header-color);
    color: #fff;
  }
}

.image-zoom {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.enlarged-image {
  max-width: 90%;
  max-height: 90%;
  cursor: zoom-out;
  transform: scale(1);
  transition: transform 0.3s ease;
}

#image-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 999;
  justify-content: center;
}

#image-overlay.active {
  display: flex;
  justify-content: center;
  align-items: center;
}

#image-overlay img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 10%;
}

.news-image {
  cursor: zoom-in;
}

.menu-tel-btn {
  display: block;
  background-color: transparent;
  border: none;
}
@media screen and (min-width: 768px) {
  .menu-tel-btn {
    display: none;
  }
}
@media screen and (min-width: 1200px) {
  .menu-tel-btn {
    display: none;
  }
}

@media screen and (max-width: 479px) {
  .menu-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}/*# sourceMappingURL=main.css.map */