@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

*,
::before,
::after {
    box-sizing: border-box;
    margin: 0;
}

a {
    text-decoration: none;
}

img {
    vertical-align: bottom;
}

button {
    padding: 0;
    border: none;
    cursor: pointer;
}

ul {
    list-style: none;
    padding: 0;
}

label {
    display: block;
}

.two {
    display: none;
}

html {
    font-size: 16px;
    --blue: #1a9bdc;
    --green: #37c3a8;
    --blue-L: #43b1d2;
    --ff: 'Lato', sans-serif;

}

body {
    font-size: 18px;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 1rem;
}

.row {
    display: flex;
    flex-flow: row wrap;
    margin: 0 -1rem;
}

[class^="col-"] {
    flex: 1 0 auto;
    padding: 0 1rem;
}

.col-1 {
    flex-basis: 8.33%;
    max-width: 8.33%;
}

.col-2 {
    flex-basis: 16.66%;
    max-width: 16.66%;
}

.col-3 {
    flex-basis: 25%;
    max-width: 25%;
}

.col-4 {
    flex-basis: 33.33%;
    max-width: 33.33%;
}

.col-5 {
    flex-basis: 41.66%;
    max-width: 41.66%;
}

.col-6 {
    flex-basis: 50%;
    max-width: 50%;
}

.col-7 {
    flex-basis: 58.33%;
    max-width: 58.33%;
}

.col-8 {
    flex-basis: 66.66%;
    max-width: 66.66%;
}

.col-9 {
    flex-basis: 75%;
    max-width: 75%;
}

.col-10 {
    flex-basis: 83.33%;
    max-width: 83.33%;
}

.col-11 {
    flex-basis: 91.66%;
    max-width: 91.66%;
}

.col-12 {
    flex-basis: 100%;
    max-width: 100%;
}

.flex {
    display: flex;
}

.img-resp {
    max-width: 100%;
    height: auto;
}

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

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

.align-cont-center {
    align-content: center;
}

.justify-betwen {
    justify-content: space-between;
}

.justify-itme-cent {
    justify-items: center;
}

.justify-conten-cent {
    justify-content: center;
}

.place-center {
    place-items: center;
}

.gap-y-45 {
    gap: 3rem 0;
}

hr {
    border: 2px solid #ececec;
    width: 100%;
}

.burger {
    position: absolute;
    cursor: pointer;
    right: 5%;
    top: 15px;
    display: none;
}

