/* @import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700;900&display=swap'); */

/* @font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    src:
    local("Roboto"),
    url("../Fonts/Roboto-Regular.ttf") format("truetype");
} */

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

:root {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 40px;
    --Border-color: #808080;
    --Box-shadow-color: #808080;
    --Main-text: #f5bf27;
    --Color-1: #3bc53b;
    --Color-2: #ff9701;
    --Color-3: #fb4b02;
    /* Paleta colores en prueba */
    --color1: #4c8c13;
    --color2:#050604;
    --color3: rgb(68, 132, 4);
    --color4: rgb(132, 164, 94);
    --color5: #c4d4a4;
    --Color-1: rgb(0, 212, 255);  /*Patriotic day*/
    --backdrop-modal: rgba(80, 80, 80, .8);
}

h1 {
    font-weight: 700;
    font-size: min(.45rem, .75rem);
    letter-spacing: 2px;
    padding-left: 10px;
    color: #fff;
    text-shadow: 0 0 2px #000;
}

h2 {
    font-size: .4rem;
    letter-spacing: 2px;
}

h4 {
    font-size: .3rem;
    letter-spacing: 2px;
    padding: 4px;
    text-align: center;
}

a {
    text-decoration: none;
}

/* Header */

header {
    display: flex;
    justify-content: center;    
    width: 100vw;
    position: fixed;
    background: rgba(255, 255, 255, .2);
    padding: 10px 20px;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);    
    /* background: rgb(0,212,255);
    background: linear-gradient(180deg, rgba(0, 212, 255, .7) 0%, rgba(255, 255, 255, .7) 37%, rgba(255, 255, 255, .7) 63%, rgba(0, 212, 255,.7) 100%); */
    box-shadow: 0 4px 10px #808080; 
    z-index: 10;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100vw;
    height: 100%; 
}

.logo-animation {
    animation: logo-animation 10s 5s infinite;
    position: relative;
    z-index: 20;
}

@keyframes logo-animation {
    from {
        transform: rotateY(0);        
    }

    5% {
        transform: rotateY(360deg);
    }
    
    to {
        transform: rotateY(360deg);
    }
    
}

nav div {
    display: flex;
    align-items: center;
}

.mobile-menu ul {
    position: fixed;
    width: 100%;
    height: 100dvh;
    top: 0;
    left: -150%;
    bottom: 0;
    background: linear-gradient(90deg, rgb(255, 151, 0) 0%, rgb(251, 75, 2) 100%);
    transition: .2s linear;
}

.menu__pharmacy-duty {
    display: block;
    color: #fff;
    text-align: center;
    padding: 5px 20px;
    border: 2px solid rgb(64, 128, 0);
    background-color: rgb(33, 158, 33);
    border-radius: 5px;
    box-shadow: 2px 2px 4px #000;
    transition: .4s linear;
    &:hover {
        box-shadow: 1px 3px 5px #000;
        transition: .3s linear; 
    }
    & p {
        color: #fff;
        letter-spacing: 2px;
        text-align: center;
        font-size: .3rem;
        font-weight: 200;
        letter-spacing: 2px;
        padding: 4px;        
    }
}

#menu-check {
    display: none;
}

#menu-check:checked ~ ul {
    left: 0;
}

#menu-open {
    color: #fff;
    text-shadow: 1px 1px 4px #000;
    text-align: center;
    position: relative;
    z-index: 30;
}

input, label {
    cursor: pointer;
    width: 90%;
}

.mobile-menu ul {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    padding: 80px 20px;
    & li:nth-child(6) {
        font-size: .5rem;
        text-align: center;
    }
    & li:last-child {
        display: flex;
        justify-content: center;
        width: 100%;
        padding: 20px 0 0;
        font-size: .9rem;
        border-top: 5px solid rgb(64, 128, 0);
    }
}

.desktop-menu ul {
    display: flex;
    justify-content: flex-end;
    & li {
        padding: 10px;
        & img {
            vertical-align: middle;
            border-radius: 50%;
            transition: .2s;
        }
        & img:hover {
            transform: scale(1.05);
            box-shadow: 0 2px 4px var(--Box-shadow-color);
            transition: .3s;
        }
    }
}

