@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=BIZ+UDGothic:wght@400;700&display=swap");

html,
body,
* {
    margin: 0;
    padding: 0;
    text-decoration: none;
    overflow-x: hidden;
    scroll-behavior: smooth;
    font-family: "Poppins", sans-serif;
}

body {
    background: url("img/mommy-16-9.jpg");
    background-attachment: fixed;
    background-size: 107%;
}

.cover {
    z-index: 9999;
    width: 100%;
    background-color: #fff;
}

h2 {
    text-transform: uppercase !important;
}

/* Navigation Bar */

nav,
nav > ul {
    display: flex;
    align-items: center;
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 90vw;
    height: 30px;
    transition: transform 0.3s ease-in-out;
    z-index: 99999999;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.glass-plain > *,
.glass-color > * {
    text-shadow: 8px 8px 32px 0 #000;
}

.glass-plain {
    background: linear-gradient(
        315deg,
        rgba(255, 255, 255, 0) 20%,
        rgba(255, 255, 255, 0.5) 100%
    );
    border: solid 1px rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.glass-color {
    background: linear-gradient(
        315deg,
        rgba(99, 72, 131, 0) 20%,
        rgba(99, 72, 131, 0.5) 100%
    );
    border: solid 1px rgba(99, 72, 131, 0.18);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

/* .nav-hidden {
    transform: translateY(-100%);
} */

.mobile-menu,
.hamburger {
    display: none;
}

nav > a,
li > a {
    color: #fff;
    text-transform: uppercase;
}

ul {
    flex-direction: row;
    justify-content: space-between;
    list-style: none;
    padding: 30px 120px;
    margin: 0;
    gap: 47px;
}

nav {
    justify-content: space-between;
    padding: 30px 120px;
}

/* nav > * {
    padding: 0;
    margin: 0;
} */

.logo img {
    width: 300px;

    padding: 0;
    margin-left: -36px;
}

.nav-btn {
    padding: 15px 20px;
    background-color: #81689e;
    color: #fff;
    display: flex;
    align-self: center;
    border-radius: 10px;
}

.nav-btn:hover {
    color: #fff;
}

.nav-btn:active {
    transform: scale(0.98);
}

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

nav li a:active:not(.nav-btn),
nav li a:focus:not(.nav-btn) {
    color: #81689e;
    font-weight: 700;
}

section {
    background: rgba(0, 0, 0, 0.4);
}

/* Hero Section */

.hero {
       background: linear-gradient(rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.5) 100%),
        url("img/mommy-about-coat.jpg");
       background-size: cover;
       background-position: center -50%;
       background-attachment: fixed;
       background-repeat: no-repeat;
       padding-top: 180px;
       color: #fff;
       height: 800px;
       display: flex;
       justify-content: left;
       gap: 115px;
       /* position: absolute; */
       /* top: 100%; */
}

.right-hero {
    margin: 100px 0 0 100px;
    padding: 25px 50px;
    border-radius: 20px;
    width: 550px;
    align-content: center;
    justify-content: center;
    height: 350px;
}

.right-hero > * {
    padding: 0;
    margin: 0;
}

.right-hero h1 {
    text-transform: uppercase;
    font-size: 36px;
    font-weight: bold;
    line-height: 1.5;
    overflow: hidden;
    width: 550px;
    padding-bottom: 5px;
}

.right-hero p {
    padding-bottom: 62px;
    width: 500px;
    font-weight: 300;
    font-size: 18px;
}

.hero-btn {
    padding: 16px 36px;
    background-color: #81689e;
    border-radius: 10px;
    text-transform: uppercase;
    font-size: 24px;
    font-weight: semi-bold;
    color: #fff;
    cursor: pointer;
    /*box-shadow: 5px 5px 4px 0 rgba(0, 0, 0, 0.25);*/
    border: 2px solid transparent;

    transition: all 0.1s ease-in-out;
}

.hero-btn:hover {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
    box-shadow: none;
    transition: all 0.1s ease-in-out;
}

.hero-btn:active {
    transform: scale(0.9);
}

/* Subscribe Section */

.subscribe {
    background-color: #333;
    color: #fff;
    padding: 55px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    align-items: center;
}

.subscribe h2 {
    margin: 0;
    padding: 0;
    font-size: 26px;
    text-transform: uppercase;
}

.subscribe p {
    margin-bottom: 20px;
}

.subscribe > * {
    margin: 0;
    padding: 0;
}

/* About Section */

#about {
    padding: 160px 112px 100px 160px;
    background-color: rgba(20, 20, 20, 0.65);
    color: #fff;
    display: flex;
}

.about-left > h2 {
    margin-bottom: 65px;
    font-size: 38px;
}

.paragraph {
    display: flex;
    flex-direction: column;
    width: 600px;
    font-size: 18px;
}

p {
    text-wrap: wrap;
    margin-bottom: 45px;
}

.boxed {
    margin: 0 20px 45px 20px;
    background-color: transparent;
    border: 3px solid #fff;
    border-radius: 10px;
    padding: 30px;
    font-style: italic;
}

#about h4 {
    margin: 0;
    padding: 0;
    margin-bottom: 25px;
    font-size: 25px;
}

