@charset "UTF-8";

body{
    padding: 0;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    color: #2A2727;
    box-sizing: border-box;
}
body *{
    box-sizing: border-box;
}
.hero{
    width: 100%;
    min-height: 100vh;
    background: #DECECA;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-image: url(../images/bg.png);
    background-size: cover;
    background-position: center;
}

.hero__image{
    width: 750px;
    flex: none;
    max-width: 100%;
}

.hero__image img{
    width: 100%;
    height: auto;
}

.hero__logo{
    width: 400px;
    margin-top: -90px;
    margin-bottom: 40px;
}

.hero__logo img{
    width: 100%;
    height: auto;
}

.hero__title{
    margin-bottom: 20px;
}

.hero__title h1{
    margin: 0; 
    font-weight: 700; 
    font-size: 58px; 
    line-height: 140%; 
    vertical-align: middle;
}

.hero__desc{
    margin-bottom: 40px;
}

.hero__desc p{
    margin: 0; 
    font-weight: 500; 
    font-size: 46px; 
    line-height: 140%; 
}   

.hero__btn{ 
    font-weight: 500; 
    font-size: 38px; 
    line-height: 140%; 
    color: white;
    background: #2A2727;
    padding: 17px 75px;
    display: inline-block;
    border: 1px solid #2A2727;
    text-decoration: none;
    border-radius: 13px;
    margin-bottom: 40px;
}

.hero__btn:hover{
    background: #FCDA06;
    border-color: #FCDA06;
    color: #2A2727;
}

.hero__list{
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    padding: 0;
    margin: 0;
}

.hero__list li{
    line-height: 1;
}

.hero__list a{
    display: block; 
    font-weight: 500; 
    font-size: 38px; 
    line-height: 140%; 
    color: #2A2727;
    border-bottom: 2px solid transparent;
    text-decoration: none;
}

.hero__list a:hover{
    border-color: #FCDA06;
}

.hero__list span{
    display: block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #2A2727;
}

@media(max-width: 1599px){
    .hero__image{
        width: 500px;
    }
    .hero__logo{
        width: 300px;
        margin-top: -40px;
    }
    .hero__title h1{
        font-size: 40px;
    }
    .hero__desc p{
        font-size: 30px;
    }
    .hero__btn{
        font-size: 24px;
        padding: 15px 50px;
    }
    .hero__list{
        gap: 20px;
    }
    .hero__list a{
        font-size: 30px;
    }
    .hero__list span{
        width: 8px;
        height: 8px;
    }
}

@media(max-width: 1199px){
    .hero{
        padding: 0 30px 30px;
    }
    .hero__title h1 {
        font-size: 32px;
    }
    .hero__list a {
        font-size: 24px;
    }
}

@media(max-width: 767px){
    .hero {
        padding: 65px 20px 30px;
    }
    .hero__logo {
        width: 190px;
        margin-top: -32px;
        margin-bottom: 60px;
    }
    .hero__desc, .hero__title{
        text-align: center;
    }
    .hero__title{
        margin-bottom: 40px;
    }
    .hero__desc{
        margin-bottom: 60px;
    } 
    .hero__list {
        gap: 12px;
    }
}