li {
    list-style: none;
    display: flex;
    align-items: center;
    & img {
        margin-right: 10px;
        border-radius: 50px;
    }

}

ul li a {
    display: flex;
    color: #fff;
}

.border-red {
    border-radius: 50px; 
    animation: spin 2.5s infinite linear;

    /* border: 3px solid #f06;
    border-radius: 0;
    animation: radiusAnimation 3s infinite; */

    /* border: 3px solid transparent;
    border-radius: 50px;
    border-image: linear-gradient(45deg, #f06, #4a90e2);
    border-image-slice: 1;
    animation: borderAnimation 3s infinite; */
}

@keyframes spin {
    0% {
        border: 3px solid linear-gradient(45deg, #f06, #4a90e2);
    }
    50% {
        border: 3px solid linear-gradient(45deg, #4a90e2, #f06);
    }
    100% {
        border: 3px solid linear-gradient(45deg, #f06, #4a90e2);
    }
}

.weather {
    display: grid;
    place-items: center;
    width: 100px;
    height: 70px;
    margin-left: 10px;
    border: 1px solid var(--Border-color);
    border-radius: 10px;
    background-color: rgba(255, 255, 255, .5);
    box-shadow: 1px 1px 3px rgba(0, 0, 0, .8);
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 40px 25px;
    grid-template-areas: 
    "Icon Temp"
    "Weather Weather";
}

.weather__img {
    width: 40px;
}

.weather__icon {
    grid-area: Icon;
}

.weather__temperature {
    text-shadow: 1px 1px 3px #fff;
    grid-area: Temp;
}

.weather__temperature span {
    font-size: 25px;
    font-weight: 700;
}

.weather__state {
    color: #000;
    font-size: .3rem;
    grid-area: Weather;
}

/* Main section */

main {
    height: 100dvh;
    overflow: auto;
    scroll-snap-type: y mandatory;     
}

main section {
    background-position: center;    
    background-size: cover;
    scroll-snap-align: start;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    
}

.section__main {
    position: relative;    
    overflow: hidden;
}

.section__picture img {
    overflow: hidden; 
}

.grid {
    width: min(350px, 80vw);
    height: min(500px, 70vh);
    display: grid;
    place-items: center;
    grid-template-columns: repeat(15, 1fr);
    grid-template-rows: repeat(18, 1fr);
    background: rgba(255, 255, 255, .2);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    border: 1px solid var(--Border-color);
    border-radius: 15px;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, .8);
    transition: .6s;
    overflow: hidden;
    position: absolute;
    margin-top: 75px;
}

.grid:hover {
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow: 4px 4px 5px rgba(0, 0, 0, .8);
    transition: .4s;
}

.grid__item--1 {
    grid-area: 1 / 1 / 3 / 16;
    font-size: .6rem;
    text-shadow: 0 0 2px #fff;
}

.grid__item--2 {
    grid-area: 3 / 1 / 5 / 16;
    font-size: .8rem;
    font-weight: 600;
    text-shadow: 0 0 2px #fff;
    letter-spacing: 2px;
}

.grid__item--3 {
    grid-area: 5 / 1 / 12 / 10;
}

.grid__item--4 {
    grid-area: 6 / 10 / 9 / 16;
    font-size: .3rem;
    text-align: center;
}

.grid__item--5 {
    grid-area: 7 / 10 / 12 / 16;
    cursor: pointer;
}

.grid__item--6 {
    grid-area: 12 / 1 / 13 / 16;
    font-size: .35rem;
    text-shadow: 0 0 1px #fff;
}

.grid__item--7 {
    width: 100%;
    grid-area: 13 / 1 / 16 / 16;
}

.grid__item--8 {
    width: 100%;
    grid-area: 16 / 1 / 21 / 16;
}

.grid__item--7 a,
.grid__item--8 a {
    display: flex;
    justify-content: center;
}

.button-card,
.button-section {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 300px;
    border-radius: 50px;
    height: 50px;
    color: #fff;
    box-shadow: inset 2px 2px 2px 0px rgba(255, 255, 255, .5), 7px 7px 20px 0px rgba(0, 0, 0, .1), 4px 4px 5px 0px rgba(0, 0, 0, .1);
    background: linear-gradient(0deg, rgb(255, 151, 0) 0%, rgb(251, 75, 2) 100%);
    transition: .3s;
    letter-spacing: 2px;
}

.button-card {
    margin: 10px;
}

.button-section {
    margin: 10px 20px 10px 5px;
}

.button-card:hover,
.button-section:hover {
    background: linear-gradient(0deg, rgb(251, 75, 2) 0%, rgb(255, 151, 0)100%);
    transform: scale(1.03);
    transition: .3s;
}

.flip-card {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 300px;
    height: 400px;
    position: relative;
    margin: 100px auto;
    /* text-align: center; */
    color: #fff;
    font-size: 30px;
}

.card-front {
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    justify-content: space-between;
    position: absolute;
    width: 300px;
    height: 400px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    /* Ben Blennerhassett´s imagen (https://unsplash.com/es/fotos/foto-de-enfoque-selectivo-de-mujer-con-top-negro-de-cuello-redondo-ZXfUUM_LR0k?utm_content=creditShareLink&utm_medium=referral&utm_source=unsplash)*/
    background: linear-gradient(to bottom, rgb(0, 0, 0), transparent 30%), url('../images/woman.jpg');
    font-size: 1.5rem;
    padding: 20px 20px 40px;
    backface-visibility: hidden;
    border: 1px solid #fff;
    border-radius: 10px;
    transform: perspective(600px) rotateY(0deg);
    transition: transform .3s linear;
    text-wrap: balance;
}

.card-front:hover {
    background-image: url('../images/woman.jpg');
    transform: scale(1.5);
    
}

html:has(input:checked) .card-front {
    transform: perspective(600px) rotateY(-180deg);
}

html:has(input:checked) .card-back {
    transform: perspective(600px) rotateY(0deg);
}

.see-back {
    width: 100px;
    height: 40px;
    border: 1px solid #fff;
    text-align: center;
    border-radius: 30px;
    align-self: center;
    cursor: pointer;
}

.turn-card-back {
    transform: perspective(600px) rotateY(-180deg);
}

.card-back {
    display: grid;
    place-items: center;
    grid-template-rows: 1fr .5fr repeat(4, 1fr);
    grid-template-columns: 70% 30%;
    position: absolute;
    width: 300px;
    height: 400px;
    padding: 10px;
    background: #bd1036;
    border: 1px solid #fff;
    border-radius: 10px;
    backface-visibility: hidden;
    transform: perspective(600px) rotateY(180deg);
    transition: transform .3s linear;
    position: relative;
}

.card-back-show {
    transform: perspective(600px) rotateY(0deg);
}

.return {
    width: 35px;
    height: 35px;
    position: absolute;
    top: -17px;
    right: -17px;
    border: 1px solid #fff;
    text-align: center;
    border-radius: 30px;
    cursor: pointer;
    color: #000;
    font-size: 1rem;
    animation: button-close 10s 5s ease-in-out infinite;
}

.card-back--subtitle {
    grid-area: 1 / 1 / 2 / 3;
}

.card-back--pharmacy {
    grid-area: 2 / 1 / 3 / 3;
}

dialog {
    width: min(300px, 80%);
    border-radius: 10px;
    box-shadow: 0 3px 10px #000;
    margin: auto;
    animation: .2s cubic-bezier(0.68, -0.55, 0.27, 1.55) from-up;
    &::backdrop {
        background-color: var(--backdrop-modal);
    }
    & p {
        text-align: center;
        padding: 10px;
    }        
}

@keyframes from-up {
    from {
        top: -100vh;
    }
    
    to {
        top: 0;
    }
}

.messageOk {
    display: none;
}

.messageOk__show {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background: var(--color1);
    & p {
        color: #fff;
        font-size: .8rem;
        padding: 10px;
    }
}

form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    & p {
        font-size: .5rem;
    }
}

.complaints-form {
    margin: 20px auto;
    padding: 10px 20px;
    border-radius: 3px;
    font-size: .5rem;
    text-transform: capitalize;
}

.complaints-form:invalid {
    border: 2px solid rgb(187, 2, 2);
}

.complaints-form:valid {
    border: 2px solid #01af01;
}

html:has(input:invalid) .group-buttons button:last-child {
    background: grey;
    pointer-events: none;
    transition: .3s;
}

input::placeholder {
    text-transform: initial;
}

input::placeholder {
    font-size: .4rem;
    font-style: italic;
    /* background-image: url(../Images/Logo-Google-Maps.png);
    background-repeat: no-repeat;
    background-position: left;
    background-size: 10%; */
}

input:focus {
    border: 2px solid grey;
    box-shadow: 0 0 0 transparent;
    font-weight: 600;
}

.group-buttons button{
    width: 100px;
    height: 50px;
    border: 1px solid #fff;
    color: #fff;
    font-size: .4rem;
    text-align: center;
    letter-spacing: 2px;
    background: linear-gradient(0deg, rgb(255, 151, 0) 0%, rgb(251, 75, 2) 100%);
    border-radius: 30px;
    box-shadow: inset 2px 2px 2px 0px rgba(255, 255, 255, .5), 7px 7px 20px 0px rgba(0, 0, 0, .1), 4px 4px 5px 0px rgba(0, 0, 0, .1);
    align-self: center;
    cursor: pointer;
    transition: .9s;
}

.group-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    & button {
        width: 120px;
        font-size: .35rem;
        letter-spacing: 2px;
        margin: 10px;
        transition: .3s;
    }
}

