/* 
** The Header Media Queries **
** Tweak as per your needs **
*/
img {
    width: 100%;
}
/*a.brand img {*/
/*    width: 45%;*/
/*}*/
.site-header {
    position: sticky;
    background-color: #ffffff;
    width: 100%;
    top: 0;
    z-index: 99;
}

.site-header__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.social-menu ul {
    padding: 0;
    margin: 0;
    display: flex;
}

.social-menu ul li {
    list-style: none;
    margin: 0 15px;
}

.social-menu ul li .fab {
    font-size: 18px;
    line-height: 36px;
    transition: .3s;
    color: #fff;
}

.social-menu ul li .fab:hover {
    color: #fff;
}

.social-menu ul li a {
    position: relative;
    display: block;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: #df8400;
    text-align: center;
    transition: .6s;
}

.social-menu ul li a:hover {
    transform: translate(0, -10%);
    background: #000000;
}

/* .social-menu ul li:nth-child(1) a:hover{
    background-color: rgba(0, 0, 0, 0.829);
}
.social-menu ul li:nth-child(2) a:hover{
    background-color: #E4405F;
}
.social-menu ul li:nth-child(3) a:hover{
    background-color: #0077b5;
}
.social-menu ul li:nth-child(4) a:hover{
    background-color: #000;
} */
@media(max-width: 1024px) {
    .site-header__middle {
        width: 55%;
    }

    .site-header__start {
        width: 30%;
    }

    .nav__item a {
        font-size: 14px !important;
    }
}

@media(max-width: 768px) {
    .social-menu ul li {
        list-style: none;
        margin: 0 10px;
    }

    .social-menu ul li a {
        width: 25px;
        height: 25px;
    }

    .social-menu ul li .fab {
        font-size: 12px;
        line-height: 27px;
    }

    .nav__item a {
        font-size: 9px !important;
    }
}

@media (min-width: 660px) {
    .site-header__wrapper {
        padding-top: 0;
        padding-bottom: 0;
    }
}

@media (max-width: 659px) {
    .site-header__end {
        padding-right: 3rem;
    }

    .social-menu ul li {
        margin: 0 5px;
    }

    .social-menu ul li a {
        width: 25px;
        height: 25px;
    }

    .social-menu ul li .fab {
        font-size: 10px;
        line-height: 26px;
    }

    nav.nav {
        display: grid;
        align-items: center;
    }

    button.nav__toggle {
        border: none;
        background: none;
        font-size: 18px;
    }

    .site-header__start {
        width: 100%;
    }

    .site-header__middle {
        width: auto;
    }
}

@media (min-width: 660px) {
    .nav__wrapper {
        display: flex;
    }
}

@media (max-width: 659px) {
    .nav__wrapper {
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        z-index: -1;
        background-color: #fff;
        visibility: hidden;
        opacity: 0;
        transform: translateY(-100%);
        transition: transform 0.3s ease-out, opacity 0.3s ease-out;
    }

    .nav__wrapper.active {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
    }
}

.nav__item a {
    display: block;
    padding: 1.5rem 1rem;
    font-family: 'Nunito Sans';
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 27px;
    text-transform: uppercase;
    color: #000000;
}

.nav__item a:hover {
    color: #df8400;
}

.nav__toggle {
    display: none;
}

@media (max-width: 659px) {
    .nav__toggle {
        display: block;
        position: absolute;
        right: 1rem;
    }
}
