@import url('https://fonts.googleapis.com/css?family=Open+Sans: 400, 500, 600, 700, 800|Syncopate|Poppins: 300, 500, 600, 700|Montserrat: 400, 700|Lily+Script+One');

:root {
    --paragraph-text-font: 'Open Sans';
    --service-heading-font: 'Poppins';
    --hero-text-font: 'Montserrat';
    --default-text-color: hsl(360, 0%, 20%);
    --hero-text-line-one-color: hsl(360, 0%, 30%);
    --hero-text-name-color: hsl(205, 100%, 33%);
    --section-heading-color: hsl(212, 100%, 23%);
    --services-heading-color: hsl(208, 100%, 27%);
    --input-form-color: hsl(217, 62%, 96%);
    --input-form-border-color: hsl(213, 59%, 87%);
}
html {
    box-sizing: border-box;
    font-size: 10px;
    background: hsl(180, 100%, 99%);
    scroll-behavior: smooth;
}

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

body {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1200px 1fr;
}

body > section, body > footer, body > hr {
    grid-column: 2 / 3;
}
/* Appointment Pop up */
@keyframes appointment-message {
    100% {
        height: 0;
    }
}
.appointment-message {
    grid-column: 1 / 4;
}
.success-message, .failure-message {
    width: 100%;
    font-family: var(--paragraph-text-font);
    font-weight: 600;
    font-size: 1.4rem;
    color: white;
    text-align: center;
    padding: 0.8rem 0;

}
.success-message {
    display: none;
    background-color: hsl(142, 70%, 40%);
}
.failure-message {
    display: none;
    background-color: hsl(0, 70%, 50%);
}


