*{
    margin: 0;
    padding: 0;
    font-family: 'Merriweather Sans', sans-serif;
}
.banner{
    width: 100%;
    height: 70vh;
    position: relative;
    overflow: hidden;
}
.slider{
    width: 100%;
    height: 70vh;
    position: absolute;
    top: 0;
}
.slider img{
    width: 100%;
    height: 70vh;
}
.overla{
    width: 100%;
    height: 70vh;
    background: linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5));
    position: absolute;
    top: 0;
}    
.logo{
    margin: 15px 60px;
    /* display: flex; */
}
.logo img{
    margin: 5px;
    width: 180px;
    cursor: pointer;
}
.navbar{
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* width: 85%; */
    /* flex-direction: row; */
    /* margin: 10px auto; */
}
/* .navbar ul{ */
.menu{
    display: flex;
    flex-direction: row;
    /* justify-content: flex-end; */
    /* max-width: 1200px; */
    margin: 0 auto;
    padding: 10px;
    /* align-items: center; */
}
.navbar ul li{
    list-style: none;
    position: relative;
    font-size: 1.0rem;
    padding: 7px 15px;
    margin: 10px 30px;
    transition: 0.5s;
    border-radius: 10px;
}
.navbar ul li a{
    text-decoration: none;
    color: white;
}
.navbar ul li:hover{
    background: orangered;
}
.navbar ul li ul{
    position: absolute;
    top: 40px;
    left: -15px;
    background: white;
    display: block;
    width: 180px;
    transition: 0.5s;
    border-radius: 10px;
    opacity: 0;
    visibility: hidden;
}
.navbar ul li ul li{
    padding: 2px 10px;
    margin: 3px 15px;
}
.navbar ul li ul li a{
    color: orangered;
    font-size: 0.8rem;
}
.navbar ul li:hover ul{
    opacity: 1;
    visibility: visible;
}
.navbar ul li ul li:hover a{
    color: white;
}


@media screen and (max-width: 770px){
    .banner{
        height: 75vh;
    }
    .slider{
        height: 75vh;
    }
    .slider img{
        height: 75vh;
    }
    .overla{
        height: 75vh;
    }        
    .logo{
        margin: 10px 15px;
        /* display: flex; */
    }
    .logo img{
        width: 160px;
    }    
    
    .navbar{
        position: relative;
        padding: 0.65em 2em;
        /* flex-flow: column; */
        /* width: 100%; */
        background: rgba(0,0,0,0.5);
        /* margin: 0; */
        /* display: block; */
        /* align-items: center; */
    }
    /* .navbar ul{ */
    .menu{
        flex-flow: column;
        position: absolute;
        top: 6em;
        background: rgba(0,0,0,0.5);
        left: 0;
        right: 0;
        /* height: 100vh; */
        opacity: 0;
        transform: scaleY(0);
        transform-origin: top center;
        transition: 200ms transform cubic-bezier(0.36, 0.4, 0.42, 1.48) 100ms, 100ms opacity ease-in-out;
        /* background: black; */
        /* display: block; */
        /* align-items: center; */
    }
    .navbar ul li{
        display: block;
        transition: 0s;

        /* opacity: 0; */
        /* transform: scaleY(0); */
        /* transform-origin: top center; */

        /* position: absolute; */
        /* align-items: center; */
    }
    .navbar ul li ul{
        /* display: inline-block; */
        /* position: relative; */
        transition: 0s;
        width: 100%;
        z-index: 1;
    }
    .navbar ul li:hover ul{
        padding: 2px 15px;
        /* margin: 3px 15px;     */
        top: 10px;
        position: relative;
    }

    .hamburger{
        width: 2em;
        height: 0.25em;
        display: block;
        background: white;
        position: relative;
        cursor: pointer;
        transition: 0.2s transform ease-in-out;
    }
    .hamburger::after, .hamburger::before{
        content: "";
        position: absolute;
        left: 0;
        background: inherit;
        width: inherit;
        height: inherit;
        transition: 0.2s transform ease-in-out;
    }
    .hamburger::after{
        top: 0.65em;
    }
    .hamburger::before{
        bottom: 0.65em;
    }
    .close::after, .close::before{
        top: 0;
        transition: 0.2s transform ease-in-out;
    }
    .close::before{
        display: none;
    }
    .close{
        transform: rotate(45deg);
        transition: 0.2s transform ease-in-out;
    }
    .close::after{
        transform: rotate(-90deg);
    }

    /* Reveal Menu */

    input[type="checkbox"]:checked + .menu{
        /* position: absolute; */
        opacity: 1;
        transform: scaleY(1);
    }
}

