html {
    font-size: 62.5%;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: Century Gothic;
}

img {
    width: 100%;
}



@media (max-width : 480px) {
    .navbar-container {
        position: sticky;
        z-index: 100;
        top: 0;
        left: 0;
        width: 100%;
        background-color: #E9B48B;
        opacity: 0.9;
    }

    .navbar {
        display: grid;
        grid-template-columns: auto auto 1fr;
        padding-left: 0.5rem;
        align-items: center;
    }

    .navbar__logo img {
        width: 30px;
        height: 30px;
        margin-right: 0.5rem;
    }

    .navbar__tittle {
        padding: 0 1rem;
        font-size: 1rem;
    }

    .navbar-links-container {
        display: none;
        justify-content: flex-end;
    }

    .navbar-links {
        display: flex;
        gap: 0.3rem;
        list-style: none;
    }

    .navbar-link a {
        text-decoration: none;
        border: 1px solid white;
        padding: 0.4rem 0.9rem;
        border-radius: 10rem;
        color: white;
        font-size: 1rem;
    }

    .navbar-link a:hover {
        background-color: white;
        color: #E9B48B;
        cursor: pointer;
        transition-duration: 0.3s;
    }

    #dropLinks {
        display: none;
        background-color: white;
        height: auto;
        width: 100%;
        transition: max-height 0.3s ease-in-out;
    }

    #dropLinks a {
        display: block;
        font-size: 2rem;
        padding: 1rem 0 1rem 2rem;
        color: white;
        background-color: #E9B48B;
        border: 1px solid black;
        text-decoration: none;
    }

    #dropLinks a:hover {
        display: block;
        font-size: 2rem;
        background-color: white;
        color: black;
        transition: 0.5s;
    }

    .sidenabvar-links-container {
        display: flex;
        justify-content: flex-end;
        padding-right: 1rem;
    }

    .sidenabvar-buttonOpen {
        font-size: 30px;
        cursor: pointer
    }

    .sidenav {
        height: 40%;
        width: 0;
        position: fixed;
        z-index: 1;
        top: 0;
        right: 0;
        background-color: #111;
        overflow-x: hidden;
        transition: 0.5s;
        padding-top: 60px;
    }

    .sidenav a {
        padding: 8px 8px 16px 32px;
        text-decoration: none;
        font-size: 2rem;
        color: #818181;
        display: block;
        transition: 0.3s;
    }

    .sidenav a:hover {
        color: #f1f1f1;
    }

    .sidenav .closebtn {
        position: absolute;
        top: 0;
        left: 0px;
        font-size: 40px;
    }

    .main-container {
        width: 100%;
        top: 0;
        left: 0;
        background-color: #FFF7EB;
        padding-bottom: 2.5rem;
    }

    .main__img {
        background-image: url("../assets/images/ImagenReferencia.jpg");
        background-size: cover;
    }

    .main__information {
        padding: 0.3rem 0 0.3rem 1rem;
        border: 1px solid black;
        width: 100%;
    }

    .main-misionAndVision-container h2 {
        font-size: 2rem;
        color: white;
    }

    .main-misionAndVision-container p {
        padding-left: 1.5rem;
        font-size: 1.3rem;
        color: white;
    }

    .main-specialities-container h2 {
        font-size: 2rem;
        color: white;
    }

    .main-specialities-container p {
        padding-left: 1.5rem;
        font-size: 1.3rem;
        color: white;
    }

    .footer-container {
        width: 100%;
        position: relative;
        background-color: #F5E9D4;
        padding-bottom: 2rem;
    }

    .footer__img {
        position: absolute;
        left: 50%;
        top: -20px;
        transform: translateX(-50%);
        width: 50px;
        height: 50px;
    }

    .footer__img img {
        height: 100%;
        width: 100%;
    }

    .footer__contact {
        padding: 0.3rem 0 0.3rem 1rem;
        border: 1px solid white;
    }

    .footer__contact h2 {
        font-size: 2rem;
    }

    .footer__contact p {
        font-size: 1.3rem;
    }

    .footer__information {
        width: 100%;
    }

    .footer-map {
        width: 100%;
        height: 30rem;
    }

    .footerMap {
        width: 100%;
        height: 30rem;
    }

    .footer-form {
        width: 100%;
        border: 2px solid black;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .footer-form form {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .footer-form form input {
        width: 80%;
        margin-bottom: 4rem;
        border: none;
        border-bottom: 1px solid black;
        background-color: transparent;
    }

    .footer-form form button {
        width: 35%;
        margin: auto;
        background-color: orange;
        color: white;
        padding: 0.3rem;
        border: none;
        border-radius: 10px;
        transition-duration: 0.3s;
        padding: 1rem 0;
    }

    .footer-form form button:hover {
        background-color: rgb(161, 48, 48);
        cursor: pointer;
    }
}

@media (min-width : 481px) and (max-width : 767px) {
    .navbar-container {
        position: sticky;
        z-index: 100;
        top: 0;
        left: 0;
        width: 100%;
        background-color: #E9B48B;
        opacity: 0.9;
    }

    .navbar {
        display: grid;
        grid-template-columns: auto auto 1fr;
        padding-left: 1rem;
        align-items: center;
    }

    .navbar__logo img {
        width: 40px;
        height: 40px;
        margin-right: 0.8rem;
    }

    .navbar__tittle {
        padding: 0rem 1rem;
        font-size: 1.5rem;
    }

    .navbar-links-container {
        display: flex;
        justify-content: flex-end;
        display: none;
    }

    .navbar-links {
        display: flex;
        gap: 1rem;
        list-style: none;
    }

    .navbar-link a {
        text-decoration: none;
        border: 1px solid white;
        padding: 0.3rem 0.8rem;
        border-radius: 10rem;
        color: white;
        font-size: 0.8rem;
    }

    .navbar-link a:hover {
        background-color: white;
        color: #E9B48B;
        cursor: pointer;
        transition-duration: 0.3s;
    }

    #dropLinks {
        display: none;
        background-color: white;
        height: auto;
        width: 100%;
        transition: max-height 0.3s ease-in-out;
    }

    #dropLinks a {
        display: block;
        font-size: 2rem;
        padding: 1rem 0 1rem 2rem;
        color: white;
        background-color: #E9B48B;
        border: 1px solid black;
        text-decoration: none;
    }

    #dropLinks a:hover {
        display: block;
        font-size: 2rem;
        background-color: white;
        color: black;
        transition: 0.5s;
    }

    .sidenabvar-buttonOpen {
        font-size: 4.5rem;
        cursor: pointer
    }

    .sidenabvar-links-container {
        display: flex;
        justify-content: flex-end;
        padding-right: 1rem;
    }

    .sidenav {
        height: 40%;
        width: 0;
        position: fixed;
        z-index: 1;
        top: 0;
        right: 0;
        background-color: #111;
        overflow-x: hidden;
        transition: 0.5s;
        padding-top: 60px;
    }

    .sidenav a {
        padding: 8px 8px 16px 32px;
        text-decoration: none;
        font-size: 2.3rem;
        color: #818181;
        display: block;
        transition: 0.3s;
    }

    .sidenav a:hover {
        color: #f1f1f1;
    }

    .sidenav .closebtn {
        position: absolute;
        top: 0;
        left: 0px;
        font-size: 40px;
    }

    .main-container {
        width: 100%;
        top: 0;
        left: 0;
        background-color: #FFF7EB;
        padding-bottom: 5rem;
    }

    .main__img {
        background-image: url("../assets/images/ImagenReferencia.jpg");
        background-size: cover;
    }

    .main__information {
        padding: 0rem 0 1rem 2rem;
        border: 1px solid black;
        width: 100%;
    }

    .main-misionAndVision-container h2 {
        font-size: 2rem;
        color: white;
    }

    .main-misionAndVision-container p {
        padding-left: 1rem;
        font-size: 1.5rem;
        color: white;
    }

    .main-specialities-container h2 {
        font-size: 2rem;
        color: white;
    }

    .main-specialities-container p {
        padding-left: 1rem;
        font-size: 1.5rem;
        color: white;
    }

    .footer-container {
        width: 100%;
        position: relative;
        background-color: #F5E9D4;
        padding-bottom: 3rem;
    }

    .footer__img {
        position: absolute;
        left: 50%;
        top: -35px;
        transform: translateX(-50%);
        width: 70px;
        height: 70px;
    }

    .footer__img img {
        height: 100%;
        width: 100%;
    }

    .footer__contact {
        padding: 1rem 0 1rem 4rem;
        border: 1px solid white;
    }

    .footer__contact h2 {
        font-size: 2rem;
    }

    .footer__contact p {
        font-size: 1.5rem;
    }

    .footer__information {
        width: 100%;
    }

    .footer-map {
        width: 100%;
        height: 30rem;
        margin-bottom: 4rem;
    }

    .footerMap {
        width: 100%;
        height: 100%;
    }

    .footer-form {
        border: 1px solid black;
        text-align: center;
        padding-bottom: 1rem;
        width: 100%;
        margin: auto;
    }

    .footer-form form {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    .footer-form form input {
        width: 80%;
        height: 3rem;
        margin-bottom: 2rem;
        border: none;
        border-bottom: 1px solid black;
        background-color: transparent;
    }

    .footer-form form button {
        width: 35%;
        margin: auto;
        background-color: orange;
        color: white;
        padding: 0.3rem;
        border: none;
        border-radius: 10px;
        transition-duration: 0.3s;
        padding: 1rem 0;
    }

    .footer-form form button:hover {
        background-color: rgb(161, 48, 48);
        cursor: pointer;
    }
}

