html {
  box-sizing: border-box;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style-type: none;
}

button {
  background-color: transparent;
  padding: 0;
  border: 0;
  cursor: pointer;
}

body{
  font-family: "Inter", system-ui;
  font-weight: 900;
  font-size: 24px;
  line-height: 1.3;
  font-style: normal;
  
}

.container{
  max-width: 1840px;
  padding: 0 10px;
  margin: 0 auto;
}

.header{
  background-image: url(../images/back-img.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  min-height: 100vh;
}

.header__top{
  padding-top: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  transition: all .3s;
}

.menu__btn{
  width: 70px;
  height: 23px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.menu__btn span{
  background-color: #FF5017;
  width: 100%;
  height: 3px;
}



.menu__list{
  position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	padding: 35px;
  background: #13171C;
	transform: translateX(-100%);
	transition: transform 0.5s;
  display: flex;
  justify-content: space-between;
  z-index: 1;
}

.menu__list-link{
  color: #FF5017;
  font-size: 72px;
  transition: all .3s;
}
.menu__close{
  font-size: 56px;
  color: #BCBCBC;
}

.menu__list-link:hover{
  color: #BCBCBC;
}

.menu__close:hover{
  color: #FF5017;
}

.hide{
  transform: translateX(0);
  z-index: 1;
}


.header__content{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  height: calc(100vh - 135px);
}

.header__title {
  font-size: 345px;
  line-height: .8;
  background: linear-gradient(180deg, #000000 0%, #830B02 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding-left: 150px;
}

.subtitle {
  font-size: 160px;
  line-height: 194px;
  background: linear-gradient(90deg, #FF5017 0%, #000000 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  align-self: flex-end;
  padding-right: 75px;
  padding-bottom: 50px;
}

.header__content-img{
  position: absolute;
  left: 0;
  right: 0;
  top: 50px;
  bottom: 0;
  margin: auto;
  max-width: 100%;
}

.info{
  background-color: #f8f8f8;
  padding: 170px 0;
}

.info__title {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 900;
  font-size: 160px;
  line-height: 194px;
  text-transform: uppercase;
  color: #13171C;
  text-align: center;
}

.info__img{
  max-width: 100%;
  margin: 0 auto;
}

.info__content{
  display: flex;
  padding-left: 155px;
  padding-right: 100px;
  margin-bottom: 170px;
  gap: 94px;
}

.info__list{
  column-count: 2;
  gap: 140px;
}

.info__list-line{
  padding-bottom: 22px;
  font-size: 24px;
  line-height: 29px;
  text-transform: uppercase;

}

.info__list dt,
.info__list dd{
  display: inline-block;
}

.price {
  font-size: 46px;
  line-height: 56px;
  text-transform: uppercase;
  padding-bottom: 40px;
}

.order {
  padding: 30px 60px;
  background: linear-gradient(181.77deg, #FF5017 2.24%, #FF6837 99.25%);
  font-family: "Inter", system-ui;
  font-weight: 900;
  font-size: 24px;
  line-height: 29px;
  text-transform: uppercase;
  color: #13171C;

}

.info__gallery{
  /* display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  border-radius: 20px;
  flex-wrap: wrap; */
  width: 100%;
  height: 600px;;
  position: relative;
  overflow: hidden;
}

.info__slider-img{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
  object-fit: cover;
  padding: 0 30px;
}

.info__slider-img.active{
  opacity: 1;
}

.arrow-left-3,
.arrow-right-3 {
  position: absolute;
  top: 50%;
  z-index: 1;
  margin: 20px 8px;
  width: 40px;
  height: 40px;
  cursor: pointer;
}

.arrow-left-3 path,
.arrow-right-3 path {
  fill: #337AB7;
  transition: fill 0.5s ease-out;
}
.arrow-left-3 {
    transform: rotate(180deg);
}
.arrow-left-3:hover path,
.arrow-right-3:hover path{
    fill: #000;
}

.info__gallery .prev{
  left: 30px;
}

.info__gallery .next{
  right: 30px;  
}

.colors{
  background-color: #f8f8f8;
}

.color__text{
  text-align: center;
  text-transform: uppercase;
  font-size: 160px;
  margin-bottom: 70px;
}

.color__gallery{
  background-color: #13171c;
}

.color__gallery-start,
.color__gallery-end{
  width: 100%;
  margin: 0 auto;
}

.gallery-box{
  padding: 170px 50px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  text-align: center;
  
}

.gallery-box img{
  max-width: 100%;
  border-radius: 20px;
  margin-bottom: 20px;
}

.gallery-box__text{
  color: #fff;
  font-size: 36px;
  text-transform: uppercase;
}

.contacts{
  background-color: #13171c;
  padding: 170px 0 87px;
  font-size: 24px;
}

.contacts__title{
  color: #FF5017;
  font-size: 36px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 70px;
}

.contacts__box{
  display: flex;
  justify-content: space-between;
  gap: 40px 200px;
  padding-left: 300px;
  padding-right: 150px;
}

.contacts__info{
  max-width: 565px;
}

.contacts__headtext{
  color: #BCBCBC;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.contacts__text,
.contacts__phone,
.contacts__info-rules {
  color: #ffff;

}

.contacts__phone{
  margin-bottom: 77px;
}

.contacts__text {
  max-width: 477px;
  padding-top: 10px;
  margin-bottom: 20px;
}
.contacts__info-rules{
  padding-top: 77px;
  font-size: 14px;
  max-width: 330px;
}

.form{
  flex-basis: 594px;
}

.form__input{
  display: block;
  width: 100%;
  margin-bottom: 20px;
  max-width: 594px;
  background-color: transparent;
  padding: 10px;
  font-family: "Inter", system-ui;
  font-weight: 900;
  font-size: 24px;
  line-height: 1.3;
  text-transform: uppercase;
  border: none;
  border-bottom: 1px solid #fff;
  color: #fff;
}

.form__input::placeholder {
  font-family: "Inter", system-ui;
  font-weight: 900;
  font-size: 24px;
  line-height: 1.3;
  text-transform: uppercase;
  color: #fff;
}

.form__text{
  margin-top: 10px;
  margin-bottom: 40px;
  font-size: 36px;
  color: #fff;
}

.form__order{
  width: 100%;
}

.contacts__link{
  font-size: 14px;
  padding-top: 114px;
  color: #fff;
  display: block;
  text-align: center;
}


@media (max-width: 1820px) {
  .info__gallery{
    gap: 24px 20px;
  }
  
}

@media (max-width: 1600px) {
  .contacts__box{
    padding-left: 150px;
  }
}

@media (max-width: 1200px){
  .header__title{
    font-size: 278px;
    padding-left: 0;
  }
  .subtitle{
    padding-right: 0;
    font-size: 140px;
  }

  .header__images{
    top: 0;
  }

  .info{
    padding: 100px 0;
  }

  .info__title{
    font-size: 86px;  
  }

  .info__content{
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 100px;
    gap: 20px;
  }

  .color__text{
    font-size: 140px;
  }

  .contacts{
    padding: 100px 0;
  }

  .contacts__box{
    padding-left: 0;
    padding-right: 0;
    gap: 60px;
  }
}

@media (max-width: 1040px) {
  .info__gallery img {
    width: 100%;
  }

  .info__list {
    gap: 20px;
  }

  .info__content {
    margin-bottom: 50px;
  }
  
  .info__slider-img {
    height: 70%;
  }

  .arrow-left-3,
  .arrow-right-3{
    top: 30%;
  }

  .price {
    font-size: 32px;
    padding-bottom: 10px;
  }

  .color__text {
    font-size: 110px;
  }

  .order{
    font-size: 20px;
  }
}


@media (max-width: 800px) {

  .header__top {
    padding-top: 25px;
  }

  .header__title {
    font-size: 180px;
  }

  .subtitle {
    font-size: 90px;
  }

  .menu__btn span {
    box-sizing: content-box;
    border: 1px solid #000;
  }

  .info {
    padding: 50px 0;
  }



  .info__title {
    font-size: 54px;
  }

  .info__list {
    column-count: 1;
  }

  .info__list-line {
    font-size: 18px;
    margin-bottom: 5px;
  }
  .info__gallery {
    height: 450px;
  }

  .info__slider-img {
    height: 70%;
  }

  .arrow-left-3,
  .arrow-right-3 {
    top: 25%;
  }

  .color__text {
    font-size: 80px;
  }

  .gallery-box {
    padding: 100px 50px;
    display: block;
    text-align: center;
  }

  .contacts__box {
    display: block;
  }

  .contacts__info-rules {
    padding-top: 30px;
    padding-bottom: 20px;
  }

  .form__order {
    width: auto;
  }
}

@media (max-width: 670px){
  .info__content{
    display: block;
    text-align: center;
  }
}
@media (max-width: 530px) {

  .header__title {
    font-size: 120px;
  }

  .subtitle {
    font-size: 70px;
  }

  .menu__btn span {
    box-sizing: content-box;
    border: 1px solid #000;
  }

  .menu__list-link {
    font-size: 45px;
  }

  .menu__close {
    font-size: 45px;
  }

  .info {
    padding: 50px 0;
  }

  .info__title {
    font-size: 44px;
    line-height: 1;
  }

  .info__gallery {
    height: 250px;
  }

  .info__slider-img {
    height: 70%;
  }

  .color__text {
    font-size: 45px;
  }

  .contacts {
    padding: 50px 0;
  }

  .contacts__title {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .contacts__headtext {
    font-size: 18px;
  }

  .contacts__text {
    font-size: 18px;
  }

  .form__input {
    font-size: 18px;
  }

  .form__input::placeholder {
    font-size: 18px;
  }
}