    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    img,
    svg,
    svg * {
        user-select: none;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
    }

    body {
        user-select: none;
        display: flex;
        flex-direction: column;
        min-height: 100vh;
        font-family: 'Poppins', sans-serif;
        background-color: #ffffff;
        color: #24223E;
        margin: 0;
        padding: 0;
        width: 100%;
    }

    .navbar {
        background-color: transparent;
        width: 100%;
        height: 70px;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 1000;
        transition: background-color 0.3s ease, box-shadow 0.3s ease;
    }

    .navbar-container {
        background-color: transparent;
        width: 1294px;
        max-width: 1294px;
        max-height: 70px;
        height: 70px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .navbar.scrolled,
    .navbar.collapsed {
        background-color: white;
        height: auto;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .navbar-toggler {
        border: none;
        padding: 3px;
        color: white;
        background-color: rgba(255, 255, 255, 0.8);
        border-radius: 3px;
        transition: background-color 0.3s ease;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
    }

    .navbar-toggler:hover {
        background-color: #ffffff;
    }

    .navbar-toggler-icon {
        background-image: url("../img/hamburger-rounded2.svg");
        width: 18px;
        height: 18px;
        display: inline-block;
    }

    .navbar-collapse.show {
        background-color: white;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 15px 20px;
        width: 100%;
        position: absolute;
        top: 50px;
        left: 0;
        right: auto;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .navbar-collapse.show .navbar-nav {
        margin: 0;
        padding: 0;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .navbar-collapse.show .nav-item {
        width: 100%;
    }

    .navbar-collapse.show .nav-link {
        text-align: left;
        padding: 0;
        width: 100%;
        display: block;
        color: #333;
    }

    .navbar-collapse.show .navbar-buttons {
        margin: 20px 0 0 0;
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        gap: 10px;
        width: 100%;

    }

    .navbar .container-fluid {
        padding: 0;
    }

    .navbar-nav {
        margin-left: 66px;
        gap: 46px;
        margin-top: 2px;
        display: flex;
        flex-direction: row;
        white-space: nowrap;
    }

    .navbar .nav-link {
        font-size: 18px;
        font-weight: 600;
        color: #333;
        position: relative;
        transition: color 0.2s ease, transform 0.2s ease;
    }

    .navbar .nav-link:hover {
        color: #474EEB;

    }

    .navbar-buttons {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 15px;
        margin-left: auto;
    }

    .btn-get-started {
        background-color: #24223E;
        color: white;
        font-size: 19.5px;

        font-weight: 550;
        border-radius: 60px;
        max-width: 289px;
        width: 289px;
        height: 50px;
        padding: 12px 30px;
        margin: 0;
        transition: all 0.2s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        white-space: nowrap;
    }

    .btn-get-started:hover {
        background-color: white;
        color: #24223E;
        border-color: #24223E;
        transform: scale(1.03);
        border-width: 2px;
    }

    .btn-sign-up {
        background: linear-gradient(to bottom right, #666CF7, #6699FF);
        color: white;
        font-size: 18px;
        font-weight: 500;
        line-height: 24px;
        border-radius: 60px;
        max-width: 129px;
        width: 129px;
        height: 50px;
        padding: 12px 30px;
        margin: 0;
        transition: all 0.2s ease;
        white-space: nowrap;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .btn-sign-up:hover {
        background: white;
        color: #24223E;
        border: 2px solid #474EEB;
        transform: scale(1.03);
    }

    .navbar-brand {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        margin-right: 0;

    }

    .navbar-brand img {
        max-width: 132px;
        height: 22px;
        margin: 0 auto;
        transition: opacity 0.3s ease;
    }


    .section1 {
        margin-top: 70px;
        background: linear-gradient(135deg, #666CF7, #6699FF);
        color: white;
        padding: 100px 20px 80px;
        filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.3));
    }

    .textbox1 {
        text-align: center;
    }

    .textbox1 .first-line {
        font-size: 3.5rem;
        font-weight: 800;
        margin-bottom: 20px;
    }

    .textbox1 .second-line {
        font-size: 1.25rem;
        font-weight: 400;
        max-width: 800px;
        margin: 0 auto;
    }

    .section2 {
        background-color: #ffffff;
        padding-bottom: 40px;
    }

    .section2 .container {
        width: 1294px;
        max-width: 1294px;
        margin: 0 auto;
        padding: 40px 0px;
    }

    .content-wrapper {
        display: flex;
        justify-content: center;
        align-items: flex-start;
        gap: 20px;
        max-width: 1294px;
        margin: 0 auto;
    }

    .textbox2 {
        max-width: 600px;
        margin: auto 0;
    }

    .highlight-text {
        background: linear-gradient(270deg, #7544FF 0%, #3273FF 33.33%, #76BBFF 66.67%, #8FD3FF 100%);
        background-size: 200%;
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        color: #7544FF;
        font-weight: 800;
        animation: colorMove 2.5s linear infinite;
    }

    @keyframes colorMove {
        0% {
            background-position: 200%;
        }

        100% {
            background-position: 0%;
        }
    }


    .textbox2 .first-line {
        font-size: 2rem;
        font-weight: 700;
        margin-bottom: 1rem;
    }

    .textbox2 .second-line,
    .textbox2 .third-line,
    .textbox2 .fourth-line,
    .textbox2 .fifth-line {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 1rem;
        letter-spacing: -0.05px;
    }

    .img-box {
        max-width: 600px;
        width: 100%;
        aspect-ratio: 3 / 2;
        /*height: 400px;*/
        margin: auto;
        background-position: center;
        background-size: cover;
    }

    .img1 {
        margin-left: 175px;
        width: 400px;
        height: 350px;
        filter: drop-shadow(1px 1px 2px rgba(68, 68, 68, 0.1));
    }

    .section3 {
        background-color: #ffffff;
        margin-top: 40px;
        margin-bottom: 40px;
    }

    .section3 .container {
        width: 1294px;
        max-width: 1294px;
        margin: 0px auto;
        padding: 40px 0px 40px 0px;
    }

    .content-wrapper2 {
        display: flex;
        justify-content: center;
        align-items: flex-start;
        gap: 20px;
        max-width: 1294px;
        margin: 0 auto;
    }

    .textbox3 {
        max-width: 600px;
        margin: auto 0;
    }

    .textbox3 .first-line {
        font-size: 2rem;
        font-weight: 700;
        margin-bottom: 1rem;
    }

    .textbox3 .second-line,
    .textbox3 .third-line,
    .textbox3 .fourth-line {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 1rem;
    }

    .img-box2 {
        max-width: 600px;
        width: 100%;
        max-height: 582px;
        margin: auto;
        background-position: center;
    }

    .img2 {
        margin-left: 50px;
        width: 400px;
        height: 400px;
        filter: drop-shadow(1px 1px 1px rgba(68, 68, 68, 0.3));
    }

    .section4 {
        background-image: url('../img/cloud.webp');
        background-repeat: no-repeat;
        background-size: cover;
    }

    .section4 .container {
        width: 1294px;
        max-width: 1294px;
        margin: 0px auto;
        padding: 40px 0px;
    }

    .content-wrapper3 {
        display: flex;
        justify-content: center;
        align-items: flex-start;
        gap: 20px;
        max-width: 1294px;
        margin: 0 auto 0px auto;
    }

    .textbox4 {
        max-width: 600px;
        margin: auto 0;
        padding-bottom: 40px;
    }

    .textbox4 .first-line {
        font-size: 2rem;
        font-weight: 700;
        margin-bottom: 1rem;
    }

    .textbox4 .second-line,
    .textbox4 .third-line {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 1rem;
    }

    .feature-list li {
        position: relative;
        padding-left: 0px;
        margin-bottom: 8px;
        line-height: 1.4;
        list-style: none;
        font-weight: 500;
    }

    .feature-list li::before {
        content: "";
        display: inline-block;
        width: 20px;
        height: 20px;
        background-image: url('../img/Checkcircle2.svg');
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        margin-right: 10px;
        vertical-align: -4px;
        filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.3));
    }

    .img-box3 {
        max-width: 600px;
        width: 100%;
        /* max-height: 582px;*/
        aspect-ratio: 600 / 582;
        margin: auto;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }

    .img3 {
        margin: 40px auto 32px 128px;
        width: 450px;
        height: 430px;
        filter: drop-shadow(4px 4px 12px rgba(0, 0, 0, 0.07));
    }

    footer {
        background-color: #f8f9fa;
        padding: 50px 0 80px 0;
        border-top: 7px solid;
        border-image: linear-gradient(to right, orange, orange, green, #7695cc, #7695cc) 1;
    }

    .footer-container {
        max-width: 1294px;
        width: 100%;
        margin: 0 auto;
        padding: 0 40px 0 0;
    }

    .footer-row {
        display: flex;
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: flex-start;
    }

    .footer-logo {
        margin-bottom: 20px;
    }

    .footer-logo img {
        width: 140px;
        height: 20px;
    }

    .footer-column {
        flex: 1;
        min-width: 150px;
        margin-bottom: 20px;
        justify-content: right;
    }

    .footer-column h5 {
        color: #4986FF;
        font-size: 16px;
        font-weight: 700;
        margin-bottom: 10px;
        text-align: left;
        margin-left: 158px;
    }

    .footer-column ul {
        list-style: none;
        padding: 0;
        text-align: left;
        margin-left: 158px;
    }

    .footer-column ul li {
        margin-bottom: 10px;
    }

    .footer-column ul li a {
        color: rgba(19, 26, 41, 0.70);
        text-decoration: none;
        font-size: 14px;
        font-weight: 500;
        white-space: nowrap;
    }

    .footer-column ul li a:hover {
        text-decoration: underline;
    }

    .copyright {
        text-align: right;
        color: rgba(19, 26, 41, 0.70);
        font-size: 14px;
        font-weight: 500;
        margin-top: 48px;
        margin-bottom: 60px;
        margin-left: 56px;
        width: 100%;

    }

    @media (max-width: 1280px) {
        .navbar-container {
            max-width: 1080px;
            width: 100%;
            padding: 0px;
        }

        .navbar-brand img {
            max-width: 120px;
            height: 20px;
        }

        .navbar-nav {
            margin-left: 50px;
            gap: 25px;
        }

        .navbar .nav-link {
            font-size: 16px;
        }

        .navbar-buttons {
            padding-left: 56px;
            gap: 10px;
        }

        .btn-get-started {
            max-width: 240px;
            width: 240px;
            font-size: 17px;
            height: 45px;
            white-space: nowrap;
        }

        .btn-sign-up {
            max-width: 110px;
            width: 110px;
            font-size: 17px;
            height: 45px;
        }

        .section1 {
            padding: 90px 20px 70px;
        }

        .textbox1 .first-line {
            font-size: 3.2rem;
        }

        .textbox1 .second-line {
            font-size: 1.2rem;
            max-width: 750px;
        }

        .content-wrapper,
        .content-wrapper2,
        .content-wrapper3 {
            width: 1080px;
        }
        .section2 .container,
        .section3 .container,
        .section4 .container {
        width: 1080px;
        }

        .textbox2,
        .textbox3,
        .textbox4 {
            width: 540px;
        }

        .img-box,
        .img-box2,
        .img-box3 {
            width: 540px;
        }

        .img1 {
            margin-left: 150px;
            width: 380px;
            height: 330px;
        }

        .img2 {
            margin-left: 50px;
            width: 380px;
            height: 380px;
        }

        .img3 {
            margin-left: 110px;
            width: 430px;
            height: 410px;
        }

        .textbox2 .first-line {
            font-size: 1.8rem;
        }

        .textbox2 .second-line,
        .textbox2 .third-line,
        .textbox2 .fourth-line,
        .textbox2 .fifth-line {
            font-size: 15px;
        }

        .textbox3 .first-line {
            font-size: 1.8rem;
        }

        .textbox3 .second-line,
        .textbox3 .third-line,
        .textbox3 .fourth-line {
            font-size: 15px;
        }

        .textbox4 .first-line {
            font-size: 1.8rem;
        }

        .textbox4 .second-line,
        .textbox4 .third-line {
            font-size: 15px;
        }

        .feature-list li {
            font-size: 15px;
        }

        .footer-container {
            max-width: 1000px;
            padding: 0 15px;
        }

        .footer-logo img {
            width: 132px;
            height: 18px;
        }

        .footer-column {
            flex: 1 1 100px;
            min-width: 120px;
            margin-bottom: 30px;
        }

        .footer-column h5,
        .footer-column ul {
            margin-left: 80px;
        }

        .copyright {
            font-size: 13px;
        }
    }

    @media (max-width: 1110px) {

        .navbar-container {
            max-width: 944px;
            width: 944px;
        }

        .navbar .nav-link {
            font-size: 15px;
            margin-top: 1px;
        }

        .navbar-buttons {
            padding-left: 40px;
        }

        .btn-get-started {
            width: 220px;
            font-size: 16px;
        }

        .btn-sign-up {
            font-size: 16px;
        }

        .section1 {
            padding: 80px 20px 60px;
        }

        .textbox1 .first-line {
            font-size: 3rem;
        }

        .textbox1 .second-line {
            font-size: 1.15rem;
            max-width: 700px;
        }

        .section2 .container,
        .section3 .container,
        .section4 .container {
            max-width: 944px;
            padding: 30px 0px;
        }

        .content-wrapper,
        .content-wrapper2,
        .content-wrapper3 {
            gap: 12px;
            max-width: 944px;
        }

        .img-box,
        .img-box2,
        .img-box3 {
            width: 466px;
        }

        .img1 {
            margin-left: 100px;
            width: 370px;
            height: 320px;
        }

        .img2 {
            margin-left: 40px;
            width: 370px;
            height: 370px;
        }

        .img3 {
            margin-left: 65px;
            width: 420px;
            height: 400px;
        }


        .textbox2,
        .textbox3 {
            width: 466px;
        }

        .textbox2 .first-line {
            font-size: 1.7rem;
        }

        .textbox2 .second-line,
        .textbox2 .third-line,
        .textbox2 .fourth-line,
        .textbox2 .fifth-line {
            font-size: 14px;
        }

        .textbox3 .first-line {
            font-size: 1.7rem;
        }

        .textbox3 .second-line,
        .textbox3 .third-line,
        .textbox3 .fourth-line {
            font-size: 14px;
        }

        .textbox4 {
            width: 466px;
            padding-bottom: 0px;
        }

        .textbox4 .first-line {
            font-size: 1.7rem;
        }

        .textbox4 .second-line,
        .textbox4 .third-line {
            font-size: 14px;
        }

        .feature-list li {
            font-size: 14px;
            font-weight: 400;
        }
        .feature-list li::before {
            width: 18px;
            height: 18px;
        }
        .footer-container {
            width: 944px;
            padding: 0px;
            margin-left: 30px;
        }

        .copyright {
            margin-left: 35px;
        }

    }

    @media (max-width: 980px) {

        .navbar {
            height: 50px;
            padding: 0px;
        }

        .navbar-container {
            max-width: 920px;
            width: 920px;
            height: 50px;

        }

        .navbar-brand img {
            margin-left: 16px;
        }

        .navbar-collapse.show {
            background-color: white;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            justify-content: flex-start;
            padding: 15px 20px;
            width: 100%;
            height: 255px;
            position: absolute;
            top: 50px;
            left: 0;
            right: auto;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        }

        .navbar-collapse.show .navbar-nav {
            margin: 0;
            padding: 0;
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

        .navbar-collapse.show .nav-item {
            width: 100%;
        }

        .navbar-collapse.show .nav-link {
            text-align: left;
            padding: 0;
            width: 100%;
            display: block;
            color: #333;
        }

        .navbar .nav-link {
            font-size: 18px;
        }

        .navbar-collapse.show .navbar-buttons {
            margin: 20px 0 0 0;
            padding-left: 0;
            display: flex;
            flex-direction: row;
            align-items: flex-start;
            justify-content: flex-start;
            gap: 10px;
            width: 100%;
        }

        .navbar .container-fluid {
            padding: 0;
        }

        .navbar-nav {
            margin-left: 66px;
            gap: 10px;
            margin-top: 1px;
            display: flex;
            flex-direction: row;
            white-space: nowrap;
        }

        .navbar .nav-link:hover {
            color: #474EEB;

        }

        .navbar-buttons {
            padding-left: 230px;
            display: flex;
            flex-direction: row;
            align-items: flex-start;
            gap: 15px;
            height: 40px;
        }

        .btn-get-started {
            background-color: #24223E;
            color: white;
            font-size: 18px;
            font-weight: 500;
            border-radius: 60px;
            max-width: 240px;
            width: 240px;
            height: 48px;
            padding: 8px 16px;
            margin: 0;
            transition: all 0.2s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .btn-sign-up {
            background: linear-gradient(to bottom right, #666CF7, #6699FF);
            color: white;
            font-size: 18px;
            font-weight: 500;
            line-height: 24px;
            border-radius: 60px;
            max-width: 129px;
            width: 129px;
            height: 48px;
            padding: 12px 30px;
            margin: 0;
            transition: all 0.2s ease;
            white-space: nowrap;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .navbar-collapse {
            visibility: hidden;
            opacity: 0;
            transition: visibility 0s linear 0.3s, opacity 0.3s ease;
        }

        .navbar-collapse.show {
            visibility: visible;
            opacity: 1;
            transition: visibility 0s linear 0s, opacity 0.3s ease;
        }

        .section1 {
            margin-top: 50px;

        }

        .content-wrapper,
        .content-wrapper2,
        .content-wrapper3 {
            width: 832px;
        }

        .img1 {
            margin-left: 110px;
            width: 350px;
            height: 300px;
        }

        .img2 {
            margin-left: 35px;
            width: 350px;
            height: 350px;
        }

        .img3 {
            margin-left: 30px;
            width: 400px;
            height: 380px;
        }

        .textbox4 {
            padding-top: 10px;

        }

        .footer-container {
            width: 93%;
            margin-left: 5px;
        }

        .footer-column ul li a {
            font-size: 12px;
        }
    }

    @media (max-width: 890px) {
        .textbox1 .first-line {
            font-size: 2.8rem;
            margin-bottom: 15px;
        }

        .textbox1 .second-line {
            font-size: 1.1rem;
            max-width: 90%;
        }

        .section2 .container,
        .section3 .container,
        .section4 .container {
            width: 800px;
            padding: 20px 0px;
        }

        .content-wrapper,
        .content-wrapper2,
        .content-wrapper3 {
            gap: 10px;
            width: 800px;
        }

        .textbox2 {
            width: 450px;

        }

        .img1 {
            margin-left: 60px;
            width: 330px;
            height: 280px;
        }

        .img2 {
            margin-left: 25px;
            width: 330px;
            height: 330px;
        }

        .img3 {
            margin-left: 20px;
            width: 380px;
            height: 360px;
        }

        .img-box,
        .img-box2,
        .img-box3 {
            max-width: 400px;
        }

        .textbox4 {
            padding-top: 25px;
        }

        .footer-container {
            max-width: 820px;
            padding: 0 20px;
        }

        .copyright {
            margin-left: 60px;
        }
    }

    @media (max-width: 840px) {

        .section2 .container,
        .section3 .container,
        .section4 .container {
            width: 760px;
        }

        .content-wrapper,
        .content-wrapper2,
        .content-wrapper3 {
            width: 760px;
        }

        .textbox2 .first-line {
            font-size: 1.5rem;
        }

        .textbox3 .first-line {
            font-size: 1.5rem;
        }

        .textbox4 .first-line {
            font-size: 1.5rem;
        }

        .img1 {
            margin-left: 80px;
            width: 310px;
            height: 260px;
        }

        .img2 {
            margin-left: 20px;
            width: 310px;
            height: 310px;
        }

        .img3 {
            margin-left: 40px;
            width: 360px;
            height: 340px;
        }

        .feature-list li {
            font-size: 13px;
            white-space: nowrap;
        }

    }

    @media (max-width: 800px) {
        .content-wrapper3 {
            margin-bottom: 34px;
        }

        .footer-container {
            margin-left: 0px;
        }
    }

    @media (max-width: 785px) {
        /*768px*/

        .btn-get-started {
            width: 220px;
            font-size: 16px;
        }

        .btn-sign-up {
            width: 110px;
            font-size: 16px;
        }

        .textbox1 .first-line {
            font-size: 2.6rem;
        }

        .textbox1 .second-line {
            font-size: 13.5px;
        }

        .section1 {
            padding: 70px 20px 50px;
        }

        .section2 .container,
        .section3 .container,
        .section4 .container {
            width: 730px;
        }

        .content-wrapper,
        .content-wrapper2,
        .content-wrapper3 {
            width: 730px;

        }

        .img-box,
        .img-box2,
        .img-box3 {
            max-width: 355px;
        }

 

        .img1 {
            margin-left: 48px;
            width: 290px;
            height: 240px;
        }

        .img2 {
            margin-left: 28px;
            width: 290px;
            height: 290px;
        }

        .img3 {
            margin-left: 18px;
            width: 330px;
            height: 310px;
        }

        .footer-container {
            padding: 0 15px;
        }

        .footer-logo img {
            width: 110px;
            height: 16px;
            margin-left: 0px;
        }

        .footer-column h5,
        .footer-column ul {
            margin-left: 60px;
            text-align: left;
            font-size: 13px;
        }

        .footer-column h5 {
            font-size: 16px;
        }

        .copyright {
            font-size: 13px;
        }
    }

    @media (max-width: 767px) {

        .section2 .container,
        .section3 .container,
        .section4 .container {
            width: 700px;
        }

        .content-wrapper,
        .content-wrapper2,
        .content-wrapper3 {
            width: 700px;
        }

        .img1 {
            margin: 43px;
            width: 280px;
            height: 230px;
        }

        .img2 {
            margin: 25px;
            width: 280px;
            height: 280px;
        }

        .img3 {
            margin: auto;
            width: 330px;
            height: 310px;
        }

        .footer-logo img {
            margin-left: 50px;
        }
    }

    @media (max-width: 730px) {

        /*576px*/
        .textbox1 .first-line {
            font-size: 35px;
            font-weight: 700;
        }

        .textbox2,
        .textbox3,
        .textbox4 {
            max-width: 500px;
            width: 500px;
        }

        .section2 .container,
        .section3 .container,
        .section4 .container {
            width: 500px;
        }

        .content-wrapper,
        .content-wrapper2,
        .content-wrapper3 {
            flex-direction: column;
            align-items: center;
            max-width: 500px;
            width: 500px;
        }

        .img-box,
        .img-box2,
        .img-box3 {
            display: flex;
            justify-content: center;
            align-items: center;
        }
        .img1 {
            width: 290px;
            height: 240px;
        }

        .img2 {
            width: 290px;
            height: 290px;
        }

        .img3 {
            width: 330px;
            height: 310px;
        }     

        .footer-container {
            margin-left: -30px;
        }
    }

    @media (max-width: 540px) {

        .textbox2,
        .textbox3,
        .textbox4 {
            max-width: 400px;
            width: 400px;
        }

        .section2 .container,
        .section3 .container,
        .section4 .container {
            width: 400px;
        }

        .content-wrapper,
        .content-wrapper2,
        .content-wrapper3 {
            flex-direction: column;
            align-items: center;
            max-width: 400px;
            width: 400px;
        }

        .footer-container {
            margin-left: -35px;
        }

    }

    @media (max-width: 445px) {
        .navbar .nav-link {
            font-size: 15px;
        }

        .btn-get-started {
            font-size: 15px;
            width: 202px;
            height: 37px;
            letter-spacing: -0.2px;
        }

        .btn-sign-up {
            font-size: 15px;
            width: 98px;
            height: 37px;
            letter-spacing: -0.2px;
        }

        .navbar-collapse.show {
            height: 223px;
        }

        .section1 {
            padding: 60px 14px 40px;
        }

        .textbox2 .first-line,
        .textbox3 .first-line,
        .textbox4 .first-line {
            margin-bottom: 7px;
        }

        .textbox2,
        .textbox3,
        .textbox4 {
            width: 380px;
        }

        .section2 .container,
        .section3 .container,
        .section4 .container {
            width: 380px;
        }

        .content-wrapper,
        .content-wrapper2,
        .content-wrapper3 {
            width: 380px;
        }

        .feature-list li {
            font-weight: 450;
        }

        .footer-container {
            margin-left: -5px;
        }

        .footer-column {
            flex: 0 0 50%;
            max-width: 50%;
            text-align: left;
        }

        .copyright {
            text-align: center;
            margin-left: 21.5px;
        }
    }


    @media (max-width: 414px) {


        .textbox1 .first-line {
            font-size: 30px;
            margin-bottom: 13px;
        }

        .textbox1 .second-line {
            font-size: 13px;
        }

        .textbox2,
        .textbox3,
        .textbox4 {
            width: 350px;
        }

        .section2 .container,
        .section3 .container,
        .section4 .container {
            width: 350px;
        }

        .content-wrapper,
        .content-wrapper2,
        .content-wrapper3 {
            width: 350px;
        }

        .img-box,
        .img-box2,
        .img-box3 {
            width: 350px;
        }
    }

    @media (max-width: 395px) {
        .footer-container {
            margin-left: -10px;
        }

        .copyright {
            margin-left: 27.5px;
        }
    }

    @media (max-width: 375px) {
        .section1 {
            padding: 50px 4px 35px;
        }

        .textbox2,
        .textbox3,
        .textbox4 {
            width: 320px;
        }

        .section2 .container,
        .section3 .container,
        .section4 .container {
            width: 320px;
        }

        .content-wrapper,
        .content-wrapper2,
        .content-wrapper3 {
            width: 320px;
        }

        .img-box,
        .img-box2,
        .img-box3 {
            width: 320px;
        }
    }

    @media (max-width: 360px) {
        .img1 {
            width: 250px;
            height: 210px;
        }

        .img2 {
            width: 250px;
            height: 250px;
        }

        .img3 {
            width: 300px;
            height: 290px;
        }



        .footer-container {
            margin-left: -20px;
        }

        .copyright {
            margin-left: 32.5px;
        }

    }

    @media (max-width: 350px) {


        .textbox1 .first-line {
            font-size: 28px;
        }

        .textbox2 .first-line,
        .textbox3 .first-line,
        .textbox4 .first-line {
            font-size: 21.5px;
            margin-bottom: 7px;
        }

        .textbox2 .second-line,
        .textbox2 .third-line,
        .textbox2 .fourth-line,
        .textbox2 .fifth-line {
            font-size: 13.5px;

        }

        .textbox3 .second-line,
        .textbox3 .third-line,
        .textbox3 .fourth-line {
            font-size: 13.5px;
        }

        .textbox4 .second-line,
        .textbox4 .third-line {
            font-size: 13.5px;
        }

        .feature-list li {
            font-size: 13.5px;
            margin-bottom: 7px;
            font-weight: 500;

        }

        .feature-list li::before {
            width: 16px;
            height: 16px;
        }

        .textbox2,
        .textbox3,
        .textbox4 {
            width: 300px;
        }

        .section2 .container,
        .section3 .container,
        .section4 .container {
            width: 300px;
        }

        .content-wrapper,
        .content-wrapper2,
        .content-wrapper3 {
            width: 300px;
        }

        .img-box,
        .img-box2,
        .img-box3 {
            width: 300px;
        }

        .footer-container {
            margin-left: -25px;
        }

        .copyright {
            margin-left: 37.5px;
        }
    }

    @media (max-width: 340px) {
        .navbar .nav-link {
            font-size: 14.8px;
        }

        .btn-get-started {
            font-size: 14.8px;
            width: 189px;
        }

        .btn-sign-up {
            font-size: 14.8px;
            width: 85px;
        }

    }

    @media (max-width: 320px) {

        .textbox2,
        .textbox3,
        .textbox4 {
            width: 280px;
        }

        .section2 .container,
        .section3 .container,
        .section4 .container {
            width: 280px;
        }

        .content-wrapper,
        .content-wrapper2,
        .content-wrapper3 {
            width: 280px;
        }

        .img-box,
        .img-box2,
        .img-box3 {
            width: 280px;
            font-weight: 700;
        }


        .textbox1 .first-line {
            font-size: 25.5px;
            margin-bottom: 8px;
        }

        .textbox1 .second-line {
            font-size: 13px;
        }

        .img1 {
            width: 230px;
            height: 190px;
        }

        .img2 {
            width: 230px;
            height: 230px;
        }

        .img3 {
            width: 280px;
            height: 270px;
        }
    }