/* Указываем box sizing */
*,
*::before,
*::after {
   -webkit-box-sizing: border-box;
           box-sizing: border-box;
}

/* Убираем внутренние отступы */
ul[class],
ol[class] {
   padding: 0;
}

/* Убираем внешние отступы */
body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
   margin: 0;
}

/* Выставляем основные настройки по-умолчанию для body */
body {
   min-height: 100vh;
   scroll-behavior: smooth;
   text-rendering: optimizeSpeed;
   line-height: 1.5;
}

/* Удаляем стандартную стилизацию для всех ul и il, у которых есть атрибут class*/
ul[class],
ol[class] {
   list-style: none;
}

/* Элементы a, у которых нет класса, сбрасываем до дефолтных стилей */
a:not([class]) {
   -webkit-text-decoration-skip: ink;
           text-decoration-skip-ink: auto;
}

/* Упрощаем работу с изображениями */
img {
   max-width: 100%;
   display: block;
}

/* Указываем понятную периодичность в потоке данных у article*/
article > * + * {
   margin-top: 1em;
}

/* Наследуем шрифты для инпутов и кнопок */
input,
button,
textarea,
select {
   font: inherit;
}

html {
   scroll-behavior: smooth;
}
.wrapper {
   max-width: 100vw;
   overflow: hidden;
}
.container {
   max-width: 1110px;
   margin: 0 auto;
}
.button {
   padding: 14px 100px;
   width: 330px;
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   -webkit-box-pack: center;
       -ms-flex-pack: center;
           justify-content: center;
   -webkit-box-align: center;
       -ms-flex-align: center;
           align-items: center;
   border: #F3AF24 1px solid;
   font-family: 'Montserrat';
   text-transform: uppercase;
   font-size: 20px;
   text-decoration: none;
   color: #fff;
   background: transparent;
   -webkit-transition: all 0.3s !important;
   -o-transition: all 0.3s !important;
   transition: all 0.3s !important;
}
.button:hover {
   background: #F3AF24;
}

.hero {
}
.hero__row {
   position: relative;
   padding: 0 0 50px 0;
}
.header {
}
.header__row {
   padding: 20px 0;
   position: relative;
}
.header__container {
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   -webkit-box-pack: justify;
       -ms-flex-pack: justify;
           justify-content: space-between;
   -webkit-box-align: center;
       -ms-flex-align: center;
           align-items: center;
}
.header__menu {
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   gap: 35px;
}
.header__list a {
   font-family: 'Roboto Mono';
   color: #fff;
   text-transform: uppercase;
   font-size: 20px;
   cursor: pointer;
   -webkit-transition: all 0.3s !important;
   -o-transition: all 0.3s !important;
   transition: all 0.3s !important;
   text-decoration: none;
}
.header__list a:hover {
   color: #F3AF24;
}
.header-dropdown {
   position: relative;
}
.header-dropdown__button {
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   -webkit-box-align: center;
       -ms-flex-align: center;
           align-items: center;
   -webkit-box-pack: center;
       -ms-flex-pack: center;
           justify-content: center;
   gap: 15px;
   padding: 5px 10px;
   text-decoration: none;
   border: #F3AF24 1px solid;
   cursor: pointer;
}
.header-dropdown__button img {
   height: 15px;
   
   -webkit-transition: all 0.3s !important;
   
   -o-transition: all 0.3s !important;
   
   transition: all 0.3s !important;
}
.header-dropdown__button p {
   font-family: 'Roboto Mono';
   color: #fff;
   text-transform: uppercase;
   font-size: 20px;
}
.header-dropdown__main {
   position: absolute;
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   opacity: 0;
   -webkit-box-orient: vertical;
   -webkit-box-direction: normal;
       -ms-flex-direction: column;
           flex-direction: column;
   gap: 5px;
   margin: 10px 0 0 0;
   width: 100%;
   -webkit-transition: all 0.3s !important;
   -o-transition: all 0.3s !important;
   transition: all 0.3s !important;
   visibility: hidden;
}
.header-dropdown.active .header-dropdown__main {
   opacity: 1;
   visibility: visible;
}
.header-dropdown.active .header-dropdown__button img {
   -webkit-transform: rotate(180deg);
       -ms-transform: rotate(180deg);
           transform: rotate(180deg);
}
.header-burger {
   display: none;
   cursor: pointer;
   -webkit-box-orient: vertical;
   -webkit-box-direction: normal;
       -ms-flex-direction: column;
           flex-direction: column;
   gap: 9px;
   position: relative;
   z-index: 3;
   width: 34px;
   padding: 15px 0;
}
.header-burger__line {
   width: 34px;
   height: 2px;
   background: #fff;
}
.hero__bg {
   position: fixed;
   top: 0;
   left: 0;
   z-index: -2;
   width: 100%;
   height: 100%;
}
.hero__bg img {
   width: 100%;
   height: 100%;
   -o-object-fit: cover;
      object-fit: cover;
}
.hero__container {
}
.hero__main {
   padding: 100px 0 130px 0;
}
.hero__title {
   font-family: 'Roboto Mono';
   color: #fff;
   text-transform: uppercase;
   font-size: 165px;
   font-weight: 300;
   line-height: 117%;
   text-align: center;
}
.hero__title span {
   letter-spacing: 7%;
}
.hero-footer {
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   -webkit-box-pack: justify;
       -ms-flex-pack: justify;
           justify-content: space-between;
   -webkit-box-align: center;
       -ms-flex-align: center;
           align-items: center;
   padding: 0 0 40px 0;
}
.hero-footer__paragraph {
   font-family: 'Roboto Mono';
   color: #fff;
   text-transform: uppercase;
   font-size: 20px;
}
.hero-footer__paragraph span {
   color: #F3AF24;
}
.hero-footer__button {
}

