/* Hero Section */
main{
    --initial-width: 200px;
    --mobile-width: 180px;
    width: 100%;
    height: 90vh;
    transition: 0.3s ease-in;
    background:url(../images/hero/hero-banner.jpg);
    background-size: cover;
}
main h1{
    color: #ffffff;
    font-size: 60px;
    font-style: normal;
    font-weight: 800;
    line-height: 94.5px;
    width: 1291px;
    height: auto;
    text-align: center;
}

.hero-section{
    padding-top: 200px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    height: 100%;
    transition: 0.3s ease-in;
}

.text-content{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    top: 40px;
}

.hero-text{
    padding-top: 10px;
    color: #ffffff;
    font-size: 18px;
    font-weight: 550;
    text-align: center;
}

.hero-button{
    margin-top: 40px;
    display: flex;
    height: 65px;
    width: 200px;  
}
.hero-button a{
    font-size: 22px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-container{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    background-image: url(../images/1.home/hero-bg.svg);
    background-size: contain;
    background-position: right;
    background-repeat: no-repeat;
}

@media(max-width: 1300px){

    .text-content{
        padding-left: 30px;
        padding-right: 30px;
    }

    main h1{
        font-size: 40px;
        font-weight: 800;
        line-height: 80px;
        width: 100%;    
    }
    
}

@media(max-width: 1150px){
    .text-content{
        padding-left: 10px;
        padding-right: 10px;
    }
}

@media(max-width: 1000px){
    .text-content{
        padding: 0;
    }
    .hero-section{
        padding-top: 140px;
    }
    main h1{
        font-size: 30px;
        font-weight: 700;
        line-height: 60px;
        width: 100%;    
    }
    .hero-text{
        font-size: 16px;
    }

    .hero-button{
        height: 60px;
        width: 180px;  
    }
    .hero-button a{
        font-size: 18px;
    }

}

@media(max-width: 600px){
    main h1{
        font-size: 24px;
        font-weight: 700;
        line-height: 40px;
        width: 100%;    
    }
    .hero-text{
        font-size: 12px;
    }
    
    main{
        height: 90vh;
        
    }
}