.displayOff {
    display: none;
}

.chevron {
    position: absolute;
    height: 60px;
    bottom: 30px;
}


/* Pharmacy´s section */

.pharmacy {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;    
    padding: 0 50px 50px 20px;
    height: 100%;
    position: relative;
    content-visibility: auto;
}

.pharmacy:not(.pharmacy:first-child) {
    content-visibility: visible;
}

.schedule {
    display: none;
    font-size: .5rem;
    color: #fff;
}

.horarios:hover + .schedule {
    display: inline;
}

@keyframes fade-text {
    from {
        transform: translateX(-110vw);
    }

    to {
        transform: translateX(0);
    }
}

.pharmacy-duty {
    display: flex;
    width: 150px;
    height: 70px;
    background-color: #fff;
    font-size: .4rem;
    border: 1px solid #000;
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
    & img {
        position: relative;
        margin: auto;
    }
    & p {
        text-align: center;
        vertical-align: middle;
    }
}

.pharmacy__title,
.pharmacy__paragraph {
    color: #fff;
    text-shadow: 1px 1px 2px #000;
    view-timeline: --text block;
    animation-timeline: --text;
    animation-name: fade-text;
    animation-range: entry 20% cover 20%;
    animation-fill-mode: both;
    animation-duration: 1ms;
}