.about {
}
.about__row {
   padding: 100px 0 50px 0;
   background: #000;
}
.about__container {
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   gap: 35px;
}
.about__text {
   width: 42%;
}
.about__title {
   font-family: 'Montserrat';
   color: #F3AF24;
   text-transform: uppercase;
   font-size: 48px;
   font-weight: 300;
}
.about__paragraph {
   font-family: 'Roboto Mono';
   color: #fff;
   text-transform: uppercase;
   font-size: 18px;
   padding: 45px 0;
}
.about__paragraph span {
   color: #F3AF24;
}
.about__button {
}
.about__images {
   width: 58%;
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   gap: 35px;
}
.about__images img {
   width: 100%;
   -o-object-fit: cover;
      object-fit: cover;
}

.mission {
}
.mission__row {
   padding: 100px 0 30px 0;
   background: #000;
   position: relative;
   z-index: 2;
}
.mission__container {
}
.mission__title {
   font-family: 'Montserrat';
   color: #fff;
   text-transform: uppercase;
   font-size: 64px;
   font-weight: 300;
   text-align: center;
   line-height: 124%;
   position: relative;
}
.mission__title::after {
   content: '';
   display: block;
   position: absolute;
   width: 200px;
   height: 90px;
   bottom: -20px;
   left: 0;
   background: url('../images/mission1.png') no-repeat;
}
.mission__title::before {
   content: '';
   display: block;
   position: absolute;
   width: 200px;
   height: 90px;
   bottom: -20px;
   right: 0;
   background: url('../images/mission2.png') no-repeat;
}
.mission__title span {
   color: #F3AF24;
}
.mission__paragraph {
   width: 66%;
   font-family: 'Roboto Mono';
   color: #fff;
   font-size: 18px;
   font-weight: 300;
   margin: 30px 0 0 auto;
}


