/* 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: var(--white-color);
}

/* 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 {
    max-width: 1430px;
    width: 100%;
    margin: 0 auto;
    padding: 0 3rem;
}

.flex {
    display: flex;
    align-items: 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;
    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 */
.top-bar {
    background-color: var(--primary-color);
}

.top-bar-menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 3px 0px;
}

.top-bar-menu a {
    text-decoration: none;
    color: #fff;
    font-size: 13.5px;
}
.top-bar .dropdown {
    line-height: .9;
}

.top-bar-menu li {
    display: flex;
    align-items: center;
    justify-content: center;
}

.top-bar-menu .bxl-whatsapp {
    font-size: 16px;
    margin-bottom: 1px;
    background: #29a71a;
    padding: 1px;
    border-radius: 3px;
}

.top-bar-menu .link-center .bxl-whatsapp {
    background: #29a71a;
}

.top-bar-menu .dropdown-content a .bxl-whatsapp {
    color: white;
}

.top-bar .drop-btn {
    color: white;
    font-size: 22px;
    margin-bottom: 1px;
    border: none;
    cursor: pointer;
}

.nav {
    position: relative;
    height: 100%;
    align-items: center;
    justify-content: space-between;
    padding: 8px 15px 10px;
    height: 85px;
}

.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: 70px;
        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,
.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);
    padding: 9px 19px;
    transition: all .2s ease-in-out;
    border: 1px solid;
}

.button-anounce:hover {
    background-color: var(--primary-color);
    color: white;
    border: 1px solid;
}

.mobile-content {
    display: none;
    align-items: center;
    gap: 10px;
}

.mobile-tabs {
    display: flex;
    align-items: center;
    gap: 10px;
}

.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;
}

.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;
    }

    .contact-content {
        flex-direction: column;
        gap: 10px;
    }

    .dropmobile {
        display: flex;
    }

    .navClose-btn,
    .navOpen-btn,
    .media-icons {
        display: block;
    }

    .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: var(--white-color);
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        transition: var(--tran-0-5);
    }

        .nav .menu-content.open {
            right: 0;
        }

    .menu-list {
        flex-direction: column;
        row-gap: 1rem;
        font-size: var(--h4-font);
        gap: 0px;
    }

    .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;
    }

    .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: -58px;
    }

    .contact-content .dropbtn {
        display: none;
    }

    .contact-content .dropdown-content {
        display: block;
        position: relative;
        text-align: center;
        background: none;
        box-shadow: none;
    }
}