.pharmacy__title {
    font-size: .8rem;
    margin-bottom: .4rem;
    letter-spacing: 2px;    
}

.pharmacy__paragraph {
    max-width: 500px;
    font-size: .45rem;
    margin-bottom: .5rem;
}

.pharmacy__duty {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 100px;
    right: 40px;
    width: 150px;
    height: 50px;
    border-radius: 5px;
    border: 4px solid #fff;
    background-color: darkgreen;
    color: #fff;
    cursor: pointer;
    & p {
        font-size: .4rem;
        letter-spacing: 1px;
    }
}

.flash {
    animation: Flash 2s infinite;

}

@keyframes Flash {
    0% {
        border: 4px solid #fff;
        background-color: darkgreen;
        color: #fff;
    }
    49% {
        border: 4px solid #fff;
        background-color: darkgreen;
        color: #fff;
    }
    50% {
        border: 4px solid darkgreen;
        background-color: #fff;
        color: darkgreen;
    }
    99% {
        border: 4px solid darkgreen;
        background-color: #fff;
        color: darkgreen;
    }
    100% {
        border: 4px solid #fff;
        background-color: darkgreen;
        color: #fff;
    }  
}

/* .pharmacy__duty {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 10px;
    padding: 0 30px;
    height: 40px;
    border-radius: 5px;
    color: #fff;
    box-shadow: inset 2px 2px 2px 0px rgba(255, 255, 255, .5), 7px 7px 20px 0px rgba(0, 0, 0, .1), 4px 4px 5px 0px rgba(0, 0, 0, .1);
    background: rgb(33, 158, 33);
    animation: pharmacy-duty .2s infinite alternate;
    letter-spacing: 2px;
    & p {
        font-size: .4rem;
    }
}

@keyframes pharmacy-duty {
    from {
        background: linear-gradient(90deg, rgb(0, 255, 0) 0%, rgb(64, 128, 0) 0%);
    }

    20% {
        background: linear-gradient(90deg, rgb(0, 255, 0) 0%, rgb(64, 128, 0) 20%);
    }

    40% {
        background: linear-gradient(90deg, rgb(0, 255, 0) 0%, rgb(64, 128, 0) 40%);
    }

    60% {
        background: linear-gradient(90deg, rgb(0, 255, 0) 0%, rgb(64, 128, 0) 60%);
    }

    80% {
        background: linear-gradient(90deg, rgb(0, 255, 0) 0%, rgb(64, 128, 0) 80%);
    }

    to {
        background: linear-gradient(90deg, rgb(0, 255, 0) 0%, rgb(64, 128, 0) 100%);
    }    
} */

