@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Golos+Text:wght@400..900&display=swap');
html {
  scroll-behavior: smooth;
}
/* body */
body {
  font-size: 16px;
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-style: normal;
  color: #252627;
  line-height: 1.4;
}

h1,
h2,
h3,
h4,
h5 {
  padding: 0;
  margin: 0;
}

h1 {
  color: #fff;
}

h2 {
  font-size: calc(22px + 20 * (100vw / 1920));
  line-height: 1.2;
  font-weight: 700;
  color: #000;
  position: relative;
}
h2 span {
  color: rgb(186, 12, 47);
}
p {
  font-family: "Play", sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #817e7e;
}

a {
  text-decoration: none;
  transition: all 0.3s;
  color: #252627;
  font-family: "Raleway", sans-serif;
  font-weight: 500;
}
a:hover {
  opacity: 0.6 !important;
  color: #252627;
}

/* container */
.container {
  max-width: 1770px;
  margin: 0 auto;
}
.container-footer {
  padding: 0 35px;
  margin: 0 auto;
}

/* gage */
.page {
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 100vh;
}

/* btn */
.btn {
  display: inline-block;
  vertical-align: top;
  border: 0;
  line-height: 1.5;
  text-decoration: none;
  cursor: pointer;
  -webkit-transition: background 0.2s linear;
  transition: background 0.2s linear;
  -webkit-transition: color 0.2s linear;
  transition: color 0.2s linear;
  transition: all .4s;
}

.btn-1 {
  padding: 15px 175px;
  -webkit-transition: all 0.4s;
  transition: all .4s;
  background-color: #fff;
  color: #252627;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid #fff;
}

.btn-1:hover {
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2) !important;
  background-color: transparent !important;
  border: 1px solid #fff;
  color: #fff;
}

.btn-2 {
  color: #fff;
  border: 1px solid #000;
  background-color: #000;
  padding: 15px 150px;
  font-weight: 400;
  font-size: 16px;
  text-transform: uppercase;
}

.btn-2:hover {
  background-color: transparent;
  color: #000;
}

.btn-next-slider {
  background-image: url("../img/arrow.svg");
  background-size: cover;
  width: 14px;
  height: 8px;
  z-index: 10;
  cursor: pointer;
  border: 0;
  -webkit-transform: rotate(225deg);
  transform: rotate(225deg);
  transition: all 0.3s;
}