.gallery {
}
.gallery__row {
   padding: 30px 0 100px 0;
   background: #000;
}
.gallery__container {
}
.gallery__main {
   display: -ms-grid;
   display: grid;
   -ms-grid-columns: 1fr 35px 1fr 35px 1fr 35px 1fr;
   grid-template-columns: repeat(4, 1fr);
   -ms-grid-rows: auto 35px auto;
   grid-template-rows: repeat(2, auto);
   gap: 35px;
   -webkit-box-align: end;
       -ms-flex-align: end;
           align-items: end;
}
.gallery__main > *:nth-child(1) {
   -ms-grid-row: 1;
   -ms-grid-column: 1;
}
.gallery__main > *:nth-child(2) {
   -ms-grid-row: 1;
   -ms-grid-column: 3;
}
.gallery__main > *:nth-child(3) {
   -ms-grid-row: 1;
   -ms-grid-column: 5;
}
.gallery__main > *:nth-child(4) {
   -ms-grid-row: 1;
   -ms-grid-column: 7;
}
.gallery__main > *:nth-child(5) {
   -ms-grid-row: 3;
   -ms-grid-column: 1;
}
.gallery__main > *:nth-child(6) {
   -ms-grid-row: 3;
   -ms-grid-column: 3;
}
.gallery__main > *:nth-child(7) {
   -ms-grid-row: 3;
   -ms-grid-column: 5;
}
.gallery__main > *:nth-child(8) {
   -ms-grid-row: 3;
   -ms-grid-column: 7;
}
.gallery__item img{
   width: 100%;
}
.gallery__item p {
   font-family: 'Roboto Mono';
   color: #fff;
   font-size: 20px;
   font-weight: 300;
   line-height: 124%;
}
.gallery__item:nth-child(7) p {
   text-align: right;
}
.gallery__button {
   margin: 50px 0 0 auto;
}


.contact {
}
.contact__row {
   position: relative;
   padding: 120px 0;
   overflow: hidden; /* Обрезать лишнее содержимое */
}

.contact__container {
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   gap: 35px;
   -webkit-box-pack: justify;
       -ms-flex-pack: justify;
           justify-content: space-between;
}
.contact__map {
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   -webkit-box-pack: center;
       -ms-flex-pack: center;
           justify-content: center;
   -webkit-box-align: center;
       -ms-flex-align: center;
           align-items: center;
   width: 50%;
}
.contact__map iframe {
   height: 100%;
}
.contact-text {
   width: 50%;
}
.contact-text-info {
}
.contact-text-info__title {
   font-family: 'Montserrat';
   color: #F3AF24;
   text-transform: uppercase;
   font-size: 24px;
   font-weight: 300;
   text-transform: uppercase;
}
.contact-text-info__items {
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   -webkit-box-orient: vertical;
   -webkit-box-direction: normal;
       -ms-flex-direction: column;
           flex-direction: column;
   padding: 20px 0 0 0;
}
.contact-text-info__item {
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   -webkit-box-pack: justify;
       -ms-flex-pack: justify;
           justify-content: space-between;
   -webkit-box-align: center;
       -ms-flex-align: center;
           align-items: center;
   gap: 15px;
}
.contact-text-info__days {
   font-family: 'Roboto Mono';
   color: #fff;
   font-size: 18px;
   font-weight: 400;
   text-transform: uppercase;
}
.contact-text-info__time {
   font-family: 'Roboto Mono';
   color: #fff;
   font-size: 24px;
   font-weight: 400;
   text-transform: uppercase;
}
.contact-text-form {
}
.contact-text-form__title {
   font-family: 'Montserrat';
   color: #F3AF24;
   text-transform: uppercase;
   font-size: 24px;
   font-weight: 300;
   padding: 40px 0 30px 0;
   text-transform: uppercase;
}
.contact-text-form__form {
}
.contact-text-form__row {
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   gap: 15px;
   margin: 0 0 20px 0;
}
.contact-text-form__input {
   width: calc(50% - 7.5px);
   border: 1px solid #fff;
   padding: 10px 15px;
   font-family: 'Roboto Mono';
   color: #fff;
   font-size: 18px;
   font-weight: 400;
   text-transform: uppercase;
   background: transparent;
   height: 43px;
   -ms-flex-negative: 0;
       flex-shrink: 0;
}
.contact-text-form__textarea {
   width: 100%;
   border: 1px solid #fff;
   padding: 10px 15px;
   font-family: 'Roboto Mono';
   color: #fff;
   font-size: 18px;
   font-weight: 400;
   resize: none;
   text-transform: uppercase;
   background: transparent;
   height: 43px;
   -ms-flex-negative: 0;
       flex-shrink: 0;
}
.contact-text-form__input:focus, .contact-text-form__textarea:focus {
   outline: none;
   -webkit-box-shadow: none;
           box-shadow: none;
}
.contact-text-form__message {
   font-family: 'Roboto Mono';
   color: #fff;
   font-size: 18px;
   font-weight: 400;
   text-transform: uppercase;
   display: none;
}
.contact-text-form__button {
   border: 1px solid #F3AF24;
   background: transparent;
   font-family: 'Montserrat';
   color: #fff;
   font-size: 18px;
   font-weight: 400;
   text-transform: uppercase;
   padding: 10px 40px;
   width: 100%;
   background: transparent;
   -webkit-transition: all 0.3s !important;
   -o-transition: all 0.3s !important;
   transition: all 0.3s !important;
   cursor: pointer;
}
.contact-text-form__button:hover {
   background: #F3AF24;
}

