*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
}

.header-section-one{
    height: 80px;
    width: 100%;
    /* background-color: #3f6987; */
    background-color: #414053;
}

.logo{
    font-size: 35px;
    line-height: 80px;
    padding: 0 10px;
}

.logo img{
    width: 8rem;
    padding: 0 3rem 0 0;
    margin-top: 1rem;
}

ul{
    float: right;
    margin-right: 20px;
}

ul li{
    display: inline-block;
    line-height: 80px;
    margin: 0 5px;
}

ul li a{
    color: white;
    font-size: 17px;
    padding: 7px 13px;
    border-radius: 3px;
    text-transform: uppercase;
}

a.active,a:hover{
    background: #1b9bff;
    transition: .5s;
}


.checkbtn{
    font-size: 30px;
    color: white;
    float: right;
    line-height: 80px;
    margin-right: 40px;
    cursor: pointer;
    display: none;
}

#check{
    display: none;
}


.homepage{
    display: flex;
    justify-content: center;
    padding-top: 6rem;
    color: #fff;
    background-color: #59788E;
    /* background-color: #F0979E; */
}


.home h1{
    font-size: 5rem;
    padding-bottom: 1.5rem;
    padding-bottom: 1rem;
}

.home P {
    font-size: 2rem;
    padding: 0.5rem 0;
}

button{
    padding: 0.6rem 1.5rem;
    font-weight: 900;
    font-size: 0.8rem;
    margin-top: 2rem;
}

.show-now{
    color: black;
    
}

.find-more{
    margin-left: 1.5rem;
    background-color: #59788E;
    color: #fff;
    border: 2px solid white;
}

@media (max-width: 425px){
    #logo{
        float: left;
    }
    

}


@media (max-width: 858px){
    .checkbtn{
        display: block;
    }

    #logo{
        display: flex;
        justify-content: right;
    }

    ul{
        position: fixed;
        width: 100%;
        height: 100vh;
        /* background: #406681; */
        background: #191F31;
        top: 80px;
        left: -100%;
        text-align: center;
        transition: all .5s;
    }

    ul li{
        display: block;
        margin: 20px 0;
        line-height: 30px;
    }

    ul li a{
        font-size: 20px;
    }

    a:hover,a.active{
        background: none;
        color: #59788E;
    }
    
    #check:checked ~ ul{
        left: 0;
    }


    .homepage{
        display: block;
        padding: 1rem 0.5rem 1.2rem 1rem;
    }
    .home{
        width: 100%;
    }

    .image img{
        max-width: 80%;
        height: auto;
        align-items: center;
    }

    .home h1{
        font-size: 1.8rem;
    }
    
    .home P {
        font-size: 1.3rem;
        padding: 1.2rem 0;
    }
}
