/*FOOTER*/
footer {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 100px 0;
}

footer .bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: -1;
}

footer .content {
    width: 80%;
    display: grid;
    grid-template-columns: 40% 20% 40%;
}

footer .content .logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

footer .content .logo svg {
    width: 90%;
}

footer .content .bussinnes_hours {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
}

footer .content .bussinnes_hours span {
    color: #fff;
    font-size: 25px;
    font-weight: 500;
}

footer .content .links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

footer .content .links .link {
    color: #fff;
    font-size: 17px;
    font-weight: 400;
    transition: .25s;
    height: 48px;
    display: flex;
    align-items: center;
}

footer .content .links .link:hover {
    color: #ffb000;
}

footer .content .links .link i {
    margin-right: 10px;
}

footer .content .links .social {
    display: flex;
    margin-top: 20px;
}

footer .content .links .social a {
    width: 38px;
    margin-right: 10px;
}

footer .content .links .social a svg {
    width: 100%;
}

footer .content .links .social a path {
    transition: .2s;
}

footer .content .links .social a:hover path {
    fill: #ffb000;
}

@media(max-width:992px) {
    footer {
        padding: 50px 0;
    }

    footer .content {
        width: 80%;
        grid-template-columns: 1fr;
    }

    footer .content .logo {
        grid-row: 1;
    }

    footer .content .logo svg {
        width: 50%;
    }

    footer .content .bussinnes_hours {
        align-items: center;
        grid-row: 2;
        margin: 30px 0;
    }

    footer .content .bussinnes_hours span {
        font-size: 20px;
    }

    footer .content .links {
        align-items: center;
    }

    footer .content .links .link {
        font-size: 15px;
        text-align: center;
    }

    footer .content .links .link i {
        margin-right: 10px;
    }

    footer .content .links .social {
        display: flex;
        margin-top: 20px;
    }

    footer .content .links .social a {
        width: 38px;
        margin-right: 10px;
    }

    footer .content .links .social a svg {
        width: 100%;
    }
}

/*DESKTOP HEADER*/

.desktop_header {
    width: 100%;
    background: #c30000;
    padding: 10px 5%;
}

.desktop_header.nbg {
    background: transparent;
}

.desktop_header.abs {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 99;
}

.desktop_header .container {
    width: 100%;
    display: grid;
    grid-template-columns: 47% 6% 47%;
}

.desktop_header .container .logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.desktop_header .container .logo svg {
    width: 100%;
}

.desktop_header .container .links {
    display: flex;
    align-items: center;
}

.desktop_header .container .links a {
    position: relative;
    color: #fff;
    margin-right: 15px;
}

.desktop_header .container .links a::before {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 3px;
    border-radius: 3px;
    background: white;
    transition: .5s;
}

.desktop_header .container .links a:hover::before {
    width: 100%;
}

.desktop_header .right_links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.desktop_header .right_links .order {
    background-color: #ffb000;
    color: #000;
    font-size: 19px;
    padding: 5px 40px;
    border-radius: 75px;
    font-weight: 500;
    margin-right: 15px;
    transition: .25s;
}

.desktop_header .right_links .order:hover {
    background-color: #c30000;
    color: #fff;
}

.desktop_header .right_links .social_btn {
    color: #fff;
    font-size: 25px;
    margin: 0 10px;
}

.desktop_header .right_links .social_btn i {
    transition: .25s;
}

.desktop_header .right_links .social_btn:hover i {
    color: #ffb000;
}

.mobile_header {
    display: none;
    background: #c30000;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
    flex-wrap: wrap;
    padding-bottom: 5px;
}

.mobile_header .address {

    text-align: center;
    color: #fff;
}

.mobile_header .logo {
    height: 60px;
}

.mobile_header .logo svg {
    height: 100%;
}

.mobile_header .button {
    height: 60%;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 10px;
}

.responsive_menu_container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, .3);
    backdrop-filter: blur(3px);
    overflow: hidden;
    visibility: hidden;
    z-index: 999;
}

.responsive_menu_container.active {
    visibility: visible;
}

.responsive_menu_container .responsive_menu {
    position: absolute;
    right: 0;
    top: 0;
    width: 60%;
    height: 100vh;
    background: #c30000;
    padding-top: 35px;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: .2s;
}

.responsive_menu_container.active .responsive_menu {
    transform: translateX(0);
}

.responsive_menu_container .responsive_menu .close {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 30px;
    position: absolute;
    right: 10px;
    top: 0;
}

.responsive_menu_container .responsive_menu .item {
    width: 100%;
    padding: 10px 15px;
    color: #fff;
}

@media(max-width:992px) {
    .desktop_header {
        display: none;
    }

    .mobile_header {
        display: flex;
    }
}
