/* Google Fonts - Poppins */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

html {
    font-size: 62.5%;
    /* 1rem = 10px */
    scroll-behavior: smooth;
}

/*Font sizes For Small Screen 968px */
@media screen and (max-width: 990px) {
    :root {
        --big-font: 3.5rem;
        --h1-font: 2.4rem;
        --h2-font: 2rem;
        --h3-font: 1.8rem;
        --h4-font: 1.6rem;
        --normal-font: 1.5rem;
        --small-font: 1.3rem;
        --smaller-font: 1.2rem;
    }
}

/* Pre-CSS */
* {
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
    box-sizing: border-box;
    font-size: 1.5rem;
}

body {
    overflow-x: hidden;
    background-color: #f7f7f7;
}

/* Custom Scrollbar */
::selection {
    background-color: var(--primary-color);
    color: var(--white-color);
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background-color: #f9f1ec;
}

::-webkit-scrollbar-thumb {
    border-radius: 1rem;
    background-color: dimgrey;
}

    ::-webkit-scrollbar-thumb:hover {
        border-radius: 1rem;
        background-color: var(--primary-color)
    }

body,
button,
input {
    font-family: var(--body-font);
    font-size: var(--normal-font);
    font-weight: var(--font-regular);
    color: var(--text-color);
}

input {
    outline: none;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
}

img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Reusuable CSS */
.section {
    padding: 7rem 2rem;
}

/* Container */
.container {
    margin-right: auto;
    margin-left: auto;
    padding-left: 15px;
    padding-right: 15px;
}

@media (min-width: 768px) {
    .container {
        max-width: 850px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 1100px;
    }
}

@media (min-width: 1240px) {
    .container {
        max-width: 1230px;
    }
}

@media (min-width: 1367px) {
    .container {
        max-width: 1510px;
    }

    .mx-display {
        max-width: 1140px;
    }
}

.flex {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 0.6rem;
}

.flex-column {
    flex-direction: column;
    gap: 20px;
}

.button {
    border: none;
    outline: none;
    color: var(--white-color);
    padding: 1.4rem 4rem;
    border-radius: 3rem;
    background-color: var(--primary-color);
    transition: var(--tran-0-3);
    cursor: pointer;
}

    .button:hover {
        background-color: var(--primary-color);
    }

.section-subtitle,
.content-subtitle {
    color: var(--primary-color);
    font-size: var(--normal-font);
    letter-spacing: 1px;
    font-weight: var(--font-medium);
    text-align: center;
}

.section-title,
.content-title {
    text-align: center;
    font-size: var(--h2-font);
    font-weight: var(--font-medium);
    margin: 1rem 0;
}

.section-description,
.content-description {
    text-align: center;
    margin-bottom: 2rem;
}

.section-description {
    padding: 0 16rem;
}

