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

.landing-page-container {
    width: 92%;
    margin: auto;
    max-width: 1200px;
}

a {
    text-decoration: none;
}

/* banner section  */
.section-1 {
    padding-top: 50px;
    padding-bottom: 70px;
    position: relative;
}

.section-1::before {
    position: absolute;
    content: '';
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: linear-gradient(135deg, #ececec, #ececec);
    clip-path: polygon(0 0, 100% 0, 100% 30%, 0 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.section-1>* {
    position: relative;
    z-index: 1;
}

.banner-content {
    text-align: center;
    max-width: 900px;
    margin: auto;
    width: 100%;
}

.banner-content h1 {
    font-size: 52px;
    font-weight: 700;
}

.banner-content p {
    font-size: 20px;
    line-height: 140%;
    color: #1d1f48;
    font-weight: 400;
    margin-bottom: 30px;
    margin-top: 30px;
}

.banner-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.Get-in-touch-btn {
    font-size: 16px;
    font-weight: 500;
    color: #1d1f48;
    border: 1px solid black;
    background-color: #ffda00;
    border-radius: 48px;
    cursor: pointer;
    padding: 11px 16px;
}

.Start-free-btn {
    font-size: 16px;
    font-weight: 500;
    color: black;
    background-color: white;
    border: 1px solid black;
    border-radius: 48px;
    cursor: pointer;
    padding: 11px 16px;
}


.Start-free-btn:hover {
    background-color: rgba(0, 0, 0, 0.76);
    border: 1px solid white;
    color: white;
    transition: .3s;
}

.Get-in-touch-btn:hover {
    background-color: rgba(0, 0, 0, 0.76);
    border: 1px solid white;
    color: white;
    transition: .3s;
}


.banner-img {
    margin-top: 50px;
}

.banner-img img {
    width: 90%;
    height: 90%;
}

/* section 2 */

.section-2 {
    padding: 70px 0;
    /* background:
        radial-gradient(circle at left, #80223b 20%, transparent 60%),
        radial-gradient(circle at right, #a12e47 30%, transparent 70%),
        linear-gradient(to bottom right, #c43643, #80223b); */
    background-color: #FFFDF7;
}

.sec-2-content {
    text-align: center;
    width: 90%;
    margin: auto;
}

.sec-2-content h2 {
    font-size: 45px;
    font-weight: 500;
}

.sec-2-content p {
    font-size: 20px;
    font-weight: 400;
    line-height: 140%;
    margin-top: 15px;
}

.logo-splide-container {
    width: 100%;
    max-width: none;
}

.logo-container {
    margin-top: 50px;
}

.logo-image {
    width: 65%;
    height: auto;
}

/* section 3 */

.section-3 {
    padding: 70px 0;
}

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

.table-wrapper {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.table-content {
    display: flex;
    justify-content: center;
    margin: auto;
    width: fit-content;
    min-width: 820px;
    padding-bottom: 20px;
    padding-top: 20px;
}

.col-1 {
    font-weight: 600;
}

.col-1 h4 {
    color: #f60;
}

.col-2 h4 {
    color: #f8981d;
}

.col-3 h4 {
    color: #2faef7;
}

.col-1,
.col-2 {
    border-right: 1px solid #ddd;
}

.col h4 {
    background: linear-gradient(to bottom, #ffffff 0%, #f9f9f9 60%, #e4e4e4 100%);
    border-bottom: 10px solid #f60;
    font-size: 20px;
    padding: 20px 10px;
    font-weight: 500;
    /* border-right: 1px solid #ddd; */
}

.col p {
    padding: 15px;
    border-bottom: 1px solid #eee;
    font-size: 16px;
    background: #fff;
    transition: all 0.2s ease;
}

.col .td:nth-of-type(even) {
    background-color: rgba(0, 0, 0, 0.207);
}

.col {
    margin-top: 8px;
}

.col:hover {
    box-shadow: -2px 1px 16px 10px rgb(135 128 128 / 73%);
    position: relative;
    margin-top: 0px;
    transition: .2s;
}


.table-title {
    font-size: 45px;
    font-weight: 500;
    margin-bottom: 30px;
}

/* 
.table-1 {
    max-width: 1000px;
    width: 80%;
    min-width: 600px;
    margin: 0 auto;
    border-collapse: collapse;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.table-1 th,
.table-1 td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.table-1 thead {
    background-color: black;
    color: rgb(0, 0, 0);
}

.table-1 tbody tr:nth-child(odd) {
    background-color: #f9f9f9;
}

.table-1 tbody tr:nth-child(even) {
    background-color: #eaeaea;
}

.table-1 tbody tr:hover td {
    background-color: #d0d0d0;
}

.table-1 thead tr:hover th {
    background-color: black;
}

.one:hover .one {
    box-shadow: 8px 0px 16px rgba(0, 0, 0, 0.1);
} */

/* section 4 */

.section-4 {
    padding: 70px 0;
    background-color: #F9F9F9;
}

.sec-4-content {
    text-align: center;
    max-width: 900px;
    margin: auto;
}

.sec-4-content h2 {
    font-size: 45px;
    font-weight: 500;
}

.sec-4-content p {
    font-size: 20px;
    font-weight: 400;
    line-height: 140%;
    margin-top: 30px;
}

.box-container {
    display: grid;
    grid-template-rows: repeat(2, auto);
    grid-template-columns: repeat(3, 1fr);
    gap: 55px;
    margin-top: 50px;
}

.icon-title {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.icon-title img {
    width: 35px;
    height: 35px;
}

.icon-title h4 {
    font-weight: 500;
    font-size: 18px;
}

.box-title h3 {
    font-size: 32px;
    font-weight: 500;
}

.box-item p {
    font-size: 16px;
    color: #636262;
}

.box-item {
    border-bottom: 1px solid #bababa;
    padding-bottom: 45px;
}

.icon-background {

    background-color: #ffda00;
    /* height: 48px; */
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    padding: 12px;
}

/* section 5 */

.section-5 {
    padding-bottom: 40px;
    padding-top: 70px;
}

.sec-5-box-container {}

.box-2-item {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 70px;
}

.box-picture {
    width: 46%;
}

.box-2-content {
    width: 50%;
}

.box-picture img {
    width: 100%;
    height: 100%;
    /* width: 429px; */
    /* height: 578px; */
}

.box-2-content h3 {
    font-size: 32px;
    font-weight: 500;
}

.box-2-content p {
    font-size: 20px;
    font-weight: 400;
    line-height: 140%;
    margin-top: 20px;
    margin-bottom: 20px;
}

.box-2-content h4 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 15px;
}

.box-2-content span {
    font-size: 18px;
    font-weight: 400;
    line-height: 140%;
}

/* section 6 */
.section-6 {
    padding: 70px 0;
    background-color: #FFFBEA;
}

.sec-6-title {
    font-size: 45px;
    font-weight: 500;
    text-align: center;
    max-width: 800px;
    margin: auto;
}

.sec-6-title span {
    color: #d72344;
}

.choose-us-container {
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.choose-icon img {
    width: 40px;
    height: 40px;
}

.choose-us-items {
    display: flex;
    gap: 20px;
}

.choose-us-items h4 {
    font-size: 20px;
    font-weight: 500;
}

.choose-us-items p {
    margin-top: 15px;
    font-size: 16px;
    color: rgba(0, 0, 0, 0.699);
    font-weight: 400;
    line-height: 140%;
}

.choose-icon-background {
    background-color: #f9d5d3;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    padding: 12px;
    width: fit-content;
    margin: auto;
}

/* section 7 */

.section-7 {
    padding: 70px 0;
    background-color: #ececec;
}

.review-title {
    font-size: 45px;
    font-weight: 500;
    max-width: 350px;
    margin-bottom: 70px;
}

.customer-review {
    /* display: flex;
    gap: 20px; */
}

.review-box {
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.customer-profile {
    display: flex;
    gap: 20px;
    align-items: center;
}

.customer-profile img {
    width: 50px;
    height: 50px;
}

.customer-name {
    font-size: 18px;
    font-weight: 600;
}

.customer-profession {
    margin-top: 8px;
    font-size: 17px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.814);
}

.review-content {
    margin-top: 30px;
    font-size: 16px;
    font-weight: 400;
    line-height: 145%;
}

.star-rating {
    display: flex;
    gap: 5px;
    margin-top: 20px;
}

.star {
    width: 22px;
    height: 22px;
    cursor: pointer;
}

.review-section-with {
    width: 90%;
    margin-left: auto;
    /* max-width: 2000px; */
}

.review-container {
    position: relative;
}

#review-splide {
    position: static !important;
}

.splide__arrows.custom-arrows {
    position: absolute;
    right: 9%;
    top: 20px;
    display: flex;
    gap: 10px;
}

.custom-arrow {
    padding: 8px !important;
}

.custom-prev {
    position: static !important;
    background: rgb(0, 0, 0) !important;
}

.custom-next {
    position: static !important;
    background: rgb(0, 0, 0) !important;
}

.custom-next:hover,
.custom-prev:hover {
    background: #ccc;
}


.custom-prev::before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: '\f060';
    font-size: 24px;
    color: white;
    display: inline-block;
    display: flex;
    align-items: center;
}

.custom-next::before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: '\f061';
    font-size: 24px;
    color: white;
    display: inline-block;
    display: flex;
    align-items: center;
}

/* section 8 */
.section-8 {
    padding: 70px 0;
}

.sec-8-conatiner {
    text-align: center;
}

.sec-8-title {
    max-width: 800px;
    margin: auto;
}

.sec-8-title h2 {
    font-size: 45px;
    font-weight: 500;
    margin-bottom: 50px;
}

.features-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.feature-box {
    padding: 40px;
    border-radius: 10px;
}

.feature-box img {
    width: 45px;
    height: 45px;
}

.image-background {
    padding: 12px;
    border-radius: 10px;
    background: #fff;
    width: fit-content;
    margin: auto;
    /* margin-top: 20px; */
}

.feature-box h3 {
    font-size: 20px;
    font-weight: 500;
    margin-top: 30px;
}

.feature-box p {
    margin-top: 30px;
    font-weight: 400;
    font-size: 18px;
    line-height: 150%;
}

.learn-more-button {
    margin-top: 55px;
    text-align: center;
    height: fit-content;
    margin-bottom: 20px;
}

.box-btn {
    padding: 13px 30px;
    color: white;
    border-radius: 10px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
}

.box-btn-1 {
    background-color: #4c6deb;
}

.box-btn-2 {
    background-color: #68d383;
}

.box-btn-3 {
    background-color: #f5e582;
}

.box-1 {
    background-color: #dae1fb;
}

.box-2 {
    background-color: #dcf6e7;
}

.box-3 {
    background-color: #fdf9e5;
}

/* section 9 */

.section-9 {
    padding: 70px 0;
    background-color: #f2efed;
}

.sec-9-container {
    display: flex;
    justify-content: space-between;
    /* align-items: center; */
    gap: 35px;
}

.section-9-image {
    width: 50%;
}

.section-9-image img {
    width: 100%;
    height: auto;
}

.section-9-content {
    width: 50%;
}

.sec-9-inner-content h2 {
    font-size: 40px;
    font-weight: 500;
}

.sec-9-inner-content p {
    font-size: 20px;
    font-weight: 400;
    line-height: 145%;
    margin-top: 20px;
}

.sec-9-inner-content h3 {
    font-size: 25px;
    font-weight: 500;
    margin-top: 25px;
}

.sec-9-points-container {
    margin-top: 30px;
}

.points-items {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.points-items img {
    width: 40px;
    height: 40px;
}

.points-inner-content h4 {
    font-size: 17px;
    font-weight: 500;
}

.points-inner-content p {
    font-size: 16px;
    font-weight: 400;
    line-height: 145%;
    margin-top: 20px;
    color: rgba(0, 0, 0, 0.829);
}

.points-icon-background {
    background-color: #fcd495;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    padding: 12px;
    height: fit-content;
}

/* section 10 */

.section-10 {
    padding: 70px 0;
    background-color: #111b3b;
}

.sec-10-content {
    text-align: center;
    max-width: 700px;
    margin: auto;
}

.sec-10-content h3 {
    font-size: 45px;
    color: white;
    font-weight: 500;
}

.sec-10-content p {
    font-size: 20px;
    color: white;
    font-weight: 400;
    line-height: 150%;
    margin-top: 20px;
    margin-bottom: 50px;
}

.sec-10-content a {
    padding: 13px 30px;
    background-color: #4c6deb;
    color: white;
    font-size: 16px;
    font-weight: 500;
    border-radius: 8px;
}

/* fqa section */


.fqa-title h3 {
    font-size: 45px;
    font-weight: 500;
    color: black;
    text-align: center;
}

@media (max-width: 800px) {
    .features-container {
        flex-direction: column;
        max-width: 500px;
        margin: auto;
    }
}

@media (max-width: 1000px) {
    .sec-9-container {
        flex-direction: column;
        text-align: center;
        order: 1;
    }

    .section-9-image {
        width: 100%;
        order: 2;
    }

    .section-9-content {
        width: 100%;
    }

    .points-items {
        max-width: 500px;
        margin: auto;
        margin-bottom: 30px !important;
    }

    .points-inner-content {
        text-align: left;
    }
}

@media (max-width: 768px) {

    .section-1 {
        padding-bottom: 50px;
    }

    .section-2,
    .section-7,
    .section-8,
    .section-9,
    .section-10 {
        padding: 50px 0;
    }

    .section-3 {
        padding: 50px 0;
    }

    .section-4 {
        padding: 50px 0;
    }

    .section-5 {
        padding-bottom: 20px;
        padding-top: 50px;
    }

    .section-6 {
        padding: 50px 0;
    }

    .sec-2-content h2,
    .table-title,
    .sec-4-content h2,
    .sec-6-title,
    .review-title,
    .sec-8-title h2,
    .sec-10-content h3,
    .fqa-title h3 {
        font-size: 28px;
    }

    .review-title {
        max-width: 200px;
    }

    .sec-2-content p,
    .sec-4-content p,
    .sec-9-inner-content p,
    .sec-9-inner-content p,
    .sec-10-content p {
        font-size: 18px;
    }

    .logo-container {
        margin-top: 50px;
    }

    .table-title {
        font-size: 28px;
    }

    /* section 3 */
    .table-responsive {
        width: 100%;
        overflow-x: auto;
    }

    /* section 4 */
    .box-container {
        display: flex;
        flex-direction: column;
        gap: 30px;
        margin-top: 35px;
    }

    .box-item {
        max-width: 400px;
        margin: auto;
    }

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

    .box-item h3 {
        text-align: left;
    }

    /* section 5 */

    .box-2-item {
        flex-direction: column;
        margin-bottom: 60px;
    }

    .box-picture {
        width: 100%;
    }

    .box-2-content {
        width: 100%;
        text-align: center;
    }

    .box-even .box-2-content {
        order: 2;
    }

    .box-even .box-picture {
        order: 1;
    }

    /* section 6 */
    .sec-6-title {
        max-width: 500px;
    }

    .choose-us-container {
        flex-direction: column;
        text-align: center;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .choose-us-items {
        flex-direction: column;
    }

    /* section 8 */

    .sec-8-title {
        max-width: 500px;
    }

    .feature-box p {
        font-size: 15px;
    }

    .box-btn {
        font-size: 14px;
    }

    /* section 9 */
    .sec-9-inner-content h2 {
        font-size: 28px;
    }

    .sec-10-content a {
        font-size: 14.5;
    }

    .sec-10-content {
        max-width: 450px;
    }

}

/* Extra Small Devices (Phones - 320px to 419px) */
@media (max-width: 419.98px) {

    /* banner section  */
    .banner-content h1 {
        font-size: 30px;
    }

    .banner-content p,
    .sec-4-content p,
    .box-2-content p,
    .sec-9-inner-content p,
    .sec-9-inner-content p {
        font-size: 15px;
    }

    .Start-free-btn,
    .Get-in-touch-btn {
        font-size: 14px;
    }

    .banner-btn {
        gap: 15px;
    }

    .box-title h3,
    .box-2-content h3 {
        font-size: 25px;
    }

    /* section 5 */

    .box-2-content span {
        font-size: 14px;
    }

    /* .section-8 */

    .feature-box h3 {
        font-size: 17px;
    }
}

/* Small Phones (420px to 575px) */
@media (min-width: 420px) and (max-width: 575.98px) {

    /* banner section  */
    .banner-content h1 {
        font-size: 30px;
    }

    .banner-btn {
        gap: 20px;
    }

    .banner-content p,
    .sec-4-content p,
    .box-2-content p,
    .sec-9-inner-content p,
    .sec-9-inner-content p {
        font-size: 15px;
    }

    .Start-free-btn,
    .Get-in-touch-btn {
        font-size: 14px;
    }

    .banner-btn {
        gap: 16px;
    }

    .box-title h3,
    .box-2-content h3 {
        font-size: 26px;
    }

    /* section 5 */

    .box-2-content span {
        font-size: 14px;
    }

    /* .section-8 */

    .feature-box h3 {
        font-size: 18px;
    }
}

/* Medium Phones / Small Tablets (576px to 767px) */
@media (min-width: 576px) and (max-width: 767.98px) {
    .banner-content h1 {
        font-size: 35px;
    }

    .banner-btn {
        gap: 20px;
    }

    .banner-content p,
    .sec-4-content p,
    .box-2-content p,
    .sec-9-inner-content p,
    .sec-9-inner-content p {
        font-size: 15px;
    }

    .Start-free-btn,
    .Get-in-touch-btn {
        font-size: 14px;
    }

    .banner-btn {
        gap: 17px;
    }

    /* section-4 */

    .box-title h3,
    .box-2-content h3 {
        font-size: 28px;
    }

    /* section 5 */

    .box-2-content span {
        font-size: 15px;
    }

    /* .section-8 */

    .feature-box h3 {
        font-size: 18px;
    }

    /* .section-9 */

    .sec-9-inner-content p {
        font-size: 17px;
    }

    .sec-9-inner-content h3 {
        font-size: 21px;
    }

    .points-inner-content h4 {
        font-size: 16px;
    }

    .points-inner-content p {
        font-size: 15px;
    }
}

/* Tablets (768px to 991px) */
@media (min-width: 768px) and (max-width: 991.98px) {

    /* banner section  */

    .banner-content h1 {
        font-size: 45px;
    }

    .banner-content p,
    .sec-4-content p,
    .box-2-content p,
    .sec-9-inner-content p,
    .sec-9-inner-content p {
        font-size: 18px;
    }

    .Start-free-btn,
    .Get-in-touch-btn {
        font-size: 15px;
    }

    /* section 2 */

    .sec-2-content h2,
    .table-title,
    .sec-4-content h2,
    .sec-6-title,
    .review-title,
    .sec-8-title h2,
    .sec-10-content h3,
    .fqa-title h3 {
        font-size: 30px;
    }

    .sec-2-content p,
    .sec-10-content p {
        font-size: 19px;
    }

    .box-2-content span {
        font-size: 16px;
    }

    /* section 4 */
    .box-title h3,
    .box-2-content h3 {
        font-size: 29px;
    }

    .box-container {
        gap: 40px;
    }

    /* .section-8 */

    .feature-box h3 {
        font-size: 19px;
    }

    .sec-8-title {
        max-width: 500px;
    }

    /* .section-9 */

    .sec-9-inner-content h2 {
        font-size: 37px;
    }

    .sec-9-inner-content p {
        font-size: 18px;
    }

    .sec-9-inner-content h3 {
        font-size: 22px;
    }

    .points-inner-content h4 {
        font-size: 16px;
    }

    .points-inner-content p {
        font-size: 16px;
    }
}

/* Laptops (992px to 1199px) */
@media (min-width: 992px) and (max-width: 1199.98px) {

    .sec-2-content h2,
    .table-title,
    .sec-4-content h2,
    .sec-6-title,
    .review-title,
    .sec-8-title h2,
    .sec-10-content h3,
    .fqa-title h3 {
        font-size: 43px;
    }

    .sec-2-content p,
    .sec-4-content p,
    .sec-9-inner-content p,
    .sec-9-inner-content p,
    .sec-10-content p {
        font-size: 19px;
    }

    .box-2-content span {
        font-size: 16px;
    }

    .box-title h3,
    .box-2-content h3 {
        font-size: 30px;
    }

    .box-container {
        gap: 50px;
    }

    /* .section-9 */

    .sec-9-inner-content h2 {
        font-size: 38px;
    }

    .sec-9-inner-content p {
        font-size: 19px;
    }

    .sec-9-inner-content h3 {
        font-size: 23px;
    }

    .points-inner-content h4 {
        font-size: 16px;
    }

    .points-inner-content p {
        font-size: 16px;
    }
}

/* Desktops (1200px to 1399px) */
@media (min-width: 1200px) and (max-width: 1399.98px) {}

/* Large Screens / 4K+ (1400px and above) */
@media (min-width: 1400px) {}