/* Testimonial Section */

#test {
    padding: 130px 375px;
    background-color: rgba(0, 0, 0, 0.4);
    color: #fff;
}

#test > * {
    scroll-behavior: smooth;
}

#test h2 {
    margin-bottom: 70px;
    font-size: 38px;
    text-align: center;
}

.carousel {
    position: relative;
    width: 700px;
    border-radius: 10px;
    z-index: 0;
    left: 50%;
    transform: translate(-50%, 0%);
    box-shadow: 0 12px 24px 0 rgba(0, 0, 0, 0.5);
}

.carousel__item {
    height: 300px;
    padding: 1em;
    transition: opacity 0.5s ease-in-out;
    font-weight: bold;
    font-size: 2em;
    color: #fff;
    display: none;
}

.carousel__item--selected {
    display: block;
}

.carousel__nav {
    width: 100%;
    padding: 20px 0;
    position: absolute;
    bottom: 0;
    left: 0;
    text-align: center;
}

.carousel__button {
    width: 10px;
    height: 10px;
    display: inline-block;
    background: #ccc;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
}

.carousel__button--selected {
    background: #fff;
}

.carousel__item {
    text-align: center;
}

.carousel__item > * {
    z-index: 3000000;
}

.carousel__item .text {
    font-size: 24px;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    overflow: hidden;
    font-weight: normal;
}

.author {
    font-size: 20px;
    color: #ccc;
    font-style: italic;
    text-transform: capitalize;
    position: relative;
    top: 90%;
    left: 35%;
    font-weight: normal;
    box-sizing: border-box;
    z-index: 3000000;
}

.quote {
    font-size: 124px;
    font-weight: bold;
    position: absolute;
    font-family: "BIZ UDGothic", sans-serif;
    color: #fff;
    z-index: 10;
    opacity: 75%;
    transform: rotate(180deg);
    top: -40px;
}

.carousel__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    user-select: none;
}

.carousel__arrow--left {
    left: 10px;
}

.carousel__arrow--right {
    right: 10px;
}

/* Pricing Section */

#price {
    padding: 125px 120px;
    display: flex;
    align-items: center;
    flex-direction: column;
    background-color: rgba(150, 150, 150, 0.6);
}

#price h2 {
    margin-bottom: 20px;
    font-size: 48px;
    text-align: center;
}

#price h4 {
    margin-bottom: 60px;
}

#price .card-btn {
    width: 250px;
    height: 60px;
    border: 2px solid transparent;
    background-color: #81689e;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

#price .card-btn:hover {
    background-color: transparent;
    border: 2px solid #81689e;
    color: #81689e;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(129, 104, 158, 0.3);
}

