@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Marcellus&display=swap");

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;

    font-family: "Roboto", sans-serif;
}

body,
html {
    overflow-x: hidden;
}

:root {
    --primary-color: #267fb5;
}

nav {
    position: absolute;
    z-index: 100;

    display: flex;
    width: 100vw;
    height: 5.625rem;

    background: #f1f1f199;
}

nav ul {
    display: flex;
    width: 60%;
    height: 3.75rem;

    border: none;
    border-radius: 1rem;
    background: #474b4e3b;
}

nav ul li {
    list-style: none;
}

nav ul li a {
    transition: all 250ms;
    text-transform: uppercase;
}

nav ul li a:hover {
    color: #55c5d1;
}

a {
    text-decoration: none;
}

/*Slider*/
.container-carousel {
    position: relative;

    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

.carruseles {
    display: flex;
    /*Ancho dependiendo de cuantas imagenes son, una imagen equivale al 100%*/
    width: 300%;
    height: 100%;
}

.slider-section {
    width: calc(100% / 3);
    height: 100%;
}

.slider-section img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.btn-left,
.btn-right {
    position: absolute;
    top: 50%;

    display: flex;
    width: 2.5rem;
    height: 2.5rem;
    padding: .313rem;

    font-size: 1.5rem;
    font-weight: 600;

    cursor: pointer;
    user-select: none;
    transition: .5s ease;
    transform: translate(0,-50%);

    color: white;
    border: 1px solid white;
    border-radius: 50%;
    background-color: transparent;
}

.btn-left:hover,
.btn-right:hover {
    color: #55c5d1;
    border: 1px solid #55c5d1;
}

.btn-left {
    left: 2.5%;
}

.btn-right {
    right: 2.5%;
}
/*Fin slider*/
.frame {
    height: 5rem;
}

.btn {
    width: fit-content;
    padding: .5rem;

    font-weight: 500;

    text-transform: uppercase;

    border: none;
}

.btn-primary {
    color: var(--primary-color);
    background: lightgray;
}

.btn-secondary {
    color: white;
    border-radius: 1rem;
    background: #26b5a9;
}

.btn-tertiary {
    color: white;
    background: #26b5a9;
}

.text-1 {
    font-family: "Roboto", sans-serif;
}

.text-2 {
    font-family: "Marcellus", serif;
}

.c-1 {
    background: #7d8bb3;
}

.c-2 {
    background: #267fb5;
}

.c-3 {
    background: #26b5a9;
}

.d-flex {
    display: flex;
}

.d-grid {
    display: grid;
}

.w-100-p {
    width: 100%;
}

.w-90-p {
    width: 90%;
}

.w-100 {
    width: 100vw;
}

.w-90 {
    width: 90vw;
}

.w-75 {
    width: 75vw;
}

.w-70 {
    width: 70%;
}

.w-50 {
    width: 50%;
}

.w-65 {
    width: 65%;
}

.w-30 {
    width: 30%;
}

.mt-1 {
    margin-top: 1.25rem !important;
}

.mt-2 {
    margin-top: 2.5rem !important;
}

.mt-3 {
    margin-top: 3.75rem !important;
}

.mt-50 {
    margin-top: 50% !important;
}

.mt-10 {
    margin-top: 10vh !important;
}

.mt-5 {
    margin-top: 5vh !important;
}

.m-auto {
    margin: auto;
}

.fit-cover {
    object-fit: cover;
}

.text {
    color: #474b4e;
}

.clear-text {
    color: #f1f1f1;
}

.white-text {
    color: white;
}

.bold {
    font-weight: bold;
}

.semibold {
    font-weight: 500;
}

.fw-normal {
    font-weight: normal;
}

.logo,
.wa {
    text-transform: uppercase;
}

.pt-1 {
    padding-top: .625rem;
}

.pt-2 {
    padding-top: 2.5rem;
}

.pt-3 {
    padding-top: 3.438rem;
}

.py-1 {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
}

.py-2 {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
}

.pb-2 {
    padding-bottom: 2.5rem;
}

.pb-3 {
    padding-bottom: 3.438rem;
}

.pb-4 {
    padding-bottom: 4rem;
}

.p-1 {
    padding: 1.25rem;
}

.px-1 {
    padding-right: 1.25rem;
    padding-left: 1.25rem;
}

.p-2 {
    padding: 2.50rem;
}

.p-6 {
    padding: 6.25rem;
}

.m-1 {
    margin: .938rem;
}

.fs-20 {
    font-size: 1.25rem;
}

.fs-40 {
    font-size: 2.5rem;
}

.wa a {
    color: #f1f1f1;
    border: none;
    border-radius: 1rem;
    background: #73b1329c;
}

.logo img {
    width: 180px;
    height: 80px;

    border-radius: .5rem;
    /*background: #474b4e3b;*/
}

.front {
    height: 100vh;

    background: url("../images/cover.webp");
    background-repeat: no-repeat;
    background-size: cover;
}

.text-center {
    text-align: center;
}

h1 {
    font-family: "Marcellus", serif;

    border: 1px solid #f1f1f1;
}

i {
    font-size: 1.55rem;
}

.card-title-bk {
    width: 90%;

    background: white;
}

.card-title-blue {
    color: #f1f1f1;
    background: var(--primary-color);
}

.card-title {
    font-family: "Marcellus", serif !important;

    color: var(--primary-color);
}

.card-title-bg {
    font-family: "Marcellus", serif;

    color: #7d8bb3;
}

.bg-gray {
    background: #eee;
}

h3 {
    font-size: 1.5rem;
}

span {
    color: var(--primary-color) !important;
}

.banner-text {
    text-align: center;

    color: white;
    background: #26b5a9;
}

hr {
    width: 90vw;
    margin: auto;

    border: 2px solid var(--primary-color);
}

.img-card {
    width: 12.5rem;
    height: 12.5rem;

    border-radius: 50%;

    object-fit: cover;
}

.fst-italic {
    font-style: italic;
}

footer {
    background: var(--primary-color);
}

.btn-info {
    background: #26b5a9;
}

.endosc {
    height: 25rem;

    background: url("https://wallpapercave.com/wp/wp9341265.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.info {
    background: url("https://img.freepik.com/premium-photo/stethoscope-eounceass-grouping-digital-background_961875-396154.jpg?semt=ais_user_personalization&w=740&q=80");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.dr {
    height: 37.5rem;
}

.dr-title,
.dr-desc {
    height: 2.5rem;
}

footer p {
    padding-bottom: .5rem;
}

.h-100 {
    height: 100%;
}

.footer-logo {
    margin-top: -20%;
}

.bk-cover {
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: cover !important;
}

#slider .desktop {
    background: url("../images/desktop.webp");
}

#slider .desktop1 {
    background: url("../images/desktop1.webp");
}

#slider .desktop2 {
    background: url("../images/desktop2.webp");
}

@media (max-width: 850px) {
    nav {
        display: none !important;
        height: 40rem !important;
    }
    nav,
    nav ul {
        display: grid;
        height: auto;
    }

    nav ul li {
        padding: .5rem;
    }

    .dr {
        height: 28.128rem;
    }

    .main-logo {
        width: auto;
    }

    .d-flex {
        display: grid;
    }

    .w-75 {
        width: 100vw;
    }

    .w-65,
    .w-30 {
        width: inherit;
    }

    .mt-50 {
        margin-top: 0 !important;
    }

    .p-sm-1 {
        padding: 1.25rem;
    }

    .mt-10 {
        margin-top: 0 !important;
    }
    .w-sm-100 {
        width: 100%;
    }

    .py-sm-1 {
        padding-top: 1.25rem;
        padding-bottom: 1.25rem;
    }

    .footer-logo {
        margin-top: 0;
    }

    #slider .desktop {
        background: url("../images/mobile.webp");
    }

    #slider .desktop1 {
        background: url("../images/mobile1.webp");
    }

    #slider .desktop2 {
        background: url("../images/mobile2.webp");
    }
}
