/* =========================================
   RESET
========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    width: 100%;
    scroll-behavior: smooth;
}


body {
    width: 100%;
    min-height: 100vh;
    overflow-x: hidden;
}


img {
    max-width: 100%;
}


button,
input,
textarea,
select {
    font: inherit;
}


/* =========================================
   VARIABLES
========================================= */

:root {

    --mein-container: 1440px;
    --iner-container: 90%;
    /* Colors */
    --orange-col: #FF4900;
    --text-black: #000000;
    --text-wight: #FFFFFF;
    --gray-col: #2C2D30;
    --darkGreen-col: #005343;
    --lightGreen-col: #B6FFA6;
    /* Border */
    --border-red: 100px;

}


/* =========================================
   TYPOGRAPHY
========================================= */

.myh1 {

    font-size: 70px;

    font-weight: 600;

    line-height: 1.2em;

    font-family:
        "DM Sans",
        sans-serif;

}


.myh2 {

    font-size: 38px;

    font-weight: 600;

    line-height: 1.5em;

    font-family:
        "Noto Serif Display",
        sans-serif;

}


.txt {

    font-size: 16px;

    font-weight: 400;

    line-height: 1.5em;

    font-family:
        "DM Sans",
        sans-serif;

}


.txt2 {

    font-size: 20px;

    font-weight: 400;

    line-height: 1.5em;

    font-family:
        "DM Sans",
        sans-serif;

}


.count-sm {

    font-size: 50px;

    font-family:
        "Noto Serif Display",
        sans-serif;

    font-weight: 600;

    line-height: 1.2em;

}


.count-lar {

    font-size: 100px;

    font-family:
        "Noto Serif Display",
        sans-serif;

    font-weight: 600;

    line-height: 1.2em;

}


.spa-heading {

    font-family:
        "Noto Serif Display",
        sans-serif;

    font-size: 30px;

    font-weight: 400;

    line-height: 1.2em;

}


/* =========================================
   HEADER
========================================= */

.site-header {

    width: 100%;

    position: relative;

    z-index: 1000;

}


/* =========================================
   TOP ORANGE BAR
========================================= */

.top-bar {

    width: 100%;

    background-color:
        var(--orange-col);

    display: flex;

    align-items: center;

    justify-content: center;

}


.top-bar-inner {

    width:
        var(--iner-container);

    max-width:
        var(--mein-container);

    min-height: 40px;

    margin: 0 auto;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

}


/* =========================================
   EMAIL + PHONE
========================================= */

.email,
.phone {

    display: flex;

    align-items: center;

    gap: 7px;

    color:
        var(--text-wight);

    text-decoration: none;

    font-weight: 600;

    white-space: nowrap;

    transition:
        opacity 0.3s ease;

}


.email:hover,
.phone:hover {

    opacity: 0.8;

}


.top-icon {

    font-size: 18px;

    line-height: 1;

}


/* =========================================
   CENTER OFFER
========================================= */

.top-offer {

    width: 472px;

    min-height: 40px;

    padding: 5px 20px;

    display: flex;

    align-items: center;

    justify-content: center;

    background-color:
        var(--text-black);

    color:
        var(--text-wight);

    border-radius:
        var(--border-red);

    text-align: center;

}


/* =========================================
   NAVBAR
========================================= */

.navbar {

    width: 100%;

    height: 115px;

    background-color:
        var(--text-wight);

    display: flex;

    align-items: center;

    justify-content: center;

    position: relative;

    overflow: visible;

}


/* =========================================
   DESKTOP NAV
========================================= */

.nav-inner {

    width:
        var(--iner-container);

    max-width:
        var(--mein-container);

    height: 100%;

    margin: 0 auto;

    display: flex;

    align-items: center;

    justify-content: space-between;

}


/* =========================================
   DESKTOP MENU
========================================= */

.nav-menu {

    display: flex;

    align-items: center;

    gap: 25px;

}


.nav-menu a {

    color:
        var(--text-black);

    text-decoration: none;

    font-family:
        "DM Sans",
        sans-serif;

    font-size: 15px;

    font-weight: 500;

    white-space: nowrap;

    transition:
        color 0.3s ease;

}


.nav-menu a:hover {

    color:
        var(--orange-col);

}


/* =========================================
   LOGO
========================================= */

.logo {

    display: flex;

    align-items: center;

    justify-content: center;

    margin: 0 30px;

    text-decoration: none;

    flex-shrink: 0;

}


.logo img {

    width: 170px;

    height: auto;

    display: block;

}


/* =========================================
   TABLET / MOBILE NAV
========================================= */

.nav-inner-table {

    width: 90%;

    max-width:
        var(--mein-container);

    height: 100%;

    display: none;

    align-items: center;

    justify-content: space-between;

    position: relative;

}


/* =========================================
   HAMBURGER BUTTON
========================================= */

.hamburger {

    width: 45px;

    height: 45px;

    padding: 0;

    background: transparent;

    border: none;

    outline: none;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    gap: 5px;

    cursor: pointer;

    position: relative;

    z-index: 10002;

}


/* Hamburger Lines */

.hamburger span {

    width: 28px;

    height: 3px;

    background-color:
        var(--text-black);

    display: block;

    border-radius: 20px;

    transition:
        transform 0.3s ease,
        opacity 0.3s ease;

}


/* =========================================
   HAMBURGER ACTIVE
========================================= */

.hamburger.active span:nth-child(1) {

    transform:
        translateY(8px)
        rotate(45deg);

}