/* Navigation bar */
h1 {
    font-size: 2.4rem;
    font-family: 'Syncopate';
    color: var(--default-text-color);
}
.navigation-bar-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin: 24px 0;
}
.navigation-bar > ul {
    display: flex;
    gap: 32px;
    justify-content: space-evenly;
    align-items: baseline;
    position: relative;
}
.navigation-bar > ul > li {
    list-style: none;
}
.navigation-bar > ul > li > a {
    font-family: var(--paragraph-text-font);
    text-decoration: none;
    color: var(--default-text-color);
}
.navigation-bar li:nth-of-type(5) {
    display: none;
}
.contact-button-navbar {
    font-family: var(--paragraph-text-font);
    font-size: 1.6rem;
    background-color: hsl(202, 100%, 38%);
    padding: 8px 16px;
    border-radius: 8px;
    color: hsl(217, 62%, 96%);
    font-weight: 600;
    border: none;
    box-shadow:inset 0 1px 0 hsl(210, 62%, 65%), 2px 1px 5px hsla(0, 0%, 0%, .3);
}
.contact-button-navbar:hover {
    cursor: pointer;
}
.contact-expanded-menu {
    display: none;
    position: absolute;
    right: -65px;
    top: 50px;
}
.contact-expanded-address {
    width: 225px;
    display: flex;
    flex-direction: column;
    background-color: hsl(202, 100%, 38%);
    padding: 12px 24px;
    border-radius: 8px;
    box-shadow:inset 0 1px 0 hsl(210, 62%, 65%), 2px 1px 5px hsla(0, 0%, 0%, .3);
}
.clinic-name, .clinic-address, .clinic-tel-number {
    font-family: var(--paragraph-text-font);
    font-size: 1.6rem;
    text-align: center;
    color:hsl(217, 62%, 96%);
}
.clinic-tel-number {
    text-decoration: none;
}
.contact-menu-hr {
    width: 100%;
    margin: 8px auto;
    color:hsl(217, 62%, 96%);
}
.clinic-name {
    font-weight: 600;
}
.contact-telephone-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
}
.telephone-icon {
    width: 20px;
    height: 20px;
}
.close-button {
    width: 35px;
    height: 35px;
    z-index: 99;
}
.contact-menu-close-button {
    display: none;
    position: absolute;
    top: 0px;
    right: 0px;
    padding: 10px;
}
.contact-menu-close-button:hover {
    cursor: pointer;
}
.navigation-link-mobile-container {
    display: none;
}
.whatsapp-chat-link, .whatsapp-chat-link-mobile {
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 1;
}
.whatsapp-chat-image {
    width: 50px;
    object-fit: contain;
    /* box-shadow: 2px 1px 3px hsla(0, 0%, 0%, .3);*/
    border-radius: 15px;
}
.whatsapp-chat-link-mobile {
    display: none;
}
/* Hero section */
.hero-section-container {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: center;
}
.hero-image {
    width: 58%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 5px 2px 20px hsla(0, 0%, 0%, .2), 2px 1px 5px hsla(0, 0%, 0%, .3);
}
.hero-text {
    font-family: var(--hero-text-font);
}
.hero-line-one {
    font-size: 3.6rem;
    letter-spacing: -0.05em;
    color: var(--hero-text-line-one-color);
}
.hero-line-two {
    font-size: 6.0rem;
    font-weight: 700;
    color: var(--hero-text-name-color);
}
.hero-line-three {
    font-size: 2.0rem;
    margin-top: -12px;
    line-height: 1.1;
    color: var(--default-text-color);
}
.hero-line-four {
    font-size: 3.0rem;
    margin: 24px 0;
    line-height: 1.1;
    letter-spacing: -0.05em;
    color: var(--default-text-color);
}
.hero-appointment-button, .appointment-button {
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
}
.hero-appointment-button {
    text-decoration: none;
}
/* Services section */
.services-section-container {
    display: flex;
    flex-direction: column;
}
.services-subcontainer {
    display: grid;
    grid-template-columns: 29% 6% 29% 6% 29%;
    grid-template-rows: fit-content(350px) 30px;
}
.services-image {
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 5px 2px 10px hsla(0, 0%, 0%, .2), 2px 1px 5px hsla(0, 0%, 0%, .3);
    opacity: 0.6;
}
.services-image:hover {
    cursor: pointer;
    opacity: 1;
    transition: 0.2s ease-out;
    box-shadow: 10px 5px 12px hsla(0, 0%, 0%, .2), 2.5px 1.5px 6px hsla(0, 0%, 0%, .3);
}
.services-heading {
    font-size: 2.0rem;
    font-family: var(--service-heading-font);
    font-weight: 500;
    text-align: center;
    color: var(--services-heading-color);
}
.opd-img, .prp-img, .nutrition-img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
}
.opd-img {
    display: block;
    grid-area: 1 / 1 / 2 / 2;
}
.opd-title {
    grid-area: 2 / 1 / 3 / 2;
}
.opd-expanded-text, .prp-expanded-text, .nutrition-expanded-text {
    display: none;
    width: 550px;
    margin: 130px 100px 0 100px;
    font-family: var(--paragraph-text-font);
    color: var(--default-text-color);
    font-size: 1.6rem;
    line-height: 1.75;
    text-indent: 2em each-line;
}
.prp-img {
    display: block;
    grid-area: 1 / 3 / 2 / 4;
}
.prp-title {
    grid-area: 2 / 3 / 3 / 4;
}
.nutrition-img {
    display: block;
    grid-area: 1 / 5 / 2 / 6;
}
.nutrition-title {
    grid-area: 2 / 5 / 3 / 6;
}
.services-close-button {
    display: none;
    grid-area: 1 / 2 / 2 / 3;
    justify-self: end;
    margin: 16px;
    cursor: pointer;
    padding: 5px;
    z-index: 1;
}
.services-mobile-section-container {
    display: none;
}
.services-tablet-section-container {
    display: none;
}
/* Meet Dr. Ashim section */
.meet-section-container {
    display: flex;
    flex-direction: column;
}
.meet-description {
    display: flex;
    justify-content: center;
}
.meet-description-text {
    display: inline-block;
    font-size: 1.6rem;
    max-width: 40em;
    font-family: var(--paragraph-text-font);
    color: var(--default-text-color);
    text-indent: 2em each-line;
}
.credentials-text {
    text-indent: 0;
    margin-top: 16px;
}
.meet-description > img {
    width: 41%;
    aspect-ratio: 10 / 9;
    object-fit: cover;
    flex-shrink: 0;
    border-radius: 8px;
    box-shadow: 5px 2px 10px hsla(0, 0%, 0%, .2), 2px 1px 5px hsla(0, 0%, 0%, .3);
}
.institution-logo-container {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 48px;
}
.institution-logo-container > a > img {
    width: 150px;
    height: 150px;
    object-fit: contain;
    opacity: 0.8;
}
.institution-logo-container > a > img:hover {
    opacity: 1;
}