#price .card-btn:active {
    transform: translateY(0);
}

.cards {
    display: flex;
    gap: 50px;
}

.card {
    width: 370px;
    height: 630px;
    border-radius: 10px;
    border: 2px solid black;
    display: flex;
    flex-direction: column;
    transition: 0.3s all ease-in-out;
}

.card:hover > * {
    border-color: #81689e;
    color: #81689e;
    transition: 0.3s all ease-in-out;
}

.card:hover > *,
.card:hover {
    color: #fff;
    border-color: #fff;
    transition: 0.3s all ease-in-out;
}

.card-btn:active {
    transform: scale(0.9);
}

.pro:hover > *,
.pro:hover {
    border-color: #fff;
    color: #fff;
    transition: 0.3s all ease-in-out;
}

.pro:hover .card-btn {
    transition: 0.3s all ease-in-out;
}

.pro:hover .card-heading p {
    color: #fff;
    transition: 0.3s all ease-in-out;
}

.pro:hover .card-btn a {
    color: #fff;
    transition: 0.3s all ease-in-out;
}

.pro:hover .card-btn a {
    color: #fff;
    transition: 0.3s all ease-in-out;
}

.pro:hover {
    transition: 0.3s all ease-in-out;
}

.pro > * {
    color: #fff;
}