.line {
    display: block;
    width: 45px;
    height: 6px;
    margin: 5px 3px;
    color: #fff;
    background: #000;
    transform-origin: right center;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.burger.open .first {
    transform: rotate(-45deg);
}

.burger.open .second {
    opacity: 0;
}

.burger.open .last {
    transform: rotate(45deg);
}


/*=========== Custom CSS ============*/
header {
    padding-top: 35px;
}

.contact-1 {
    margin-bottom: 20px;
}

.contact-1 i {
    width: 41px;
    height: 41px;
    background: var(--blue);
    border-radius: 50%;
    font-size: 23px;
    color: #fff;
    padding: 10px;
    display: grid;
    place-items: center;
    margin-right: 10px;
}

.contact-1 p {
    font-size: 15px;
    color: #6a6a6a;
}

.contact-1 .p1 {
    font-size: 14px;
    color: #6a6a6a;
}

nav ul li {
    margin-right: 23px;
}

nav ul li a {
    font-size: 20px;
    color: #6c6c6c;
    font-weight: 600;
    font-family: var(--ff);
}

nav li a {
    display: block;
    line-height: 80px;
    padding: 0 7px 0 0;
}

nav li a:hover {
    color: #000;
}

nav a:active {
    color: var(--blue);
}

nav .social {
    float: right;
}

nav .social a {
    font-size: 23px;
    line-height: 80px;
    margin-right: 28px;
    color: #191919;
}

nav .social a:hover {
    color: var(--blue);
}

nav .social a:active {
    color: #ff0000;
}

.banner {
    background: url(../images/wrap-1-img-1.webp) no-repeat center/cover;
}

.banner .text {
    margin-top: 190px;
}

.banner h2 {
    font-size: 2.5rem;
    font-family: 'Montserrat';
    font-weight: 700;
    color: #474747;
    margin-bottom: 38px;
}

.banner p {
    font-family: var(--ff);
    margin: 0 0 48px 0;
    color: #3f3f3f;
}

.btn {
    padding: 16px 27px;
    margin-bottom: 80px;
    background: var(--blue);
    border-radius: 50px;
    color: #fff;
    font-size: 18px;
    box-shadow: 0px 20px 60px -19px #000;
    font-family: "Lato", sans-serif;
}

.banner .btn:hover {
    background: var(--green);
}

.banner .hide {
    display: none;
}

/* ===== Wrap-1 / Best Treat Cards ===== */
.wrap-1 {
    background: linear-gradient(135deg, #f0faff 0%, #e6f7f1 100%);
    padding: 80px 0 90px;
}

/* Make columns stretch so cards can be equal height */
.wrap-1 .row {
    row-gap: 30px;
    align-items: stretch;
}

.wrap-1 [class^="col-"] {
    display: flex;
}

.best-treat {
    background: #fff;
    border-radius: 16px;
    padding: 40px 28px 32px;
    text-align: center;
    position: relative;
    /* overflow visible so the dashed ring ::after is not clipped */
    overflow: visible;
    box-shadow: 0 8px 30px rgba(26, 155, 220, 0.10);
    transition: box-shadow 0.35s ease;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Top accent bar — sits inside a clipping wrapper so it doesn't overflow */
.best-treat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    border-radius: 16px 16px 0 0;
    background: linear-gradient(90deg, var(--blue), var(--green));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
    z-index: 1;
}

.best-treat:hover::before {
    transform: scaleX(1);
}

/* Hover lift — use margin-top instead of transform so GSAP doesn't conflict */
.best-treat:hover {
    box-shadow: 0 20px 50px rgba(26, 155, 220, 0.22);
    margin-top: -8px;
    margin-bottom: 8px;
}

/* Icon ring */
.best-treat-icon {
    width: 90px;
    height: 90px;
    flex-shrink: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue), var(--green));
    display: grid;
    place-items: center;
    margin-bottom: 28px;
    position: relative;
    transition: transform 0.35s ease;
    box-shadow: 0 6px 20px rgba(26, 155, 220, 0.35);
    z-index: 1;
}

/* Outer dashed glow ring — visible because parent overflow is now visible */
.best-treat-icon::after {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px dashed rgba(26, 155, 220, 0.40);
    transition: transform 0.6s linear;
}

.best-treat:hover .best-treat-icon {
    transform: rotate(10deg) scale(1.08);
}

.best-treat:hover .best-treat-icon::after {
    transform: rotate(180deg);
}

.best-treat-icon i {
    font-size: 36px;
    color: #fff;
    position: relative;
    z-index: 1;
}

/* Card body — fills remaining space */
.best-treat-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    width: 100%;
}

.best-treat h2 {
    font-size: 20px;
    font-family: 'Montserrat';
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 14px;
}

.best-treat p {
    font-size: 15px;
    line-height: 26px;
    color: #7a7a7a;
    margin-bottom: 24px;
    flex: 1;
}

/* Learn More link */
.best-treat-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 14px;
    font-weight: 700;
    font-family: 'Montserrat';
    color: var(--blue);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: gap 0.3s ease, color 0.3s ease;
    margin-top: auto;
}

.best-treat-link i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.best-treat:hover .best-treat-link {
    color: var(--green);
    gap: 12px;
}

.best-treat:hover .best-treat-link i {
    transform: translateX(4px);
}

.wrap-2 h2 {
    font-size: 3rem;
    font-family: 'Montserrat';
    font-weight: 700;
    margin: 112px 0 20px 0;
    color: #494949;
}

.wrap-2 p {
    padding: 0 60px;
    font-family: var(--ff);
    color: #7c7c7c;
}

.professional {
    margin-top: 70px;
}

.professional i {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    background: var(--blue);
    color: #fff;
    font-size: 40px;
    display: grid;
    place-content: center;
    text-align: center;
}

.professional h3 {
    font-size: 32px;
    font-family: 'Montserrat';
    margin-left: 19px;
    align-content: center;
    color: #6f6f6e;
}