/* Appointment section */
.appointment-section-container {
    display: flex;
    flex-direction: column;
}

.appointment-subcontainer {
    width: 525px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: auto;
}
.appointment-subcontainer > div {
    width: 500px;
}
.appointment-forms {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.name-input-form, .age-input-form, .phone-input-form, .app-date-input-form, .app-time-input-form, submit-button, .appointment-forms > textarea  {
    font-family: var(--paragraph-text-font);
    background-color: var(--input-form-color);
}
.appointment-section-text {
    font-family: var(--paragraph-text-font);
}
.appointment-button {
    margin-top: 24px;
}
.appointment-divider {
    border-left: black 2px solid;
    height: 100%;
}
.call-us-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
}
.name-input-form, .age-input-form, .phone-input-form, .app-date-input-form, .app-time-input-form, .appointment-forms textarea, .appointment-forms select {
    font-size: 1.6rem;
    border: solid 2px var(--input-form-border-color);
    background-color: var(--input-form-color);
    border-radius: 12px;
    box-shadow: inset 0 0.5px hsl(213, 59%, 87%);
    margin: 4px auto 0;
    font-family: var(--paragraph-text-font);
}
.name-input-form:invalid:not(:placeholder-shown) {
    border-color: red;
}
.phone-input-form:invalid:not(:placeholder-shown) {
    border-color: red;
}
.age-input-form:invalid:not(:placeholder-shown) {
    border-color: red;
}
.name-input-form, .phone-input-form, .clinic-input-form {
    width: 100%;
    height: 36px;
    padding: 0 16px;
}
.app-date-input-form {
    width: 100%;
    height: 36px;
    padding: 0 16px;
}
.age-input-form, .gender-input-form, .app-time-input-form {
    width: 236px;
    height: 36px;
    padding: 0 16px;
}
.message-input-form {
    width: 100%;
    height: 144px;
    padding-top: 50px;
    padding: 16px;
}
.appointment-forms label {
    font-size: 1.6rem;
    font-family: var(--paragraph-text-font);
    color: var(--default-text-color);
}
.form-two-column-container {
    display: flex;
    justify-content: space-between;
}
.confirmation-call-text {
    font-family: var(--paragraph-text-font);
    font-size: 1.2rem;
    font-style: italic;
}
/* Testimonial section */
.testimonial-section-container {
    display: flex;
    flex-direction: column;
}
.testimonial-written-flex {
    display: flex;
    gap: 2.4rem;
    justify-content: center;
    margin-top: 2.4rem;
}
.testimonial-written-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 64px;
    flex-wrap: wrap;
}

.testimonial-written-subcontainer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
    background-color: var(--input-form-color);
    border: var(--input-form-border-color) solid 1px;
    border-radius: 12px;
    padding: 16px;
}