@media (min-width : 768px) and (max-width : 1023px) {
    .navbar-container {
        position: sticky;
        z-index: 100;
        top: 0;
        left: 0;
        width: 100%;
        background-color: #E9B48B;
        opacity: 0.9;
    }

    .navbar {
        display: grid;
        grid-template-columns: auto auto 1fr;
        padding-left: 1rem;
        align-items: center;
    }

    .navbar__logo img {
        width: 40px;
        height: 40px;
        margin-right: 0rem;
    }

    .navbar__tittle {
        padding: 0 1rem;
        font-size: 1.3rem;
    }

    .navbar-links-container {
        display: flex;
        justify-content: flex-end;
    }

    .navbar-links {
        display: flex;
        gap: 0.5rem;
        list-style: none;
        padding-right: 0.5rem;
    }

    .navbar-link a {
        text-decoration: none;
        border: 1px solid white;
        padding: 1rem 1rem;
        border-radius: 10rem;
        color: white;
        font-size: 1.4rem;
    }

    .navbar-link a:hover {
        background-color: white;
        color: #E9B48B;
        cursor: pointer;
        transition-duration: 0.3s;
    }

    #dropLinks {
        display: none;
    }

    .sidenabvar-links-container {
        display: none;
        justify-content: flex-end;
        padding-right: 1rem;
    }

    .sidenabvar-buttonOpen {
        font-size: 4.5rem;
        cursor: pointer
    }

    .sidenav {
        height: 40%;
        width: 0;
        position: fixed;
        z-index: 1;
        top: 0;
        right: 0;
        background-color: #111;
        overflow-x: hidden;
        transition: 0.5s;
        padding-top: 60px;
    }

    .sidenav a {
        padding: 8px 8px 16px 32px;
        text-decoration: none;
        font-size: 2.3rem;
        color: #818181;
        display: block;
        transition: 0.3s;
    }

    .sidenav a:hover {
        color: #f1f1f1;
    }

    .sidenav .closebtn {
        position: absolute;
        top: 0;
        left: 0px;
        font-size: 40px;
    }

    .main-container {
        width: 100%;
        top: 0;
        left: 0;
        background-color: #FFF7EB;
        padding-bottom: 5rem;
    }

    .main__img {
        background-image: url("../assets/images/ImagenReferencia.jpg");
        background-size: cover;
    }

    .main__information {
        padding: 1rem 0 1rem 4rem;
        border: 1px solid black;
        width: 100%;
    }

    .main-misionAndVision-container h2 {
        font-size: 3rem;
        color: white;
    }

    .main-misionAndVision-container p {
        padding-left: 1.5rem;
        font-size: 2rem;
        color: white;
    }

    .main-specialities-container h2 {
        font-size: 3rem;
        color: white;
    }

    .main-specialities-container p {
        padding-left: 1.5rem;
        font-size: 2rem;
        color: white;
    }

    .footer-container {
        width: 100%;
        position: relative;
        background-color: #F5E9D4;
        padding-bottom: 4rem;
    }

    .footer__img {
        position: absolute;
        left: 50%;
        top: -50px;
        transform: translateX(-50%);
        width: 100px;
        height: 100px;
    }

    .footer__img img {
        height: 100%;
        width: 100%;
    }

    .footer__contact {
        padding: 1rem 0 1rem 4rem;
        border: 1px solid white;
    }

    .footer__contact h2 {
        font-size: 3rem;
    }

    .footer__contact p {
        font-size: 2rem;
    }

    .footer__information {
        display: grid;
        width: 90%;
        margin: auto;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .footer-map {
        border: 10px solid white;
    }

    .footerMap {
        width: 90%;
        height: 30rem;
        margin: auto;
    }

    .footer-form {
        border: 10px solid white;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .footer-form form {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .footer-form form input {
        width: 80%;
        margin-bottom: 4rem;
        border: none;
        border-bottom: 1px solid black;
        background-color: transparent;
    }

    .footer-form form button {
        width: 35%;
        margin: auto;
        background-color: orange;
        color: white;
        padding: 0.3rem;
        border: none;
        border-radius: 10px;
        transition-duration: 0.3s;
        padding: 1rem 0;
    }

    .footer-form form button:hover {
        background-color: rgb(161, 48, 48);
        cursor: pointer;
    }
}

@media(min-width : 1024px) {
    .navbar-container {
        position: sticky;
        z-index: 100;
        top: 0;
        left: 0;
        width: 100%;
        background-color: #E9B48B;
        opacity: 0.9;
    }

    .navbar {
        display: grid;
        grid-template-columns: auto auto 1fr;
        padding-left: 1rem;
        align-items: center;
    }

    .navbar__logo img {
        width: 50px;
        height: 50px;
        margin-right: 1rem;
    }

    .navbar__tittle {
        padding: 0 1rem;
        font-size: 2rem;
    }

    .navbar-links-container {
        display: flex;
        justify-content: flex-end;
    }

    .navbar-links {
        display: flex;
        gap: 1rem;
        list-style: none;
    }

    .navbar-link a {
        text-decoration: none;
        border: 1px solid white;
        padding: 1rem 2rem;
        border-radius: 10rem;
        color: white;
        font-size: 1.5rem;
    }

    .navbar-link a:hover {
        background-color: white;
        color: #E9B48B;
        cursor: pointer;
        transition-duration: 0.3s;
    }

    #dropLinks {
        display: none;
    }

    .sidenabvar-links-container {
        display: none;
        justify-content: flex-end;
        padding-right: 1rem;
    }

    .sidenabvar-buttonOpen {
        font-size: 4.5rem;
        cursor: pointer
    }

    .sidenav {
        height: 40%;
        width: 0;
        position: fixed;
        z-index: 1;
        top: 0;
        right: 0;
        background-color: #111;
        overflow-x: hidden;
        transition: 0.5s;
        padding-top: 60px;
    }

    .sidenav a {
        padding: 8px 8px 16px 32px;
        text-decoration: none;
        font-size: 2.3rem;
        color: #818181;
        display: block;
        transition: 0.3s;
    }

    .sidenav a:hover {
        color: #f1f1f1;
    }

    .sidenav .closebtn {
        position: absolute;
        top: 0;
        left: 0px;
        font-size: 40px;
    }

    .main-container {
        width: 100%;
        top: 0;
        left: 0;
        background-color: #FFF7EB;
        padding-bottom: 5rem;
    }

    .main__img {
        background-image: url("../assets/images/ImagenReferencia.jpg");
        background-size: cover;
    }

    .main__information {
        padding: 1rem 0 1rem 4rem;
        width: 70%;
    }

    .main-misionAndVision-container h2 {
        font-size: 3rem;
        color: white;
    }

    .main-misionAndVision-container p {
        padding-left: 1.5rem;
        font-size: 2rem;
        color: white;
    }

    .main-specialities-container h2 {
        font-size: 3rem;
        color: white;
    }

    .main-specialities-container p {
        padding-left: 1.5rem;
        font-size: 2rem;
        color: white;
    }

    .slideShow__container {
        padding-top: 1rem;
        width: 100%;
    }

    .slides__container {
        border: 1px solid black;
        margin-bottom: 1rem;
    }

    .slide {
        position: relative;
        height: 80rem;
    }

    .slide img {
        width: 100%;
        height: 100%;
    }

    .numberSlide {
        position: absolute;
        top: 3%;
        left: 1.5%;
        font-size: 2rem;
    }

    .descriptionSlide {
        position: absolute;
        bottom: 0;
        border: 1px solid black;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 2.5rem;
    }

    .dots__container {
        display: flex;
        gap: 1rem;
        width: 100%;
        justify-content: center;
        margin-bottom: 1rem;
    }

    .dot {
        cursor: pointer;
        background-color: black;
        width: 20px;
        height: 20px;
        border-radius: 10px;
        display: inline-block;
        transition: background-color 0.5s;
    }

    .active,
    .dot:hover {
        background-color: #717171;
    }

    .fade {
        animation-name: fade;
        animation-duration: 1.1s;
    }

    @keyframes fade {
        from {
            opacity: .4
        }

        to {
            opacity: 1
        }
    }

    .footer-container {
        width: 100%;
        position: relative;
        background-color: #F5E9D4;
        padding-bottom: 4rem;
    }

    .footer__img {
        position: absolute;
        left: 50%;
        top: -50px;
        transform: translateX(-50%);
        width: 100px;
        height: 100px;
    }

    .footer__img img {
        height: 100%;
        width: 100%;
    }

    .footer__contact {
        padding: 1rem 0 1rem 4rem;
        border: 1px solid white;
    }

    .footer__contact h2 {
        font-size: 3rem;
    }

    .footer__contact p {
        font-size: 2rem;
    }

    .footer__information {
        display: grid;
        width: 90%;
        margin: auto;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .footer-map {
        border: 10px solid white;
    }

    .footerMap {
        width: 90%;
        height: 30rem;
        margin: auto;
    }

    .footer-form {
        border: 10px solid white;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .footer-form form {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .footer-form form input {
        width: 80%;
        margin-bottom: 4rem;
        border: none;
        border-bottom: 1px solid black;
        background-color: transparent;
    }

    .footer-form form button {
        width: 35%;
        margin: auto;
        background-color: orange;
        color: white;
        padding: 0.3rem;
        border: none;
        border-radius: 10px;
        transition-duration: 0.3s;
        padding: 1rem 0;
    }

    .footer-form form button:hover {
        background-color: rgb(161, 48, 48);
        cursor: pointer;
    }
}