/* Header */
.header {
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
    background: white;
    transition: var(--tran-0-5);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.header-active {
    position: fixed;
    background-color: var(--white-color);
}

/* Nav */
.nav {
    position: relative;
    height: 100%;
    align-items: center;
    justify-content: space-between;
    padding: 8px 15px 10px;
    height: 112px;
}

.logo-icon,
.logo-text,
.nav-link,
.phone-icon,
.phone-number {
    color: var(--text-color);
}

.header-active .logo-icon,
.header-active .logo-text,
.header-active .nav-link,
.header-active .phone-icon,
.header-active .phone-number {
    color: var(--text-color);
}

.logo-content {
    width: 120px;
}

    .logo-content img {
        max-width: 107px;
        max-height: 85px;
        object-fit: fill;
    }

.logo-icon,
.phone-icon {
    font-size: 2rem;
}

.menu-content {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-left: 20px;
}

.menu-list {
    column-gap: 0.5rem;
}

.nav-link {
    position: relative;
    border-radius: 5px;
    transition: all .2s ease;
}

    .nav-link a {
        color: black;
        padding: 9px 10px;
        border-radius: 4px;
    }

        .nav-link a:hover {
            background-color: var(--primary-color);
            color: white;
        }

.active-navlink::before {
    opacity: 1;
}

.header-active .active-navlink::before {
    background-color: var(--text-color);
}

.header .media-icons {
    column-gap: 1rem;
}

.media-icons a {
    color: var(--text-color-light);
}

.navClose-btn,
.navOpen-btn,
header .media-icons {
    display: none;
}

.contact-content {
    gap: 20px;
}

.link-center {
    display: flex;
    align-items: center;
    gap: 5px;
}

.header-link {
    color: black;
}

.button-anounce {
    color: var(--primary-color);
    color: white;
    padding: 9px 19px;
    transition: all .2s ease-in-out;
    border: 1px solid;
    background-color: var(--primary-color);
}

    .button-anounce:hover {
        transform: scaleY(1px);
    }

    .button-anounce i {
        font-size: 17px;
    }

.mobile-content {
    display: none;
    align-items: center;
    gap: 10px;
}

.mobile-tabs {
    display: flex;
    align-items: center;
    gap: 10px;
}

    .mobile-tabs .dropbtn {
        font-size: 13px;
        display: flex;
        align-items: center;
    }

.tab-mob {
    font-size: 13px;
    color: #474747;
    font-weight: 500;
}

/* Dropdown menu*/
.dropbtn {
    border: none;
    background: transparent;
    border-radius: 5px;
    transition: all .2s ease;
    padding: 10px 0;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropmobile {
    display: none;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    transition: all .2s ease;
    z-index: 9999;
    left: -25px;
}

.top-bar-menu .dropdown-content a {
    display: flex;
    align-items: center;
    white-space: normal;
    gap: 5px;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    white-space: pre;
    border-radius: 0;
}

    .dropdown-content a:hover {
        background-color: var(--primary-color);
        color: white;
    }

.dropdown:hover .dropdown-content {
    display: block;
}

/* nav responsive */
@media screen and (max-width: 950px) {
    .top-bar-menu span,
    .top-bar-menu i,
    .top-bar-menu a {
        font-size: 13px;
    }

    .nav {
        height: 86px;
        border-bottom: 1px solid #e9e9e9;
    }

    .contact-content.flex {
        flex-direction: column;
        gap: 20px;
        align-items: flex-end;
    }

    .dropmobile {
        display: flex;
    }

    .navClose-btn,
    .navOpen-btn,
    .media-icons {
        display: block;
    }


    .nav-link a {
        color: white;
        padding: 6px 21px;
        border-radius: 4px;
    }

    .nav .menu-content {
        position: fixed;
        top: 0;
        right: -100%;
        max-width: 300px;
        width: 100%;
        height: 100%;
        z-index: 100000000;
        padding: 7rem 0 5rem;
        background-color: #303441;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
        color: white;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        transition: var(--tran-0-5);
    }

        .nav .menu-content.open {
            right: 0;
            gap: 40px;
            padding: 7rem 25px 5rem;
            justify-content: flex-start;
            align-items: flex-end;
        }

    .menu-list {
        flex-direction: column;
        row-gap: 0.5rem;
        padding: 0px 5px;
        align-items: end;
        font-size: var(--h4-font);
    }

    .nav-link {
        color: var(--text-color);
    }

        .nav-link::before {
            background-color: var(--text-color);
        }

    .navClose-btn {
        position: absolute;
        top: 2rem;
        right: 2rem;
        font-size: 2.5rem;
        cursor: pointer;
    }

    .dropdown-content {
        min-width: fit-content;
    }

    .mobile-tabs .dropdown-content a {
        font-size: 13px;
        width: 100%;
    }

    .mobile-content {
        display: flex;
    }

    .navOpen-btn {
        font-size: 2.5rem;
        cursor: pointer;
        color: var(--text-color);
    }

    .header-active .navOpen-btn {
        color: var(--text-color);
    }

    .menu-list .dropdown-content {
        z-index: 10000;
        left: -90px;
    }

    .contact-content .dropbtn {
        display: none;
    }

    .contact-content .dropdown-content {
        display: block;
        position: relative;
        text-align: end;
        background: none;
        box-shadow: none;
        left: 0;
    }
}

/* Menu */
.menu {
    background-color: var(--section-bg);
}

.section-title,
.section-description {
    color: var(--white-color);
}

.menu .menu-content {
    display: grid;
    grid-template-columns: 1.8fr 1fr;
    column-gap: 6rem;
    margin-top: 6rem
}

.menu-img {
    height: 80px;
    width: 80px;
    margin-right: 1.5rem;
}

.menu-items {
    display: grid;
    row-gap: 1.5rem;
}

.menu-item {
    position: relative;
    padding: 2rem 2.5rem;
    background-color: var(--white-color);
}

.menuItem-details {
    margin-right: 1.5rem;
}

.menuItem-topic {
    font-weight: var(--font-semi-bold);
}

.menuItem-des {
    font-size: var(--small-font);
}

.menuItem-price {
    flex-direction: column;
    padding-left: 2rem;
    border-left: 2px solid rgba(0, 0, 0, 0.3);
}

.discount-price {
    font-size: 1.8rem;
}

.real-price {
    text-decoration: line-through;
}

.time-topic {
    width: 100%;
    display: block;
    text-align: center;
    font-size: 1.8rem;
    font-weight: var(--font-regular);
    padding: 1.5rem 0;
    color: var(--white-color);
    background-color: var(--primary-color);
}

.time-list {
    padding: 1.5rem;
    border-bottom: 2px solid rgba(0, 0, 0, 0.3);
    justify-content: space-between;
    background-color: var(--white-color);
}

    .time-list:nth-child(7) {
        border-bottom: none;
    }

/* Footer */
footer {
    width: 100%;
    bottom: 0;
    left: 0;
    background: #303441;
}

    footer .content {
        margin: auto;
        padding: 35px 20px 30px;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }

        footer .content .topics img {
            width: 50%;
        }

        footer .content p, a {
            color: #fff;
        }

        footer .content .link-boxes {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            width: 100%;
            justify-content: space-between;
            padding-top: 30px;
            margin-top: 40px;
            color: white;
            border-top: 1px solid #9696961a;
            gap: 100px;
        }

        footer .content .filials ul {
            list-style: none;
            padding: 0;
            width: initial;
        }

    footer .filials .link-center {
        margin: 5px 0;
        display: flex;
        gap: 10px;
        align-items: center;
    }

    footer .filials .dflex {
        display: flex;
        flex-direction: column;
    }

    footer .filials .link-center {
        margin: 5px 0;
    }

    footer .content .box {
        width: 25%;
        transition: all 0.4s ease;
    }

    footer .content .topic,
    footer .content .topics {
        font-size: 22px;
        font-weight: 600;
        color: #fff;
        margin-bottom: 16px;
    }

        footer .content .topic::after {
            display: block;
            height: 3px;
            font-weight: bold;
            background-color: var(--primary-color);
            content: " ";
            width: 50px;
            margin-top: 0.3rem;
            margin-bottom: 1rem;
        }

    footer .content p {
        text-align: justify;
    }

    footer .content .lower .topic {
        margin: 24px 0 5px 0;
    }

    footer .content .lower {
        display: flex;
        gap: 8px;
        flex-direction: column;
    }

    footer .content .middle {
        padding-left: 80px;
        flex-direction: column;
        display: flex;
        align-items: flex-start;
        text-align: start;
    }

        footer .content .middle ul {
            text-decoration: none;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        footer .content .middle a {
            line-height: 32px;
        }

    footer .content .media-icons a {
        height: 45px;
        width: 45px;
        display: flex;
        text-align: center;
        line-height: 43px;
        border-radius: 5px;
        border: 2px solid #f9f1ec;
        margin: 0px 5px 0 0;
        transition: all 0.3s ease;
        align-items: center;
        justify-content: center;
        color: white;
    }

        footer .content .media-icons a i {
            font-size: 25px;
        }

    footer .content .bx.bxs-map {
        margin-right: 5px;
    }

.content .media-icons a:hover,
.content .media-icons a:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.content .media-icons {
    margin-bottom: 15px;
    display: flex;
}

.content .media-btns {
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.content .address .in-p {
    padding-right: 25px;
}

.content .media-btns a {
    appearance: none;
    background-color: var(--primary-color);
    border: 1px solid rgba(27, 31, 35, .15);
    border-radius: 20px;
    box-shadow: rgb(27 31 35 / 10%) 0 1px 0;
    box-sizing: border-box;
    width: 70%;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    line-height: 20px;
    padding: 7px 16px 7px 8px;
    position: relative;
    text-decoration: none;
    user-select: none;
    -webkit-user-select: none;
    text-align: center;
    touch-action: manipulation;
    vertical-align: middle;
}

    .content .media-btns a:focus:not(:focus-visible):not(.focus-visible) {
        box-shadow: none;
        outline: none;
    }

    .content .media-btns a:hover {
        background-color: var(--primary-color);
    }

    .content .media-btns a:focus {
        box-shadow: var(--primary-color) 0 0 0 3px;
        outline: none;
    }

    .content .media-btns a:after {
        content: "\ee91";
        font-family: 'boxicons';
        position: relative;
        left: .5rem;
        -webkit-transition: all .2s ease;
        transition: all .2s ease;
    }

    .content .media-btns a:hover:after {
        left: 1rem;
        color: #fff;
        -webkit-transform: rotateZ(-360deg);
        transform: rotateZ(-360deg);
    }

footer .bottom {
    width: 100%;
    text-align: center;
    color: #d9d9d9;
    background: #262a36;
    padding: 15px 0px;
}

    footer .bottom p {
        margin: 0
    }

    footer .bottom a {
        color: var(--primary-color);
    }

footer a,
footer .lower p {
    transition: all 0.3s ease;
}

    footer a:hover,
    footer .lower p:hover {
        color: var(--primary-color);
    }

footer .content .footer-alink {
    display: block;
}

footer .content .footer-partner {
    display: flex;
    gap: 10px;
}

    footer .content .footer-partner img {
        max-width: 110px;
        object-fit: contain;
    }

.mob {
    display: none;
}

@media (max-width: 1340px) {
    .content .media-btns a {
        width: 75%;
    }
}

@media (max-width: 1100px) {
    footer .content .middle {
        padding-left: 0px;
    }
}

@media (max-width: 950px) {
    footer .content .box {
        width: 50%;
    }

    footer .content {
        padding: 35px 20px 30px;
        gap: 10px 0px;
    }
}

/*WHATSAPP*/
.whatsapp-button {
    position: fixed;
    display: flex;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    transition: .2s ease-in-out;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    text-decoration: none;
    align-items: center;
    justify-content: center;
}

    .whatsapp-button i {
        font-size: 3rem;
    }

    .whatsapp-button:hover {
        background-color: #128C7E;
    }

/* BACK TO THE TOP */
#back-to-top-btn {
    display: none;
    position: fixed;
    background-color: var(--primary-color);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    padding: 15px;
    font-size: 18px;
    z-index: 1000;
    transition: .2s ease-in-out;
    bottom: 108px;
    right: 40px;
    color: #fff;
    width: 60px;
    height: 60px;
    opacity: .7;
    align-items: center;
    justify-content: center;
}

    #back-to-top-btn i {
        font-size: 3rem;
    }

    #back-to-top-btn:hover {
        opacity: 1;
    }

.listing-badges {
    position: absolute;
    top: 0;
    z-index: 999;
    right: 0;
    width: 100%;
    display: flex;
    padding: 0px;
    overflow: hidden;
    height: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #121B22;
    transition: opacity 0.5s ease;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
    color: white;
}

    .listing-badges .featured {
        background-color: var(--primary-color);
        float: left;
        transform: rotate(-45deg);
        left: -67px;
        top: 17px;
        position: relative;
        text-align: center;
        width: 200px;
        font-size: 12.5px;
        margin: 0;
    }

    .listing-badges span {
        text-transform: uppercase;
        font-size: 20px;
        font-weight: bold;
    }

/* Responive media */
@media screen and (max-width: 1150px) {
    .nav-link a {
        padding: 9px 5px;
        font-size: 1.45rem;
    }

    .menu-content .button-anounce {
        padding: 9px 12px;
    }
}

@media screen and (max-width: 1000px) {
    .menu-content a {
        font-size: 14px;
        color: white;
        padding: 10px;
    }

    .menu-content .drop-link {
        background: #282828;
        border-radius: 0;
    }

    .menu-content .button-anounce {
        padding: 9px 12px;
    }

    .menu .menu-content {
        grid-template-columns: 1.5fr 1fr;
        column-gap: 3rem;
    }

    footer .content .link-boxes .input-box {
        width: 40%;
        margin-top: 10px;
    }
}

@media screen and (max-width: 950px) {
    .listing-badges span {
        font-size: 15px;
    }

    .mob {
        display: block;
    }

    .mob-not {
        display: none !important;
    }

    li[title="Menu"] {
        display: none;
    }
}

@media screen and (max-width: 850px) {
    footer .content .link-boxes .box li {
        justify-content: center;
    }
}

@media screen and (max-width: 768px) {
    footer {
        position: relative;
    }

        footer .content .box {
            width: 100%;
            margin-top: 30px;
        }

        footer .content .middle {
            padding-left: 0;
        }
        footer .content .link-boxes {
            grid-template-columns: 1fr;
            gap: 20px;
        }
        footer .content .topics img {
            width: 160px;
        }

        footer .content .link-boxes {
            flex-direction: column;
            padding-top: 0;
            align-items: flex-start;
        }

    .menu .menu-content {
        grid-template-columns: 1fr;
        row-gap: 3rem;
    }

    .footer-container {
        row-gap: 1.5rem;
    }
}

@media screen and (max-width: 700px) {
    .top-bar-menu .dropdown-content {
        right: 0;
    }

    footer {
        position: relative;
    }

    .content .top .logo-details {
        font-size: 26px;
    }

    #back-to-top-btn {
        display: none !important;
    }

    .whatsapp-button {
        width: 50px;
        height: 50px;
    }

    .content .top .media-icons a {
        height: 35px;
        width: 35px;
        font-size: 14px;
        line-height: 35px;
    }

    footer .content .link-boxes .input-box {
        width: 60%;
    }

    .bottom-details .bottom_text span,
    .bottom-details .bottom_text a {
        font-size: 12px;
    }
}

@media screen and (max-width: 520px) {
    .logo-content {
        width: 108px;
        padding: 10px;
    }

    .info-one span {
        font-size: 13px;
    }

    footer::before {
        top: 145px;
    }

    footer .content .top {
        flex-direction: column;
    }

    .content .top .media-icons {
        margin-top: 16px;
        padding: 0 40px;
    }

    footer .content .link-boxes .box {
        width: calc(100%);
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    footer .content .link-boxes .input-box {
        width: 100%;
    }

    footer .content .link-boxes {
        gap: 20px;
        flex-wrap: wrap;
        display: flex;
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
}

@media screen and (max-width: 600px) {
    .nav {
        padding: 0.5rem 10px;
    }

    .top-bar-menu {
        padding: 0;
        gap: 0 10px;
    }

    .container {
        padding: 0.5rem;
    }


    .footer-container {
        grid-template-columns: 1fr;
        row-gap: 6rem;
    }

    .footer-content {
        justify-items: center;
    }

    footer .content {
        padding: 30px 15px;
    }

    .footer-linkContent {
        justify-items: center;
    }

    .button {
        padding: 1.2rem 3rem;
    }
}
