@charset "UTF-8";
:root {
  --font-family: "Roboto", sans-serif;
  --second-family: "TT Firs Neue", sans-serif;
  --third-family: "Muller", sans-serif;
  --content-width: 1290px;
  --container-offset: 15px;
  --container-width: calc(var(--content-width) + (var(--container-offset) * 2));
  --offset: 30px;
  --light-color: #fff;
  --orange-red: #ff6e30;
  --brown: #bc572b;
  --dark-orange: #ce4307;
  --light-coral: #f06666;
  --tomato: #ff3030;
  --light-peach: #ffd4c1;
  --light-grey: #e9e9e9;
  --silver: #cacaca;
  --grey: #999;
  --dark-grey: #4a4a4a;
  --dark-grey-with-opacity: rgb(32 32 32 / 85%);
  --dark-color: #202020;
}

/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable */
.custom-checkbox__field:checked + .custom-checkbox__content::after {
  opacity: 1;
}

.custom-checkbox__field:focus + .custom-checkbox__content::before {
  outline: 2px solid #f00;
  outline-offset: 2px;
}

.custom-checkbox__field:disabled + .custom-checkbox__content {
  opacity: 0.4;
  pointer-events: none;
}

/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable value-keyword-case */
@font-face {
  font-family: "Muller";
  src: url("../fonts/../fonts/MullerRegular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/../fonts/RobotoRegular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/../fonts/RobotoBold.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "TTFirsNeue";
  src: url("../fonts/../fonts/TTFirsNeueRegular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "TTFirsNeue";
  src: url("../fonts/../fonts/TTFirsNeueMedium.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "TTFirsNeue";
  src: url("../fonts/../fonts/TTFirsNeueBold.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}
/* stylelint-disable order/order */
html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

*,
*::before,
*::after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

.page {
  height: 100%;
  font-family: var(--font-family, sans-serif);
  -webkit-text-size-adjust: 100%;
}

.page__body {
  margin: 0;
  min-width: 320px;
  min-height: 100%;
  font-size: 16px;
}

img {
  height: auto;
  max-width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

a {
  text-decoration: none;
}

.site-container {
  overflow: hidden;
}

.is-hidden {
  display: none !important;
  /* stylelint-disable-line declaration-no-important */
}

.btn-reset {
  border: none;
  padding: 0;
  background-color: transparent;
  cursor: pointer;
}

.list-reset {
  list-style: none;
  margin: 0;
  padding: 0;
}

.input-reset {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  border-radius: 0;
  background-color: #fff;
}
.input-reset::-webkit-search-decoration, .input-reset::-webkit-search-cancel-button, .input-reset::-webkit-search-results-button, .input-reset::-webkit-search-results-decoration {
  display: none;
}

.visually-hidden {
  position: absolute;
  overflow: hidden;
  margin: -1px;
  border: 0;
  padding: 0;
  width: 1px;
  height: 1px;
  clip: rect(0 0 0 0);
}

.container {
  margin: 0 auto;
  padding: 0 var(--container-offset);
  max-width: var(--container-width);
}

.js-focus-visible :focus:not(.focus-visible) {
  outline: none;
}

.centered {
  text-align: center;
}

.dis-scroll {
  position: fixed;
  left: 0;
  top: 0;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  -ms-scroll-chaining: none;
  overscroll-behavior: none;
}

.page--ios .dis-scroll {
  position: relative;
}

.grid {
  display: -ms-grid;
  display: grid;
  -webkit-column-gap: var(--offset);
  -moz-column-gap: var(--offset);
  column-gap: var(--offset);
  -ms-grid-columns: (1fr)[12];
  grid-template-columns: repeat(12, 1fr);
}
@media (max-width: 1024px) {
  .grid {
    -ms-grid-columns: (1fr)[8];
    grid-template-columns: repeat(8, 1fr);
  }
}
@media (max-width: 992px) {
  .grid {
    -ms-grid-columns: (1fr)[6];
    grid-template-columns: repeat(6, 1fr);
  }
}
@media (max-width: 576px) {
  .grid {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.w-100 {
  width: 100%;
}

@media (max-width: 1024px) {
  :root {
    --content-width: 962px;
  }
}
@media (max-width: 992px) {
  :root {
    --content-width: 714px;
  }
}
@media (max-width: 576px) {
  :root {
    --content-width: 278px;
  }
}
.burger {
  --burger-width: 30px;
  --burger-height: 30px;
  --burger-line-height: 2px;
  position: relative;
  border: none;
  padding: 0;
  width: var(--burger-width);
  height: var(--burger-height);
  color: #000;
  background-color: transparent;
  cursor: pointer;
  background-size: 0;
  --burger-height: 20px;
  --burger-width: 20px;
  z-index: 200;
  display: none;
  color: var(--light-color);
}
.burger::before {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: var(--burger-line-height);
  background-color: currentColor;
  -webkit-transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.burger::after {
  content: "";
  position: absolute;
  left: 0;
  width: 50%;
  height: var(--burger-line-height);
  background-color: currentColor;
  -webkit-transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.burger::before {
  top: 0;
}
.burger::after {
  top: calc(100% - var(--burger-line-height));
}
.burger__line {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: var(--burger-line-height);
  background-color: currentColor;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.burger--active {
  top: -70px;
  left: 5px;
  background-image: url("../../img/x.png");
  background-repeat: no-repeat;
  background-size: 100%;
  -webkit-transition: background-size 0.3s ease-in-out;
  transition: background-size 0.3s ease-in-out;
}
.burger--active::before {
  height: 0;
  top: 0;
  -webkit-transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.burger--active::after {
  height: 0;
  top: 0;
  -webkit-transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.burger--active .burger__line {
  height: 0;
}
@media (max-width: 767px) {
  .burger {
    display: block;
  }
}

/* stylelint-disable order/order */
.btn {
  padding: 15.5px 22px;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  background-color: var(--orange-red);
  -webkit-transition: background-color 0.3s ease-in-out, border-color 0.3s ease-in-out, outline 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out, border-color 0.3s ease-in-out, outline 0.3s ease-in-out;
  cursor: pointer;
}
.btn:focus {
  outline: none;
}
@media (any-hover: hover) {
  .btn:hover {
    border-color: var(--dark-orange);
    background-color: var(--dark-orange);
  }
}
.btn:active {
  border-color: var(--brown);
  background-color: var(--brown);
}
@media (max-width: 576px) {
  .btn {
    padding: 12px 22px;
    font-size: 14px;
  }
}

.btn.focus-visible {
  outline: 3px solid var(--dark-orange);
}

/* stylelint-disable order/order */
.placeholder {
  outline: transparent;
  border: transparent;
  padding-top: 15px;
  padding-bottom: 16px;
  padding-left: 23px;
  font-weight: 400;
  font-size: 16px;
  background-color: var(--light-grey);
  -webkit-transition: outline 0.3s ease-in-out;
  transition: outline 0.3s ease-in-out;
}
.placeholder::-webkit-input-placeholder {
  color: var(--grey);
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}
.placeholder::-moz-placeholder {
  color: var(--grey);
  -moz-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}
.placeholder:-ms-input-placeholder {
  color: var(--grey);
  -ms-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}
.placeholder::-ms-input-placeholder {
  color: var(--grey);
  -ms-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}
.placeholder::placeholder {
  color: var(--grey);
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}
.placeholder:focus {
  outline: none;
}
@media (any-hover: hover) {
  .placeholder:hover::-webkit-input-placeholder {
    color: var(--orange-red);
  }
  .placeholder:hover::-moz-placeholder {
    color: var(--orange-red);
  }
  .placeholder:hover:-ms-input-placeholder {
    color: var(--orange-red);
  }
  .placeholder:hover::-ms-input-placeholder {
    color: var(--orange-red);
  }
  .placeholder:hover::placeholder {
    color: var(--orange-red);
  }
}
.placeholder:active::-webkit-input-placeholder {
  color: var(--grey);
}
.placeholder:active::-moz-placeholder {
  color: var(--grey);
}
.placeholder:active:-ms-input-placeholder {
  color: var(--grey);
}
.placeholder:active::-ms-input-placeholder {
  color: var(--grey);
}
.placeholder:active::placeholder {
  color: var(--grey);
}
@media (max-width: 576px) {
  .placeholder {
    padding-top: 12px;
    padding-bottom: 12px;
    font-size: 14px;
  }
}

.placeholder.focus-visible {
  outline: 1px solid var(--orange-red);
}

.placeholder.focus-visible:active {
  outline: 0 solid transparent;
}

.input-wrapper {
  position: relative;
}

input:invalid {
  outline: 1px solid var(--light-coral);
}

input:invalid + .error-message::before {
  content: "Недопустимый формат";
  position: absolute;
  left: 23px;
  top: 3px;
  font-weight: 400;
  font-size: 9px;
  color: var(--light-coral);
}

/* stylelint-disable order/order */
.header {
  padding: 23px 0;
  background-color: #202020;
}
@media (max-width: 1024px) {
  .header {
    padding-top: 26px;
    padding-bottom: 23px;
  }
}
@media (max-width: 992px) {
  .header {
    padding-bottom: 12px;
  }
}
.header__container {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 992px) {
  .header__container {
    grid-template-areas: "header-1 header-1 . . . header-3" "header-2 header-2 header-2 header-2 header-2 header-2";
  }
}
@media (max-width: 767px) {
  .header__container {
    grid-template-areas: "header-1 header-1 header-1 header-1 header-1 header-3" "header-2 header-2 header-2 header-2 header-2 header-2";
  }
}
@media (max-width: 576px) {
  .header__container {
    grid-template-areas: "header-1 header-3" "header-2 .";
  }
}
.header__logo {
  -ms-grid-column-span: 2;
  grid-column: 2 span;
}
@media (max-width: 1024px) {
  .header__logo {
    padding-right: 50px;
  }
}
@media (max-width: 576px) {
  .header__logo {
    padding-right: 12px;
  }
}
.header__nav {
  grid-column: 4/7 span;
}
@media (max-width: 1024px) {
  .header__nav {
    grid-column: 3/5 span;
  }
}
.header__btn {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: end;
  grid-column: 12/1 span;
  padding: 0;
  background-color: transparent;
}
@media (any-hover: hover) {
  .header__btn:hover {
    background-color: transparent;
  }
}
@media (max-width: 1024px) {
  .header__btn {
    grid-column: 8/1 span;
  }
}
@media (max-width: 992px) {
  .header__btn {
    padding-bottom: 38px;
  }
}
@media (max-width: 576px) {
  .header__btn {
    padding-bottom: 33px;
  }
}
.header__search {
  width: 25px;
  height: 25px;
  fill: var(--light-color);
  -webkit-transition: fill 0.3s ease-in-out;
  transition: fill 0.3s ease-in-out;
}
@media (any-hover: hover) {
  .header__search:hover {
    fill: var(--orange-red);
  }
}
.header__search:active {
  fill: var(--dark-orange);
}
@media (max-width: 576px) {
  .header__search {
    width: 22px;
    height: 22px;
  }
}
.header__phone {
  display: none;
}
@media (max-width: 576px) {
  .header__phone {
    position: absolute;
    bottom: 36px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 14px;
    color: var(--orange-red);
  }
}
.header__call-svg {
  width: 22px;
  height: 22px;
  fill: currentcolor;
}
@media (max-width: 992px) {
  .header__1 {
    grid-area: header-1;
    padding-bottom: 38px;
  }
  .header__2 {
    grid-area: header-2;
    -ms-grid-column-span: 6;
    grid-column: 6 span;
  }
  .header__3 {
    grid-area: header-3;
  }
}
@media (max-width: 992px){
  .header__1 {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
  }
  .header__2 {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
    -ms-grid-column-span: 6;
  }
  .header__3 {
    -ms-grid-row: 1;
    -ms-grid-column: 6;
  }
}
@media (max-width: 767px){
  .header__1 {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 5;
  }
  .header__2 {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
    -ms-grid-column-span: 6;
  }
  .header__3 {
    -ms-grid-row: 1;
    -ms-grid-column: 6;
  }
}
@media (max-width: 576px){
  .header__1 {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
  }
  .header__2 {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
  }
  .header__3 {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
  }
}
@media (max-width: 992px) and (max-width: 576px) {
  .header {
    padding-top: 22px;
  }
  .header__1 {
    padding-bottom: 33px;
  }
}
@media (max-width: 576px) {
  .header {
    padding-top: 24px;
  }
}

.nav__list {
  gap: 79px;
}
@media (max-width: 1440px) {
  .nav__list {
    gap: 33px;
  }
}
@media (max-width: 992px) {
  .nav__list {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}
@media (max-width: 767px) {
  .nav__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-top: 58px;
    gap: 15px;
  }
}
@media (max-width: 576px) {
  .nav__list {
    padding-top: 48px;
    gap: 33px;
  }
}
.nav__link {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 16px;
  color: var(--light-color);
  -webkit-transition: color 0.3s ease-in-out, background 0.3s ease-in-out, outline 0.3s ease-in-out, background-color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out, background 0.3s ease-in-out, outline 0.3s ease-in-out, background-color 0.3s ease-in-out;
}
.nav__link:focus {
  outline: none;
}
@media (any-hover: hover) {
  .nav__link:hover {
    color: var(--orange-red);
  }
}
.nav__link:active {
  color: var(--dark-orange);
}
@media (max-width: 767px) {
  .nav__link {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-right: 0;
  }
}
@media (max-width: 767px) {
  .nav {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 100;
    overflow-y: auto;
    padding: var(--offset);
    width: 60%;
    height: 100%;
    background-color: var(--dark-color);
    visibility: hidden;
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: visibility 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
    transition: visibility 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, visibility 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, visibility 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  }
}

.nav__link.focus-visible {
  outline: 5px solid var(--brown);
  outline-offset: -1px;
  background: var(--brown);
}

.search.focus-visible {
  outline: 0 solid transparent;
}
.search.focus-visible .header__search {
  fill: var(--orange-red);
}

.nav.menu--active {
  padding-top: 0;
  padding-left: 18px;
  visibility: visible;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
}

.hero {
  padding-top: 41px;
  padding-bottom: 65px;
}
.hero__main {
  position: relative;
  -ms-grid-column-span: 6;
  grid-column: 6 span;
  margin-bottom: 4px;
  padding-top: 405px;
  padding-left: 59px;
  background-image: url("../../img/hero_1.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}
@media (max-width: 1024px) {
  .hero__main {
    -ms-grid-column-span: 4;
    grid-column: 4 span;
    padding-top: 427px;
    padding-left: 30px;
    background-image: url("../../img/hero_1_tablet.jpg");
  }
}
@media (max-width: 992px) {
  .hero__main {
    -ms-grid-column-span: 3;
    grid-column: 3 span;
    padding-top: 226px;
    background-image: url("../../img/hero_1_mini-tablet.jpg");
  }
}
@media (max-width: 767px) {
  .hero__main {
    padding-left: 15px;
  }
}
@media (max-width: 576px) {
  .hero__main {
    margin-bottom: 32px;
    padding-top: 234px;
    padding-bottom: 30px;
    padding-left: 29px;
    background-image: url("../../img/hero_1_mobile.jpg");
  }
}
.hero__descr {
  margin: 0;
  margin-bottom: 3px;
  font-weight: 400;
  font-size: 16px;
  color: var(--light-color);
}
@media (max-width: 1024px) {
  .hero__descr {
    margin-bottom: 7px;
  }
}
@media (max-width: 576px) {
  .hero__descr {
    margin-bottom: 10px;
    font-size: 14px;
  }
}
.hero__title {
  margin: 0;
  margin-bottom: 19px;
  width: 75%;
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 36px;
  line-height: 104%;
  color: var(--light-color);
}
@media (max-width: 1024px) {
  .hero__title {
    margin-bottom: 20px;
    width: 100%;
    font-size: 34px;
  }
}
@media (max-width: 767px) {
  .hero__title {
    margin-bottom: 10px;
    font-size: 24px;
  }
}
@media (max-width: 576px) {
  .hero__title {
    margin-bottom: 17px;
    width: 68%;
  }
}
.hero__submain {
  -ms-grid-column-span: 6;
  grid-column: 6 span;
}
.hero__submain-img:first-child {
  -ms-grid-column-span: 12;
  grid-column: 12 span;
  margin-bottom: 25px;
}
@media (max-width: 1024px) {
  .hero__submain-img:first-child {
    -ms-grid-column-span: 8;
    grid-column: 8 span;
    margin-bottom: 26px;
  }
}
@media (max-width: 992px) {
  .hero__submain-img:first-child {
    -ms-grid-column-span: 6;
    grid-column: 6 span;
  }
}
@media (max-width: 576px) {
  .hero__submain-img:first-child {
    -ms-grid-column-span: 2;
    grid-column: 2 span;
  }
}
.hero__submain-img {
  -ms-grid-column-span: 6;
  grid-column: 6 span;
}
@media (max-width: 1024px) {
  .hero__submain-img {
    -ms-grid-column-span: 4;
    grid-column: 4 span;
  }
}
@media (max-width: 992px) {
  .hero__submain-img {
    -ms-grid-column-span: 3;
    grid-column: 3 span;
  }
}
@media (max-width: 576px) {
  .hero__submain-img {
    -ms-grid-column-span: 1;
    grid-column: 1 span;
  }
}
@media (max-width: 1024px) {
  .hero__submain {
    -ms-grid-column-span: 4;
    grid-column: 4 span;
  }
}
@media (max-width: 992px) {
  .hero__submain {
    -ms-grid-column-span: 3;
    grid-column: 3 span;
  }
}
.hero__subtitle {
  margin: 0;
  margin-bottom: 18px;
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 24px;
  line-height: 104%;
  color: var(--dark-color);
}
@media (max-width: 1024px) {
  .hero__subtitle {
    margin-bottom: 25px;
  }
}
@media (max-width: 992px) {
  .hero__subtitle {
    margin-bottom: 16px;
    font-size: 22px;
  }
}
@media (max-width: 576px) {
  .hero__subtitle {
    margin-bottom: 19px;
    font-size: 18px;
  }
}
.hero__master-class {
  position: absolute;
  right: 15px;
  top: 15px;
  margin: 0;
  padding: 7px 15px;
  font-weight: 400;
  font-size: 14px;
  color: var(--light-color);
  background-color: var(--dark-color);
}
@media (max-width: 576px) {
  .hero__master-class {
    right: 5px;
    top: 6px;
    padding: 4px 7px;
    font-size: 12px;
  }
}
@media (max-width: 1024px) {
  .hero {
    padding-top: 34px;
    padding-bottom: 63px;
  }
}
@media (max-width: 576px) {
  .hero {
    padding-top: 30px;
    padding-bottom: 46px;
  }
}

.studios {
  padding-top: 30px;
  padding-bottom: 71px;
  background-color: var(--dark-color);
}
.studios__title {
  -ms-grid-column-span: 12;
  grid-column: 12 span;
  margin: 0;
  margin-bottom: 5px;
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 24px;
  color: var(--light-color);
}
@media (max-width: 1024px) {
  .studios__title {
    -ms-grid-column-span: 8;
    grid-column: 8 span;
  }
}
@media (max-width: 992px) {
  .studios__title {
    -ms-grid-column-span: 6;
    grid-column: 6 span;
  }
}
@media (max-width: 576px) {
  .studios__title {
    -ms-grid-column-span: 2;
    grid-column: 2 span;
    font-size: 18px;
  }
}
.studios__left {
  -ms-grid-column-span: 6;
  grid-column: 6 span;
}
@media (max-width: 1024px) {
  .studios__left {
    -ms-grid-column-span: 4;
    grid-column: 4 span;
  }
}
@media (max-width: 992px) {
  .studios__left {
    -ms-grid-column-span: 3;
    grid-column: 3 span;
  }
}
@media (max-width: 576px) {
  .studios__left {
    -ms-grid-column-span: 2;
    grid-column: 2 span;
  }
}
.studios__descr {
  margin: 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 175%;
  color: var(--silver);
}
@media (max-width: 576px) {
  .studios__descr {
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 179%;
  }
}
.studios__right {
  -ms-grid-column-span: 6;
  grid-column: 6 span;
}
@media (max-width: 1024px) {
  .studios__right {
    -ms-grid-column-span: 4;
    grid-column: 4 span;
  }
}
@media (max-width: 992px) {
  .studios__right {
    -ms-grid-column-span: 3;
    grid-column: 3 span;
  }
}
@media (max-width: 576px) {
  .studios__right {
    -ms-grid-column-span: 2;
    grid-column: 2 span;
  }
}
.studios__subscrible {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.studios__img {
  margin-bottom: 20px;
}
@media (max-width: 1024px) {
  .studios__img {
    margin-bottom: 18px;
  }
}
@media (max-width: 576px) {
  .studios__img {
    margin-bottom: 22px;
  }
}
.studios__subtitle {
  margin: 0;
  margin-bottom: 16px;
  width: 100%;
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 24px;
  line-height: 92%;
  color: var(--light-color);
}
@media (max-width: 576px) {
  .studios__subtitle {
    margin-bottom: 15px;
    font-size: 18px;
    line-height: 122%;
  }
}
.studios__form {
  width: 75.24%;
}
@media (max-width: 576px) {
  .studios__form {
    width: 100%;
  }
}
.studios__email {
  width: 100%;
  color: var(--silver);
  background-color: var(--dark-grey);
}
@media (max-width: 1024px) {
  .studios__email {
    margin-bottom: 21px;
    width: 98%;
  }
}
@media (max-width: 576px) {
  .studios__email {
    width: 100%;
  }
}
@media (max-width: 1024px) {
  .studios {
    padding-top: 34px;
    padding-bottom: 81px;
  }
}
@media (max-width: 992px) {
  .studios {
    padding-bottom: 63px;
  }
}
@media (max-width: 576px) {
  .studios {
    padding-bottom: 59px;
  }
}

/* stylelint-disable order/order */
.project {
  padding-top: 71px;
  background-color: var(--light-color);
}
.project__title {
  -ms-grid-column-span: 12;
  grid-column: 12 span;
  margin: 0;
  margin-bottom: 12px;
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 24px;
  color: var(--dark-color);
}
@media (max-width: 1024px) {
  .project__title {
    -ms-grid-column-span: 8;
    grid-column: 8 span;
  }
}
@media (max-width: 992px) {
  .project__title {
    -ms-grid-column-span: 6;
    grid-column: 6 span;
  }
}
@media (max-width: 576px) {
  .project__title {
    -ms-grid-column-span: 2;
    grid-column: 2 span;
    margin-bottom: 17px;
    font-size: 18px;
  }
}
.project__content {
  -ms-grid-column-span: 12;
  grid-column: 12 span;
  row-gap: var(--offset);
}
@media (max-width: 1024px) {
  .project__content {
    -ms-grid-column-span: 8;
    grid-column: 8 span;
    grid-template-areas: "card-1 card-1 card-2 card-2 card-3 card-3 card-3 card-3" "card-4 card-4 card-4 card-4 card-4 card-6 card-6 card-6" "card-7 card-7 card-7 card-5 card-5 card-5 card-5 card-5";
    row-gap: 25px;
  }
}
@media (max-width: 992px) {
  .project__content {
    -ms-grid-column-span: 6;
    grid-column: 6 span;
    grid-template-areas: "card-1 card-1 card-2 card-2 card-3 card-3" "card-4 card-4 card-4 card-4 card-4 card-4" "card-6 card-6 card-6 card-7 card-7 card-7" "card-5 card-5 card-5 card-5 card-5 card-5";
  }
}
@media (max-width: 576px) {
  .project__content {
    -ms-grid-column-span: 2;
    grid-column: 2 span;
    grid-template-areas: "card-1" "card-2" "card-3" "card-4" "card-6" "card-7" "card-5";
  }
}
.project__card-1 {
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-grid-column-span: 2;
  grid-column: 2 span;
}
.project__card-1--gc {
  -ms-grid-column-span: 3;
  grid-column: 3 span;
}
.project__card-1-descr {
  /* stylelint-disable value-no-vendor-prefix */
  display: -webkit-box;
  overflow: hidden;
  margin: 0;
  margin-bottom: 10px;
  font-weight: 400;
  font-size: 16px;
  line-height: 137%;
  color: var(--dark-color);
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
@media (max-width: 1024px) {
  .project__card-1-descr {
    margin-bottom: 17px;
  }
  .project__card-1-descr--line-clamp {
    -webkit-line-clamp: 2;
  }
}
@media (max-width: 992px) {
  .project__card-1-descr--line-clamp {
    margin-bottom: 11px;
    -webkit-line-clamp: 3;
  }
}
.project__card-1-descr--bg {
  margin-bottom: 0;
  width: 49%;
  color: var(--light-color);
}
@media (max-width: 992px) {
  .project__card-1-descr--bg {
    margin-bottom: 47px;
    width: 43%;
  }
}
@media (max-width: 576px) {
  .project__card-1-descr--bg {
    margin-bottom: 16px;
    width: 88%;
    font-size: 14px;
    line-height: 129%;
    -webkit-line-clamp: 4;
  }
}
@media (max-width: 576px) {
  .project__card-1-descr--bg-2 {
    margin-bottom: 22px;
  }
}
@media (max-width: 576px) {
  .project__card-1-descr-6 {
    margin-bottom: 12px;
  }
}
@media (max-width: 576px) {
  .project__card-1-descr-7 {
    margin-bottom: 10px;
  }
}
.project__card-1-date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: auto;
}
.project__card-1-date-bg {
  margin-bottom: 5px;
}
@media (max-width: 576px) {
  .project__card-1-date-bg {
    margin-bottom: 10px;
  }
}
.project__card-1-text {
  margin: 0;
  font-weight: 400;
  font-size: 12px;
  line-height: 183%;
  color: var(--grey);
}
.project__card-1-text--bg {
  font-size: 12px;
  color: var(--light-color);
}
.project__img {
  margin-bottom: 14px;
}
@media (max-width: 1024px) {
  .project__img--6 {
    margin-bottom: 13px;
  }
}
.project__sticker {
  position: absolute;
  right: 7px;
  top: 7px;
  padding: 6px 14px;
  font-weight: 400;
  font-size: 14px;
  text-align: center;
  color: var(--light-color);
  background-color: var(--dark-color);
}
@media (max-width: 576px) {
  .project__sticker {
    right: 5px;
    top: 5px;
    padding: 4px 14px;
    font-size: 12px;
  }
}
.project__card-bg {
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-grid-column-span: 6;
  grid-column: 6 span;
}
.project__card-bg-content {
  padding-top: 26px;
  padding-left: 30px;
}
@media (max-width: 1024px) {
  .project__card-bg-content {
    padding-top: 32px;
  }
}
@media (max-width: 992px) {
  .project__card-bg-content {
    padding-top: 34px;
  }
}
@media (max-width: 576px) {
  .project__card-bg-content {
    padding-top: 200px;
  }
}
.project__card-bg-1 {
  background-image: url("../../img/project_bg_1.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}
@media (max-width: 1024px) {
  .project__card-bg-1 {
    background-image: url("../../img/project_bg_1_tablet.jpg");
  }
}
@media (max-width: 992px) {
  .project__card-bg-1 {
    background-image: url("../../img/project_bg_1_mini-tablet.jpg");
  }
}
@media (max-width: 576px) {
  .project__card-bg-1 {
    background-image: url("../../img/project_bg_1_mobile.jpg");
  }
}
.project__card-bg-2 {
  background-image: url("../../img/project_bg_2.jpg");
}
@media (max-width: 1024px) {
  .project__card-bg-2 {
    background-image: url("../../img/project_bg_2_tablet.jpg");
  }
}
@media (max-width: 992px) {
  .project__card-bg-2 {
    min-height: 300px;
    background-image: url("../../img/project_bg_2_mini-tablet.jpg");
  }
}
@media (max-width: 576px) {
  .project__card-bg-2 {
    background-image: url("../../img/project_bg_2_mobile.jpg");
  }
}
.project__card-bg-bottom {
  margin-top: auto;
  padding-bottom: 30px;
  padding-left: 30px;
}
.project__subtitle {
  margin: 0;
  margin-bottom: 6px;
  width: 45%;
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 24px;
  line-height: 100%;
  color: var(--light-color);
}
@media (max-width: 992px) {
  .project__subtitle {
    width: 40%;
  }
}
@media (max-width: 576px) {
  .project__subtitle {
    margin-bottom: 10px;
  }
}
.project__btn {
  border: 3px solid var(--orange-red);
  padding: 13px 20px;
  background-color: transparent;
  -webkit-transition: background-color 0.3s ease-in-out, border-color 0.3s ease-in-out, border 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out, border-color 0.3s ease-in-out, border 0.3s ease-in-out;
}
.project__btn:focus {
  outline: none;
}
@media (any-hover: hover) {
  .project__btn:hover {
    border-color: var(--brown);
    background-color: var(--brown);
  }
}
.project__btn:active {
  border-color: var(--dark-orange);
  background-color: var(--dark-orange);
}
@media (max-width: 576px) {
  .project__btn {
    padding: 9px 18px;
  }
}
@media (max-width: 1024px) {
  .project__1 {
    grid-area: card-1;
    -ms-grid-column-span: 2;
    grid-column: 2 span;
  }
}
@media (max-width: 1024px) {
  .project__2 {
    grid-area: card-2;
    -ms-grid-column-span: 2;
    grid-column: 2 span;
    margin-bottom: 0;
  }
}
@media (max-width: 1024px) {
  .project__3 {
    grid-area: card-3;
    -ms-grid-column-span: 4;
    grid-column: 4 span;
    margin-bottom: 0;
  }
}
@media (max-width: 992px) {
  .project__3 {
    -ms-grid-column-span: 2;
    grid-column: 2 span;
  }
}
@media (max-width: 1024px) {
  .project__4 {
    grid-area: card-4;
    -ms-grid-column-span: 5;
    grid-column: 5 span;
  }
}
@media (max-width: 992px) {
  .project__4 {
    -ms-grid-column-span: 6;
    grid-column: 6 span;
    margin-bottom: 5px;
  }
}
@media (max-width: 576px) {
  .project__4 {
    -ms-grid-column-span: 2;
    grid-column: 2 span;
    margin-bottom: 1px;
  }
}
@media (max-width: 1024px) {
  .project__5 {
    grid-area: card-5;
  }
}
@media (max-width: 992px) {
  .project__5 {
    -ms-grid-column-span: 6;
    grid-column: 6 span;
  }
}
@media (max-width: 576px) {
  .project__5 {
    -ms-grid-column-span: 2;
    grid-column: 2 span;
  }
}
@media (max-width: 1024px) {
  .project__6 {
    grid-area: card-6;
    -ms-grid-column-span: 3;
    grid-column: 3 span;
  }
}
@media (max-width: 576px) {
  .project__6 {
    -ms-grid-column-span: 2;
    grid-column: 2 span;
  }
}
@media (max-width: 1024px) {
  .project__7 {
    grid-area: card-7;
    -ms-grid-column-span: 3;
    grid-column: 3 span;
  }
}
@media (max-width: 1024px){
  .project__1 {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
  }
  .project__2 {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
    -ms-grid-column-span: 2;
  }
  .project__3 {
    -ms-grid-row: 1;
    -ms-grid-column: 5;
    -ms-grid-column-span: 4;
  }
  .project__4 {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
    -ms-grid-column-span: 5;
  }
  .project__5 {
    -ms-grid-row: 5;
    -ms-grid-column: 4;
    -ms-grid-column-span: 5;
  }
  .project__6 {
    -ms-grid-row: 3;
    -ms-grid-column: 6;
    -ms-grid-column-span: 3;
  }
  .project__7 {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
  }
}
@media (max-width: 992px){
  .project__1 {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
  }
  .project__2 {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
    -ms-grid-column-span: 2;
  }
  .project__3 {
    -ms-grid-row: 1;
    -ms-grid-column: 5;
    -ms-grid-column-span: 2;
  }
  .project__4 {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
    -ms-grid-column-span: 6;
  }
  .project__5 {
    -ms-grid-row: 4;
    -ms-grid-column: 1;
    -ms-grid-column-span: 6;
  }
  .project__6 {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
  }
  .project__7 {
    -ms-grid-row: 3;
    -ms-grid-column: 4;
    -ms-grid-column-span: 3;
  }
}
@media (max-width: 576px){
  .project__1 {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
  }
  .project__2 {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
  }
  .project__3 {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
  }
  .project__4 {
    -ms-grid-row: 4;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
  }
  .project__5 {
    -ms-grid-row: 7;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
  }
  .project__6 {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
  }
  .project__7 {
    -ms-grid-row: 6;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
  }
}
@media (max-width: 576px) {
  .project__7 {
    -ms-grid-column-span: 2;
    grid-column: 2 span;
  }
}
@media (max-width: 576px) {
  .project__card-3-mobile {
    overflow: hidden;
    margin-bottom: 7px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }
}
@media (max-width: 576px) {
  .project {
    padding-top: 51px;
  }
}

.project__btn.focus-visible {
  border: 3px solid var(--orange-red);
  background-color: var(--brown);
}

.calendar {
  margin-right: 4px;
  width: 14px;
  height: 14px;
  fill: var(--grey);
}

.calendar-bg {
  fill: var(--light-color);
}

/* stylelint-disable order/order */
.contact {
  padding-top: 68px;
  padding-bottom: 64px;
  background-color: var(--light-color);
}
.contact__title {
  margin: 0;
  margin-bottom: 24px;
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 24px;
}
@media (max-width: 576px) {
  .contact__title {
    margin-bottom: 15px;
    font-size: 18px;
  }
}
.contact__left {
  position: relative;
  grid-column: 1/8 span;
  -ms-grid-row: 1;
  grid-row: 1/1;
}
@media (max-width: 1024px) {
  .contact__left {
    grid-column: 1/5 span;
  }
}
@media (max-width: 992px) {
  .contact__left {
    -ms-grid-column-span: 6;
    grid-column: 6 span;
  }
}
@media (max-width: 576px) {
  .contact__left {
    -ms-grid-column-span: 2;
    grid-column: 2 span;
  }
}
.contact__img {
  position: relative;
  display: block;
}
.contact__img::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 48.2%;
  height: 99%;
  background: rgba(32, 32, 32, 0.85);
}
@media (max-width: 1024px) {
  .contact__img::after {
    top: auto;
    bottom: 0;
    width: 100%;
    height: 34.3%;
  }
}
@media (max-width: 992px) {
  .contact__img::after {
    bottom: -1px;
    margin-bottom: 4px;
    height: 33.9%;
  }
}
@media (max-width: 576px) {
  .contact__img::after {
    margin: 0 calc(50% - 50vw);
    width: 100vw;
  }
}
.contact__img::before {
  content: "";
  position: absolute;
  left: 43.5%;
  top: 5%;
  z-index: 2;
  width: 100%;
  height: 100%;
  background-image: url("../../img/х.svg");
  background-repeat: no-repeat;
}
@media (max-width: 1024px) {
  .contact__img::before {
    left: 93.2%;
    top: 70%;
    width: 100%;
    height: 100%;
  }
}
@media (max-width: 992px) {
  .contact__img::before {
    left: 94.4%;
  }
}
@media (max-width: 576px) {
  .contact__img::before {
    left: 87.4%;
    top: 70.4%;
  }
}
.contact__picture {
  position: relative;
  grid-column: 1/12 span;
  -ms-grid-row: 1;
  grid-row: 1/1;
}
@media (max-width: 576px) {
  .contact__picture {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    grid-column: 1/2 span;
    margin: 0 calc(50% - 50vw);
  }
}
.contact__text-inner {
  z-index: 10;
  margin: auto 0;
  width: 40%;
}
@media (max-width: 1024px) {
  .contact__text-inner {
    padding-top: 306px;
    width: 100%;
  }
}
@media (max-width: 992px) {
  .contact__text-inner {
    padding-top: 66%;
  }
}
@media (max-width: 576px) {
  .contact__text-inner {
    margin: 0;
    margin-top: auto;
    padding-top: 0;
  }
}
.contact__dark {
  z-index: 5;
  grid-column: 1/6 span;
  -ms-grid-row: 1;
  grid-row: 1/1;
  background: rgba(32, 32, 32, 0.85);
}
@media (max-width: 1024px) {
  .contact__dark {
    grid-column: 1/5 span;
    margin-top: auto;
    min-height: 34%;
  }
}
@media (max-width: 992px) {
  .contact__dark {
    grid-column: 1/6 span;
  }
}
.contact__main {
  position: absolute;
  left: 0;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-top: 22px;
  padding-right: 50px;
  padding-left: 60px;
  width: 100%;
  height: 100%;
}
@media (max-width: 1024px) {
  .contact__main {
    margin: 0;
    margin-top: auto;
    padding-bottom: 20px;
    padding-left: 30px;
    width: 70%;
  }
}
@media (max-width: 576px) {
  .contact__main {
    left: 0;
    right: 0;
    margin: 0 auto;
    padding: 0;
    padding-bottom: 11px;
    width: 268px;
  }
}
.contact__main-title {
  margin: 0;
  margin-bottom: 5px;
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 24px;
  line-height: 92%;
  color: var(--light-color);
}
@media (max-width: 767px) {
  .contact__main-title {
    font-size: 18px;
  }
}
@media (max-width: 576px) {
  .contact__main-title {
    margin-bottom: 12px;
    line-height: 122%;
  }
}
@media (max-width: 992px) {
  .contact__main {
    padding-right: 2%;
  }
}
.contact__x {
  position: absolute;
  right: 20px;
  top: 20px;
}
.contact__address {
  margin: 0;
  margin-bottom: 2px;
  font-weight: 400;
  font-size: 16px;
  line-height: 175%;
  color: var(--silver);
}
@media (max-width: 1024px) {
  .contact__address {
    display: inline;
    margin-right: 4px;
  }
}
@media (max-width: 992px) {
  .contact__address {
    display: block;
  }
}
@media (max-width: 767px) {
  .contact__address {
    font-size: 14px;
  }
}
@media (max-width: 576px) {
  .contact__address {
    margin-bottom: 10px;
    line-height: 129%;
  }
}
.contact__call {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 1024px) {
  .contact__call {
    display: inline-block;
  }
}
@media (max-width: 767px) {
  .contact__call {
    font-size: 14px;
  }
}
.contact__call-svg {
  width: 22px;
  height: 22px;
  fill: currentcolor;
}
.contact__phone {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 16px;
  color: var(--orange-red);
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}
@media (max-width: 1024px) {
  .contact__phone {
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
  }
}
@media (max-width: 992px) {
  .contact__phone {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
@media (any-hover: hover) {
  .contact__phone:hover {
    color: var(--dark-orange);
  }
}
.contact__phone:active {
  color: var(--orange-red);
}
.contact__right {
  -ms-grid-column-span: 4;
  grid-column: 4 span;
  z-index: 2;
}
@media (max-width: 1024px) {
  .contact__right {
    -ms-grid-column-span: 3;
    grid-column: 3 span;
  }
}
@media (max-width: 992px) {
  .contact__right {
    -ms-grid-column-span: 4;
    grid-column: 4 span;
  }
}
@media (max-width: 576px) {
  .contact__right {
    -ms-grid-column-span: 2;
    grid-column: 2 span;
  }
}
.contact__subtitle {
  margin: 0;
  margin-top: -7px;
  margin-bottom: 5px;
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 24px;
  line-height: 92%;
  color: var(--dark-color);
}
@media (max-width: 992px) {
  .contact__subtitle {
    margin-top: -3px;
  }
}
@media (max-width: 576px) {
  .contact__subtitle {
    font-size: 18px;
    line-height: 122%;
  }
}
.contact__descr {
  margin: 0;
  margin-bottom: 15px;
  font-weight: 400;
  font-size: 16px;
  line-height: 137%;
  color: var(--grey);
}
@media (max-width: 576px) {
  .contact__descr {
    font-size: 14px;
    line-height: 129%;
  }
}
.contact__form {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 20px;
}
.contact__textarea {
  margin-bottom: -5px;
  padding-bottom: 26px;
}
@media (max-width: 576px) {
  .contact__textarea {
    padding-bottom: 44px;
  }
}
@media (max-width: 992px) {
  .contact__content {
    gap: 24px;
  }
}
@media (max-width: 992px) {
  .contact {
    padding-bottom: 68px;
  }
}
@media (max-width: 576px) {
  .contact {
    padding-top: 34px;
    padding-bottom: 50px;
  }
}

.contact__phone.focus-visible {
  outline: 0 solid transparent;
  color: var(--brown);
}

.contact__phone.focus-visible:active {
  color: var(--orange-red);
}

/* stylelint-disable order/order */
.footer {
  padding-top: 26px;
  padding-bottom: 25px;
  background-color: var(--dark-color);
}
.footer__left {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-grid-column-span: 3;
  grid-column: 3 span;
  margin-bottom: 6px;
}
@media (max-width: 1024px) {
  .footer__left {
    -ms-grid-column-span: 2;
    grid-column: 2 span;
  }
}
@media (max-width: 767px) {
  .footer__left {
    -ms-grid-column-span: 3;
    grid-column: 3 span;
  }
}
@media (max-width: 576px) {
  .footer__left {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0 auto;
  }
}
.footer__left-text {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 14px;
  color: var(--light-grey);
}
@media (max-width: 1024px) {
  .footer__left-text {
    font-size: 13.2px;
  }
}
@media (max-width: 576px) {
  .footer__left-text {
    font-size: 10px;
  }
}
.footer__center {
  grid-column: 5/4 span;
  padding-right: 35px;
}
@media (max-width: 1024px) {
  .footer__center {
    grid-column: 4/3 span;
    padding-right: 0;
  }
}
@media (max-width: 992px) {
  .footer__center {
    display: none;
  }
}
.footer__text {
  margin: 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 137%;
  color: var(--silver);
}
@media (max-width: 1024px) {
  .footer__text {
    font-size: 15.5px;
  }
}
@media (max-width: 576px) {
  .footer__text {
    margin-bottom: 10px;
  }
}
.footer__right {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  grid-column: 11/2 span;
  padding-left: 29px;
}
@media (max-width: 1440px) {
  .footer__right {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    grid-column: 10/3 span;
  }
}
@media (max-width: 1024px) {
  .footer__right {
    grid-column: 7/2 span;
    padding-left: 55px;
  }
}
@media (max-width: 992px) {
  .footer__right {
    grid-column: 5/2 span;
  }
}
@media (max-width: 767px) {
  .footer__right {
    grid-column: 5/3 span;
    padding-left: 25px;
  }
}
@media (max-width: 576px) {
  .footer__right {
    padding-left: 0;
  }
}
.footer__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  gap: 20px;
}
@media (max-width: 576px) {
  .footer__social {
    margin-bottom: 44px;
  }
}
.footer__logo {
  outline: 0 solid transparent;
  -webkit-transition: outline 0.3s ease-in-out;
  transition: outline 0.3s ease-in-out;
}
@media (max-width: 1024px) {
  .footer__logo {
    margin-bottom: 5px;
    padding-right: 52px;
  }
}
@media (max-width: 576px) {
  .footer__logo {
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
    margin-bottom: 0;
    padding-right: 0;
    width: 112px;
  }
}
@media (max-width: 576px) {
  .footer__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}
@media (max-width: 1024px) {
  .footer {
    padding-top: 28px;
  }
}
@media (max-width: 576px) {
  .footer {
    padding-bottom: 15px;
  }
}

.ok,
.vk {
  width: 30px;
  height: 30px;
  fill: var(--silver);
  -webkit-transition: fill 0.3s ease-in-out;
  transition: fill 0.3s ease-in-out;
}
@media (any-hover: hover) {
  .ok:hover,
  .vk:hover {
    fill: var(--orange-red);
  }
}
.ok:active,
.vk:active {
  fill: var(--dark-orange);
}

.footer__ok.focus-visible,
.footer__vk.focus-visible {
  outline: 0 solid transparent;
}
.footer__ok.focus-visible .vk,
.footer__ok.focus-visible .ok,
.footer__vk.focus-visible .vk,
.footer__vk.focus-visible .ok {
  fill: var(--brown);
}

.footer__ok.focus-visible:active .ok {
  fill: var(--dark-orange);
}

.footer__vk.focus-visible:active .vk {
  fill: var(--dark-orange);
}

.footer__logo.focus-visible {
  outline: 2px solid var(--brown);
}
/*# sourceMappingURL=main.css.map */