    @import url('https://fonts.googleapis.com/css2?family=Lexend:wght@300;400;500;700&family=Press+Start+2P&display=swap');
    @import url('https://fonts.googleapis.com/css2?family=Lexend:wght@300;400;500;700&family=Ubuntu:wght@700&display=swap');
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: 'Lexend', sans-serif;
    }
    .heading-3 {
        color: #FF7C00;
        font-family: 'Ubuntu', sans-serif;
    }
    .space-evenly {
        justify-content: space-evenly;
    }
    .landing-content {
        background: #FFFDFA;
        overflow-x: hidden;
    }
    nav {
        display: flex;
        justify-content: space-around;
        align-items: center;
    }
    .nav-list {
        list-style: none;
        display: flex;
    }
    .nav-list li {
        letter-spacing: 3px;
        margin-left: 32px;
    }
    .mobile-menu {
        display: none;
        cursor: pointer;
    }
    .mobile-menu div {
        width: 32px;
        height: 2px;
        background: #23232e;
        margin: 8px;
        transition: 0.3s;
    }
    .nav-list.active {
        transform: translateX(0);
    }
    @keyframes navLinkFade {
        from {
        opacity: 0;
        transform: translateX(50px);
        }
        to {
        opacity: 1;
        transform: translateX(0);
        }
    }
    .mobile-menu.active .line1 {
        transform: rotate(-45deg) translate(-8px, 8px);
    }
    .mobile-menu.active .line2 {
        opacity: 0;
    }
    .mobile-menu.active .line3 {
        transform: rotate(45deg) translate(-5px, -7px);
    }
    .page-header {
        max-width: 100vw;
        position: fixed;
        top: 0;
        z-index: 8;
        -webkit-transition: .5s;
        transition: .5s;
        background-color: #fff !important;
        -webkit-box-shadow: 6px 6px 8px -3px rgba(0,0,0,0.3);
        box-shadow: 6px 6px 8px -3px rgba(0,0,0,0.3);
    }
    .logo-wrapper {
        width: 15%;
        height: 75px;
        box-shadow: 6px 0px 8px -3px rgba(0,0,0,0.3);
        text-align: center;
        padding: 12px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .logo-wrapper img {
        padding: 5px;
    }
    .page-header .header-wrapper {
        width: 100%;
        display: flex;
        -webkit-box-align: center;
        align-items: center;
        position: relative;
    }
    .header-menu a {
        color: #1C1C1C;
        font-weight: 500;
    }
    .header-menu a:hover {
        color: #FF9C00;
    }
    .header-menu a {
        padding: 15px;
        position: relative;
    }
    .header-menu li:first-child {
        margin: 0;
    }
    .landing-content .btn {
        background-color: #FF7C00;
        border-radius: 6px;
        border: none;
        text-transform: uppercase;
        padding: 15px;
    }
    .landing-content .btn:hover {
    background-color: #FF9C00;
    }

    .landing-content .btn a {
        color: #FFF;
    }
    .hero {
        height: 100%;
        background: #FFFDFA;
    }
    .hero .container {
        margin-top: 3rem;
    }
    .hero .row {
        padding: 50px 0;
    }
    .hero .row div {
        z-index: 3;
    }
    .hero p:first-child {
        font-size: 24px;
        line-height: 30px;
        font-weight: 500;
        width: 80%;
    }
    .hero p:first-child::before {
        position: absolute;
        content: url('../images/landing-page/cell-blue.png');
        transform: scale(.7);
        right: -101%;
        top: -19px;
        z-index: -1;
    }
    .hero span {
        color: #FF9C00;
    }
    .hero .btn {
        width: 41%;
    }
    .vertically-centered {
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        align-items: center;
    }
    .benefits {
        height: 100%;
        background: #F5EFE1;
    }
    .benefits-text,
    .about p {
        width: 90%;
        margin: 0 auto;
        font-size: 16px;
    }
    .benefits .card {
        width: 22%;
        font-weight: 500;
        height: 100%;
        box-shadow: 0px 0px 5px 4px rgba(0,0,0,0.1);
    }
    .benefits-cards {
        justify-content: space-evenly;
    }
    .benefits .card p,
    .hero p,
    .health-insurances p {
        font-size: 16px;
    }
    .benefits img {
        width: 40%;
    }
    .image-size {
        width: 120px;
        height: 110px;
        object-fit: contain;
    }
    .health-insurances img:first-child {
        width: 12%;
    }
    .health-insurances img:last-child {
        width: 16%;
    }
    .about::after {
        position: absolute;
        content: url('../images/landing-page/square-detail-l.png');
        transform: scale(.6);
        top: -58px;
        left: -50px;
    }
    .about::before {
        position: absolute;
        content: url('../images/landing-page/square-detail-r.png');
        transform: scale(.6);
        top: -58px;
        right: -50px;
    }
    .brief {
        position: relative;
        overflow: hidden;
        padding: 20px;
      }
      .brief-container {
        padding: 0 10vw;
        display: flex;
        overflow-x: auto;
        height: 100%;
        scroll-behavior: smooth;
      }
      .brief-container::-webkit-scrollbar {
        display: none;
      }
      .card-btn:hover {
        background: #ff7d7d;
        color: #fff;
      }
      .pre-btn,
      .nxt-btn {
        border: none;
        width: 10vw;
        height: 100%;
        position: absolute;
        top: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        background: linear-gradient(
          90deg,
          rgba(255, 255, 255, 0) 0%,
          #fff 100%
        );
        cursor: pointer;
        z-index: 7;
      }
      .pre-btn {
        left: 0;
        transform: rotate(180deg);
      }
      .nxt-btn {
        right: 0;
      }
      .pre-btn img,
      .nxt-btn img {
        opacity: 0.2;
      }
      .pre-btn:hover img,
      .nxt-btn:hover img {
        opacity: 1;
      }
    .brief p:first-child {
        font-size: 12px;
        line-height: 16px;
    }
    .brief .card {
        max-height: 20rem;
        width: 30%;
    }
    .brief p:first-child::after {
        position: absolute;
        content: url('../images/landing-page/quote.png');
        transform: scale(.7);
        top: -20px;
        left: -30px;
    }
    .brief p:last-child::before {
        position: absolute;
        content: url('../images/landing-page/heart.png');
        transform: scale(.7);
        top: -10px;
        right: 0;
    }
    .contact {
        overflow: hidden;
    }
    .contact::before {
        position: absolute;
        content: url('../images/landing-page/wave-blue.png');
        transform: scale(1.2);
        bottom: -48px;
        right: 0;
        width: 100%;
    }
    .contact input,
    .contact textarea {
        border: 0.9px solid #2b2b2b;
        background-color: #F2F2F2;
    }
    .contact div:last-child p {
        font-size: 9px;
        color: #2b2b2b;
    }
    .contact div:last-child p:last-child {
        font-weight: 700;
    }
    .brief .card {
        min-width: 425px;
        margin-right: 20px;
    }
    @media (max-width: 1200px) {
        body {
            overflow-x: hidden;
        }
        .nav-list {
            position: absolute;
            top: 86px;
            left: 0;
            width: 30vw;
            z-index: 222;
            font-size: 18px;
            background-color: #FEFEFE;
            border-end-end-radius: 27px;
            flex-direction: column;
            text-align: start;
            justify-content: space-around;
            transform: translateX(-100%);
            transition: transform 0.3s ease-in;
        }
        .nav-list li {
            margin-left: 0;
            opacity: 0;
        }
        .mobile-menu {
            display: block;
        }
        .logo-wrapper {
            width: auto;
            height: auto;
            box-shadow: none;
            justify-content: start;
            padding: 10px 0;
        }
        .header-menu li:first-child {
            margin: 0;
            padding: 20px 0 20px 15px;
        }
        .header-menu li {
            padding: 25px 15px;
        }
        .header-menu a:hover::after {
            position: absolute;
            content: "";
            width: 8px;
            height: 40px;
            background-color: #FF7C00;
            left: -31px;
            top: 8px;
        }
        .logo-wrapper img{
            width: auto;
        }
        .hero .btn {
            width: 216px;
        }
        .benefits .card {
            width: 28%;
        }
        .health-insurances img:first-child {
            width: 11rem;
        }
        .health-insurances img:last-child {
            width: 14rem;
            margin-left: 10px;
        }
        .about::before,
        .about::after  {
            top: 0px;
        }
        .brief .card {
            max-height: 20rem;
            width: auto;
            padding: 30px;
        }
        .brief p:last-child::before {
            right: -15px;
        }
    }

    @media (max-width: 992px) {
        .hero p:first-child::before {
            right: -60%;
        }
    }

    @media (max-width: 768px) {
        .nav-list {
            width: 46vw;
        }
        .header-menu li:first-child {
            margin: 0;
            padding: 10px 0;
        }
        .hero p:first-child::before {
            right: -25%;
            top: 0;
            opacity: 70%;
        }
        .hero p:first-child {
            font-size: 20px;
        }
        .hero p:nth-child(2) {
            font-size: 14px;
        }
        .hero .btn {
            width: 192px;
        }
        .landing-content .btn {
            font-size: 12px;
        }
        .benefits-text,
        .about p,
        .health-insurances p,
        .about p {
            font-size: 14px;
        }
    }

    @media (max-width: 576px) {
        .nav-list {
            width: 56vw;
            font-size: 14px;
        }
        .benefits .card {
            width: 180px;
        }
        .header-menu li {
            padding: 15px;
        }
        .benefits-cards {
            justify-content: space-evenly;
            flex-direction: column;
            align-items: center;
        }
        .health-insurances .row:first-child {
            text-align: center;
        }
        .health-insurances img:first-child {
            width: 40%;
        }
        .health-insurances img:last-child {
            width: 50%;
            margin-left: 10px;
        }
        .brief .card {
            min-width: 100%;
            margin-right: 20px;
            padding: 30px;
            max-height: 23rem;
        }
        .contact::before {
            bottom: -76px
        }
    }

