@import url(fontawesome/css/all.css);
@font-face {
    font-family: "Quicksand";
    src: url("../font/quicksand/Quicksand.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    font-size: 14px;
    /* color: #ffffff; */
}

.d-flex {
    display: flex;
}


/*---------header-----------*/

.menu-bottom {
    padding: 15px 80px;
}
.logo{height: 50px;}
.menu-bottom h1,
.menu-bottom h1 a {
    margin: 20px;
    color: #7EC13F;
    font-size: 25px;
    line-height: 0px;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 10000;
}

.nav-bar {
    margin-left: auto;
    background: transparent;
}

.nav-bar li {
    padding: 10px 15px 8px 15px;
}

.nav-bar li a {
    font-size: 15px;
    text-transform: uppercase;
    transition: 0.3s;
    color: #ffffff;
}

.nav-bar li a:hover {
    color: #7EC13F;
}

.sticky {
    width: 100%;
    position: sticky;
    top: 0;
    background: #202020 !important;
    border-bottom: none;
    z-index: 1000;
    transition: .5s;
}

.menu-bottom .drop-down {
    display: none;
}

.show {
    display: inline-block !important;
    top: 70px;
    right: 0;
    left: 0;
    position: fixed;
    background: #000;
}


/* responsive */

@media only screen and (max-width: 1024px) {
    .menu-bottom {
        padding: 15px 0;
    }
    .menu-bottom h1 {
        margin-left: 10px;
    }
}

@media only screen and (max-width: 768px) {
    .menu-bottom .drop-down {
        display: flex;
    }
    .menu-bottom .nav-bar {
        width: 100%;
        display: none;
    }
    .header-menu-item {
        width: 100%;
        display: block;
        border-bottom: 1px solid #cecece;
        padding: 10px;
    }
    .header-menu-item:last-child {
        border-bottom: none;
    }
    /* .nav li{
        background-image: none;
    } */
    .drop-down {
        margin-top: 5px;
        margin-left: auto;
    }
    .drop-down i {
        float: right;
        color: rgba(255, 255, 255, .5);
        height: 30px;
        border: rgba(255, 255, 255, .1) solid thin;
        padding: 5px 15px;
        border-radius: 3px;
        margin-right: 5px;
        font-size: 20px;
    }
    .nav-bar {
    }
    .menu-bottom {
        padding: 10px;
    }
}

@media only screen and (max-width: 600px) {}

@media only screen and (max-width: 420px) {}


/* ------------footer--------- */

.footer {
    background: #202020;
    padding: 30px 80px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.ftr-top {
    width: 100%;
    border-bottom: 1px solid #777777;
    padding-bottom: 20px;
    justify-content: center;
    align-items: center;
}

.social-footer li i {
    margin-right: 10px;
    padding: 10px;
    color: #777777;
    font-size: 16px;
    transition: 0.5s;
}

.social-footer li i:hover {
    color: #7EC13F;
}

.ftr-bottom {
    color: #777777;
    padding-top: 10px;
}


/* responsive */

@media only screen and (max-width: 1024px) {
    .footer {
        padding: 30px 50px;
    }
}

@media only screen and (max-width: 768px) {}

@media only screen and (max-width: 600px) {}

@media only screen and (max-width: 420px) {}