@import url('https://fonts.googleapis.com/css2?family=Caudex:ital,wght@0,400;0,700;1,400;1,700&family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    font-family: "DM Sans", sans-serif;
}

body {
    font-family: "DM Sans", sans-serif;
}

header {
    display: flex;
    justify-content: space-between;
    padding: 0 7%;
    padding-block: 10px;
    background-color: #010080;
    color: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Caudex", serif;
}

.motto p {
    text-transform: uppercase;
}

.social_media {
    display: flex;
    gap: 20px;
}

.social_media a {
    color: #fff;
}

.navbar_all {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    padding: 0 7%;
    position: sticky;
    top: 0;
    z-index: 454;
    padding-block: 5px;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}

.logo {
    height: 95px;
    width: 150px;
    background-image: url(../images/logo.jpeg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.nav_links a {
    padding: 15px;
    color: #000;
}

.nav_links a:hover {
    color: #010080;
}

.mobile a {
    color: #000;
}

.dropdown {
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #010080;
    min-width: 260px;
    z-index: 701;
}

.dropdown-content a:hover {
    background-color: #fff;
}

.dropdown-content a {
    color: #fff;
    padding: 12px 16px;
    display: block;
    text-decoration: none;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.appointment a {
    background-color: #010080;
    padding: 15px 45px;
    border-radius: 30px;
    color: #fff;
}

.appointment a:hover {
    background-color: #ffde00;
    color: #010080;
}

#toggleButton {
    display: none;
    background-color: transparent;
    font-size: 24px;
}

.mobile {
    display: none;
}

.cta {
    padding-block: 50px;
    background-color: #010080;
    padding-left: 7%;
    padding-right: 7%;
    text-align: center;
    color: #fff;
}

.cta h3 {
    color: #ffde00;
    margin-bottom: 20px;
}

.cta h1 {
    font-size: 40px;
}

.cta button {
    margin-top: 30px;
    padding: 25px 45px;
    background-color: #ffde00;
    text-transform: uppercase;
    border: none;
    border-radius: 40px;
    color: #010080;
    font-weight: 800;
}

footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 7%;
    padding-right: 7%;
    padding-block: 10px;
    background-color: #010080;
    color: #fff;
}

.hero_bg {
    height: 400px;
    background-color: #010080;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero_bg h3 {
    color: #ffde00;
}

.hero_bg h1 {
    font-size: 65px;
    color: #fff;
}

.appointment span {
    padding-right: 10px;
}

.services_card a {
    display: none;
}
/* 
.what {
    position: absolute;
    bottom: 30px;
    right: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background-color: forestgreen;
    z-index: 343;
}

.what i {
    font-size: 40px;
    color: #fff;
} */

@media only screen and (max-width: 1220px) {

    .header_all {
        display: flex;
        justify-content: space-between;
    }

    .dropdown-content {
        width: 280px;
    }

    .dropdown-content a:hover {
        color: #010080;
    }




    #toggleButton {
        display: block;

        border: none;
        padding: 15px;
        color: #010080;
    }

    .appointment {
        display: none;
    }

    .nav_links {
        display: none;
    }

    .mobile {
        position: absolute;
        top: 105px;
        z-index: 4554;
        left: 0;
        width: 100%;
        background-color: #fff;
        display: flex;
        flex-direction: column;
        display: none;
        box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
    }

    .mobile a {
        border-top: 2px solid #534f4f2a;
        width: 100%;
        padding: 0 10%;
        padding-block: 20px;
    }

    .dropdown {
        border-top: 2px solid #534f4f2a;
        width: 100%;
        padding-block: 20px;
    }

    .dropdown-content {
        margin-left: 10%;
    }

    .cta h1 {
        font-size: 25px;
    }

    .hero_bg h1 {
        font-size: 30px;
    }



}