.testimonial-written-subcontainer > img:nth-last-of-type(1) {
    width: 100px;
    height: 100px;
    object-fit: contain;
    border-radius: 50%;
}
.testimonial-close-button {
    display: none;
    position: relative;
    width: 20px;
    height: 20px;
    margin-left: auto;
}
.testimonial-close-button:hover {
    cursor: pointer;
}
iframe {
    width: 70%;
    height: 480px;
    object-fit: contain;
    margin: 30px auto 0;
    border-radius: 8px;
}
.testimonial-treated-number-text, .testimonial-text, .testimonial-name, .testimonial-read-more {
    font-family: var(--service-heading-font);
}
.testimonial-potrait-text-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.testimonial-potrait-collection {
    max-width: 600px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.testimonial-potrait-collection > img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    margin-right: -24px;
    margin-bottom: 4px;
}
.testimonial-treated-number-text {
    font-size: 2.4rem;
    max-width: 35em;
    text-align: center;
    margin-top: 24px;
    line-height: 40px;
}
.patient-count {
    font-size: 4.8rem;
    letter-spacing: -0.1rem;
    font-weight: 600;
    color: var(--hero-text-name-color);
}
.testimonial-read-more {
    display: inline;
    font-size: 1.4rem;
    font-style: italic;
    text-decoration: underline;
    background-color: transparent;
    border: none;
}
.testimonial-read-more:hover {
    cursor: pointer;
}
.testimonial-text {
    display: inline-block;
    max-width: 45em;
    font-size: 1.4rem;
    color: var(--default-text-color);
    font-weight: 500;
    text-align: center;
    position: relative;
    line-height: 1.6;
    padding: 0 1.4rem;
}
.testimonial-text::before {
    display: none;
    position: absolute;
    top: -25px;
    left: 0;
    content: '"';
    font-family: "Lily Script One";
    font-size: 2.4rem;
    color: var(--hero-text-name-color);
    transform: rotate(180deg);
}
.testimonial-name {
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--hero-text-name-color);
}
.testimonial-read-more {
    color: var(--hero-text-name-color);
}
hr {
    margin: 30px 0;
}
/* Footer section */
footer {
    display: flex;
    flex-direction: column;
}
.footer-links {
    display: flex;
    justify-content: center;
}
.footer-social-links {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.footer-social-links img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    margin-right: 4px;
}
.footer-website-links {
    display: flex;
    gap: 24px;
}
.footer-website-links > ul > li:not(.blue-color), .footer-website-links > ul:not(:nth-of-type(3)) > li > a {
    font-size: 1.4rem;
    font-family: var(--paragraph-text-font);
}
.footer-website-links > ul:not(:nth-of-type(3)) > li > a {
    text-decoration: none;
    color: var(--default-text-color);
}
.footer-website-links > ul > li {
    list-style: none;
}
.footer-website-links > ul > li:not(:nth-last-of-type(1)) {
    margin-bottom: 1.4rem;
}
.blue-color {
    color: var(--hero-text-name-color);
    font-weight: 600;
    font-size: 1.6rem;
    font-family: var(--paragraph-text-font);
    text-decoration: none;
}
h3 {
    font-size: 2.4rem;
    font-family: var(--paragraph-text-font);
}
.copyright-creator > p {
    font-family: var(--paragraph-text-font);
    text-align: center;
    color: var(--default-text-color);
}
.copyright-creator > p > a {
    text-decoration: none;
    color: var(--default-text-color);
}
/* Font design */
nav > ul > li > a {
    font-size: 1.6rem;
}
h2 {
    font-size: 3.0rem;
    font-family: var(--hero-text-font);
    font-weight: 700;
    color: var(--section-heading-color);
    text-align: center;
    margin: 48px 0 8px;
    letter-spacing: -0.02em;
}
.twelve {
    font-size: 1.2rem;
}
.sixteen {
    font-size: 1.6rem;
}
.twenty {
    font-size: 2.0rem;
}
.twentyfour {
    font-size: 2.4rem;
}
.thrity {
    font-size: 3.0rem;
}
.thritysix {
    font-size: 3.6rem;
}
.fourtyeight {
    font-size: 4.8rem;
}
.bold-text {
    font-weight: 700;
}
.underlined-text {
    text-decoration: underline;
}
.italic-text {
    font-style: italic;
}
/* Button design */
.primary-button {
    font-size: 2.0rem;
    font-family: var(--paragraph-text-font);
    color: hsl(217, 62%, 96%);
    font-weight: 500;
    background-color: hsl(202, 100%, 38%);
    box-shadow:inset 0 1px 0 hsl(210, 62%, 65%), 2px 1px 5px hsla(0, 0%, 0%, .3);
}

