/*Specification*/
body{
    font-size: 14px;
    font-family: "PT Sans", sans-serif;
    background: #EAEAEA;
    color: #CDC9C6;
    background-color: #101012;
    background-image: url(../img/grain.png);
    min-height: 100%; 
    min-width: 100%; 
    background-size: cover; 
    background-position: center; 
    background-repeat: no-repeat; 
    background-attachment: fixed; 
}
.container{
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}



/*MAIN*/
.main{
    padding: 80px 0 145px 0;
    height: 100%;
    overflow: hidden;
}
.menu{
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}
.menu__item{
    margin-right: 40px;
}
.menu__item a:hover {
    opacity: .8;
}
.menu__item:last-child{
    margin-right: 0;
}
.menu__link{
    color: #CDC9C6;
    font-size: 20px;
    font-weight: bold;
}
.info{
    margin: 137px 0;
    position: relative;
}
.info__title{
    font-family: "Cormorant Garamond", serif;
    font-size: 110px;
    text-transform: uppercase;
    background: linear-gradient(127deg, #AAAAA8 0%, #FFFFFF 48%, #CDC9C6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    z-index: 2;
}
.info__text{
    font-size: 24px;
    line-height: 1.4em;
    margin: 30px 0 50px 0;
    position: relative;
    z-index: 2;
}
.info__btn{
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    color: #CDC9C6;
    background: linear-gradient(0deg, #CD3A26 0%, #AD0D0F 100%);
    padding: 51px 0;
    border-radius: 20px;
    border-bottom: 6px solid #8E0E0F;
    box-shadow: inset 0 6px 8px rgba(255, 255, 255, 0.4), 0 4px 16px rgba(205, 58, 38, 0.2);
    cursor: pointer;
    display: block;
    width: max-content;
    position: relative;
    z-index: 2;
    width: 540px;
}
.info__btn:hover {
    opacity: 0.8;
}
.info__btn img{
    position: absolute;
    right: -41px;
    user-select: none;
    top: -47px;
}
.slider{
    margin: 0 -20px;
    position: relative;
    z-index: 2;
}
.slider__item{
    background: #212121;
    padding: 30px 30px 39px 30px;
    border-radius: 16px;
    margin: 0 20px;
}
.slider__top{
    display: flex;
    align-items: center;
}
.slider__icon{
    margin-right: 16px;
    display: block;
    flex-shrink: 0;
}
.slider__box{}
.slider__name{
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
}
.slider__rating{
    display: flex;
    align-items: center;
}
.slider__rating img{
    display: block;
    margin-right: 6px;
}
.slider__rating img:last-child{
    margin-right: 0;
}
.slider__text{
    font-size: 18px;
    margin-top: 16px;
    line-height: 1.4em;
}
.slider__arrow{
    position: absolute;
    background: linear-gradient(127deg, #CD3A26 0%, #AD0D0F 100%);
    width: 108px;
    height: 108px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 108px;
    opacity: 0.5;
    box-shadow: inset 0px 0px 8px 2px rgba(255, 255, 255, 0.4), 0 4px 16px rgba(205, 58, 38, 0.2);
    cursor: pointer;
    transition: 0.3s;
}
.slider__arrow.prev{
    left: -25px;
    top: 50%;
    transform: translate(-100%, -50%);
}
.slider__arrow.next{
    right: -25px;
    top: 50%;
    transform: translate(100%, -50%);
}
.slider__arrow:hover{
    opacity: 1;
}


/*ФОНОВЫЕ ОБЪЕКТЫ*/
.person {
    position: absolute;
    right: -118px;
    top: -249px;
    z-index: 1;
    user-select: none;
}
.person_bg{
    position: absolute;
    right: -235px;
    top: -249px;
    z-index: -1;
    user-select: none;
}
.element_1 {
    position: absolute;
    left: -300px;
    bottom: -160px;
}
.element_2{
    position: absolute;
    right: -58%;
    top: -68%;
}
.element_3{
    position: absolute;
    right: -35%;
    top: 10%;
    z-index: 3;
}


/*menu animate*/
.menu-btn{
  width: 30px;
  height: 30px;
  display: none;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 5;
  margin-left: auto;
}
.menu-icon{
  position: relative;
  width: 30px;
  height: 3px;
  background-color: white;
}
.menu-icon::before {
  position: absolute;
  left: 0;
  top: -10px;
  content: '';
  width: 30px;
  height: 3px;
  background-color: white;
  transition: transform 0.2s ease-in, top 0.2s linear 0.2s;
}
.menu-icon::after {
  position: absolute;
  left: 0;
  top: 10px;
  content: '';
  width: 30px;
  height: 3px;
  background-color: white;
  transition: transform 0.2s ease-in, top 0.2s linear 0.2s;
}
.active .menu-icon{
  background-color: transparent !important;
}
.active .menu-icon::before {
  transform: rotate(45deg);
  top: 0;
  transition: top 0.2s linear, transform 0.2s ease-in 0.2s;
}
.active .menu-icon::after {
  transform: rotate(-45deg);
  top: 0;
  transition: top 0.2s linear, transform 0.2s ease-in 0.2s;
}
