*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
    list-style: none;
    text-decoration: none;
}
body{
    width: 100%;
    height: 100vh;
    background-image: url(../img/background_01.jpg);
    transition: ease-in-out 2s;
    background-color: #a57e51;
    /* background-color: #00868f; */
    background-position: center;
    background-size: cover;
}
.logo img__{
    width: 125px;
    height: auto;
}
header{
    position: fixed;
    width: 100%;
    top: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 6%;
    background: rgba(164, 199, 200, 0.4);
}
.navlist{
    display: flex;
}
.navlist a{
    font-size: 16px;
    color: #fff;
    text-transform: capitalize;
    font-weight: 500;
    padding: 10px 20px;
    transition: all .43s ease;
}
.navlist a:hover{
    color: #d3d3d4;
}
#menu-icon{
    font-size: 35px;
    color: #fff;
    z-index: 10001;
    cursor: pointer;
}
section{
    padding: 0 14%;
}
.home{
    width: 100%;
    height: 100vh;
    position: absolute;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    align-items: center;
}

.home-text {
    margin-top: -10%;
}
.home-text h5{
    color: #fff;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 1px;
    margin-top: 10%;
}
.home-text h1{
    color: #fff;
    font-size: 72px;
    text-shadow: 5px 5px 7px #036A81;
    text-transform: uppercase;
    line-height: 1;
    font-weight: 700;
    letter-spacing: -3px;
    margin: 16px 0;
}
.home-text h1 span{
    color: #036A81;
    font-size: 72px;
    text-shadow: 1px 1px 2px #fff;
    font-weight: 9  00;
}
.home-text p{
    color: #f0f0f0;
    font-size: 18px;
    /* text-transform: capitalize; */
    font-style: italic;
    max-width: 360px;
    line-height: 1.5;
    margin-bottom: 30px;
}
.home-btn{
    display: inline-block;
    color: #000;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: 2px solid #fff;
    padding: 10px 20px;
    background-color: #fff;
    transition: .42s;
}
.home-btn:hover{
    /* background-color: transparent; */
    /* background-color: rgba(81, 127, 148, 0.9); */
    background-color: rgba(0, 134, 143, 0.8);
    color: #fff;
}
.home-icon{
    position: absolute;
    right: 2px;
    top: 40%;
    padding: 0 2%;
    transform: translateY(-50%);
}
.home-icon i{
    display: block;
    margin: 25px 0;
    color: #fff;
    font-size: 25px;
    transition: .42s;
}
.home-icon i:hover{
    transform: translateX(-30%);
    /* color: #d3d3d4; */
    color: #c3f4f6;
}

footer{
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    font-size: small;
    font-weight: 300;
    color:rgb(100, 118, 119);
    padding: 5px 6%;
    background: rgba(164, 199, 200, 0.4);
}

footer .bxs-donate-heart{
    /* color: rgb(105, 144, 136); */
    color:#036A81;
}



/* Responsive Css */
@media(max-width:788px){
    header{
        padding: 3px 3%;
        transition: .3s;
    }
}
@media(max-width:750px){
    .home-text{
        margin-top: -80%;
    }

    .home-text h1{
        font-size: 50px;
        transition: .5s;
    }
    .home-btn{
        padding: 8px 18px;
        transition: .5s;
    }
}
@media(max-width:730px){
    .navlist{
        position: absolute;
        top: -600px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: #036A81;
        text-align: center;
        transition: all .40s;
    }
    .navlist a{
        display: block;
        padding: 16px;
        margin: 8px;
        color: #fff;
        border-bottom: 2px solid #fff;
    }
    .navlist.open{
        top: 100%;
    }
}

