@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'poppins', sans-serif;
}

/* Global tags*/

h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: rgb(35, 35, 85);
}

span {
    font-size: .9rem;
    color: #757373;
}

h6 {
    font-size: 1.1rem;
    color: rgb(24, 24, 49);
}

/* Navigation */
nav {
    position: fixed;
    width: 100%;
    background-color: white;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 1vw 8vw;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.15);
    z-index: 999;
}

nav img {
    width: 65px;
    cursor: pointer;
}

nav h1{
    text-align: left;
    color: green;
}

nav .navigation{
    display: flex;
}

#menu-btn {
    width: 30px;
    height: 30px;
    top: 30%;
    right: 30%;
    display: none;
}

#menu-close{
    display: none;
}

nav .navigation ul{
    display: flex; 
    justify-content: flex-end;
    align-items: center;
}

nav .navigation ul li{
    list-style: none;
    margin-left: 30px;
}
nav .navigation ul li a{
    text-decoration: none;
    color: rgb(21, 21, 100);
    font-size: 16px;
    font-weight: 500;
    transition: 0.3s ease;
}

nav .navigation ul li a:hover{
    color: #fdc93B;
}

/* Home */

#home{
    background-image: linear-gradient(rgba(9, 5, 54, 0.3),rgba(5, 4, 46, 0.7)),url(images/gifts-studyabroad.png);
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 40px;
}

#home h2{
    color: white;
    font-size: 2.2rem;
    letter-spacing: 1px;
}

#home p{
    width: 50%;
    color: white;
    font-size: 0.9rem;
    line-height: 25px;
}

/* features */

#features{
    padding: 8vw 8vw 8vw 8vw;
    text-align: center;
    background-color: burlywood;
}
#features .fea-base{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(320px, 1fr));
    grid-gap: 2rem;
    margin-top: 50px;
}

#features .fea-box{
    background: white;
    text-align: start;
}

#features .fea-box i{
    font-size: 2.3rem;
    color: rgb(44, 44, 80);
    justify-content: center;
    padding-left: 25vh;
    padding-top: 5vh;
}
#features .fea-box h3{
    font-size: 1.2rem;
    font-weight: 600;
    color: rgb(46, 46, 59);
    padding: 13px 0 7px 0;
    text-align: center;
}
#features .fea-box p{
    font-size: 1rem;
    font-weight: 400;
    color: rgb(70, 70, 86);
    text-align: center;
    padding: 0 2vw 2vw 2vw;
}

/* success */

#success{
    padding: 8vw 8vw 8vw 8vw;
    text-align: center;
    background-color: #fdc93B;
}

#success .success-box{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px, 1fr));
    grid-gap: 1rem;
    margin-top: 50px;
}
#success .success-box .profile{
    background: white;
    padding: 30px 10px;
}

/* about */

#about{
    padding: 8vw 8vw 8vw 8vw;
    text-align: center;
    background-color: darkseagreen;
}
#about h4{
    padding-top: 2vw;
    color: black;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-size: larger;
}

#about .about-box{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px, 1fr));
    grid-gap: 5rem;
    margin-top: 50px;
}
#about .about-box .profile{
    background: white;
    padding: 30px 10px;
}

/* contact */

#contact{
    padding: 8vw 8vw 8vw 8vw;
    text-align: left;
    background-color: #fdc93B;

}
#contact h4{
    padding-top: 2vh;
}

/* footer */

footer{
    padding: 8vw;
    background-color: #101C32;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

footer .footer-col{
    padding-bottom: 40px;
}

footer h3{
    color: rgb(241, 240, 245);
    font-weight: 600;
    padding-bottom: 20px;
}

footer li{
    list-style: none;
    color: wheat;
    padding: 10px 0;
    font-size: 15px;
    cursor: pointer;
    transition: 0.3s ease;
}

footer li:hover{
    color: rgb(241, 240, 245);color: rgb(241, 240, 245);
}

footer .copyright{
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    flex-wrap: wrap;
}

footer .copyright p{
    color: white;
}

footer .copyright .pro-links{
    margin-top: 0px;
}

footer .copyright .pro-links i{
   background-color: #101C32;
   color: #1969e1;
}

footer .copyright .pro-links:hover{
    background-color: #fdc93B;
    color: #2c2c2c;
}

@media (max-width: 769px){
    nav {
        padding: 15px 20px;
    }
    nav img{
        width: 70px;

    }
    #menu-btn {
        display: initial;
    }
    
    #menu-close{
        display: initial;
        font-size: 1.6rem;
        color: white;
        padding: 30px 0 20px 20px;
    }
    nav .navigation ul{
        position: absolute;
        top: 0;
        right: -220px;
        width: 220px;
        height: 100vh;
        background-color: rgb(17, 20, 104, 0.45);
        backdrop-filter: blur(4.5px);
        border: 1px solid rgb(255, 255, 255, 0.18);
        display: flex; 
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
    }

    nav .navigation ul.active{
        right: 0;
    }

    nav .navigation ul li{
        padding: 20px 0 20px 40px;
        margin-left: 0;
    }

    nav .navigation ul li a{
        color: white;
    }
}

/* Animations */
.fea-box { 
transition: transform .3s ease; 
} 
.fea-box:hover { 
transform: scale(1.1); 
}