.pharmacy__buttons {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;    
}

section:nth-child(2) {
    background: linear-gradient(to top, #303030, transparent), url('../assets/images/Calendar-448x932.webp');    
}

section:nth-child(3) {
    background: linear-gradient(to top, #303030, transparent), url('../assets/images/Pharmacy-1-S.webp');    
}

section:nth-child(4) {    
    background: linear-gradient(to top, #303030, transparent), url('../assets/images/Pharmacy-2-S.webp');
}

section:nth-child(5) {
    background: linear-gradient(to top, #303030, transparent), url('../assets/images/Pharmacy-3-S.webp');
}

section:nth-child(6) {
    background: linear-gradient(to top, #303030, transparent), url('../assets/images/Pharmacy-4-S.webp'); 
}

section:nth-child(7) {
    background: linear-gradient(transparent, 40%, #303030), url('../assets/images/Pharmacy-5-S.webp');
}

section:first-child img,
section:nth-child(2),
section:nth-child(3),
section:nth-child(4),
section:nth-child(5),
section:nth-child(6),
section:nth-child(7) {
    background-position: center;    
    background-size: cover; 
}

.button-card,
.button-section p {
    font-size: .4rem;
    font-weight: 600;
    text-shadow: 1px 1px 1px #000;
}

.Icons {
    vertical-align: middle;
    margin: 0 5px;
}

/* End pharmacy´s section */


/* Media query */

@media (min-width: 450px) {
    section:nth-child(2) {
        background: linear-gradient(to top, #000, transparent 100%), url('../assets/images/Calendar-448x932.webp');   
    }
    
    section:nth-child(3) {
        background: linear-gradient(to top, #000, transparent 100%), url('../assets/images/Pharmacy-1-M.webp');    
    }
    
    section:nth-child(4) {    
        background: linear-gradient(to top, #000, transparent 100%), url('../assets/images/Pharmacy-2-M.webp');
    }
    
    section:nth-child(5) {
        background: linear-gradient(to top, #000, transparent 100%), url('../assets/images/Pharmacy-3-M.webp');
    }
    
    section:nth-child(6) {
        background: linear-gradient(to top, #000, transparent 100%), url('../assets/images/Pharmacy-4-M.webp'); 
    }
    
    section:nth-child(7) {
        background: linear-gradient(to top, #000, transparent 100%), url('../assets/images/Pharmacy-5-M.webp');
    }
    section:first-child img,
    section:nth-child(2),
    section:nth-child(3),
    section:nth-child(4),
    section:nth-child(5),
    section:nth-child(6),
    section:nth-child(7) {
        background-position: center;    
        background-size: cover; 
    }
}

@media (min-width: 900px) {
    section:nth-child(2) {
        background: linear-gradient(to top, #303030, transparent), url('../assets/images/Calendar-2019.webp');   
    }
    
    section:nth-child(3) {
        background: linear-gradient(to top, #303030, transparent), url('../assets/images/Pharmacy-1-L.webp');    
    }
    
    section:nth-child(4) {    
        background: linear-gradient(to top, #303030, transparent), url('../assets/images/Pharmacy-2-L.webp');
    }
    
    section:nth-child(5) {
        background: linear-gradient(to top, #303030, transparent), url('../assets/images/Pharmacy-3-L.webp');
    }
    
    section:nth-child(6) {
        background: linear-gradient(to top, #303030, transparent), url('../assets/images/Pharmacy-4-L.webp'); 
    }
    
    section:nth-child(7) {
        background: linear-gradient(transparent, 40%, #303030), url('../assets/images/Pharmacy-5-L.webp');
    }
    section:first-child img,
    section:nth-child(2),
    section:nth-child(3),
    section:nth-child(4),
    section:nth-child(5),
    section:nth-child(6),
    section:nth-child(7) {
        background-position: center;    
        background-size: cover; 
    }

    .pharmacy__duty {
        top: 120px;
    }
}

@media (max-width: 1000px) {
    .desktop-menu {
        display: none;
    }   
}

@media (min-width: 1000px) {
    /* h1 {
        font-size: .75rem;
    } */
    header {
        padding: 10px 80px 10px 60px;
    }

    .mobile-menu {
        display: none;
    }

    .pharmacy {
        padding: 0 50px 50px 80px;
        height: 100%;
    }

    .pharmacy__title,
    .pharmacy__paragraph {
        animation-range: entry 10% cover 20%;
    }
}

@media screen and (min-width: 1200px) {
    h1 {
        font-size: .75rem;
    }
}

@media (max-height: 500px) and (orientation: landscape) {
    nav {
        height: 50px;
    }

    #menu-open {
        font-size: .7rem;
    }

    nav div img {
        width: 40px;
        height: 40px;
    }

    .mobile-menu ul {
        & li {
            font-size: .7rem;
            padding: 5px;
        }

        & li:nth-child(6) {
            font-size: .6rem;
            padding-top: 15px;
        }

    }

    .grid {
        width: 85%;
        max-width: 500px;
        height: 65%;
        display: grid;
        place-items: center;
        grid-template-columns: repeat(10, 1fr);
        grid-template-rows: repeat(10, 1fr);
    }

    .grid__item--1 {
        grid-area: 2 / 1 / 3 / 6;
        font-size: .4rem;
    }
    
    .grid__item--2 {
        grid-area: 3 / 1 / 4 / 6;
        font-size: .6rem;
    }
    
    .grid__item--3 {
        grid-area: 4 / 1 / 10 / 6;
        & img {
            vertical-align: middle;
        }
    }
    
    .grid__item--4 {
        display: none;
    }
    
    .grid__item--5 {
        grid-area: 9 / 9 / 11 / 11;
        & img {
            width: 40px;
            height: 40px;
        }
    }

    .grid__item--6 {
        grid-area: 10 / 1 / 11 / 11;
        font-size: .35rem;
    }
    
    .grid__item--7 {
        width: 100%;
        grid-area: 3 / 6 / 5 / 11;
    }
    
    .grid__item--8 {
        width: 100%;
        grid-area: 6 / 6 / 8 / 11;
    }
    

    #Fixture,
    #Antinori,
    #Battellocchi,
    #Reali,
    #Rodriguez,
    #Rusconi {
        /* padding: 0 50px 50px 20px Hasta el 05-08-2024*/
        padding: 0 50px 20px 20px;
    }

    .pharmacy__title {
        font-size: .7rem;
        margin-bottom: .3rem;    
    }
    
    .pharmacy__paragraph {
        margin-bottom: .4rem;
    }
}