.professional p {
    padding: 0;
    margin: 20px 0;
    line-height: 25px;
    color: #6a6a6a;
}

.wrap-2 .nurse {
    margin-top: 50px;
    height: auto;
}

/* .wrap-2 img{width: 100%; height: 598px; object-fit: cover;} */
.professional .pro-2,
.pro-4 {
    margin-top: 98px;
}

.wrap-3 {
    background: url(../images/wrap-4-img-back.webp) no-repeat center/cover;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.progress {
    color: #fff;
    margin: 100px 0;
}

.progress i {
    font-size: 50px;
    margin-bottom: 47px;
}

.progress p {
    font-size: 60px;
    font-family: 'Montserrat';
    font-weight: 500;
    margin-bottom: 23px;
}

.progress hr {
    width: 100px;
    border: 5px solid #fff;
    margin: 0 auto;
    margin-bottom: 27px;
}

.progress h3 {
    font-size: 25px;
    font-family: 'Montserrat';
    margin-top: 30px;
}


.wrap-4 .work-2 h2,
.wrap-4 .creat h2 {
    margin-bottom: 40px;
    font-size: 45px;
    font-weight: 700;
    font-family: 'Montserrat';
    color: #494949;
}

.wrap-4 .work-2,
.wrap-4 .creat {
    margin-top: 100px;
}

.work-2 p,
.creat p {
    color: #6a6a6a;
    line-height: 25px;
    font-family: var(--ff);
    margin-bottom: 50px;
}

.wrap-4 .image-1 img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    margin-bottom: 36px;
}

.wrap-4 .image-1 .p2 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 5px;
    color: #6f6f6e;
}

.image-1 small {
    margin-bottom: 27px;
    color: #0087be;
    font-weight: 600;
}

.wrap-4 .image-1 .p3 {
    margin-top: 27px;
    color: #6a6a6a;
}

.wrap-4 .btn {
    padding: 10px 28px;
    background: #0087be;
    box-shadow: 0px 13px 35px -13px #000;
    border-radius: 20px;
    color: #fff;
    font-size: 16px;
    font-family: "Lato", sans-serif;
    margin: 53px 0 100px 0;
    text-align: center;
}

.wrap-4 .accordian {
    background: #0087be;
    color: #fff;
    padding: 5px 0;
    border-radius: 50px;
    margin-bottom: 20px;
    cursor: pointer;
    user-select: none;
    transition: background 0.3s ease;
}

.wrap-4 .accordian:hover {
    background: #006fa0;
}

/* Rotate icon when accordion is open */
.wrap-4 .accordian.active span {
    transform: rotate(90deg);
}

.wrap-4 span {
    font-size: 40px;
    margin: 0 20px 0 5px;
    transition: transform 0.3s ease;
    display: inline-block;
}

.wrap-4 .accordian h3 {
    font-size: 20px;
    font-family: 'Montserrat';
    font-weight: 500;
}

/* Accordion panel — transition via max-height */
.wrap-4 .acc-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.4s ease, margin 0.4s ease;
    opacity: 0;
    margin-bottom: 0;
}

.wrap-4 .acc-panel.open {
    max-height: 200px;
    opacity: 1;
    margin-bottom: 40px;
}

.wrap-4 .acc-panel p {
    color: #494949;
    padding-top: 12px;
}

.wrap-5 {
    background: url(../images/wrap-6-img-back.webp) no-repeat center/cover;
    padding: 95px 0;
    color: #fff;
}

.wrap-5 .gallery h2 {
    font-size: 45px;
    font-family: 'Montserrat';
    font-weight: 700;
    margin-bottom: 45px;
}

.wrap-5 p {
    font-family: var(--ff);
    line-height: 30px;
    margin-bottom: 54px;
}

.wrap-5 .col-4 img {
    width: 100%;
    height: 235px;
    object-fit: cover;
}

.wrap-6 {
    padding: 150px 0 135px 0;
}

.wrap-6 h2 {
    font-size: 45px;
    font-family: 'Montserrat';
    font-weight: 700;
    margin-bottom: 45px;
    color: #494949;
}