.btn-perv-slider {
  background-image: url("../img/arrow.svg");
  background-size: cover;
  width: 14px;
  height: 8px;
  z-index: 10;
  cursor: pointer;
  border: 0;
  -webkit-transform: rotate(49deg);
  transform: rotate(49deg);
  transition: all 0.3s;
}
.btn-next-slider:hover {
  opacity: 0.7;
}
.btn-perv-slider:hover {
  opacity: 0.7;
}
/* header */
.header__inner{
    padding: 10px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header__inner .header__item:nth-child(4){
    display: none;
}
.header__inner .header__item:nth-child(2){
    margin-right: 265px;
}
.social a{
    font-weight: 400;
    color: #252627;
    padding-bottom: 1px;
    border-bottom: 1px solid #252627;
}
.social{
    display: flex;
    gap: 20px;
}
.header__item nav ul{
    display: flex;
    gap: 20px;
}
.header__item nav ul li a{
    font-weight: 500;
}
/* intro */
.intro{
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: block;
    min-height: 740px;
    position: relative;
}
.intro::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background: #1e1e1e75;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.intro__content{
    z-index: 100;
    position: relative;
    padding-top: 75px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.intro__top .title{
    font-family: "Golos Text", sans-serif;
    font-weight: 800;
    font-size: 203px;
    text-transform: uppercase;
}
.intro__top .subtitle{
    font-weight: 700;
    font-size: 36px;
    margin-top: 40px;
    text-align: right;
}
.intro__bottom{
    display: flex;
    justify-content: space-between;
    margin-top: 150px;
    width: 100%;
}
.intro__bottom .desc{
    max-width: 350px;
}
.intro__btn{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.intro__btn a:hover{
    opacity: 1 !important;
}
.br{
    border-top: 1px solid #252627;
    padding-bottom: 20px;
}
.about__title{
    font-weight: 700;
    font-size: 36px;
}
.title__inner{
    display: grid;
    grid-template-columns: 1fr 3fr;
}
.about__inner{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    margin-top: 65px;
}
.about__item{
    border-top: 1px solid #252627;
    padding-top: 20px;
}
.about__item .title{
    font-weight: 700;
    font-size: 36px;
    margin-top: 20px;
}
.about__item .desc{
    color: #929293;
    margin-top: 20px;
}
/* catalog */
.catalog__inner{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 30px;
    margin-top: 30px;
}
.catalog__item img{
    width: 100%;
}
/* news */
.news__inner{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
.news__item{
    display: flex;
    gap: 30px;
}
.news__btn{
    display: flex;
    justify-content: flex-end;
}
.news__item .right .item:nth-child(1){
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.news__item .right .item:nth-child(2){
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.news__item .right .title{
    font-size: 24px;
    font-weight: 700;
}
.news__item .right .desc{
    color: #929293;
    margin-top: 10px;
}
.news__item .right .link{
    text-transform: uppercase;
    font-weight: 400;
    border-bottom: 1px solid #252627;
    padding-bottom: 1px;
}
.news__item .right .news__link{
    margin-top: auto;
}
.news__item .direction{
    padding: 8px 10px;
    font-size: 12px;
    font-weight: 400;
    background: #F5F5F5;
}
.news__item .right{
    display: flex;
    flex-direction: column;
    height: 100%;
}
.image_mob{
    display: none;
    margin-top: 20px;
    margin-bottom: 20px;
}
.image_mob img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* contacts */
.contacts__block{
    display: grid;
    grid-template-columns: 1fr 3fr;
}
.contacts__inner .map{
    margin-top: 40px;
}
.contacts__inner .top{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
.in-put{
    background: transparent;
    border: none;
    border-bottom: 1px solid #252627;
    padding-bottom: 5px;
}
.form__inner{
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}
.form__btn{
    margin-top: 40px;
}
.form-desc{
    font-size: 12px;
    font-weight: 400;
    color: #252627;
    margin-top: 20px;
}
.contacts__inner .top .contacts__item:nth-child(2){
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.contacts__inner .top .btn-2{
    padding: 15px 0;
    width: 100%;
}
.contacts__item:nth-child(1){
    max-width: 420px;
}
.contacts__item .email, .address, .phone{
    display: flex;
    flex-direction: column;
    gap: 5px;
    color: #a7a7a7;
}
.contacts__item span{
    color: #000;
}
.phone__inner{
    display: flex;
    gap: 30px;
}
.phone__inner a{
    color: #a7a7a7;
}
.social-contacts .social a{
    color: #a7a7a7;
}
.contacts{
    margin-bottom: 50px;
}
.footer{
    padding: 35px 0;
    background: #252627;
    margin-top: auto;
}
.footer__inner{
    display: flex;
    gap: 30px;
    align-items: center;
    color: #fff;
    justify-content: space-between;
}
.footer__inner .footer__item:nth-child(2) ul li a{
    color: #fff;
}
.footer__inner .footer__item:nth-child(2) ul{
    display: flex;
    gap: 20px;
}
.footer__inner a{
    color: #fff;
}
.footer__inner .copy{
    color: #848485;
}
.catalog__btn{
    display: flex;
    justify-content: flex-end;
}
.breadcrumb__block{
    border-top: 1px solid #252627;
    padding-top: 10px;
}
.catalog__item .title{
    margin-top: 10px;
}











@media (max-width: 1800px) {
    .container {
    padding: 0 20px;
    }
    .header__inner .header__item:nth-child(1){
    display: none;
    }
    .header__inner .header__item:nth-child(3){
    display: none;
    }
    .header__inner .header__item:nth-child(4){
    display: block;
    }
    .social{
        flex-direction: column;
        width: max-content;
        gap: 5px;
    }
    .menu__item ul{
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    .menu__item h3{
        margin-bottom: 5px;
        font-weight: 400;
        color: #999;
        font-size: 14px;
    }
    .header__inner .header__item:nth-child(2){
        margin: 0;
    }
    .intro__top .title{
        font-size: 155px;
    }
    .news__inner{
        grid-template-columns: 1fr;
    }
}



@media (max-width: 1450px) {
    .intro__top .title{
        font-size: 110px;
    }
    .intro__bottom{
        justify-content: center;
        gap: 50px;
        width: inherit;
    }
    .contacts__block{
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .footer__inner{
        flex-direction: column;
    }
}

@media (max-width: 1250px) {
    .title__inner{
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .catalog__inner{
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 1024px) {
    .about__inner{
        grid-template-columns: 1fr;
        margin-top: 30px;
    }
}
@media (max-width: 900px) {
    .news__item{
        flex-direction: column;
        border-bottom: 1px solid #3333;
        padding-bottom: 30px;
    }
    .news__item .right .news__link{
        margin-top: 30px;
    }
    .news__item .left{
        display: none;
    }
    .news__inner{
        grid-template-columns: 100%;
    }
    .image_mob{
        display: block;
    }    
}


@media (max-width: 768px) {
    .about__title{
        font-size: 23px;
    }
    .intro__content{
        justify-content: center;
        gap: 50px;
        align-items:center;
    }
    .intro__top .title {
        font-size: 65px;
    }
    .intro__bottom{
        margin: 0;
        flex-direction: column;
    }
    .intro__top .subtitle{
        text-align: center;
        font-size: 20px;
        margin-top: 20px;
    }
    .intro__content{
        padding-top: 110px;
        text-align: center;
    }
    .intro{
        min-height: 650px;
    }
    .intro__bottom .desc{
        max-width: 100%;
    }
    .intro .btn-1{
        padding: 15px;
    }
    .contacts__inner .top{
        grid-template-columns: 1fr;
    }
    .btn-2{
        padding: 15px 0;
        text-align: center;
        width: 100%;
    }
}
@media (max-width: 575px) {
    .intro__content {
        padding-top: 55px;
    }
    .intro__bottom .desc{
        display: none;
    }
    .about__title{
        font-size: 18px;
    }
    .news__item .right .title{
        font-size: 20px;
    }
    .footer__item:nth-child(2) ul{
        flex-direction: column;
        text-align: center;
    }
    .footer__item .copy{
        text-align: center;
    }
}
@media (max-width: 375px) {

}
@media (max-width: 320px) {

}
