@import"https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css";

.lato-thin {
    font-family: "Lato", sans-serif;
    font-weight: 100;
    font-style: normal
}

.lato-light {
    font-family: "Lato", sans-serif;
    font-weight: 300;
    font-style: normal
}

.lato-regular {
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-style: normal
}

.lato-bold {
    font-family: "Lato", sans-serif;
    font-weight: 700;
    font-style: normal
}

.lato-black {
    font-family: "Lato", sans-serif;
    font-weight: 900;
    font-style: normal
}

.lato-thin-italic {
    font-family: "Lato", sans-serif;
    font-weight: 100;
    font-style: italic
}

.lato-light-italic {
    font-family: "Lato", sans-serif;
    font-weight: 300;
    font-style: italic
}

.lato-regular-italic {
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-style: italic
}

.lato-bold-italic {
    font-family: "Lato", sans-serif;
    font-weight: 700;
    font-style: italic
}

.lato-black-italic {
    font-family: "Lato", sans-serif;
    font-weight: 900;
    font-style: italic
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #0175be;
    font-family: "Lato", sans-serif;
    font-weight: 700
}

h1,
h2 {
    font-size: 3rem;
    line-height: 3.5rem;
    margin: 0
}

@media screen and (max-width: 768px) {

    h1,
    h2 {
        font-size: 2.3rem;
        line-height: 2.7rem
    }
}

h3 {
    font-size: 2rem;
    line-height: 2.25rem;
    margin: 0
}

@media screen and (max-width: 768px) {
    h3 {
        font-size: 1.5rem;
        line-height: 1.75rem
    }
}

h4 {
    font-size: 1.5rem;
    line-height: 1.75rem;
    margin: 0
}

@media screen and (max-width: 768px) {
    h4 {
        font-size: 1.25rem;
        line-height: 1.5rem
    }
}

h5 {
    font-size: 1.25rem;
    line-height: 1.5rem;
    margin: 0
}

@media screen and (max-width: 768px) {
    h5 {
        font-size: 1.1rem;
        line-height: 1.25rem
    }
}

p,
ul,
li {
    color: #707070;
    font-size: 1.1rem;
    line-height: 1.5rem;
    font-family: "Lato", sans-serif
}

a {
    font-family: "Lato", sans-serif
}

.bold {
    font-weight: bold
}

.primary-text {
    color: #0175be
}

.form-control {
    border-radius: 20px
}

.primary-button {
    background-color: #0175be;
    color: #fff;
    padding: 5px 20px;
    border-radius: 40px;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    transition: background-color .3s;
    text-decoration: none;
    display: inline-block
}

.primary-button:hover {
    background-color: #01568b
}

.secondary-button {
    background-color: #fff;
    color: #0175be;
    padding: 5px 20px;
    border-radius: 40px;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    transition: background-color .3s
}

.secondary-button:hover {
    background-color: #707070;
    transition: background-color .3s
}

.button-larger {
    padding-left: 45px;
    padding-right: 45px
}

.shadow {
    box-shadow: 1px 0px 5px 0px rgba(0, 0, 0, .75);
    -webkit-box-shadow: 1px 0px 5px 0px rgba(0, 0, 0, .75);
    -moz-box-shadow: 1px 0px 5px 0px rgba(0, 0, 0, .75)
}

nav {
    position: fixed;
    top: 20px;
    left: 0;
    right: 0;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    min-height: 30px;
    border-radius: 50px;
    box-shadow: 0px 3px 13px 2px rgba(0, 0, 0, .28);
    -webkit-box-shadow: 0px 3px 13px 2px rgba(0, 0, 0, .28);
    -moz-box-shadow: 0px 3px 13px 2px rgba(0, 0, 0, .28);
    background-color: #fff;
    padding: 10px 10px;
    display: flex;
    justify-content: space-between;
    z-index: 300
}

nav .logo-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    height: 100%;
    margin-left: 10px
}

nav ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
    margin-right: 10px
}

nav ul li {
    padding: 0 10px
}

nav ul li a {
    text-decoration: none;
    color: #0175be;
    font-size: 1.1rem;
    font-weight: 500;
    transition: color .3s
}

nav ul li a:hover {
    color: #01568b
}

@media(max-width: 768px) {
    nav {
        display: none
    }
}

.menu-movil {
    display: flex;
    padding: 20px 15px;
    justify-content: space-between
}

.menu-movil .menu-movil__logo {
    display: flex;
    align-items: center;
    width: 200px
}

