@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --primary-color: #6e6e6e95;
    /* Change this value to set the primary color */
    --secondary-color: #c8af66;
    /* Change this value to set the secondary color */
}

* {
    margin: 0;
    padding: 0;
    text-decoration: none;
    box-sizing: border-box;
    font-family: "Cormorant Garamond", serif;
    font-family: "Montserrat", sans-serif;

}

body {
    background-color: #F4F6F8;
    font-family: "Cormorant Garamond", serif;
    font-family: "Montserrat", sans-serif;

}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Cormorant Garamond", serif;
}

/* nav {
    position: sticky;
    z-index: 43;
    top: 0;
    z-index: 60;
} */
.navbar_all {
    position: absolute;
    z-index: 43;
    top: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background-color: transparent;
    color: #fff;
    padding: 0 7%;
}

.logo {
    height: 90px;
    width: 180px;
    background-image: url(../images/logo.png);
    background-position: center;
    background-size: cover;
}

.nav_links a {
    padding: 10px;
    color: #000;
    color: #fff;

}

.book_appointment a {
    padding: 15px 45px;
    background-color: var(--secondary-color);
    color: #fff;
}

.book_appointment a:hover {
    background-color: #000;

}

.footer {
    background-color: #000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 7%;
    padding-top: 10px;
    color: #fff;
}

.hero_bg {
    background-color: #000;
    height: 400px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.hero_bg h1 {
    font-size: 65px;
}


.toogle_btn {
    display: none;
}

#toggleIcon {
    color: #c8af66;
}

.mobile_links {
    position: absolute;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    width: 100%;
    left: 0;
    top: 70px;
    display: none;

    transition: opacity 0.5s ease-in-out;
}

.mobile_links a {
    padding-block: 10px;
    padding-left: 10%;
    border-bottom: 1px solid var(--primary-color);
    /* font-family: "Cormorant Garamond", serif; */
    color: #c8af66;
}
 

@media only screen and (max-width: 1110px) {
    .nav_links {
        display: none;
    }

    .book_appointment {
        display: none;
    }

    .toogle_btn {
        display: block;
    }

    .footer {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

}