.footer {
}
.footer__row {
   padding: 30px 0;
   background: #000;
}
.footer__container {
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   -webkit-box-pack: justify;
       -ms-flex-pack: justify;
           justify-content: space-between;
}
.footer__title {
   font-family: 'Montserrat';
   color: #F3AF24;
   font-size: 24px;
   font-weight: 300;
   text-transform: uppercase;
   padding: 0 0 30px 0;
}
.footer__menu {
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   -webkit-box-orient: vertical;
   -webkit-box-direction: normal;
       -ms-flex-direction: column;
           flex-direction: column;
   gap: 20px;
}
.footer__list a{
   font-family: 'Roboto Mono';
   color: #fff;
   font-size: 20px;
   font-weight: 400;
   text-transform: uppercase;
   text-decoration: none;
   -webkit-transition: all 0.3s !important;
   -o-transition: all 0.3s !important;
   transition: all 0.3s !important;
}
.footer__list a path {
   
   -webkit-transition: all 0.3s !important;
   
   -o-transition: all 0.3s !important;
   
   transition: all 0.3s !important;
}
.footer__list a:hover {
   color: #F3AF24;
}
.footer__list a:hover path {
   fill: #F3AF24;
}

.footer__block {
   width: 33%;
}
.footer__contacts .footer__list:nth-child(3){
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   gap: 15px;
}
.footer__text {
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   -webkit-box-orient: vertical;
   -webkit-box-direction: normal;
       -ms-flex-direction: column;
           flex-direction: column;
   gap: 20px;
}
.footer__text .footer__title {
   text-align: right;
   padding: 0;
}
.footer__paragraph {
   font-family: 'Roboto Mono';
   color: #fff;
   font-size: 20px;
   font-weight: 400;
   text-transform: uppercase;
   text-align: right;
}
.footer__paragraph span {
   color: #F3AF24;
}

@media (max-width: 1280px) {
   .container {
      padding: 0 15px ;
   }
   .hero__title {
      font-size: 146px;
   }
}