.menu-movil .menu-movil__logo img {
    width: 100%
}

.menu-movil .menu-movil__icon {
    font-size: 40px;
    font-weight: bold
}

@media(min-width: 768px) {
    .menu-movil {
        display: none
    }
}

@keyframes openMenu {
    0% {
        left: -100%
    }

    100% {
        left: 0
    }
}

@keyframes closeMenu {
    0% {
        left: 0
    }

    100% {
        left: -100%
    }
}

.menu-movil__content {
    position: fixed;
    top: 0;
    left: -100%;
    right: 0;
    bottom: 0;
    background-image: url("../static/BK_01_ef@2x.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 80%;
    transition: all .3s;
    padding-top: 40px;
    z-index: -1;
    box-shadow: 6px 0px 12px 1px rgba(0, 0, 0, .35);
    -webkit-box-shadow: 6px 0px 12px 1px rgba(0, 0, 0, .35);
    -moz-box-shadow: 6px 0px 12px 1px rgba(0, 0, 0, .35)
}

.menu-movil__content .menu-movil__content__menu__list {
    list-style: none;
    padding: 0;
    margin: 0
}

.menu-movil__content .menu-movil__content__menu__list li {
    border-bottom: 1px solid #707070
}

.menu-movil__content .menu-movil__content__menu__list li a {
    display: block;
    padding: 10px 20px;
    text-decoration: none;
    color: #0175be;
    font-size: 1.5rem;
    font-weight: 500;
    transition: color .3s
}

.menu-movil__content .menu-movil__content__menu__list li a:hover {
    color: #e6e6e6;
    background-color: #dbdbdb
}

@media(max-width: 768px) {
    .menu-movil__content {
        z-index: 400
    }
}

.menu-movil__content.open {
    animation: openMenu .4s ease-in forwards
}

.menu-movil__content.close {
    animation: closeMenu .4s ease-out forwards
}

.hero {
    background-image: url("../static/BK_NOSOTROS@2x.png");
    background-size: cover;
    background-position: center;
    padding-top: 80px;
    padding-bottom: 80px;
}

.hero .containerhero {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 400px;
    position: relative
}

.hero .containerhero .contenido-hero {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: #fff;
    padding-top: 20px;
    padding-bottom: 20px;
}

.hero .containerhero .contenido-hero .medicamento {
    position: relative
}

.hero .containerhero .contenido-hero .medicamento .info {
    position: absolute;
    background-color: #003772;
    border-radius: 26px;
    right: -320px;
    padding: 7px 7px 7px 50px;
    top: 20px;
    max-width: 350px;
}

.hero .containerhero .contenido-hero .medicamento .info p {
    margin-bottom: 0;
    color: #fff;
    text-align: left
}

.hero .containerhero .contenido-hero .medicamento .info.dos {
    right: -320px;
    top: 76px
}

.hero .containerhero .contenido-hero img {
    width: 450px;
    margin-top: -100px;
    margin-bottom: -100px;
    position: relative;
    z-index: 2
}

@media (min-width: 1150px) and (max-width: 1300px) {
    .hero .containerhero .contenido-hero img {
        width: 380px;
    }

    .hero .containerhero .contenido-hero .medicamento .info {
        top: 0px;
    }
}


@media (min-width: 1080px) and (max-width: 1149px) {
    .hero .containerhero .contenido-hero img {
        width: 200px;
    }

    .hero .containerhero .contenido-hero .medicamento .info {
        padding: 7px 7px 7px 10px;
        right: initial;
        left: 110%;
        width: 370px;
        top: -30px;
        border-radius: 5px;
        max-width: initial
    }

    .hero .containerhero .contenido-hero .medicamento .info p {}
}


@media (min-width: 800px) and (max-width: 1079px) {
    .hero .containerhero .contenido-hero img {
        width: 200px;
    }

    .contenido-hero h2 {
        font-size: 2rem;
    }

    .hero .containerhero .contenido-hero .medicamento .info {
        padding: 7px 7px 7px 10px;
        right: initial;
        left: 110%;
        width: 250px;
        top: -30px;
        border-radius: 5px;
        max-width: initial
    }

    .hero .containerhero .contenido-hero .medicamento .info p {}
}

@media (min-width: 768px) and (max-width: 800px) {
    .hero .containerhero .contenido-hero img {
        width: 200px;
    }

    .contenido-hero h2 {
        font-size: 2rem;
    }

    .hero .containerhero .contenido-hero .medicamento .info {
        padding: 7px 7px 7px 10px;
        right: initial;
        left: 110%;
        width: 250px;
        top: -30px;
        border-radius: 5px;
        max-width: initial
    }

    .hero .containerhero .contenido-hero .medicamento .info p {}
}


@media screen and (max-width: 768px) {
    .hero {
        padding-top: 40px;
        padding-bottom: 40px
    }

    .hero .containerhero {
        display: none
    }
}

.pleca-farma {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center
}

.pleca-farma h2 {
    font-size: 53px;
    line-height: 60px
}

.garrapata {
    width: 55px;
    height: 55px;
    fill: #0175be
}

.v-0 {
    visibility: hidden
}

.mcaccion {
    background-image: url("../static/BK_01_bk@2x.png");
    background-size: cover;
    background-position: center;
    padding-top: 30px;
    padding-bottom: 30px
}

.mcaccion h3 {
    color: #0175be;
    font-size: 50px;
    line-height: 55px;
    margin-bottom: 15px
}

.mcaccion p {
    color: #0175be
}

.mcaccion .img-content {
    padding-left: 50px
}

@media screen and (max-width: 768px) {
    .mcaccion .img-content {
        padding-left: 0
    }
}

.mcaccion .item p {
    font-size: 20px;
    line-height: 25px;
    color: #0175be
}

.text-blue {
    color: #006db3
}

.descubre {
    padding-top: 70px;
    padding-bottom: 70px;
    padding-left: 0;
    padding-right: 0
}

.descubre .container-descubre {
    display: grid;
    grid-template-columns: 1fr minmax(auto, 1300px) 1fr
}

@media screen and (max-width: 768px) {
    .descubre {
        padding-left: 15px;
        padding-right: 15px
    }

    .descubre .container-descubre {
        grid-template-columns: 1fr
    }
}

.descubre .franjaleft {
    position: relative
}

.descubre .franjaleft .frn {
    background-color: #00a0b8;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-top-right-radius: 40px;
    border-bottom-right-radius: 40px;
    width: 100%
}

.descubre .franjaright {
    position: relative
}

.descubre .franjaright .frn {
    background-color: #00a0b8;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-top-left-radius: 40px;
    border-bottom-left-radius: 40px;
    width: 100%
}

.descubre .content {
    display: flex
}

.descubre .content .descubre__img {
    width: 55%;
    flex: 0 0 auto
}

.descubre .content .descubre__text {
    padding-right: 45px
}

.descubre .content .descubre__text h2 {
    color: #0175be;
    font-size: 50px;
    line-height: 55px;
    margin-bottom: 20px
}

.descubre .content .descubre__text p {
    font-size: 27px;
    color: #0175be
}

@media screen and (max-width: 768px) {
    .descubre .content {
        flex-direction: column;
        gap: 30px
    }

    .descubre .content .descubre__img {
        width: 100%;
        order: 1
    }

    .descubre .content .descubre__text {
        padding-right: 0;
        order: 2
    }
}

.asfarma {
    background-image: url("../static/man-working-as-pharmacist@2x.png");
    background-size: cover;
    background-position: center
}

.asfarma .container-asfarma {
    display: flex
}

.asfarma .container-asfarma .container-asfarma__text h4,
.asfarma .container-asfarma .container-asfarma__text p {
    font-size: 20px;
    color: #707070;
    line-height: 25px
}

.asfarma .container-asfarma .container-asfarma__text ul {
    padding: 0;
    margin: 0;
    list-style: none
}

.asfarma .container-asfarma .container-asfarma__img {
    width: 55%;
    flex: 0 0 auto
}

@media screen and (max-width: 768px) {
    .asfarma .container-asfarma {
        flex-direction: column;
        gap: 30px
    }

    .asfarma .container-asfarma .container-asfarma__img {
        width: 100%
    }

    .asfarma .container-asfarma .container-asfarma__text {
        order: 2
    }
}

.asfarma {
    overflow: hidden;
    padding-top: 40px;
    padding-bottom: 40px
}

.asfarma .container-asfarma__img {
    position: relative
}

.asfarma .container-asfarma__img img {
    position: relative;
    z-index: 2;
    width: 500px;
    max-width: 100%
}

.asfarma .container-asfarma__img .franja {
    position: absolute;
    top: 0;
    bottom: 141px;
    left: 4%;
    margin: auto;
    width: 100vw;
    height: 81px;
    background-color: #00a0b8;
    border-top-left-radius: 64px;
    border-bottom-left-radius: 64px;
    z-index: 1
}