@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

.main-body{
    display: flex;
    flex-direction: column;
    /* row-gap: 10px; */
    /* background-color: #c3c3c2; */
}

.navigation{
    width: 100%;
    height: 12vh;
    padding: 0px 12%;
    display: flex;
    align-items: center;
    background-color: #c3c3c2;
    position: fixed;
    /* box-shadow: 0px 0px 90px inset gray; */
}

.navigation:hover{
    background-color: white;
    box-shadow: 0px 0px 0px inset;
}

.banner-main{
    width: 100%;
    height: 90vh;
    /* overflow: hidden; */
    background-image: url("./Images/banner.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
}


.banner-nav{
    width: 100%;
    height:100%;
    /* padding: 0px 12%; */
    display: flex;
    justify-content: space-between;
}

.banner-nav:hover .logo-img{
    width: 100%;
    height: 100%;
    background-image: url("./Images/HYU_Logo_Horizontal_Blue.png");
    background-repeat: no-repeat;
    background-position: 100%;
    background-size: contain;
}

.logo{
    width: 15%;
    height: 100%;
    /* background-color: yellow; */
}

.logo-img{
    width: 100%;
    height: 100%;
    background-image: url("./Images/logo.png");
    background-repeat: no-repeat;
    background-position: 100%;
    background-size: contain;
}

.nav-items{
    width: 50%;
    height: 100%;
    /* background-color: yellow; */
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: 'poppins', sans-serif;
    font-weight: bold;
}

.nav-items a{
    color: white;
    text-decoration: none;
    transition: .3s;
}

.banner-nav:hover .nav-items a{
    color: #67686a;
}

.nav-items a:hover{
    color: #002c5f !important;
    transform: scale(1.2);
}

.nav-right{
    width: 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-right i{
    color: #002c5f;
    transition: .3s;
}

.nav-right i:hover{
    transform: scale(1.2);
}

.banner-text{
    width: 100%;
    margin-top: 50px;
    color: white;
    padding: 50px;
}

.banner-text h1{
    padding: 0px 11%;
    font-family: 'poppins', sans-serif;
    font-size: 58px;
    font-weight: 600;
}

.nav{
    width: 100%;
    height: 12vh;
    padding: 0px 12%;
    background-color: white;
    display: flex;
    justify-content: space-between;
    font-family: 'poppins', sans-serif;
    font-size: 16px;
    position: sticky;
    top: 0;
}

.nav-text{
    width: 15%;
    height: 100%;
    /* background-color: yellow; */
    display: flex;
    align-items: center;
    font-weight: bold;
    color: #67686a;
}

.nav-center{
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 600;
}

.nav-center a{
    color: #3c3c3c;
    text-decoration: none;
    transition: .3s;
}

.download{
    width: 10%;
    height: 100%;
    display: flex;
    align-items: center;
    column-gap: 3px;
    justify-content: flex-end;
}

.download i, a{
    color: #3c3c3c;
    text-decoration: none;
}

.nav-center a:hover{
    color: aqua;
    transform: scale(1.2);
}

hr{
    border-top: 0.5px solid rgb(230, 226, 226);
}

.content{
    width: 100%;
    padding: 0px 12%;
    margin-top: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: 2px;
}

.content h1{
    font-size: 44px;
    font-family: 'poppin'sans-serif;
    margin-bottom: 20px;
}

.content p{
    font-family: 'poppins',sans-serif;
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #c4c4c4;
}

.content-image{
    margin: 50px 0px;
}

.premium{
    /* margin-top: 100px; */
    background-color: #fff7f4;
}

.premium h1{
    margin-top: 100px;
    margin-bottom: 20px;
}

.premium .content-image{
    margin-bottom: 50px;
}

.footer{
    width: 100%;
    height: 81vh;
    padding: 12% 12%;
    background-color: rgb(0, 0, 0);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer > p{
    color: white;
    margin-top: 100px;
    font-family: 'poppins', sans-serif;
}

.footer-content{
    color: white;
    width: 25%;
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}

.footer-content h1{
    margin-bottom: 5px;
}

.footer-content p{
    color: rgb(161, 159, 159);
}

.footer-content p:hover{
    color: white;
}

.social-icons{
    display: flex;
    column-gap: 20px;
}