.wrap-6 .team p {
    margin-bottom: 84px;
    color: #6a6a6a;
}

.wrap-6 .profile img {
    border-radius: 50%;
    width: 100%;
    height: 275px;
    object-fit: cover;
}

.wrap-6 .text-2 h3 {
    font-size: 25px;
    font-family: 'Montserrat';
    font-weight: 500;
    color: #6f6f6e;
    margin: 25px 0 16px;
}

.wrap-6 .text-2 p {
    font-size: 18px;
    color: #6f6f6e;
    font-family: var(--ff);
    font-weight: 500;
}

.wrap-6 .social-2 {
    margin-top: 35px;
}

.wrap-6 .social-2 a {
    font-size: 25px;
    color: #0087be;
    margin: 0 5px;
}

.wrap-7 {
    background: #e2e2e2;
    padding: 45px 0;
}

.wrap-7 .offer p {
    font-size: 30px;
    font-weight: 600;
    font-family: 'Montserrat';
    margin-right: 77px;
}

.wrap-7 .btn {
    padding: 10px 28px;
    margin: 0;
    background: #0087be;
    box-shadow: 0px 16px 28px -16px #000;
    border-radius: 20px;
    color: #fff;
    font-size: 16px;
    font-family: "Lato", sans-serif;
    text-align: center;
}

.wrap-8 {
    background: #171717;
    color: #fff;
    padding: 110px 0;
}

.wrap-8 .contact-2 h2,
.wrap-8 .about h2,
.wrap-8 .service h2,
.wrap-8 .enquiry h2 {
    font-size: 22px;
    font-family: var(--ff);
    font-weight: 700;
    margin-bottom: 70px;
}

.wrap-8 .mail,
.wrap-8 .call,
.wrap-8 .add {
    margin-bottom: 60px;
}

.wrap-8 .call i {
    font-size: 35px;
    margin-right: 49px;
    color: #8d8d8d;
}

.wrap-8 .mail i,
.wrap-8 .add i {
    font-size: 35px;
    margin-right: 43px;
    color: #8d8d8d;
}

.wrap-8 .mail p,
.wrap-8 .call p,
.wrap-8 address {
    font-size: 17px;
    color: #8d8d8d;
}

.social-3 a {
    font-size: 25px;
    margin-right: 26px;
    color: #fff;
}

.social-3 a:hover {
    color: var(--blue);
}

.wrap-8 .link p,
.wrap-8 .work-3 p {
    margin-bottom: 26px;
}

.wrap-8 .link p a,
.wrap-8 .work-3 p a {
    color: #8d8d8d;
}

.wrap-8 .link p::before,
.wrap-8 .work-3 p::before {
    content: '';
    display: inline-block;
    border: 6px solid;
    border-color: transparent transparent transparent #0087be;
    margin-right: 15px;
}

.wrap-8 form input {
    width: 100%;
    padding: 10px 0 15px 0;
    border: none;
    outline: none;
    margin-bottom: 20px;
    background: #171717;
    border-bottom: 2px solid #5f5f5f;
    color: #5f5f5f;
}

.wrap-8 form textarea {
    width: 100%;
    padding: 10px 0;
    border: none;
    outline: none;
    resize: none;
    margin-bottom: 24px;
    background: #171717;
    border-bottom: 2px solid #5f5f5f;
    color: #5f5f5f;
    height: 107px;
}

.wrap-8 .btn {
    padding: 12px 36px;
    background: #0087be;
    border-radius: 50px;
    color: #fff;
    font-size: 13px;
    font-family: "Lato", sans-serif;
    text-align: center;
}

footer {
    background: #1a1a1a;
    padding: 40px 0;
    color: #918e8e;
    line-height: 25px;
}

/* ── GSAP: prevent flash before animations run ── */
.banner h2,
.banner p:not(.hide),
.banner .btn,
.best-treat,
.progress,
.progress i,
.wrap-2 .nurse,
.wrap-4 .image-1,
.wrap-4 .accordian,
.wrap-5 .col-4,
.wrap-6 .profile,
.wrap-7 .offer p,
.wrap-7 .btn,
.wrap-8 .col-3 {
    will-change: transform, opacity;
}

