
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&family=Source+Sans+3:ital,wght@0,200..900;1,200..900&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}
:root {
    --main-color:#091057;
    --sacandary-color:#024CAA;
    --section-color: #F4F6FF;
    --action-color: #EC8305;
    --big-font:6rem;
    --h2-font:3rem;
    --p-font:1.1rem;
}
body {
    font-family: "Poppins", sans-serif;
    /* height: 100vh; */
    background-color: var(--section-color);
}
li {
    list-style: none;  
}
a {
    text-decoration: none;
}
section {
    padding: 80px 18%;
}
/* start header */
header {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: transparent;
    padding: 30px 18%;
    transition:  ease 0.40s;
}
header .logo {
    font-size: 35px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--main-color);
}
header .navbar {
    display: flex;
}
header .navbar a {
    color: var(--main-color);
    font-size: 22px;
    font-weight: 500;
    padding: 10px 22px;
    border-radius: 4px;
    transition: 0.4s ease;
}
header .navbar a:hover {
    background: var(--section-color);
    color: var(--action-color);
    box-shadow: 5px 10px 30px rgb(85 85 85 / 20%);
    border-radius: 4px;
}
#menu-icon {
    color: var(--main-color);
    font-size: 35px;
    z-index: 1000;
    cursor: pointer;
    display: none;
}
header .sticky {
    background-color: var(--section-color);
    padding: 10px 18%;
    box-shadow: rgb(33, 35, 38, 0.1) 0px 10px 10px -10px;
}
.sticky .logo {
    color: var(--main-color);
}
.sticky .navbar a {
    color: var(--main-color);
}
/* end header */
/* start home section */
/* .home {
    position: relative;
    width: 100%;
    height: 100vh;
    background: url(images/landing\ 5.jpg) no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center; 
    justify-content: center;
    text-align: center;
    padding: 0 20px;
} */
.home{
    position: relative;
    width: 100%;
    height: 100vh;
    background: url(images/landing\ 5.jpg);
    background-size: cover;
    background-position: center;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    align-items: center;
}
.home-text h1 {
    font-size: var(--big-font);
    line-height: 1.2;
    color: var(--section-color);
    letter-spacing: 4px;
    font-family: "Ubuntu", sans-serif;
    margin-bottom: 20px;
}
.home-text p {
    color: var(--section-color);
    font-size: 20px ;
    font-weight: 400;
    line-height: 38px;
    margin-bottom: 50px;
    
}
.home-btn {
    display: inline-block;
    font-size: 18px;
    font-weight: 600;
    padding: 15px 30px;
    background-color: var(--action-color) ;
    color: var(--main-color);
    border-radius: 4px;
    transition: 0.4s ease;
}
.home-btn:hover {
    font-weight: 700;
    scale: 1.05;
    color: var(--section-color);
}
/* end home section */
/* start info container */
.container .text h2 {
    font-size: var(--h2-font);
    line-height: 1.1;
}
.row-items{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(225px, auto));
    grid-gap:2rem;
    align-items: center;
    text-align: center;
    margin-top: 5rem;
}
.container-box {
    background: var(--section-color);
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    padding: 50px 10px;
    border-radius: 4px;
    transition: all 1s ease;
    cursor: pointer;
}
.container-box:hover {
    box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
}
.container-icon {
    font-size: 40px;
    color: var(--main-color);
    margin-bottom: 15px;
}
.container-box h4 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
}
.container-box p {
    font-size: 15px;
    font-weight: 400;
    color: var(--sacandary-color);
}
/* end info container */
/* start articals */

.articals {
    background-color: #f0f0f0;
}
.section-title {
    text-align: center;
}
.section-title h2 {
    font-size: var(--h2-font);
    line-height: 1.2;
}
.articals-card {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, auto));
    grid-gap: 2rem;
    align-items: center;
    margin-top: 5rem;
}
.thum {
    position: relative;
    transition: all 0.2s cubic-bezier(.445, .05, .55, .95);
    cursor: pointer;
}
.thum img{
    width: 100%;
    height: auto;
    border-radius: 50px;
}
.arctical-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding-top: 24px;
}
.arctical-content .artical-title {
    font-size: var(--p-font);
    font-weight: 500;
    color: var(--main-color);
}
.arctical-content a {
    font-size: 18px;
    font-weight: 600;
    padding: 15px 30px;
    background-color: var(--action-color) ;
    color: var(--main-color);
    border-radius: 4px;
    transition: 0.4s ease;
    margin-top: 3rem;
}
.arctical-content a:hover {
    font-weight: 700;
    scale: 1.05;
    color: var(--section-color);
}
/* end articals */

