@import 'fonts.css'; 

*{
    margin: 0;
    padding: 0;
    text-decoration: none;
    box-sizing: border-box;
    list-style: none;
}
body{
    background: var(--light-black);
}

.container {
    max-width: 1140px;
    width: 100%;
    margin: 0 auto;
}


:root {
    --MB: 'Montserrat-Bold';
    --MM: 'Montserrat-Medium';
    --MR: 'Montserrat-Regular';
    --PR: 'ProstoOne-Regular';
    --white: #FFFFFF;
    --dark: #282828;
    --light-black: #151515;
    --black: #000000;
    
}

/* HEADER START */

.header__nav{
    background: #282828;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.25);
}

.header__nav-link{
    font-size: 20px;
    line-height: 24px;
    text-align: right;
    color: var(--white);
    font-family: var(--MB);
    margin-right: 30px;
}

.header__nav-logo{
    margin: 6px 0;
    margin-right: 30px;
}

.header__nav-icon{
    color: var(--white);
    font-size: 20px;
}
.header__nav-left{
    display: flex;
    align-items: center;
}
.header__nav-list{
    display: flex;
}
.header__nav-content{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__nav-icon:nth-of-type(2){
    margin-left: 25px;
}

.header__content-title{
    font-size: 100px;
    line-height: 75px;
    color: var(--white);
    font-family: var(--PR);
    margin-bottom: 38px;
}

.header__btn-description{
    font-size: 20px;
    line-height: 24px;
    text-transform: uppercase;
    color: #171718;
    font-family: var(--MM);  
    background: #FFFFFF;
    border-radius: 10px;
    display: flex;
    align-items: center;
    padding: 13px 14px;
    width: 200px;
}



.header__btn-icon{
    color: #171718;
    font-size: 16px;
    margin-left: 11px;
}



.header__content-img{
    width: 100%;
}

.header__content{
    position: relative;
}

.header__content-info{
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    
}

.header__content-main{
    display: flex;
    flex-direction: column;
    align-items: center;
    
}
/* HEADER END */

/* MAIN START */

.main__block-description{
    font-size: 22px;
    line-height: 27px;
    color: var(--white);
    font-family: var(--MM);
    width: 540px;
}

.main__content-block{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.main{
    margin-top: 30px;
    margin-bottom: 55px;
}

.main__content-block:nth-of-type(3) .main__block-description{
    width: 333px;
    font-family: var(--MB);
}

.main__content-card{
    background: var(--white);
    width: 255px;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px 0;
    margin-top: 80px;
    margin-bottom: 55px;
}
.main__card-title{
    font-size: 20px;
    line-height: 24px;
    color: var(--black);
    font-family: var(--MB);

}

.main__card-img{
    margin: 10px 0;
}

.main__card-price{
    font-size: 14px;
    line-height: 17px;
    text-transform: uppercase;
    color: var(--black);
    font-family: var(--MR);
    margin-bottom: 20px;
}

.main__card-btn{
    font-size: 16px;
    line-height: 20px;
    text-transform: uppercase;
    color: var(--white);
    font-family: var(--MB);
    background: var(--light-black);
    width: 161px;
    padding: 7px 57px;

}

.main__content-cards{
    display: flex;
    justify-content: space-between;
}



/* MAIN END */


/* FOOTER START */

.footer{
    background: #282828;
    box-shadow: 0px -4px 20px rgba(0, 0, 0, 0.25);
}

.footer__content-link{
    font-size: 20px;
    line-height: 24px;
    text-align: right;
    font-family: var(--MB);
    color: var(--white);
    margin-right: 30px;
}

.footer__content-icon{
    color: var(--white);
    font-size: 70px;
}

.footer__content-info{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 81px 0;
}

.footer__content-list{
    display: flex;
}

.footer__content-icon:nth-of-type(2){
    margin-left: 30px;
}

/* FOOTER END */