*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
body{
    overflow-x:hidden ;
}
button{
    text-transform: capitalize;
}
header{
    min-height: 12vh;
}
nav{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logoWrapper{
    margin-left: 2rem;
}
.navigation{
    width: 38%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-right: 1rem;
}
.linkWrapper, .iconWrapper{
    list-style-type: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-top: .6rem;
}
.menu{
    display: none;
    width: 25%;
    align-self: flex-end;
}
.iconWrapper{
    justify-content: flex-end;
}
li{
    margin-bottom: .3rem;
    margin-right: .5rem;
}
a{
    color: black;
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: capitalize;
    text-decoration: none;
    transition: .3s;
}
i{
    font-size: 1.5rem;
    margin-right: 1rem;
    transition: .3s;
}
i:hover{
    color: steelblue;
}
.help,.about, .how, .contact{
    background: url(./images/img1.jpg);
    background-color: rgba(0,0,0,.3);
    min-height: 86vh;
    background-position: center ;
    background-size: cover;
    margin-top: 2vh;
    background-blend-mode: darken;
    display: flex;
    align-items:center;
    justify-content: center;
}
.introWrapper, .content{
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    width: 60%;
    color: white;
}
.introWrapper > h1{
    font-family: 'Times New Roman', Times, serif;
    font-size: 3rem;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
} 
.introWrapper > p{
    font-size: 1.3rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}
.buttonWrapper > button{
    color: white;
    background-color: rgb(74, 138, 190);
    font-size: 1.2rem;
    font-weight: 600;
    font-family: inherit;
    padding: 10px 2rem;
    border-radius: 999px;
    border: none ;
    margin: 0 .5rem;
    outline: none;
    transition: background-color .25s linear;
    cursor: pointer;
}
button.white{
    border: 2px solid white;
    background-color: transparent;
}
button:not(.white):hover{
    background-color: rgb(51, 97, 134);
}
.about,.how{
    background: url(./images/img2.jpg);
    background-color: rgba(0,0,0,.4);
    background-blend-mode: darken; 
    margin: 0;
    background-position: center;
    background-size: cover;
    object-fit: cover;
    min-height: 100vh;
    justify-content: space-evenly;
}
.heading{
    width: 23%;
    margin-left: 2rem;
}
.heading h1{
    color: white;
    font-size: 2.8rem;
    font-weight: 400;
    margin-top: 1.5rem;
}
.about p{
    font-size: 1.4rem;
    line-height: 1.5;
    color: white;
    width: 46%;
}
.how{
    background: url(./images/img3.jpg);
    background-position: center center;
    background-color: rgba(17, 35, 48, 0.55);
    background-size: cover;
    background-blend-mode: darken; 
    min-height: 100vh;
    color: white;
    flex-direction: column;
    justify-content: center;
}
.how h1{
    font-size: 2.4rem;
    font-family: 'Times New Roman', Times, serif;
    letter-spacing: 2px;
    margin-bottom: 5rem;
}
.grid-wrapper{
    display: grid;
    width: 80vw;
    gap: 1.5rem;
    grid-template-columns: repeat(3, 1fr);
}
.article h2{
    font-size: 2rem;
    margin-bottom: 2rem;
    font-family: 'Times New Roman', Times, serif;
    letter-spacing: 1px;
    font-weight: 400;
}
h2.highlight{
    color: steelblue;
}
.article p{
    font-size: 1.1rem;
    letter-spacing: 1px;
    line-height: 1.5;
}
.testimonials{
    min-height: 100vh;
    background: url(./images/img4.jpg);
    background-size: cover;
    object-fit: cover;
    background-position: center;
    background-color: rgba(21, 39, 54, 0.5);
    background-blend-mode: darken; 
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    letter-spacing: 1px;
}
.testimonials h1, .news h1{
    font-size: 2.4rem;
    font-family: 'Times New Roman', Times, serif;
    letter-spacing: 2px;
    margin: 1.2rem auto 5rem  ;
}
.quoteWrapper{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
}
blockquote{
    width: 35%;
    font-size: 1.4rem;
    border-left: 5px solid white;
    padding-left: 1rem;
    font-family: 'Times New Roman', Times, serif;
}
cite{
    display: block;
    margin-top: 1rem;
}
.news{
    min-height: 100vh;
    background: url(./images/img5.jpg);
    background-size: cover;
    object-fit: cover;
    background-position: center;
    background-color: rgba(21, 39, 54, 0.5);
    background-blend-mode: darken; 
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    letter-spacing: 1px;
}
.news  .article h2{
    margin-bottom: 0;
}
.news  .article p{
    margin-top: 2rem;
}
.contact{
    background: url(./images/img6.jpg);
    background-size: cover;
    margin: 0;
    background-color: rgba(14, 27, 37, 0.6);
    mix-blend-mode: darken;
    color: white;
}
footer{
    min-height: 12vh;
    display: flex;
    align-items: center;
    justify-content: space-around;
}
.ft-links{
    list-style-type: none;
    display: inline-flex;
    gap: .4rem
}
a.highlight{
    font-size: 1.4rem;
    color: steelblue;
}
a:hover{
    color: steelblue;
}
@media screen and (max-width: 940px ){
    .navigation{
        width: 55%;
    }
    .introWrapper{
        width: 80%;
    }
    .heading{
        width: 30%;
    }
    .about p{
        width: 58%;
    }
    .grid-wrapper{
        width: 92vw;
        gap: 1rem;
    }
    .quoteWrapper{
        gap: 2rem;
    }
    blockquote{
        width: 42%;
        font-size: 1.4rem;
    }
    cite{
        margin-top: .8rem;
    }
}
@media screen and (max-width: 650px ){
    .linkWrapper{
        display: none;
    }
    .menu{
        display: block;
        margin-right: 1.5rem;
    }
    .menu button{
        padding: 8px 12px;
        margin-top: 8px;
        background-color: steelblue;
        color: white;
        font-family: Verdana, Geneva, Tahoma, sans-serif;
        border-radius: 6px;
        font-size: 1rem;
        outline: none;
    }
    .introWrapper{
        width: 90%;
    }
    .introWrapper h1{
        font-size: 2.4rem;
    }
    .buttonWrapper button{
        margin: .6rem;
    }
    .about{
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .about p{
        width: 80%;
    }
    .heading{
        width: 80%;
        margin: 0;
    }
    .heading h1{
        margin-top: 1rem;
    }
    .about p{
        font-size: 1.3rem;
        line-height: 1.2;
        color: white;
    }
    .grid-wrapper{
        grid-template-columns: 1fr;
        gap: 2rem;
        width: 90%;
    }
    .article h2{
        margin-bottom: 1rem;
    }
    .how h1{
        margin-left: 1rem;
        margin-bottom: 2.5rem;
    }
    .article p{
        font-size: 1.1rem;
        line-height: 1.2;
    }
    .testimonials h1, .news h1{
        font-size: 2rem;
        letter-spacing: 2px;
        margin: 1.2rem auto 2rem ;
    }
    .quoteWrapper{
        display: flex;
        flex-direction: column;
    }
    blockquote{
        width: 80%;
        font-size: 1.2rem;
    }
    cite{
        margin-top: .6rem;
    }
    .news, .how{
        padding: 1rem ;
    }
    
footer{
    min-height: 12vh;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
}
ul.ft-links{
    max-width:60% ;
    list-style-type: none;
    display: inline-flex;
    flex-wrap: wrap;
    gap: .3rem;
    font-size: .8rem;
}
footer p{
    width: 40%;
}
}