.temp_hidden {
    display: none !important;
}

/* Mobile */
@media (min-width: 360px) and (max-width: 749px) {
    body {
        grid-template-columns: 1fr 95vw 1fr;
        overflow-x: hidden;
    }
    /* Navigation bar */
    .navigation-bar-container {
        width: 100%;
        flex-direction: column;
        align-items: center;
    }
    .navigation-bar {
        width: 100%;
        position: relative;
    }
    .navigation-bar > ul {
        justify-content: space-between;
        align-items: flex-end;
    }
    .navigation-bar li:not(:nth-of-type(6)) {
        display: none;
    }
    .navigation-bar li:nth-of-type(5) {
        display: block;
    }
    .hamburger-icon {
        height: 30px;
        width: 30px;
        object-fit: contain;
        margin-top: 20px;
    }
    .navigation-link-mobile-container {
        display: none;
        position: absolute;
        top: 110px;
        left: 10px;
        background-color: hsl(202, 100%, 38%);
        box-shadow:inset 0 1px 0 hsl(210, 62%, 65%), 2px 1px 5px hsla(0, 0%, 0%, .3);
        border-radius: 8px;
        padding: 0 16px;
    }
    .navigation-link-mobile-container li {
        list-style: none;
        margin: 16px 0;
    }
    .navigation-link-mobile-container li:not(:nth-of-type(4)) {
        border-bottom: 1px solid var(--input-form-color);
        padding-bottom: 8px;
    }
    .navigation-link-mobile-container a {
        font-family: var(--paragraph-text-font);
        font-size: 2.0rem;
        text-decoration: none;
        color: var(--input-form-color)
    }
    .close-icon-mobile {
        display: none;
        width: 20px;
        height: 20px;
        object-fit: contain;
        position: absolute;
        right: 10px;
        top: 10px;
    }
    .contact-expanded-menu {
        right: 0;
        top: 60px;
    }
    .whatsapp-chat-image {
        width: 50px;
    }
    .hero-image {
        width: 100%;
        height: auto;
    }
    .hero-section-container {
        flex-direction: column;
    }
    .hero-appointment-button {
        display: block;
        text-align: center;
        width: 100%;
    }
    .services-section-container {
        display: none;
    }
    .services-mobile-section-container {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .services-mobile-subcontainer {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }
    .services-individual-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 24px;
        background-color: hsl(202, 100%, 38%);
        border-radius: 4px;
        box-shadow:inset 0 1px 0 hsl(210, 62%, 65%), 2px 1px 5px hsla(0, 0%, 0%, .3);
    }
    .services-individual-container >img:nth-of-type(1) {
        width: 80px;
        height: 80px;
        object-fit: contain;
        border-radius: 4px 0 0 4px;
    }
    .services-individual-container >img:nth-of-type(2) {
        width: 30px;
        height: 30px;
        object-fit: contain;
        margin-right: 12px;
    }
    .services-individual-container > p:nth-of-type(1) {
        display: inline-block;
        font-family: var(--service-heading-font);
        font-size: 2.4rem;
        color: var(--input-form-color);
        margin-right: auto;
    }
    .opd-expanded-text-mobile, .prp-expanded-text-mobile, .nutrition-expanded-text-mobile {
        display: none;
        font-family: var(--paragraph-text-font);
        font-size: 1.6rem;
        color: var(--input-form-color);
        padding: 0 12px 12px;
    }
    .meet-description {
        display: flex;
        flex-direction: column-reverse;
        gap: 24px;
    }
    .meet-description img {
        width: 100%;
        height: auto;
    }
    .institution-logo-container {
        flex-wrap: wrap;
    }
    .institution-logo-container > a > img {
        opacity: 1;
    }
    .form-two-column-container {
        flex-direction: column;
    }
    .age-input-form, .gender-input-form, .app-date-input-form, .app-time-input-form {
        width: 100%;
    }
    .appointment-subcontainer {
        width: 100%;
    }
    .appointment-subcontainer > div {
        width: 100%;
    }
    .testimonial-written-flex {
        display: flex;
        flex-direction: column;
        gap: 1.2rem;
        align-items: center;
    }
    .testimonial-written-subcontainer {
        width: 90% !important;
        margin-top: 1.2rem;
    }
    .testimonial-potrait-collection {
        width: 100%;
        margin-right: 24px;
    }
    .testimonial-potrait-collection > img {
        width: 75px;
        height: 75px;
    }
    .testimonial-potrait-collection > img:nth-of-type(8) {
        margin-left: 10px;
    }
    .testimonial-treated-number-text {
        max-width: 100%;
    }
    .testimonial-text {
        width: 100%;
        padding: 0;
    }
    iframe {
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 9 ;
        margin-top: 0;
    }
    .footer-links {
        flex-direction: column;
    }
    .footer-website-links {
        flex-direction: column;
        gap: 16px;
        margin-top: 16px;
    }
}