/* start scholarships */
.scholarships-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, auto));
    grid-gap: 3rem;
    align-items: center;
    margin-top: 5rem;
}
.scholarships-container .scholarship-card {
    background-color: #f0f0f0;
    padding: 20px;
    border-radius: 8px;
    min-height: 450px;
}
.scholarship-thum{
    position: relative;
    transition: all 0.2s cubic-bezier(.445, .05, .55, .95);
    cursor: pointer;
}
.scholarship-thum img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}
.scholarship-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding-top: 24px;
}
.scholarship-content h3 {
    font-size: var(--h2-font);
    font-weight: 500;
    color: var(--main-color);
}
.scholarship-content p {
    font-size: var(--p-font);
    color: var(--sacandary-color);
    margin-top: 30px;
    margin-bottom: 5px;
    padding: 15px 30px;
    width: 100%;
}
.scholarship-content a {
    font-size: 18px;
    font-weight: 600;
    padding: 15px 30px;
    background-color: var(--action-color) ;
    color: var(--main-color);
    border-radius: 4px;
    transition: 0.4s ease;
    margin-top: 3rem;
}
.scholarship-content a:hover {
    font-weight: 700;
    scale: 1.05;
    color: var(--section-color);
}
/* end scholarships */
/*  start about */
.about {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f0f0f0;
}
.about img{
    max-width: 320px;
    float: left;
    border-radius: 8px;
    margin-right: 35px;
}
/* .about-container {
    width: 70%;
} */
.about-text h2 {
    font-size: var(--h2-font);
    color: var(--main-color);
    margin-bottom: 30px;
}
.about-text p {
    font-size: var(--p-font);
    color: var(--sacandary-color);
    line-height: 1.3;
}
/*  end about*/
/* start newsletter */
.newsletter {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    grid-gap: 3rem;
}
.news-text h2{
    font-size: var(--h2-font);
    margin-bottom: 5px;
}
.news-text p {
    font-size: var(--p-font);
    color: var(--sacandary-color);
    line-height: 30px;
}
.newsletter form {
    max-width: 100%;
    width: 450px;
    position: relative;
}
.newsletter form input:first-child{
    display: inline-block;
    width: 100%;
    padding: 20px 150px 20px 30px;
    box-shadow: 5px 10px 30px rgb(85, 85, 85 / 20%);
    outline: none;
    border: none;
    border-radius: 15px;
}
.newsletter form input:last-child{
    display: inline-block;
    position: absolute;
    outline: none;
    border: none;
    padding: 14px 30px;
    border-radius: 15px;
    background-color: var(--action-color);
    color: var(--section-color);
    top: 6px;
    right: 6px;
    cursor: pointer;
    font-weight: 500;
}
/* end newsletter */
/* start footer */
    #contact {
        background-color: var(--main-color);
    }
    .footer{
        padding: 20px 0;
    }
    .footer .main {
        display: flex;
        flex-wrap: wrap;
    }
    .footer .list {
        width: 25%;
    }
    .footer .list h4 {
        font-size: 21px;
        color: var(--section-color);
        margin-bottom: 30px;
        position: relative;
    }
    .footer .list h4::before {
        content: "";
        position: absolute;
        height: 2px;
        width: 50px;
        left: 0;        
        bottom: -10px;
        background-color: var(--section-color);
    }
    .footer .list ul li:not(:last-child){
        margin-bottom: 16px;
    }
    .footer .list ul li a {
        color: var(--section-color);
        font-size: var(--p-font);
        display: block;
        transition: 0.3s;
    }
    .footer .list ul li a:hover {
        color: var(--sacandary-color);
        transform: translateX(14px);
    }
    .footer .social a{
        height: 40px;
        width: 40px;
        background: var(--section-color);
        color: var(--main-color);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 21px;
        border-radius: 15px;
        transition: 0.3s;
        margin-right: 10px;
    }
    .footer .social a:hover {
        transform: scale(1.1);
    }
    .end-text {
        text-align: center;
        padding-top: 90px;
    }
    .end-text p {
        color: var(--action-color);
        font-size: 14px;
        letter-spacing: 2px;
    }
/* end footer */

/* responsive */
@media (max-width:1400px){
    header {
        padding: 17px 3%;
        transition: 0.2s;
    }
    section{
        padding: 80px 3%;
        transition: 0.2s;
    }
    :root {
        --big-font: 4.5rem;
        --h2-font: 2.3rem;
        --p-font: 1rem;
        transition: 0.2s;
    }
}
@media (max-width: 1040px){
    #menu-icon {
        display: block;
    }
    .stick #menu-icon{
        color: var(--section-color);
    }
    .home {
        height: 88vh;
    }
    .navbar {
        position: absolute;
        top: 0;
        right: -100%;
        width: 270px;
        height: 120vh;
        background: #2f71c5;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 150px 30px ;
        transition: 0.5s all;
    }
    .navbar a {
        display: block;
        margin: 1.2rem 0;
    }
    .sticky .navbar a {
        color: var(--section-color);
    }
    .navbar a:hover {
        color: var(--action-color);
    }
    .open{
        right: 0;
    }
    .footer .list{
        width: 50%;
        margin-bottom: 12px;
    }
}
@media (max-width: 575px) {
    .footer .list {
        width: 100%;
    }
    .newsletter form {
        width: 350px;
    }
    :root {
        --big-font: 3.8rem;
        --h2-font: 1.8rem;
        transition: 0.2s;
    }
    .text {
        text-align: center;
    }
    .home {
        height: 85vh ;
        transition: 0.2s;
    }
}

/* responsive */