.hamburger.active span:nth-child(2) {

    opacity: 0;

}


.hamburger.active span:nth-child(3) {

    transform:
        translateY(-8px)
        rotate(-45deg);

}


/* =========================================
   MOBILE MENU
========================================= */

.nav-menu-table {

    position: absolute;

    top: 100%;

    left: 0;

    width: 100%;

    max-height: calc(100vh - 80px);

    overflow-y: auto;

    background-color:
        var(--text-wight);

    display: flex;

    flex-direction: column;

    padding: 10px 20px 20px;

    border-radius:
        0 0 10px 10px;

    box-shadow:
        0 12px 30px
        rgba(0, 0, 0, 0.12);

    visibility: hidden;

    opacity: 0;

    pointer-events: none;

    transform:
        translateY(-10px);

    transition:
        opacity 0.3s ease,
        transform 0.3s ease,
        visibility 0.3s ease;

    z-index: 10000;

}


/* =========================================
   MENU OPEN
========================================= */

.nav-menu-table.active {

    visibility: visible;

    opacity: 1;

    pointer-events: auto;

    transform:
        translateY(0);

}


/* =========================================
   MOBILE MENU LINKS
========================================= */

.nav-menu-table a {

    width: 100%;

    color:
        var(--text-black);

    text-decoration: none;

    font-family:
        "DM Sans",
        sans-serif;

    font-size: 15px;

    font-weight: 500;

    padding: 13px 0;

    border-bottom:
        1px solid #eeeeee;

    transition:
        color 0.3s ease,
        padding-left 0.3s ease;

}


.nav-menu-table a:last-child {

    border-bottom: none;

}


.nav-menu-table a:hover {

    color:
        var(--orange-col);

    padding-left: 5px;

}


/* =========================================
   MEDIUM DESKTOP
========================================= */

@media (max-width: 1200px) and (min-width: 981px) {


    .nav-menu {

        gap: 14px;

    }


    .nav-menu a {

        font-size: 13px;

    }


    .logo {

        margin: 0 15px;

    }


    .logo img {

        width: 140px;

    }


    .top-offer {

        width: 400px;

        font-size: 13px;

    }

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 980px) {


    /* Hide Top Bar */

    .top-bar {

        display: none;

    }


    /* Hide Desktop Navbar */

    .nav-inner {

        display: none;

    }


    /* Show Mobile Navbar */

    .nav-inner-table {

        display: flex;

    }


    /* Navbar Height */

    .navbar {

        height: 90px;

    }


    /* Logo */

    .nav-inner-table .logo {

        margin: 0;

    }


    .nav-inner-table .logo img {

        width: 150px;

    }


    /* Typography */

    .myh1 {

        font-size: 50px;

    }


    .myh2 {

        font-size: 34px;

    }


    .txt {

        font-size: 14px;

    }


    .txt2 {

        font-size: 18px;

    }


    .count-sm {

        font-size: 40px;

    }


    .count-lar {

        font-size: 80px;

    }


    .spa-heading {

        font-size: 25px;

    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {


    .navbar {

        height: 80px;

    }


    .nav-inner-table {

        width: 90%;

    }


    .nav-inner-table .logo img {

        width: 135px;

    }


    .hamburger {

        width: 40px;

        height: 40px;

    }


    .hamburger span {

        width: 26px;

    }


    .nav-menu-table {

        padding:
            10px 18px 18px;

    }


    .nav-menu-table a {

        font-size: 14px;

        padding:
            12px 0;

    }


    /* Typography */

    .myh1 {

        font-size: 40px;

    }


    .myh2 {

        font-size: 30px;

    }


    .txt {

        font-size: 14px;

    }


    .txt2 {

        font-size: 16px;

    }


    .count-sm {

        font-size: 30px;

    }


    .count-lar {

        font-size: 60px;

    }


    .spa-heading {

        font-size: 18px;

    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {


    .navbar {

        height: 75px;

    }


    .nav-inner-table {

        width: 92%;

    }


    .nav-inner-table .logo img {

        width: 120px;

    }


    .hamburger span {

        width: 24px;

        height: 2.5px;

    }


    .nav-menu-table {

        padding:
            10px 15px 15px;

    }


    .nav-menu-table a {

        font-size: 13px;

    }


    .myh1 {

        font-size: 34px;

    }


    .myh2 {

        font-size: 27px;

    }

}



/* =========================================
   NAVBAR HOVER + ACTIVE UNDERLINE
========================================= */

.site-header .nav-menu > a {
    position: relative;
    display: inline-block;

    padding: 10px 0 15px;

    color: var(--text-black);
    text-decoration: none;

    border: none !important;
    outline: none;

    transition: color 0.3s ease;
}


/* Previous rectangle border remove */

.site-header .nav-menu > a::before {
    content: none !important;
}


/* Orange underline */

.site-header .nav-menu > a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 7px;

    width: 100%;
    height: 3px;

    background-color: var(--orange-col);

    transform: scaleX(0);
    transform-origin: center;

    transition: transform 0.3s ease;
}


/* Hover and active text */

.site-header .nav-menu > a:hover,
.site-header .nav-menu > a.active {
    color: var(--orange-col);
}


/* Hover and active underline */

.site-header .nav-menu > a:hover::after,
.site-header .nav-menu > a.active::after {
    transform: scaleX(1);
}


/* Mobile active link */

.site-header .nav-menu-table a:hover,
.site-header .nav-menu-table a.active {
    color: var(--orange-col);
    padding-left: 5px;
}