/* ── Split text spans ── */
.split-char,
.split-word {
    display: inline-block;
    will-change: transform, opacity;
}

/* Prevent line-height collapse on split headings */
[data-split] {
    overflow: visible;
    line-height: inherit;
}





/* ========== Responsive ========== */

@media screen and (max-width:1220px) {
    .contact-1 p {
        font-size: 17px;
    }

    .contact-1 .p1 {
        font-size: 13px;
    }

    nav ul li {
        margin-right: 11px;
    }

    nav ul li a {
        font-weight: 400;
    }

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

    .wrap-1 .best-treat h2 {
        font-size: 23px;
    }

    .social-3 a {
        margin-right: 15px;
    }

    .progress hr {
        width: 85px;
        margin: 0 auto;
    }

    .wrap-8 .mail p,
    .wrap-8 .call p,
    .wrap-8 address {
        font-size: 16px;
    }

    .wrap-6 .profile img {
        border-radius: 50%;
        width: 100%;
        height: 220px;
        object-fit: cover;
    }

    .wrap-7 .offer p {
        font-size: 27px;
        margin-right: 0;
    }

    .wrap-7 .btn {
        width: 150px;
        float: right;
    }
}

@media screen and (max-width:980px) {

    .col-t-6 {
        flex-basis: 50%;
        max-width: 50%;
    }

    .col-t-12 {
        flex-basis: 100%;
        max-width: 100%;
    }

    /* Header */
    .contact-1 p {
        font-size: 14px;
    }

    .contact-1 .p1 {
        font-size: 12px;
    }

    /* Nav */
    nav ul li {
        margin-right: 8px;
    }

    nav ul li a {
        font-size: 15px;
        padding: 0;
        font-weight: 500;
        line-height: 60px;
    }

    nav li a {
        line-height: 60px;
    }

    nav .social a {
        font-size: 18px;
        line-height: 60px;
        margin-right: 15px;
    }

    /* Banner */
    .banner {
        width: 100%;
        height: 350px;
    }

    .banner .text {
        margin-top: 75px;
        text-align: center;
    }

    .banner h2 {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .banner p {
        margin-bottom: 15px;
        font-size: 14px;
    }

    /* Wrap-1 */
    .wrap-1 .best-treat h2 {
        font-size: 17px;
    }

    .best-treat-icon {
        width: 75px;
        height: 75px;
    }

    .best-treat-icon i {
        font-size: 30px;
    }

    /* Wrap-2 */
    .wrap-2 h2 {
        margin-top: 60px;
    }

    .wrap-2 p {
        padding: 0 20px;
    }

    .professional {
        margin-top: 50px;
    }

    .wrap-2 .nurse {
        margin-top: 30px;
    }

    /* Wrap-3 */
    .progress hr {
        margin: 0 auto;
    }

    /* Wrap-4 */
    .wrap-4 .col-8 {
        text-align: center;
    }

    .wrap-4 .work-2 h2,
    .wrap-4 .creat h2 {
        font-size: 36px;
    }

    .wrap-4 .btn {
        margin: 40px 0 60px 0;
    }

    .wrap-4 span {
        margin: 0 10px 0 5px;
    }

    .wrap-4 .accordian {
        margin-bottom: 40px;
    }

    /* Wrap-6 */
    .wrap-6 .row {
        row-gap: 50px;
    }

    .wrap-6 .profile img {
        border-radius: 50%;
        width: 100%;
        height: 250px;
        object-fit: cover;
    }

    /* Wrap-7 */
    .wrap-7 .offer p {
        font-size: 21px;
        text-align: center;
    }

    .wrap-7 .button {
        text-align: center;
    }

    .wrap-7 .btn {
        float: none;
        margin-top: 30px;
    }

    /* Wrap-8 */
    .wrap-8 .contact-2 h2,
    .wrap-8 .about h2,
    .wrap-8 .service h2,
    .wrap-8 .enquiry h2 {
        font-size: 22px;
        margin-bottom: 40px;
    }

    .wrap-8 .mail i,
    .wrap-8 .add i {
        margin-right: 25px;
    }

    .wrap-8 .call i {
        margin-right: 25px;
    }

    .wrap-8 .mail p,
    .wrap-8 .call p,
    .wrap-8 address {
        font-size: 16px;
    }

    .wrap-8 .link p,
    .wrap-8 .work-3 p {
        font-size: 16px;
    }

    .social-3 a {
        margin-right: 20px;
        font-size: 20px;
    }

    .wrap-8 .service,
    .wrap-8 .enquiry {
        margin-top: 60px;
    }

    .wrap-8 .enquiry .btn {
        margin-bottom: 0;
        font-size: 16px;
    }

    .wrap-8 form input,
    .wrap-8 form textarea {
        font-size: 16px;
    }
}

@media screen and (max-width:767px) {
    .col-m-6 {
        flex-basis: 50%;
        max-width: 50%;
    }

    .col-m-12 {
        flex-basis: 100%;
        max-width: 100%;
    }

    /* Header */
    .contact-1 i {
        width: 35px;
        height: 35px;
        padding: 6px;
        font-size: 16px;
    }

    .contact-1 p {
        font-size: 11px;
    }

    .contact-1 .p1 {
        font-size: 10px;
    }

    /* Nav */
    nav ul li a {
        font-size: 13px;
    }

    /* Banner */
    .banner {
        width: 100%;
        height: 320px;
    }

    .banner .text {
        margin-top: 50px;
        text-align: center;
    }

    .banner h2 {
        font-size: 20px;
    }

    /* Wrap-1 */
    .wrap-1 .best-treat h2 {
        font-size: 19px;
    }

    .best-treat-icon {
        width: 80px;
        height: 80px;
    }

    /* Wrap-2 */
    .professional i {
        width: 65px;
        height: 65px;
        font-size: 35px;
    }

    .professional h3 {
        font-size: 22px;
        margin-left: 11px;
    }

    .wrap-2 img {
        margin-left: 0;
        width: 100%;
    }

    /* Wrap-3 */
    .progress p {
        font-size: 50px;
    }

    .progress h3 {
        font-size: 23px;
    }

    /* Wrap-4 */
    .wrap-4 .creat h2 {
        margin-bottom: 20px;
    }

    /* Wrap-6 */
    .wrap-6 {
        padding: 80px 0;
    }

    .wrap-6 .profile img {
        width: 200px;
        height: 200px;
        border-radius: 50%;
        object-fit: cover;
    }

    /* Wrap-8 */
    .wrap-8 {
        padding: 60px 0;
    }

    .wrap-8 .service,
    .wrap-8 .enquiry,
    .wrap-8 .about {
        margin-top: 60px;
    }
}

@media screen and (max-width: 460px) {
    .col-p-6 {
        flex-basis: 50%;
        max-width: 50%;
    }

    .col-p-12 {
        flex-basis: 100%;
        max-width: 100%;
    }

    /* Header */
    header {
        padding-top: 12px;
        position: relative;
    }

    header h1 img {
        margin-bottom: 10px;
        max-width: 160px;
    }

    .contact-1 {
        display: none;
    }

    .hr-1 {
        display: none;
    }

    /* Burger */
    .burger {
        display: block;
    }

    /* Nav — hidden by default, shown via JS */
    nav {
        display: none;
        background: #fff;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    nav .row {
        flex-direction: column;
    }

    nav .col-6 {
        flex-basis: 100%;
        max-width: 100%;
    }

    nav ul.flex {
        flex-direction: column;
        padding: 10px 0;
    }

    nav ul li {
        margin: 0;
        border-bottom: 1px solid #eee;
    }

    nav ul li a {
        font-size: 16px;
        line-height: 48px;
        padding: 0 20px;
        display: block;
    }

    nav .social {
        float: none;
        display: flex;
        justify-content: center;
        padding: 15px 0;
        border-top: 1px solid #eee;
    }

    nav .social a {
        line-height: normal;
        margin: 0 12px;
        font-size: 20px;
    }

    /* Banner */
    .banner {
        width: 100%;
        height: 220px;
    }

    .banner .text {
        margin-top: 30px;
    }

    .banner h2 {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .banner p {
        margin-bottom: 10px;
        font-size: 10px;
    }

    .banner .btn {
        padding: 8px 15px;
        margin-bottom: 0;
        font-size: 11px;
    }

    /* Wrap-1 */
    .wrap-1 {
        padding: 50px 0 60px;
    }

    .best-treat {
        padding: 30px 20px 24px;
    }

    .best-treat-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }

    .best-treat-icon i {
        font-size: 28px;
    }

    .wrap-1 .best-treat h2 {
        font-size: 15px;
    }

    .wrap-1 .best-treat p {
        font-size: 13px;
        margin-bottom: 16px;
    }

    /* Wrap-2 */
    .wrap-2 h2 {
        font-size: 1.8rem;
        margin-top: 50px;
    }

    .wrap-2 p {
        padding: 0;
    }

    .wrap-2 .nurse {
        margin-left: 0;
        height: auto;
        width: 100%;
    }

    .wrap-2 .professional {
        text-align: center;
    }

    .professional .pro-1,
    .professional .pro-2,
    .professional .pro-3,
    .professional .pro-4 {
        justify-content: center;
    }

    /* Wrap-3 */
    .progress {
        margin: 0;
    }

    .progress i {
        margin-top: 50px;
    }

    .progress h3 {
        font-size: 18px;
        margin-bottom: 40px;
    }

    .progress p {
        font-size: 40px;
    }

    .progress hr {
        width: 60px;
        margin: 0 auto;
    }

    /* Wrap-4 */
    .wrap-4 .work-2,
    .wrap-4 .creat {
        margin-top: 50px;
    }

    .wrap-4 .work-2 h2,
    .wrap-4 .creat h2 {
        font-size: 26px;
    }

    .wrap-4 .two-img {
        flex-direction: column;
    }

    .wrap-4 .two-img .col-6 {
        flex-basis: 100%;
        max-width: 100%;
    }

    .wrap-4 .image-1 .p3 {
        margin-bottom: 30px;
    }

    .wrap-4 .btn {
        margin: 20px 0 40px 0;
    }

    /* Wrap-5 */
    .wrap-5 {
        padding: 60px 0;
    }

    .wrap-5 .gallery h2 {
        font-size: 30px;
    }

    .wrap-5 .col-4 img {
        height: 180px;
    }

    /* Wrap-6 */
    .wrap-6 {
        padding: 60px 0;
    }

    .wrap-6 h2 {
        font-size: 30px;
    }

    .wrap-6 .row {
        row-gap: 50px;
    }

    .wrap-6 .profile img {
        width: 200px;
        height: 200px;
        border-radius: 50%;
        object-fit: cover;
    }

    /* Wrap-7 */
    .wrap-7 {
        padding: 35px 0 20px 0;
    }

    .wrap-7 .offer p {
        font-size: 15px;
        text-align: center;
    }

    .wrap-7 .btn {
        padding: 8px 18px;
        font-size: 13px;
        width: auto;
        margin: 20px 0 15px 0;
        text-align: center;
        float: none;
    }

    .wrap-7 .col-p-12 {
        text-align: center;
    }

    /* Wrap-8 */
    .wrap-8 {
        padding: 50px 0;
    }

    .wrap-8 .contact-2 h2,
    .wrap-8 .about h2,
    .wrap-8 .service h2,
    .wrap-8 .enquiry h2 {
        font-size: 20px;
        margin-bottom: 30px;
    }

    .wrap-8 .about,
    .wrap-8 .service,
    .wrap-8 .enquiry {
        margin-top: 50px;
    }

    .wrap-8 .mail p,
    .wrap-8 .call p,
    .wrap-8 address {
        font-size: 15px;
    }

    .wrap-8 .mail i,
    .wrap-8 .add i,
    .wrap-8 .call i {
        font-size: 24px;
        margin-right: 15px;
    }

    .social-3 a {
        margin-right: 20px;
        font-size: 18px;
    }

    .wrap-8 .link p,
    .wrap-8 .work-3 p {
        font-size: 15px;
    }

    .wrap-8 form input,
    .wrap-8 form textarea {
        font-size: 15px;
    }

    .wrap-8 .btn {
        padding: 10px 25px;
        font-size: 14px;
    }

    /* Footer */
    footer p {
        font-size: 12px;
    }
}