@font-face {
  font-family: "akzidenzgroteskpro bold";
  src: url(/font/akzidenzgroteskpro_boldex.otf);
  font-weight: normal;
}

@font-face {
  font-family: "Montserrat-Regular";
  src: url(/font/Montserrat-Regular.ttf);
  font-weight: normal;
}


html,
body {  
  color: #000;
  height: 100%;
  font-size: 15px;
  margin: 0;
  padding: 0;

}



.swiper {
  width: 1000px;
  height: 100vh;
}


.main {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 100%;

}

h1 {
  font-family: "Montserrat-Regular";
  width: 70%;
  position: absolute;
  font-size: 13px;
  margin: 35px 0 0 30px;
}

h2 {
  font-family: "akzidenzgroteskpro bold";
  text-transform: uppercase;
  position: absolute;
  font-size: 250px;
  opacity: 1;
  line-height: 1;
  margin: 0;
  z-index: -1;
  top: 35%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

h3 {
  font-family: "akzidenzgroteskpro bold";
  text-transform: uppercase;
  position: absolute;
  font-size: 250px;
  opacity: 0.5;
  line-height: 1;
  margin: 0;
  z-index: 3;
  top: 35%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}


.phone {
  position: absolute;
  right: 30px;
  top: 30px;
  z-index: 2
}

.phone img{
  width: 40px
}









/*СЛАЙДЕР*/

.swiper-container {
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.swiper-slide {
  height: 100vh;
  text-align: center;
  font-size: 18px;
  background: rgba(255, 255, 255, 0);
  display: flex;
  justify-content: center;
}


/* добавляем стили для кнопок навигации */
.swiper-button-prev,
.swiper-button-next {
  display: none;
  position: absolute;
  top: 50%;
  width: 27px;
  height: 44px;
  margin-top: -22px;
  z-index: 10;
  cursor: pointer;
  background-image: url('path/to/prev-button.png');
  background-repeat: no-repeat;
  background-position: center;
}

.swiper-button-prev {
  left: 10px;
}

.swiper-button-next {
  right: 10px;
}

.swiper-pagination {
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 100%;
  text-align: center;
}

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  border-radius: 100%;
  display: inline-block;
  background: #fff;
  margin: 0 5px;
  cursor: pointer;
}

.swiper-pagination-bullet-active {
  background: #007aff;
}

/*СЛАЙДЕР КОНЕЦ*/





/*БУРГЕР*/


#menuToggle {
  float: right;
  display: block;
  position: relative;
  top: 120px;
  right: 30px;
  z-index: 4;
  -webkit-user-select: none;
  user-select: none;
}

#menuToggle a {
  text-decoration: none;
  color: #232323;

  transition: color 0.3s ease;
}

#menuToggle a:hover {
  color: tomato;
}


#menuToggle input {
  display: block;
  width: 36px;
  height: 30px;
  position: absolute;
  top: -7px;
  left: -5px;
  cursor: pointer;
  opacity: 0;
  z-index: 5;
  -webkit-touch-callout: none;
}

#menuToggle span {
  display: block;
  display: none;
/*  display: none; убрал гамургер*/
  width: 33px;
  height: 4px;
  margin-bottom: 5px;
  position: relative;
  background: #000;
  border-radius: 3px;
  z-index: 4;
  transform-origin: 4px 0px;
  transition: transform 0.5s cubic-bezier(0.08, 0.2, 0.05, 1.0)    
}

#menuToggle span:first-child {
  transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2) {
  transform-origin: 0% 100%;
}

#menuToggle input:checked ~ span {
  opacity: 1;
  transform: rotate(45deg) translate(-2.5px, -.2px);
  background: #232323;
}

#menuToggle input:checked ~ span:nth-last-child(3) {
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}

#menuToggle input:checked ~ span:nth-last-child(2) {
  transform: rotate(-45deg) translate(0, -.8px);
}

#menu {
  position: absolute;
  width: 250px;
  border-radius: 10px;
  margin: 30px 0 0 -300px;
  padding: 50px;
  background: #aaa7a7;
  list-style-type: none;
  font-family: sans-serif;
  -webkit-font-smoothing: antialiased;
  transform-origin: 0% 0%;
  transform: translate(130%, 0);
  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
}

#menu li {
  padding: 10px 0;
  font-size: 22px;
}

#menuToggle input:checked ~ ul {
  transform: none;
}

.menu .btn{
    display:block;
    padding: 1rem;
    border-bottom: solid 1px #2aff5b;
    border-top: solid 1px #ffba00;
    position: relative;
}

.menu .submenu {
    background: #c7c7c7;
    overflow: hidden;
    max-height: 0;
    transition: max-height .8s ease-out;
}

.menu .submenu a{
    display: block;
    padding: 1rem;
    position: relative;
}

.menu .submenu a::before{
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 5px;
    background: #e43f5a;
    opacity: 0;
    transition: all .5s;
}

.item:target .submenu{
    max-height: 20rem;
}

/*БУРГЕР КОНЕЦ*/













/*МЕДИА ЗАПРОСЫ*/

@media (min-width: 7680px) {
  h2,
  h3 {
    font-size: 1000px;
  }
}

@media (max-width: 7680px) {
  h2,
  h3 {
    font-size: 900px;
  }
}

@media (max-width: 6000px) {
  h2,
  h3 {
    font-size: 600px;
  }
}

@media (max-width: 4096px) {
  h2,
  h3 {
    font-size: 500px;
  }
}

@media (max-width: 3839px) {
  h2,
  h3 {
    font-size: 400px;
  }
}

@media (max-width: 2559px) {
  h2,
  h3 {
    font-size: 250px;
  }
}

@media (max-width: 1599px) {
  h2,
  h3 {
    font-size: 200px;
  }
}

@media (max-width: 1439px) {
  h2,
  h3 {
    font-size: 180px;
  }
}


@media (max-width: 1365px) {
  h2,
  h3 {
    font-size: 180px;
  }
}


@media (max-width: 1279px) {
  h2,
  h3 {
    font-size: 170px;
  }
}


@media (max-width: 1200px) {
  h2,
  h3 {
    font-size: 160px;
  }
}

@media (max-width: 1100px) {
  h2,
  h3 {
    font-size: 140px;
  }
}

@media (max-width: 1000px) {
  h2,
  h3 {
    font-size: 130px;
  }
}


@media (max-width: 900px) {
  h2,
  h3 {
    font-size: 110px;
  }
}

@media (max-width: 800px) {
  h2,
  h3 {
    font-size: 100px;
  }
}

@media (max-width: 700px) {
  h2,
  h3 {
    font-size: 80px;
  }
}

@media (max-width: 600px) {
  h2,
  h3 {
    font-size: 70px;
  }
}

@media (max-width: 500px) {
  h2,
  h3 {
    font-size: 55px;
  }
}

@media (max-width: 400px) {
  h2,
  h3 {
    font-size: 45px;
  }
}

@media (max-width: 320px) {
  h2,
  h3 {
    font-size: 40px;
  }
}

/*МЕДИА ЗАПРОСЫ КОНЕЦ*/