@font-face {
    font-family: 'Cabin';
    src: url(../font/Cabin-VariableFont_wdth\,wght.ttf);
}
*{
    font-family: 'Cabin';
}
body, html{
    margin: 0;
    padding: 0;
    background: url(../img/bg.webp), #000000;
    background-size: contain;
    background-position: top;
    background-repeat: no-repeat;
}
.hero-section{
    width: 100%;
    display: flex;
    justify-content: center;
}
.hero-container{
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.hero-container h5{
    color: #f0f0f0;
    font-size: 22px;
    font-weight: 400;
}
.hero-content{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
}
.hero-content h6{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 50px;
    border-radius: 70px;
    background-color: #000000;
    border: 2px solid #FFD700;
    font-size: 18px;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 0;
}
.hero-content p{
    color: #f0f0f0;
    font-size: 16px;
    font-weight: 400;
}
.hero-content h2{
    color: #f0f0f0;
    font-size: 70px;
    font-weight: 800;
    margin-top: 0;
    margin-bottom: 0;
}
.hero-content h4{
    color: #f0f0f0;
    font-size: 22px;
    font-weight: 400;
    width: 650px;
}
.hero-highlights{
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-top: 30px;
}
.hero-highlight{
    display: flex;
    flex-direction: row;
    align-items: center;
}
.hero-highlight img{
    width: 70px;
    height: fit-content;
    margin-left: 20px;
    margin-right: 20px;
}
.hero-highlight h3{
    color: #f0f0f0;
    font-size: 20px;
    font-weight: 400;
}
.offer-section{
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 100px;
}
.offer-card{
    width: 90%;
    height: 284px;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    border: 2px solid #FFD700;
    border-radius: 30px;
    background-color: rgb(3, 80, 3);
}
.offer-card .image-desktop{
    width: 570px;
    height: fit-content;
    border-radius: 30px;
}
.offer-card .image-mobile{
    display: none;
}
.offer-content{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.offer-content h6{
    width: 242px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
    border: 2px solid #FFD700;
    background: #000000;
    font-size: 16px;
    font-weight: 400;
    color: #FFD700;
    margin-top: 0;
    margin-bottom: 0;
}
.offer-content h3{
    font-size: 32px;
    font-weight: 600;
    color: #f0f0f0;
    margin-top: 10px;
    margin-bottom: 10px;
    text-align: center;
}
.offer-content a{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 300px;
    height: 55px;
    background: #FFD700;
    border-radius: 30px;
    text-decoration: none;
    font-size: 22px;
    font-weight: 700;
    color: #000000;
    border: 2px solid rgb(5, 5, 86);
}
.offer-content h5{
    font-size: 18px;
    font-weight: 300;
    color: #DDDDDD;
    margin-bottom: 0;
    margin-top: 20px;
}
footer{
    width: 100%;
    display: flex;
    justify-content: center;
    height: 70px;
    background-color: rgb(3, 80, 3);
    margin-top: 100px;
}
footer p{
    font-size: 20px;
    font-weight: 300;
    color: #f0f0f0;
    text-align: center;
}





@media screen and (max-width: 900px){
    .hero-content h2{
        font-size: 27px;
    }
    .hero-content h4{
        width: 400px;
    }
    .hero-highlights{
        flex-direction: column;
        align-items: start;
    }
    .hero-highlight img{
        margin-left: 0;
        margin-right: 30px;
    }
    .hero-highlight{
        margin-bottom: 40px;
    }
    .offer-card .image-desktop{
        display: none;
    }
    .offer-card .image-mobile{
        display: flex;
        width: 287px;
        height: fit-content;
    }
    .offer-card{
        width: 380px;
        height: 584px;
        flex-direction: column;
    }
    .offer-content h3{
        font-size: 20px;
        margin-top: 20px;
        margin-bottom: 30px;
    }
    footer p{
        font-size: 18px;
        width: 400px;
    }
}