.contnt{
    display: flex;
    /* justify-content: flex-start; */
    height: 56vh;
    align-items: flex-end;
    width: 90%;
    margin: auto;
}
.contnt h1{
    text-transform: uppercase;
    font-size: 80px;
    color: orangered;
}
@media screen and (max-width: 770px){
    .contnt{
        height: 59vh;
    }
    .contnt h1{
    font-size: 50px;
    }
}

#About{
    display: grid;
    grid-template-columns: 1fr;
    min-height: 20vh;
    width: 80%;
    margin: 90px auto;
}
.content{
    background: white;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}
/* .content h2{
    text-transform: uppercase;
    font-size: 36px;
    letter-spacing: 4px;
    opacity: 0.9;
}
.content span{
    height: 0.5px;
    width: 80px;
    background: cornflowerblue;
    margin: 30px 0;
} */
.content p{
    padding-bottom: 15px;
    font-weight: 300;
    opacity: 0.5;
    width: 90%;
    text-align: center;
    margin: 0 auto;
    line-height: 1.7;
}

@media(max-width: 770px){
    #About{
        width: 95%;
    }
    .content p{
        font-size: 15px;
    }
}

/* Footer */

#footer{
    padding: 70px 0 10px;
    background: darkslategray;
    position: relative;
}
.title-text{
    text-align: center;
    padding-bottom: 40px;
}
.title-text p{
    margin: auto;
    font-size: 25px;
    color: chocolate;
    font-weight: bold;
    position: relative;
    z-index: 1;
    display: inline-block;
}
.title-text p::after{
    content: '';
    width: 40px;
    height: 30px;
    background: linear-gradient(red, rgb(29, 28, 27));
    position: absolute;
    top: -25px;
    left: 0;
    z-index: -1;
    transform: rotate(10deg);
    border-top-left-radius: 35px;
    border-bottom-right-radius: 35px;
}
.title-text h1{
    font-size: 50px;
}
.footer-row{
    width: 80%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.footer-left,.footer-right{
    flex-basis: 40%;
    /* padding: 10px; */
    /* margin-bottom: 10px; */
}
.footer-right{
    text-align: right;
}
.footer-left .fa,.footer-right .fa{
    font-size: 18px;
    color: fuchsia;
    margin: 10px;
}
.footer-img{
    max-width: 370px;
    opacity: 0.1;
    position: absolute;
    left: 50%;
    top: 35%;
    transform: translate(-50%,-50%);
}
.social-links{
    text-align: center;
}
.social-links .fa{
    height: 40px;
    width: 40px;
    text-decoration: none;
    font-size: 20px;
    line-height: 40px;
    border: 1px solid black;
    border-radius: 5px;
    margin: 40px 5px 0;
    color: black;
    cursor: pointer;
    transition: 0.5s;
}
.social-links .fa-facebook:hover{
    background: blueviolet;
    color: white;
    transform: translateY(-5px);
}
.social-links .fa-youtube-play:hover{
    background: orangered;
    color: white;
    transform: translateY(-5px);
}
.social-links .fa-twitter:hover{
    background: blueviolet;
    color: white;
    transform: translateY(-5px);
}
.social-links .fa-instagram:hover{
    background: orangered;
    color: white;
    transform: translateY(-5px);
}
.social-links p{
    font-size: 15px;
    margin-top: 20px;
}
@media screen and (max-width: 770px){
    .title-text h1{
        font-size: 31px;
    }    
    .footer-row{
        width: 70%;
    }
    .footer-left,.footer-right{
    flex-basis: 95%;
    font-size: 14px;
    }
    .footer-img{
        top: 28%;
    }
}