@media (max-width: 411px) {
    .services-individual-container > p:nth-of-type(1) {
        font-size: 2.0rem;
    }
}
@media (max-width: 375px) {
    .testimonial-potrait-collection > img:nth-of-type(8) {
        margin-left: -10px;
    }
    .services-individual-container > p:nth-of-type(1) {
        font-size: 1.8rem;
    }
    .whatsapp-chat-image {
        width: 50px;
    }
}
@media (min-width: 380px) and (max-width: 420px) {
    .whatsapp-chat-link {
        bottom: 5vh;
        right: 10px;
    }
}
@media (min-width: 450px) and (max-width: 749px) {
    body {
        grid-template-columns: 1fr 445px 1fr;
        overflow-x: hidden;
    }
}

/** Tablet **/
@media (min-width: 750px) and (max-width: 1199px) {
    body {
        grid-template-columns: 1fr 95vw 1fr;
        overflow-x: hidden;
    }
    .contact-expanded-menu {
        right: 0;
    }
    .services-tablet-section-container {
        display: block;
    }
    .services-section-container {
        display: none;
    }
    .services-tablet-subcontainer {
        display: grid;
        grid-template-columns: 127px 103px 12px 93px 44px 93px 12px 103px 127px;
        grid-template-rows: 230px 26px 204px 10px 93px 17px;
        place-items: center;
        justify-content: center;
        margin-bottom: -350px;
        align-content: start;
    }
    .tablet-service-image {
        width: 100%;
        object-fit: contain;
        border-radius: 8px;
        object-fit: cover;
        border-radius: 8px;
        box-shadow: 5px 2px 10px hsla(0, 0%, 0%, .2), 2px 1px 5px hsla(0, 0%, 0%, .3);
    }
    .opd-tablet-img {
        grid-area: 1 / 1 / 2 / 3;
    }
    .prp-tablet-img {
        grid-area: 1 / 4 / 2 / 7;
    }
    .nutrition-tablet-img {
        grid-area: 1 / 8 / 2 / 10;
    }
    .opd-title-tablet {
        grid-area: 2 / 1 / 3 / 3;
    }
    .prp-title-tablet {
        grid-area: 2 / 4 / 3 / 7;
    }
    .nutrition-title-tablet {
        grid-area: 2 / 8 / 3 / 10;
    }
    .service-close-button-tablet {
        grid-area: 1 / 2 / 4 / 9;
        display: none;
        width: 30px;
        height: 30px;
        justify-self: end;
        align-self: start;
        margin: 5%;
        z-index: 1;
    }
    .opd-expanded-text-tablet, .prp-expanded-text-tablet, .nutrition-expanded-text-tablet {
        display: none;
        justify-self: start;
        align-self: start;
        margin: 20% 10% 10%;
        font-size: 1.4rem;
        font-family: var(--paragraph-text-font);
    }
    .opd-title-tablet, .prp-title-tablet, .nutrition-title-tablet {
        font-family: var(--service-heading-font);
        color: var(--section-heading-color);
        font-size: 2.0rem;
        font-weight: 500;
    }
    .testimonial-name {
        font-size: 1.6rem;
    }
}