.hero-profile{
    background: url(./assets/images/profile-banner.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 95vh;
    border-radius: 1.2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 0 0 3rem 0;
}

.profile-section{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4rem;
    width: 100%;
}

.section-head{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
}

.top-image{
    width: 2rem;
}

.main-heading{
    display: flex;
    align-items: center;
    gap: 3rem;
}

.main-heading img{
    width: 9.4rem;
}

.main-heading-text{
    font-family: mulishXBold;
    font-size: 3.125rem;
    color: #E4CA8F;
    text-transform: uppercase;
    text-align: center;
}

.sub-main{
    font-family: poppins;
    color: #CDCDCD;
    font-size: 1.25rem;
    text-transform: capitalize;
}

.profile-content{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 85%;
}

.profile-left img{
    width: 36vw;
}

.profile-right{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2.2rem;
    width: 40vw;
}

.profile-texts{
    width: 80%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
}

.profile-text{
    font-family: mulishLight;
    font-size: 1.25rem;
    color: white;
}

.white{
    font-family: mulishBold;
}

.gold{
    font-family: mulishBold;
    color: #E4CA8F;
    text-decoration: underline;
}

.profile-right button{
    width: 19.7rem;
    cursor: pointer;
    height: 5rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    justify-content: center;
    border-radius: 50px;
    border: none;
    outline: none;
}
.button-text{
    font-family: mulishBold;
    font-size: 1.5rem;
    color: #634221;
    text-transform: uppercase;
}

@media screen and (max-width: 1500px){
    html{
        font-size: 90%;
    }
    .hero-profile{
        height: 105vh;
        padding: 0 0 5rem 0;
    }
}

@media screen and (max-width: 1370px){
    html{
        font-size: 80%;
    }
}

@media screen and (max-width: 1100px){
    .profile-texts{
        width: 100%;
    }
}

@media screen and (max-width: 900px){
    .profile-texts{
        width: 100%;
    }
    .profile-content{
        width: 95%;
    }
    .profile-left img{
        width: 45vw;
    }
    .main-heading{
        gap: 1.2rem;
    }
}

@media screen and (max-width: 800px){
    .main-heading{
        gap: 1.0rem;
    }
}



@media screen and (max-width: 756px){
    .profile-content{
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
    .profile-left img{
        width: 93vw;
    }
    .profile-right{
        width: 100%;
        align-items: center;
    }
    .main-heading img{
        display: none;
    }
}