/* 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 {
    background: #f8f9f5;
    position: relative;
    width: 100%;
    bottom: 0;
    left: 0;
}

.footer-content .line {
    width: 100%;
    height: 1px;
    background: #e7e7e7;
    margin: 30px 0;
}

    footer .content {
        max-width: 1430px;
        margin: auto;
        padding: 30px 40px 40px 40px;
    }

        footer .content .top {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 50px;
            padding-bottom: 25px;
            border-bottom: 1px solid #dfdfdf;
        }

            footer .content .top .logo-details {
                color: #000;
                font-size: 30px;
            }

            footer .content .top .logo_name {
                width: 140px;
                display: block;
            }

            footer .content .top .media-icons {
                display: flex;
                flex-wrap: wrap;
                align-items: center;
                justify-content: center;
                gap: 16px;
            }

                footer .content .top .media-icons a {
                    height: 40px;
                    width: 40px;
                    border-radius: 50%;
                    text-align: center;
                    line-height: 40px;
                    color: #ffffff;
                    font-size: 17px;
                    text-decoration: none;
                    transition: all 0.4s ease;
                }

    footer .top .media-icons a.facebook {
        background: #4267B2;
    }

        footer .top .media-icons a.facebook:hover {
            color: #4267B2;
            background: #fff;
        }

    footer .top .media-icons a.twitter {
        background: #1DA1F2;
    }

        footer .top .media-icons a.twitter:hover {
            color: #1DA1F2;
            background: #fff;
        }

    footer .top .media-icons a.insta {
        background: #E1306C;
    }

        footer .top .media-icons a.insta:hover {
            color: #E1306C;
            background: #fff;
        }

    footer .top .media-icons a.linkedin {
        background: #0e76a8;
    }

        footer .top .media-icons a.linkedin:hover {
            color: #0e76a8;
            background: #fff;
        }

    footer .top .media-icons a.pinterest {
        background: #E60023;
    }

        footer .top .media-icons a.pinterest:hover {
            color: #E60023;
            background: #fff;
        }

    footer .top .media-icons a.google {
        background: #4285F4;
    }

        footer .top .media-icons a.google:hover {
            color: #4285F4;
            background: #fff;
        }

    footer .top .media-icons a.youtube {
        background: #FF0000;
    }

        footer .top .media-icons a.youtube:hover {
            color: #FF0000;
            background: #fff;
        }

    footer .content .link-boxes {
        width: 100%;
        display: grid;
        justify-content: space-between;
        grid-template-columns: repeat(auto-fit, minmax(186px, 1fr));
        justify-items: end;
    }

        footer .content .link-boxes .box .link_name {
            color: #000;
            font-size: 18px;
            font-weight: 400;
            margin-bottom: 10px;
            position: relative;
        }

        footer .content .link-boxes.filials .box .link_name {
            margin-bottom: 15px;
        }

.link-boxes .box .link_name::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    height: 2px;
    width: 35px;
    background: #fff;
}

footer .content .link-boxes .box li {
    margin: 8px 0;
    list-style: none;
}

    footer .content .link-boxes .box li.dflex {
        display: flex;
        align-items: center;
        gap: 10px;
        flex-wrap: wrap;
    }

footer .content .link-boxes .j-self {
    justify-self: start;
}

footer .content .link-boxes .box.child {
    max-width: 280px;
    width: 100%;
}

footer .content .link-boxes .box li a {
    color: #000;
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.4s ease
}

footer .content .link-boxes .box li .button {
    padding: 7px 20px;
    width: 100%;
    display: flex;
    justify-content: center;
    color: white;
    text-align: center;
    max-width: 210px;
}

footer .footer-adress i {
    margin-right: 8px;
}

footer .content .link-boxes .box li a:hover {
    opacity: 1;
    text-decoration: underline;
}

footer .content .link-boxes .input-box {
    margin-right: 55px;
}

.link-boxes .input-box input {
    height: 40px;
    width: calc(100% + 55px);
    outline: none;
    border: 2px solid #dfdfdf;
    background: #dfdfdf;
    border-radius: 4px;
    padding: 0 15px;
    font-size: 15px;
    color: #505050;
    margin-top: 5px;
}

    .link-boxes .input-box input::placeholder {
        color: #b8b8b8;
        font-size: 16px;
    }

    .link-boxes .input-box input[type="button"] {
        background: var(--primary-color);
        color: #ffffff;
        border: none;
        font-size: 18px;
        font-weight: 500;
        margin: 4px 0;
        opacity: 0.8;
        cursor: pointer;
        transition: all 0.4s ease;
    }

.input-box input[type="button"]:hover {
    opacity: 1;
}

footer .bottom-details {
    width: 100%;
    background: #d3d3d3;
}

    footer .bottom-details .bottom_text {
        max-width: 1250px;
        margin: auto;
        padding: 20px 40px;
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        text-align: center;
    }

    footer .bottom-details .bottom-partners {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-bottom: 30px;
        gap: 15px;
        font-weight: bold;
        color: grey;
    }

footer a[title="Menu"] {
    display: none;
}

.bottom-details .bottom_text span,
.bottom-details .bottom_text a {
    font-size: 14px;
    font-weight: 300;
    color: #000000;
    opacity: 0.8;
    text-decoration: none;
}

    .bottom-details .bottom_text a:hover {
        opacity: 1;
        text-decoration: underline;
    }

.bottom-details .bottom_text a {
    margin-right: 10px;
}

.mob {
    display: none;
}

/*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;
}

/* Responive media */

@media screen and (max-width: 1150px) {
    .nav-link a {
        padding: 9px 5px;
        font-size: 1.45rem;
    }
    .button-anounce {
        padding: 9px 12px;
    }
}

@media screen and (max-width: 1000px) {
    .menu-content a {
        font-size: 14px;
    }

    .dropdown-content a {
        padding: 9px 16px;
    }

    .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) {
    .mob {
        display: block;
    }

    li[title="Menu"] {
        display: none;
    }
}
@media screen and (max-width: 850px) {
        footer .content .link-boxes .box {
            display: flex;
            flex-direction: column;
            align-items: center;
            max-width: 350px;
        }
            footer .content .link-boxes .box li {
                text-align: center;
                justify-content: center;
            }
}

@media screen and (max-width: 768px) {
    .menu .menu-content {
        grid-template-columns: 1fr;
        row-gap: 3rem;
    }
    .footer-container {
        row-gap: 1.5rem;
    }
}

@media (max-width: 700px) {
    .top-bar-menu .dropdown-content {
        right: 0;
    }
    footer .content .link-boxes .box li {
        text-align: center;
    }

    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 (max-width: 520px) {
    .logo-content {
        width: 130px;
        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: center;
    }

    footer .content .link-boxes .input-box {
        width: 100%;
    }

    footer .content .link-boxes {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 20px;
        flex-wrap: wrap;
        display: flex;
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
}


@media screen and (max-width: 600px) {
    .container {
        padding: 0.5rem;
    }
    .nav {
        padding: 0.5rem 10px;
    }

    .top-bar-menu {
        padding: 0;
        gap: 0 10px;
    }
    .footer-container {
        grid-template-columns: 1fr;
        row-gap: 6rem;
    }

    .footer-content {
        justify-items: center;
    }

    footer .content {
        padding: 30px 10px;
    }

    .footer-linkContent {
        justify-items: center;
    }

    .button {
        padding: 1.2rem 3rem;
    }
}
