    /*Main CSS*/

    @import url('https://fonts.googleapis.com/css2?family=Inter&display=swap');
    @import url('https://fonts.googleapis.com/css2?family=Lato&display=swap');
    @import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@700&display=swap');
    @import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@700&family=Merriweather+Sans:wght@600&display=swap');
    @import url('https://fonts.googleapis.com/css2?family=Pacifico&display=swap');

    :root {
        --main: #FDF4EC;
        --headerFooter: #F4A460;
        --fontHeader: 'Inter', sans-serif;
    }

    html {
        box-sizing: border-box;
    }

    *,
    *:before,
    *:after {
        box-sizing: inherit;
    }

    body {
        margin: 0 auto;
        padding: 0;
        font-family: "Avenir Next", "Avenir", sans-serif;
        background-color: rgb(255, 255, 255);
        max-inline-size: 1720px;
        box-shadow: 0px 0px 2px rgb(90, 88, 88);
    }

    nav {
        display: flex;
        grid-column: 4/6;
        align-items: flex-end;
        justify-content: center;
    }

    ul {
        inline-size: 100%;
        grid-column: 4/6;
        display: flex;
        padding: 0;
        justify-content: space-evenly;
    }

    li {
        padding-inline: 1rem;
        list-style: none;
    }

    header a {
        color: rgb(44, 42, 42);
        font-weight: 600;
        text-decoration: none;
    }

    a:hover {
        color: whitesmoke;
        text-shadow: 1px 1px #b15607;
        transition: 0.12s all ease-in;
    }

    @media only screen and (min-width:700px) {
        main {
            display: grid;
            grid-template-columns: repeat(18, 1fr);
            grid-template-rows: minmax(20px, auto);
            grid-gap: 1.25rem 1.25rem;
            padding: 0 3.25rem 3.25rem 3.25rem;
            background-color: white;
        }
    }

    h1 {
        display: none;
    }

    h2 {
        font-family: 'Pacifico', cursive;
        font-size: 2.4rem;
        text-decoration: underline;
        margin-top: 0.3rem;
        margin-bottom: 0.6rem;
    }

    h3,
    h4,
    h5,
    h6 p {
        font-family: 'Lato', sans-serif;
    }

    /* Main Header Properties*/

    @media only screen and (min-width:1080px) {
        header {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            background-color: sandybrown;
        }
    }

    p {
        margin: none;
    }

    label {
        display: block;
        font-size: 12px;
    }

    input {
        border-radius: 4px;
        border: none;
    }


    .logo {
        inline-size: 100%;
        background-color: sandybrown;
        text-align: center;
        grid-column: 3;
        z-index: 2;
    }

    @media only screen and (min-width:1080px) {
        .logo {
            inline-size: 200px;
            text-align: center;
        }
    }

    .logo img {
        max-inline-size: 80px;
        grid-column: 3;
    }

    .login {
        align-items: center;
        grid-column: 5/6;
        grid-row: 1;
    }

    .items {
        inline-size: 100%;
        block-size: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 1rem;
    }

    .contactInfo {
        inline-size: 100%;
        position: absolute;
        top: 0;
    }

    .infoBar {
        display: flex;
        justify-content: space-around;
        block-size: 8px;
        background-color: #141414;
        animation: scrollBar;
        animation-duration: 2.4s;
    }

    @media only screen and (min-width:1080px) {
        @keyframes scrollBar {
            0% {
                transform: translateX(-2000px);
            }

            100% {
                transform: translateX(0);
                transition: 2s ease-in;
            }
        }
    }

    .infoBar p {
        justify-content: space-evenly;
        padding: 0;
        margin: 0;
        display: none;
    }

    @media only screen and (min-width:1080px) {
        .infoBar {
            display: flex;
            block-size: 1rem;
            inline-size: 100%;
            justify-content: space-around;
            align-items: center;
        }

        .infoBar p {
            display: unset;
            color: white;
            font-size: 0.7rem;
        }

        .infoBar:nth-child(1) {}
    }

    /* ---------------------------------------- Main Section Index Page ------------------------------------------ */

    .heroBooking {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(3, 150px);
    }

    @media only screen and (min-width:1080px) {
        .heroBooking {
            grid-template-columns: repeat(3, 1fr);
            grid-template-rows: repeat(2, 180x);
        }

        .heroBooking img {
            max-inline-size: 100%;
            object-fit: cover;
            padding: 0;
            margin: 0;
            display: block;
        }
    }

    .heroBooking img {
        grid-column: 1 /-1;
        grid-row: 1/-1;
        inline-size: 100%;
        block-size: 100%;
        object-fit: cover;
    }

    .heroBooking button {
        grid-column: 2;
        grid-row: 2;
        background-color: #141414;
        color: rgb(240, 240, 240);
        border: none;
        box-shadow: 0 0 5px white;
        font-family: 'Merriweather Sans', sans-serif;
        border: 2px solid sandybrown;
        border-radius: 4px;
        cursor: pointer;
        padding: 0;
        margin: 0;
        block-size: 60px;
        justify-self: center;
        align-self: center;
        inline-size: 140px;
    }

    .heroBooking a {
        color: #eee;
        font-size: 1rem;
    }

    @media only screen and (min-width:768px) {
        button:hover {
            color: #141414;
            background-color: rgb(209, 209, 209);
        }
    }

    button i {
        color: whitesmoke;
        margin: 4px;
    }

    .treatments {
        grid-column: 1/12;
        padding: 2rem;
    }

    .treatments h2 {
        text-align: center;
    }

    .treatments h3 {
        text-align: center;
    }

    @media only screen and (min-width:768px){
        .treatments h3 {
            text-align: left;
        }
    }

    .treatmentsText {
        grid-column: 2/5;

    }

    .treatmentsText p {
        margin: 0;
    }

    table {
        margin-left: auto;
        margin-right: auto;
    }


    .openingHours {
        grid-column: 13/19;
        grid-gap: 1rem;
        text-align: center;
        display: flex;
        justify-content: center;
        padding: 2rem;
    }

    @media only screen and (min-width: 1080px) {
        .openingHours h2 {
            padding-block-end: 2.2rem;
        }
    }

    footer {
        text-align: center;
        background-color: #141414;
    }

    @media only screen and (min-width: 1080px) {
        footer {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
        }
    }

    footer h4 {
        color: whitesmoke;
        padding: 0.75rem;
        margin: 0;
    }

    .icons {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        grid-column: 1;
        grid-row: 1;
        justify-content: center;
        align-items: center;
    }

    .icons i {
        margin: 0.4rem;
        color: whitesmoke;
        text-decoration: underline;
        text-decoration-color: whitesmoke;
    }

    .iconContainer{
        display: flex;
    }

    footer .infoFooter p {
        font-size: 0.75rem;
        margin: 0.35rem;
        color: whitesmoke;
    }

    .footerAdress a {
        color: white;
        text-transform: lowercase;
        margin: 0 0.4rem;
        font-size: 0.85rem;
    }

    hr {
        background: linear-gradient(90deg, rgba(233,123,20,1) 0%, rgba(255,255,255,1) 38%, rgba(233,123,20,1) 100%);;
        block-size: 3px;
        border-radius: 40px;
        border-color: black;
        padding: 0;
        margin: 0;
    }

    .infoFooter {
        display: flex;
        flex-direction: column;
        grid-column: 3;
    }

    #bottomLogo {
        grid-column: 5;
        grid-row: 1;
        justify-self: center;
        align-self: center;
        inline-size: 110px;
    }

    /* --------------------------------- Treatments and Pricing Page -------------------------------- */

    .treatments-main {
        display: grid;
        grid-template-columns: repeat(8, 1fr);
        grid-template-rows: repeat(8, calc(86vh/8));
        block-size: 90vh;
        background-image: url(../images/hero-7.jpg);
        background-size: cover;
    }

    .treatments-section {
        grid-column: 2/8;
        grid-row: 2/8;
        background-color: whitesmoke;
        border-radius: 12px;
        box-shadow: 0 0 12px gray;
    }

    .treatments-section h2 {
        font-size: 1.25rem;
        margin: 0.5rem;
        text-align: center;
        grid-column: 1 / -1;
    }