.card:hover .card-btn {
    border: 2px solid black;
    background: linear-gradient(
        315deg,
        rgba(255, 255, 255, 0) 20%,
        rgba(255, 255, 255, 0.5) 100%
    );

    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.card .card-btn {
    border: 2px solid black;
    background: linear-gradient(
        315deg,
        rgba(99, 72, 131, 0.3) 20%,
        rgba(99, 72, 131, 0.5) 100%
    );
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.pro .card-btn {
    border: 2px solid black;
    background: linear-gradient(
        315deg,
        rgba(255, 255, 255, 0) 20%,
        rgba(255, 255, 255, 0.5) 100%
    );

    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.pro:hover .card-btn {
    border: 2px solid black;
    background: linear-gradient(
        315deg,
        rgba(99, 72, 131, 0.3) 20%,
        rgba(99, 72, 131, 0.5) 100%
    );
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.pro > .card-btn > a {
    color: #000;
}

.pro .card-heading p {
    color: #fff;
}

.card-heading {
    padding: 50px 0 0 30px;
    text-transform: uppercase;
    overflow: hidden;
}

.card-heading h3 {
    font-size: 32px;
    margin-bottom: 20px;
}
.card-heading p {
    font-size: 14px;
    margin: 0;
}

.card-price {
    padding: 60px 0;
    font-size: 64px;
    text-align: center;
    overflow: hidden;
}

.card-btn {
    width: 300px;
    height: 50px;
    border: 2px solid transparent;
    background-color: #81689e;
    border-radius: 15px;
    display: flex;
    align-items: center;
    align-self: center;
    justify-content: center;
    text-transform: uppercase;
    font-size: 24px;
}

.card-btn a {
    color: #fff;
    background-color: transparent;
}

#price ul {
    display: flex;
    flex-direction: column;
    padding: 30px 25px;
    overflow: hidden;
    gap: 20px;
}

.card-checklist {
    list-style-type: none;
    padding-left: 0;
    overflow: hidden;
}

.card-checklist li {
    padding-left: 30px;
    overflow: hidden;
}

.card-checklist li::before {
    content: "\f00c"; /* Font Awesome check mark */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #333;
    margin-right: 10px;
}

.pro .card-checklist li::before {
    content: "\f00c"; /* Font Awesome check mark */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #fff;
    margin-right: 10px;
}

.card:hover .card-checklist li::before {
    color: #fff;
}

.card,
.card > *,
.card:hover,
.card:hover > * {
    transition: 0.3s all ease-in-out;
}
/* Footer */

footer {
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 40px 20px 30px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
}

.footer-logo-link {
    display: inline-block;
}

.footer-logo {
    width: 180px;
    height: auto;
    margin-left: -20px; /* Adjust for extra padding in logo canvas */
}

.footer-social-links {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    font-size: 20px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background-color: #81689e;
    transform: translateY(-3px);
}

.footer-copyright {
    font-size: 14px;
    color: #ccc;
    margin: 0;
    text-align: center;
}

.credits-link {
    color: #77ec76;
    text-decoration: none;
    transition: color 0.3s ease;
}

.credits-link:hover {
    color: #5ad459;
}
/* Booking Page */

.book {
    display: flex;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    padding-top: 200px;
    color: #fff;
    text-align: center;
    align-items: center;
    flex-direction: column;
    padding: 200px 100px 50px 100px;
}

.book h1 {
    font-size: 48px;
}

@media (max-width: 768px) {
    .book h1 {
        font-size: 24px;
        word-wrap: nowrap;
    }
}

.book > * {
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* Internet Explorer and Edge */
    overflow-y: scroll; /* Enable vertical scrolling */
}

.book > *::-webkit-scrollbar {
    display: none; /* WebKit-based browsers */
}

/* TOS */

.tos {
    color: #fff;
    background-color: #333;
    padding: 150px 100px;
    text-align: left;
}

.tos-content h1,
.tos-content h2,
.tos-content h3 {
    color: #81689e;
    margin-bottom: 20px;
    margin-top: 40px;
    text-align: center;
}

.tos-content > h2 {
    text-transform: uppercase;
}

.tos-content p {
    margin-bottom: 30px;
}

.tos-content ul {
    list-style-type: none;
    padding: 0;
}

.tos-content ul li {
    margin-bottom: 10px;
}

.tos-content ul li::before {
    content: "*"; /* Font Awesome check mark */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #8a54cf;
    margin-right: 10px;
}

/* Responsive Design */

/* Tablet */

@media (min-width: 634px) and (max-width: 922px) {
    /* Navigation */

    .nav-btn {
        display: none;
    }

    .logo {
        font-size: 38px;
    }

    nav {
        padding: 34px 90px;
    }

    /* Hero Section */

    .hero {
        flex-direction: column;
        align-items: center;
        gap: 40px;
        padding-top: 50px;
        padding-bottom: 50px !important;
        max-height: 50px !important;
    }

    .left-hero {
        width: 576px;
        min-height: 261px;
        overflow: hidden;
    }

    .hero {
        word-wrap: break-word;
        overflow: hidden;
        box-sizing: border-box;
        min-height: 400px;
        padding-top: 150px;
        background: url("img/mommy-16-9.jpg") 60% center/cover fixed;
    }

    .right-hero {
        word-wrap: break-word;
        overflow: hidden;
        box-sizing: border-box;
        min-height: 400px;
        padding-left: 70px;
        width: 700px;
        margin-left: 0;
    }

    .right-hero {
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* Internet Explorer and Edge */
        overflow-y: scroll; /* Enable vertical scrolling */
    }

    .right-hero::-webkit-scrollbar {
        display: none; /* WebKit-based browsers */
    }

    /* Subscribe Section */

    .sub-form,
    .sub-form > * {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        flex-direction: column;
        gap: 36px;
        align-items: center;
    }

    /* About Section */

    #about {
        flex-direction: column-reverse;
        align-items: center;
        padding-top: 0;
        gap: 500px; /* Increased gap between about-left and about-right */
    }

    .about-img,
    .about-right {
        border-radius: 0;
        width: 10000px;
        height: 200px;
        position: relative;
        top: -10%;
    }

    .about-img {
        background: url("img/about-mommy.JPG");
        background-position: center 10px;
        background-size: 10%;
    }

    /* Testimonial Section */

    #test {
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;
        align-items: center;
        padding: 100px 0;
    }

    .carousel {
        width: 500px;
        display: flex;
        align-self: center;
        justify-self: center;
    }

    /* Pricing Section */

    .cards {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
    }

    /* Footer */

    .footer-content {
        padding: 0 40px;
        gap: 25px;
    }

    .footer-logo {
        width: 150px;
    }

    .footer-social-links {
        gap: 15px;
    }

    .social-link {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .heading {
        width: 600px;
    }

    .container {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: end;
        padding: 0;
    }

    .stickyElement {
        display: none;
        width: 0;
        height: 0;
    }

    #about-img {
        background-position: center -300px;
        background-size: 10%;
        background-repeat: no-repeat;
        height: 100%;
    }

    .about-right {
        height: 500px;
    }
}

/* Phone */

@media (width <= 633px) {
    body {
        background: url("img/mommy-16-9.jpg") 60% center/cover fixed;
    }

    .glass-color,
    .glass-plain {
        background: transparent;
    }

    /* Navigation */

    nav {
        justify-content: flex-start;
        gap: 50px;
        width: 90%;
    }

    nav > *,
    nav {
        overflow: auto;
    }

    .mobile-menu,
    .hamburger {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        overflow: hidden;
        width: 32px;
        height: 25px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        margin: 0;
        z-index: 10;
    }

    .hamburger:focus {
        outline: none;
    }

    .hamburger span {
        width: 30px;
        height: 3px;
        background: #333;
        border-radius: 10px;
        transition: all 0.3s linear;
        position: relative;
        transform-origin: 1px;
    }

    .hamburger.active span:first-child {
        transform: rotate(45deg);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
        transform: translateX(20px);
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg);
    }

    .hamburger span {
        background-color: #fff;
    }

    .logo {
        font-size: 48px;
    }

    nav {
        padding: 8px 60px;
        height: auto;
    }

    nav:has(.nav-menu.active) {
        height: 100vh; /* Full viewport height */
        background-color: rgba(
            0,
            0,
            0,
            0.8
        ); /* Add background for better visibility */
        padding-bottom: 100vh; /* Ensure it covers the entire screen */
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 10%;
        left: 0;
        right: 0;
        padding: 1rem;
        box-shadow: none; /* Remove shadow */
    }

    .nav-menu.active > a {
        display: none;
    }

    nav > ul {
        gap: 10px;
        height: 30%;
    }

    nav > *,
    nav {
        overflow: auto;
    }

    .nav-menu,
    .nav-menu.hidden {
        display: none;
    }

    /* .nav-menu.active {
        display: flex;
        height: 50vh;
    } */

    .nav-menu {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 10%;
        left: 0;
        right: 0;
        background-color: #f8f8f8;
        opacity: 95%;
        padding: 1rem;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        height: 50vh;
    }

    .nav-menu.active {
        display: flex;

        background-color: transparent; /* Remove background since nav now has one */
        padding-top: 50px; /* Add spacing from top */
    }

    /* Hero Section */

    .hero {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .hero > .glass-color {
        width: 100%;
        box-shadow: none;
        background: none;
    }

    .left-hero {
        width: 476px;
        min-height: 451px;
        position: relative;
        top: 0px;
        overflow: hidden;
    }

    .hero-btn {
        background-color: #fff;
        color: #000;
    }

    .hero {
        word-wrap: break-word;
        overflow: hidden;
        box-sizing: border-box;
        /* min-height: 1000px; */
        padding-top: 45px;
        background: #81689e;
        /*url("img/mommy-about-coat.jpg");*/
        /*background-size: 350%;*/
        /*background-position: top;*/
        /*background-attachment: fixed;*/
    }

    .right-hero {
        word-wrap: break-word;
        overflow: hidden;
        box-sizing: border-box;
        min-height: 550px;
        padding: 0 auto;
        width: 400px;
        margin-left: 0;
    }

    .right-hero > p {
        word-wrap: break-word;
        font-size: 16px;
        width: 100%;
        padding-top: 20px;
        padding-bottom: 80px;
    }

    .right-hero h1 {
        font-size: 30px;
        word-wrap: break-word;
        width: 100%;
        white-space: normal;
    }

    .right-hero > a {
        word-wrap: nowrap;
        display: flex;
        align-items: center;
        justify-content: center;
        align-self: center;
        width: 100%;
    }

    .right-hero > * {
        width: 90vw;
        word-wrap: break-word;
        box-sizing: border-box;
    }

    .right-hero {
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* Internet Explorer and Edge */
        overflow-y: scroll; /* Enable vertical scrolling */
    }

    .right-hero::-webkit-scrollbar {
        display: none; /* WebKit-based browsers */
    }

    /* Subscribe Section */

    .subscribe {
        padding: 50px 0;
        margin: 30px 0;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .subscribe iframe {
        width: 80%;
    }

    /* About Section */

    #about {
        flex-direction: column-reverse;
        align-items: center;
        justify-content: center;
        padding: 0 0 100px 0;
    }

    .about-img,
    .about-right {
        border-radius: 0;
        padding: 0;
        width: 100%;
        max-height: 300px;
        box-shadow: none;
        position: relative;
        top: -10%;
    }

    .about-right {
        background-image: url("img/about-mommy.JPG");
        background-size: 50%;
        background-position: center;
        width: 100%;
    }

    .about-left h2 {
        font-size: 30px;
        margin: 30px 0;
    }

    .about-left {
        max-width: 70%;
    }

    .boxed {
        text-align: center;
        word-wrap: break-word;
        width: 230px;
        min-height: 200px;
        padding: 10px;
        margin: 0;
        margin-bottom: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        justify-self: center;
    }

    .boxed p {
        max-width: 90%;
        word-wrap: break-word;
    }

    .paragraph h4 {
        word-wrap: break-word;
        font-size: 16px;
        max-width: 270px;
        margin-bottom: 20px;
    }

    #about p {
        word-wrap: break-word;
        min-height: 200px;
        max-width: 250px;
        margin-bottom: 20px;
    }

    /* Testimonial Section */

    #test,
    .section2 {
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 100px 0;
        width: 100%;
    }

    .carousel__item {
        width: 90%;
    }

    .carousel {
        position: relative;
        left: 35%;
        width: 70%;
        z-index: 0;
        margin: auto;
        display: flex;
    }

    .carousel .text {
        font-size: 16px;
        word-wrap: break-word;
        display: flex;
        align-self: center;
        justify-self: center;
        max-width: 300px;
        max-height: 225px;
    }

    .author {
        font-size: 12px;
        left: 25%;
    }

    .quote {
        display: none;
    }

    .arrow {
        position: absolute;
        top: 50px;
        width: 50px;
        height: 50px;
        background-color: #fff;
        color: #000;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        z-index: 10;
    }

    /* Pricing Section */

    #price {
        padding: 50px 0;
    }

    #price h4 {
        text-align: center;
    }

    .cards {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
    }

    .card,
    .card-btn {
        max-width: 80%;
    }

    .card,
    .card > * {
        overflow: hidden;
    }

    .card-price,
    .card-price > * {
        overflow: hidden;
    }

    .card .card-price {
        display: flex;
        align-self: center;
        justify-self: center;
    }

    /* Footer */

    .footer-content {
        padding: 0 20px;
        gap: 20px;
    }

    .footer-logo {
        width: 120px;
    }

    .footer-social-links {
        gap: 12px;
    }

    .social-link {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }

    .footer-copyright {
        font-size: 12px;
    }
}

.book-h1 {
    padding-bottom: 50px;
}

section {
    background-color: rgba(0, 0, 0, 0.4);
}

/* Tiny Phones */
@media (width <= 400px) {
    nav {
        width: 100%;
        justify-content: space-around;
    }

    .logo img {
        display: none;
    }
}