@media (max-width: 1024px) {
   
   .hero__main {
      padding: 120px 0 ;
   }
   .hero__title {
      font-size: 110px;
   }
   .hero-footer {
      -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;
      gap: 35px;
   }
   .hero-footer__paragraph {
      text-align: center;
   }
   .about__container {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
   }
   .about__text {
      width: 100%;
      -webkit-box-ordinal-group: 3;
          -ms-flex-order: 2;
              order: 2;
   }
   .about__images {
      width: 100%;
      -webkit-box-ordinal-group: 2;
          -ms-flex-order: 1;
              order: 1;
   }
   .about__images img {
      width: calc(50% - 7.5px);
   }

   .mission__title {
      font-size: 48px;
   }
   .mission__title::after {
      bottom: -100px;
      left: -70px;
   }
   .mission__title::before {
      top: -100px;
   }
   .mission__title br {
      display: none;
   }

   .gallery__main {
      grid-template-columns: repeat(2, 1fr);
      grid-template-rows: repeat(4, auto);
   }

   .contact__container {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
   }
   .contact__map {
      width: 100%;
      -webkit-box-ordinal-group: 3;
          -ms-flex-order: 2;
              order: 2;
   }
   .contact__map iframe {
      height: 350px;
      width: 100%;
   }
   .contact-text {
      width: 100%;
      -webkit-box-ordinal-group: 2;
          -ms-flex-order: 1;
              order: 1;
   }


   .footer__container {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      gap: 30px;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
   }
   .footer__block {
      width: 100%;
      text-align: center;
   }
   .footer__contacts .footer__list:nth-child(3) {
      -webkit-box-pack: center;
      -ms-flex-pack: center;
         justify-content: center;
   }
   .footer__title {
      padding: 0 0 15px 0;
   }
   .footer__menu {
      gap: 15px;
   }
   .footer__text {
      gap: 30px;
   }
   .footer__text .footer__title {
      text-align: center;
   }
   .footer__text p {
      text-align: center;
   }
}

@media (max-width: 767px) {
   .hero__title {
      font-size: 58px;
   }
   .header__menu {
      display: none;
   }
   .header-burger {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
   }
   .header-dropdown {
      margin: 0 25px 0 auto;
   }
   header.active .header-burger {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
   }
   header.active .header-burger__line:nth-child(1) {
      -webkit-transform: rotate(45deg);
          -ms-transform: rotate(45deg);
              transform: rotate(45deg);
   }
   header.active .header-burger__line:nth-child(2) {
      display: none;
   }
   header.active .header-burger__line:nth-child(3) {
      -webkit-transform: rotate(-45deg);
          -ms-transform: rotate(-45deg);
              transform: rotate(-45deg);
      margin: -11px 0 0 0;
   }
   header.active .header__container::after {
      content: '';
      display: block;
      position: absolute;
      top: 0;
      right: 0;
      height: 100vh;
      width: 100vw;
      background: #120F0D;
   }
   header.active .header__menu {
      position: absolute;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      z-index: 3;
      top: 115px;
      right: 15px;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      text-align: right;
   }

   .contact__row {
      background: #000;
   }
}

@media (max-width: 479px) {
   .hero__title {
      font-size: 40px;
   }
   .hero__row {
      padding: 0 0 30px 0;
   }
   .hero-footer__paragraph {
      font-size: 16px;
      font-weight: 300;
   }

   .about__paragraph {
      font-size: 14px;
   }
   .about__images {
      gap: 15px;
   }
   .mission__title {
      font-size: 24px;
   }
   .mission__title::after {
      display: none;
   }
   .mission__paragraph {
      width: 100%;
      text-align: center;
      font-size: 14px;
   }

   .gallery__main {
      -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
      grid-template-rows: repeat(8, auto);
   }

   .gallery__button {
      margin: 50px auto 0;
   }


   .contact__row {
      padding: 50px 0;
   }
   .contact-text-form__row {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
   }
   .contact-text-form__input {
      width: 100%;
   }
   .contact-text-info__item {
      -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: start;
      gap: 0px;
   }
   .contact-text-info__items {
      gap: 15px;
   }
   .contact-text-info__time {
      font-size: 18px;
   }

   .footer__list a{
      font-size: 16px;
   }
}

@media (max-width: 424px) {
   .hero__title {
      font-size: 40px;
   }
   .button {
      padding: 15px 80px;
      width: 290px;
   }
}
