*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    list-style: none;
    text-decoration: none;
}
header {
    position: fixed;
    right: 0;
    top: 0;
    z-index: 1000;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 2.5%;
    background: rgba(44, 133, 234, 0.477);
    border-radius: 25px;
}
body{
    background: white;
}
.logo{
    font-size: 30px;
    font-weight: 700;
    color: white;

}
.navlist{
    display: flex;
}
.navlist a{
    color: white;
    margin-left: 60px;
    font-size: 15px;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: all .60s ease;
}
.navlist a:hover{
    border-bottom: 2px solid white;
}
#menu-icon{
    color: white;
    font-size: 30px;
    z-index: 10001;
    cursor: pointer;
    display: none;
}

.about{
    height: 100%;
    width: 100%;
    min-height: 100vh;
    background: linear-gradient(245.59deg, #166bc5 0%, #003d7e 28.53%, #56a8ff 75.52%);
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 2rem;
}
section{
    padding: 0 15%;
}

.about-text h1{ 
    font-size: 90px;
    line-height: 1;
    color: white;
    margin: 0 0 45px;
}

.about-text p{ 
    color: white;
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 190px;
}

@media (max-width: 1889px){
    .about-text p{
        margin-bottom: 40px;
    }
}    
    
@media (max-width: 1584px){
    header{
        padding: 10px 3%;
        transition: .2s;
    }
}
@media (max-width: 1460px){
    .about-text h1{
        font-size: 70px;
        margin: 0 0 35px;
    }
    .about-text p{
        margin-bottom: 80px;
    }
}

@media (max-width: 1195px){
    .about-text h1{
        font-size: 65px;
        margin-top: 30px;
    }
}

@media (max-width: 1107px){
    #menu-icon{
        display: block;
    }
    .navlist{
        position: absolute;
        top: 100%;
        right: -100%;
        width: 245px;
        height: 300px;
        background: #257edd;
        display: flex;
        align-items: center;
        flex-direction: column;
        padding: 30px 20px;
        transition: all .55s ease;
        overflow-y: auto;
        border-radius: 20px;
    }
    .navlist a{
        margin-left: 0;
        display: block;
        margin: 7px 0;
    }
    .navlist.open{
        right: 0;
    }
    .about-text h1{
        font-size: 55px;
        margin-top: 110px;
}
    
@media (max-width: 877px){
    .about-text h1{
        font-size: 50px;
        margin-top: 90px;
    }
    .about-text p{
        font-size: 16px;
        
    }
}

@media (max-width: 783px){
    .about-text h1{
        font-size: 45px;
        margin-top: 90px;
    }
}    

@media (max-width: 703px){
    .about-text h1{
        font-size: 40px;
        margin-top: 40px;
    }
    .about-text p{
        font-size: 14px;    
    }
}      
    
@media (max-width: 629px){
    .about-text h1{
        font-size: 37px;
        margin-top: 40px;
    }
    .about-text p{
        font-size: 14px;    
    }
}      
    
@media (max-width: 583px){
    .about-text h1{
        font-size: 37px;
        margin-top: 0px;
        margin-right: 150px;
    }
    .about-text p{
        font-size: 14px;
    }
}     
    
@media (max-width: 425px){
    .about-text h1{ 
        font-size: 37px;
        margin-top: 0px;
    }
    .about-text p{ 
        font-size: 13px;
        line-height: 1.9;
        margin-bottom: 40px;
    }    
}
@media (max-width: 339px){
    .about-text h1{ 
        font-size: 25px;
        margin-top: -80px;
        margin-left: -20px;
        
    }
    .about-text p{ 
        width: 20em;
        font-size: 12px;
        line-height: 1.9;
        margin-left: -20px;
        
        
    }    
}
}