*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
li{
    list-style-type: none;
}
a{
    text-decoration: none;
}
header{
    width: 100%;
    position: fixed;
    height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px ;
    padding: 0 25px;
    background: #161842;
    z-index: 1000;
}
header img{
    width: 150px;
    height: 30px;
}
header ul{
    display: flex;
}
header li{
    margin: 5px;
}
header a{
    color: white;
}
header button{
    padding: 5px 7px;
    border-radius: 10px;
    border: none;
    color: white;
    background: #05d7af;
}
.container{
    position: absolute;
    top: 60px;
    width:100%;

}
section{
    color: white;
    height: 85vh;
    background: url(./img/bg-green.png);
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 35px;
    padding: 35px;
}
section p{
    color: #05d7af;
    margin-bottom: 7px;
}
.discovery{
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 20px;
    margin: 20px 5px;
}
.discovery img{
width: 450px;
height: 450px;
}
.discovery div{
    width: 40%;
}
.discovery h3{
    font-size: 30px;
    font-weight: 350;
}
.discovery h4{
    margin-top: 12px;
    font-size: 22px;
    font-weight: 450;
}
.push{
    width: 100%;
    height: 50vh;
    background: #161842 ;
    color: white;
    padding: 2% 25%;
    line-height: 1.7;
}
.push h1, .push h4 , .push p{
    font-weight: 300;

}
.push h4{
    color: #05d7af;
    margin-left: 25px;
}
.push ul p{
    color:  #A2A2A2;
}
.push p:nth-of-type(1){
    padding-left: 35px;
}
.push p:nth-of-type(2){
    margin: 15px;
}
.push li{
    list-style-type: decimal;
    color: #05d7af;
}
.trusted{
    width: 100%;
    height: 50vh;
    background: #05d7af ;
    padding: 2% 10%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.trusted h2{
    margin: 60px 0;
}
.trusted img{
    width: 175px;
}
.imgs{
    display: flex;
    justify-content: space-around;
}




@media (min-width: 550px) and (max-width: 768px){
    .discovery img{
        width: 225px;
        height: 225px;
    }
    .push{
        padding: 2% 10%;
    }
    .trusted{
        padding: 2% 7%;
        height: 100%;
    }
    .imgs{
        display: flex;
        flex-direction: column;
    } 
}

@media(max-width:550px){
    .discovery{
        flex-direction: column;
        padding: 0px;
    }
    .discovery img{
        width: 375px;
        height: 375px;
    }
    .discovery div{
        width: 90%;
        margin-bottom: 25px;
    }
    .push{
        padding: 2% 10%;
    }
    .trusted{
        padding: 2% 7%;
        height: 100%;
    }
    .imgs{
        display: flex;
        flex-direction: column;
    }    
    
}