@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700;800&display=swap');
* {
    padding: 0;
    margin: 0;
}

body {
    background-color: #fdfeff;
    font-family: "Open Sans", sans-serif;
}
.container {
    max-width: 76rem;
    margin: 0 auto;
}

/* navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    height: 15vh;
    align-items: center;
}
.navbar .logo img {
    width: 100px;
}

.navbar .list {
    list-style-type: none;
    display: flex;
    gap: 40px;
    font-weight: 500;
    color: #878787;
    align-items: center;
}
.navbar .list .list-item:first-child {
    color: #2c2c2c;
    font-weight: 600;
    font-size: 17px;
}
.btn-outline-sm {
    display: none;
}
.btn-outline {
    position: relative;
    padding: 14px 30px;
    background: #FFFFFF;
    border-radius: 10px;
    border: 2px;
    color: #11c0f8;
    font-size: 1.1rem;
    cursor: pointer;
}
.btn-outline::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: -2px;
    z-index: -1;
    border-radius: inherit;
    background: linear-gradient(to right bottom, #11c0f8, #0566ea);
}

/* hero section */
.hero {
    display: flex;
    height: 80vh;
    align-items: center;
    justify-content: space-between;
}
.hero .hero-left h1 {
    font-size: 3.4rem;
    color: #2c2c2c;
}
.hero .hero-left p {
    font-weight: 500;
    color: #878787;
    line-height: 30px;
    margin-top: 30px;
}

/* global */
.btn {
background: linear-gradient(to right bottom, #11c0f8, #0566ea);
color: #FFFFFF;
padding: 15px 40px;
border: none;
border-radius: 8px;
font-size: 18px;
font-weight: 500;
margin-top: 40px;
box-shadow: 0px 0px 20px 2px rgba(5, 102, 234,.2);
cursor: pointer;
}

.hero .hero-right img {
    width: 600px;
}


/* testing */
.testing {
    display: flex;
    height: 100vh;
    align-items: center;
    justify-content: space-between;
}
.testing .testing-left img {
    width: 580px;
}

.testing .testing-right h2 {
    font-size: 3.4rem;
    color: #14263f;
    text-transform: capitalize;
}

.testing .testing-right p {
    font-weight: 500;
    color: #878787;
    line-height: 30px;
    margin-top: 50px;
}

/*--------------------- technical section ---------------------*/
.technical-section {
    display: flex;
    height: 100vh;
    align-items: center;
    justify-content: space-between;
}
.technical-section .technical-section-left h2 {
    font-size: 3.4rem;
    color: #14263f;
    text-transform: capitalize;
}
.technical-section .technical-section-left p {
    font-weight: 500;
    color: #878787;
    line-height: 30px;
    margin-top: 30px;
}
.technical-section .technical-section-right img {
    width: 600px;
}


/*---------------------- services section ----------------------*/
/* .services-section {
    margin-top: 50px;
} */
.services-section .services-headline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 100px;
   
}
.services-section .services-headline h2 {
    font-size: 3.1rem;
    color: #14263f;
    text-transform: capitalize;
}
.services-section .services-headline p {
    font-weight: 500;
    color: #878787;
    line-height: 30px;
    margin-top: 30px;
    width: 50%;
}

.services-card {
    display: flex;
    flex-wrap: wrap;
    margin-top: 70px;
    /* gap: 40px; */
    justify-content: center;
}
.services-card .card {
    background-color: #FFFFFF;
    padding: 20px;
}
.services-card .card img {
    width: 60px;
    padding-bottom: 30px;
}
.services-card .card h4 {
    font-size: 1.5rem;
    color: #213958;
    padding-bottom: 30px;
}
.services-card .card p {
    font-size: 14px;
    line-height: 30px;
    color: #9ba0ac;
    padding-bottom: 30px;
    border-radius: 10px;
    width: 400px;
}
.services-card .card .wordpress  {
    width: 54px;
}
.services-card .card .vps  {
    width: 49px;
}
.services-card .card .domain  {
    width: 48px;
}
.services-card .card .builder  {
    width: 48px;
}



/*----------------------- pricing section -----------------------*/

.pricing-wrapper {
    margin-top: 120px;
    padding: 60px 0px;
    text-align: center;
    position: absolute;
    left: 0;
    right: 0;
    color: #FFFFFF;
    background: linear-gradient(to right bottom, #08b4f6, #0566ea);
}
.pricing-wrapper h2 {
    font-size: 2.9rem;
    font-weight: 500;
    padding-bottom: 60px;
}
.pricing {
    max-width: 76rem;
    margin: 0 auto;
    display: flex;
    text-align: left;
    gap: 20px;
    justify-content: center;
}
.pricing .pricing-card {
    background-color: #FFFFFF;
    color: #14263f;
    border-radius: 10px;
    width: 20rem;
    padding-left: 40px;
    overflow: hidden;
    position: relative;
}
.pricing .pricing-card:nth-child(2) .card-heading {
    z-index: 4;
    color: #FFFFFF;
    position: relative;
    margin-left: -40px;
    padding-left: 40px;
    border-radius: 40px;
}
.pricing .pricing-card:nth-child(2) .card-heading::after {
    content: " ";
    position: absolute;
    display: block;
    background-color: #2c2c2c;
    left: 0;
    right: 0;
    top: 0;
    height: 150px;
    column-rule: #FFFFFF;
    z-index: -1;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
}
.pricing .pricing-card .card-heading h4 {
    font-size: 1.8rem;
    font-weight: 700;
    padding-bottom: 12px;
    padding-top: 30px;
}
.pricing .pricing-card .card-heading p {
    margin-bottom: 70px;
    color: #878787;
    font-size: 15px;
}

.pricing-card-body ul  {
    list-style-type: none;
}
.pricing-card-body ul li  {
    display: flex;
    align-items: center;
}
.pricing-card-body ul li span  {
    margin-right: 20px;
    color: #20daaa;
    width: 15px;
    height: 15px;
    border: 3px solid #20daaa;
    border-radius: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.pricing-card-body ul li {
    padding-bottom: 30px;
    font-weight: 600;
    font-size: 16px;
    color: #5d596c;
}

.pricing-card-footer {
    text-align: center;
    margin-left: -40px;
    margin-top: 60px;
}
.pricing-card-footer h4 {
    font-size: 2rem;
}
.pricing-card-footer h4 span {
    color: #8787a0;
    margin-left: -8px;
}
.pricing-card-footer p {
    color: #8d8a9c;
    font-weight: 600;
    margin-top: 15px;
    padding-bottom: 10px;
}
.pricing-card-footer button {
    margin-bottom: 40px;
}
.btn-pricing {
    padding: 13px 40px;
    background: #FFFFFF;
    border-radius: 10px;
    border: 2px solid;
    color: #11c0f8;
    font-size: 1.1rem;
    cursor: pointer;
    margin-top: 40px;
    box-shadow: 0 0 10px 8px rgba(5, 102, 234,.1);
}



/* customer section */

.customer-section {
    margin-top: 100%;
}
.customer-section h1 {
    font-size: 2.8rem;
    text-align: center;
    color: #14263f;
}
.customer-section p {
    text-align: center;
    padding-top: 20px;
    color: #b8b3cb;
    font-weight: 600;
    font-size: 15px;
    padding-bottom: 60px;
}
.customer-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}
.customer-card {
    padding: 0px 22px;
    width: 34rem;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    height: 300px;
}
.customer-card p {
    line-height: 28px;
    text-align: left;
    color: #56565f;
    font-size: 15px;
}
.customer-card .customer-info div img {
    width: 80px;
}
.customer-card .customer-info {
    display: flex;
    gap: 20px;
}
.customer-card .customer-info .info h5 {
    margin-top: 17px;
    font-size: 1rem;
    color: #253853;
}
.customer-card .customer-info .info p {
    margin-top: -20px;
    font-size: 15px;
}
.customer-card:first-child {
    box-shadow: 0 0 40px 20px rgba(66, 79, 98, 0.05);
}


/* footer wrapper */

.footer-wrapper {
    background-image: url('../assets/footer-bg.svg');
    position: absolute;
    left: 0;
    right: 0;
    background-repeat: no-repeat;
    height: 44vh;
    margin-top: 160px;
}
.footer-container {
    height: 100vh;
    max-width: 76rem;
    margin: 0 auto;
}
.footer-container .footer {
    display: flex;
    align-items: center;
    color: #FFFFFF;
    align-items: center;
    height: 44vh;
    justify-content: space-between;
}
.footer-container .footer .footer-left h1 {
    font-size: 2.7rem;
}
.footer-container .footer .footer-left p {
    margin-top: 28px;
}
.footer-right button {
    background-color: transparent;
    color: #FFFFFF;
    border: 1.4px solid #FFFFFF;
    padding: 15px 40px;
    cursor: pointer;
    font-size: 17px;
    font-weight: 600;
    border-radius: 10px;
}
.bottom-footer {
    margin-top: 200px;
    display: flex;
    justify-content: space-between;
}
.bottom-footer .logo-container {
    flex: 1.2;
}
.bottom-footer .logo-container img {
    width: 100px;
}
.bottom-footer .logo-container p {
    padding-top: 20px;
    color: #777777;
}
.bottom-footer .footer-navbar {
    flex: 2;
    display: flex;
    justify-content: space-between;
}
.bottom-footer .footer-navbar div ul {
    list-style-type: none;
}
.bottom-footer .footer-navbar div h5 {
    padding-bottom: 20px;
    font-size: 1.4rem;
    color: #14263f;
}
.bottom-footer .footer-navbar div ul li {
    list-style-type: none;
    padding-bottom: 20px;
    color: #6e6e6e;
    font-size: 14px;
}
.bottom-footer .footer-navbar div:last-child ul {
    display: flex;
    gap: 20px;
    justify-content: center;
}
.bottom-footer .footer-navbar div:last-child h5 {
    text-align: center;
}
.bottom-footer .footer-navbar div:last-child ul li img {
    width: 36px;
}


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

    .container {
        max-width: 100%;
        margin: 0 auto;
    }

    .navbar {
        display: flex;
        justify-content: space-between;
        height: 15vh;
        align-items: center;
    }

    .navbar .logo img {
        width: 100px;
    }

    .navbar .list {
        list-style-type: none;
        display: none;
        gap: 40px;
        font-weight: 500;
        color: #878787;
        align-items: center;
    }

    .btn-outline-sm {
        display: flex;
        color: #2c2c2c;
        font-weight: 600;
        font-size: 17px;
    }

    .hero {
        display: flex;
        flex-direction: column;
        height: 80vh;
        align-items: center;
        justify-content: space-between;
    }

    .hero .hero-left h1 {
        font-size: 2rem;
        color: #2c2c2c;
        text-align: center;
    }

    .hero .hero-left p {
        font-weight: 500;
        color: #878787;
        line-height: 20px;
        margin-top: 30px;
        text-align: center;
    }

    .btn-outline-sm {
        position: relative;
        padding: 10px 15px;
        background: #FFFFFF;
        border-radius: 10px;
        border: 2px;
        color: #11c0f8;
        font-size: 1.1rem;
        cursor: pointer;
    }
    .btn-outline-sm::before {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        margin: -2px;
        z-index: -1;
        border-radius: inherit;
        background: linear-gradient(to right bottom, #11c0f8, #0566ea);
    }
    

    .btn {
        display: flex;
        margin: auto;
        background: linear-gradient(to right bottom, #11c0f8, #0566ea);
        color: #FFFFFF;
        padding: 15px 40px;
        border: none;
        border-radius: 8px;
        font-size: 18px;
        font-weight: 500;
        margin-top: 40px;
        box-shadow: 0px 0px 20px 2px rgba(5, 102, 234,.2);
        cursor: pointer;
        }

        .hero .hero-right img {
            display: flex;
            margin: auto;
            width: 80%;
        }

        .testing {
            display: flex;
            flex-direction: column;
            height: 100vh;
            align-items: center;
            justify-content: space-between;
        }

        .testing .testing-left img {
            display: flex;
            margin: 80px auto;
            width: 80%;
        }
        
        .testing .testing-right h2 {
            font-size: 2.0rem;
            color: #14263f;
            text-transform: capitalize;
            text-align: center;
        }
        
        .testing .testing-right p {
            font-weight: 500;
            color: #878787;
            line-height: 20px;
            margin-top: 50px;
            text-align: center;
        }    

        .technical-section {
            display: flex;
            flex-direction: column;
            height: 100vh;
            align-items: center;
            justify-content: space-between;
        }
        .technical-section .technical-section-left h2 {
            font-size: 2rem;
            color: #14263f;
            text-transform: capitalize;
            text-align: center;
            margin-top: 80px;
        }
        .technical-section .technical-section-left p {
            font-weight: 500;
            color: #878787;
            line-height: 20px;
            margin-top: 30px;
            text-align: center;
        }
        .technical-section .technical-section-right img {
            display: flex;
            margin: auto;
            width: 80%;
        }
        

        .services-section .services-headline {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            align-items: center;
            margin-top: 100px;
           
        }
        .services-section .services-headline h2 {
            font-size: 2rem;
            color: #14263f;
            text-transform: capitalize;
            text-align: center;
        }
        .services-section .services-headline p {
            font-weight: 500;
            color: #878787;
            line-height: 20px;
            margin-top: 30px;
            width: 100%;
            text-align: center;
        }
        
        .services-card {
            width: 100%;
            display: flex;
            flex-direction: column;
            flex-wrap: wrap;
            margin-top: 70px;
            justify-content: center;
        }
        .services-card .card {
            background-color: #FFFFFF;
            padding: 20px;
        }
        .services-card .card img {
            width: 60px;
            padding-bottom: 30px;
        }
        .services-card .card h4 {
            font-size: 1.5rem;
            color: #213958;
            padding-bottom: 30px;
        }
        .services-card .card p {
            font-size: 14px;
            line-height: 30px;
            color: #9ba0ac;
            padding-bottom: 20px;
            border-radius: 10px;
            width: auto;
        }
        
        .pricing-wrapper {
            margin-top: 120px;
            padding: 30px 0px;
            text-align: center;
            position: unset;
            left: 0;
            right: 0;
            color: #FFFFFF;
            background: linear-gradient(to right bottom, #08b4f6, #0566ea);
        }
        
        .pricing-wrapper h2 {
            font-size: 1.5rem;
            font-weight: 500;
            padding-bottom: 30px;
        }
        
        .pricing {
            max-width: 100%;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            text-align: left;
            gap: 20px;
            justify-content: center;
            align-items: center;
        }
        
        .pricing .pricing-card {
            background-color: #FFFFFF;
            color: #14263f;
            border-radius: 10px;
            width: 80%;
            overflow: hidden;
            position: relative;
        }

        .pricing .pricing-card:nth-child(2) .card-heading {
            z-index: 4;
            color: #FFFFFF;
            position: relative;
            margin-left: -40px;
            padding-left: 40px;
            border-radius: 40px;
        }

        .pricing .pricing-card:nth-child(2) .card-heading::after {
            content: " ";
            position: absolute;
            display: block;
            background-color: #2c2c2c;
            left: 0;
            right: 0;
            top: 0;
            height: 150px;
            column-rule: #FFFFFF;
            z-index: -1;
            border-bottom-right-radius: 10px;
            border-bottom-left-radius: 10px;
        }

        .pricing .pricing-card .card-heading h4 {
            font-size: 1.8rem;
            font-weight: 700;
            padding-bottom: 12px;
            padding-top: 30px;
        }

        .pricing .pricing-card .card-heading p {
            margin-bottom: 70px;
            color: #878787;
            font-size: 15px;
        }
        
        .pricing-card-body ul  {
            list-style-type: none;
        }

        .pricing-card-body ul li  {
            display: flex;
            align-items: center;
        }

        .pricing-card-body ul li span  {
            margin-right: 20px;
            color: #20daaa;
            width: 15px;
            height: 15px;
            border: 3px solid #20daaa;
            border-radius: 100px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .pricing-card-body ul li {
            padding-bottom: 30px;
            font-weight: 600;
            font-size: 16px;
            color: #5d596c;
        }
        
        .pricing-card-footer {
            text-align: center;
            margin-left: -40px;
            margin-top: 60px;
        }

        .pricing-card-footer h4 {
            font-size: 2rem;
        }

        .pricing-card-footer h4 span {
            color: #8787a0;
            margin-left: -8px;
        }

        .pricing-card-footer p {
            color: #8d8a9c;
            font-weight: 600;
            margin-top: 15px;
            padding-bottom: 10px;
        }

        .pricing-card-footer button {
            margin-bottom: 40px;
        }

        .btn-pricing {
            padding: 13px 40px;
            background: #FFFFFF;
            border-radius: 10px;
            border: 2px solid;
            color: #11c0f8;
            font-size: 1.1rem;
            cursor: pointer;
            margin-top: 40px;
            box-shadow: 0 0 10px 8px rgba(5, 102, 234,.1);
        }

.customer-section {
   margin-top: auto;
}
.customer-section h1 {
    font-size: 1.4rem;
    text-align: center;
    color: #14263f;
}
.customer-section p {
    text-align: center;
    padding-top: 20px;
    color: #b8b3cb;
    font-weight: 600;
    font-size: 14px;
    padding-bottom: 20px;
}
.customer-cards {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}
.customer-card {
    margin: auto 10px;
    padding: 0px 22px;
    width: auto;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    height: auto;
}
.customer-card p {
    line-height: 28px;
    text-align: left;
    color: #56565f;
    font-size: 15px;
}
.customer-card .customer-info div img {
    width: 80px;
}
.customer-card .customer-info {
    display: flex;
    gap: 20px;
}
.customer-card .customer-info .info h5 {
    margin-top: 17px;
    font-size: 1rem;
    color: #253853;
}
.customer-card .customer-info .info p {
    margin-top: -20px;
    font-size: 15px;
}
.customer-card:first-child {
    box-shadow: 0 0 40px 20px rgba(66, 79, 98, 0.05);
}


.footer-wrapper {
    background-image: url('../assets/footer-bg.svg');
    position: absolute;
    left: 0;
    right: 0;
    background-repeat: no-repeat;
    height: 44vh;
    margin-top: 160px;
}

.footer-container {
    height: auto;
    max-width: 100%;
    margin: 0 auto;
}
.footer-container .footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #FFFFFF;
    align-items: center;
    height: 44vh;
    justify-content: space-between;
}
.footer-container .footer .footer-left h1 {
    font-size: 1.2rem;
    text-align: center;
}
.footer-container .footer .footer-left p {
    margin-top: 28px;
    text-align: center;
}
.footer-right button {
    background-color: transparent;
    color: #FFFFFF;
    border: 1.4px solid #FFFFFF;
    padding: 15px 40px;
    cursor: pointer;
    font-size: 17px;
    font-weight: 600;
    border-radius: 10px;
}
.bottom-footer {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.bottom-footer .logo-container {
    width: auto;
}
.bottom-footer .logo-container img {
    display: flex;
    margin: auto;
    width: 100px;
}
.bottom-footer .logo-container p {
    padding-top: 20px;
    color: #777777;
    text-align: center;
}
.bottom-footer .footer-navbar {
    flex: 2;
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: space-between;
}
.bottom-footer .footer-navbar div ul {
    list-style-type: none;
}
.bottom-footer .footer-navbar div h5 {
    padding-bottom: 20px;
    font-size: 1.4rem;
    color: #14263f;
}
.bottom-footer .footer-navbar div ul li {
    list-style-type: none;
    padding-bottom: 20px;
    color: #6e6e6e;
    font-size: 14px;
}
.bottom-footer .footer-navbar div:last-child ul {
    display: flex;
    gap: 20px;
    justify-content: center;
}
.bottom-footer .footer-navbar div:last-child h5 {
    text-align: center;
}
.bottom-footer .footer-navbar div:last-child ul li img {
    width: 36px;
}
}


@media screen and (min-width:521px) and (max-width:900px) {

    .container {
        max-width: 100%;
        margin: 0 auto;
    }

    .navbar {
        display: flex;
        justify-content: space-between;
        height: 15vh;
        align-items: center;
    }

    .navbar .logo img {
        width: 100px;
    }

    .navbar .list {
        list-style-type: none;
        display: none;
        gap: 40px;
        font-weight: 500;
        color: #878787;
        align-items: center;
    }

    .btn-outline-sm {
        display: flex;
        color: #2c2c2c;
        font-weight: 600;
        font-size: 17px;
    }

    .hero {
        display: flex;
        flex-direction: column;
        height: 80vh;
        align-items: center;
        justify-content: space-between;
    }

    .hero .hero-left h1 {
        font-size: 2rem;
        color: #2c2c2c;
        text-align: center;
    }

    .hero .hero-left p {
        font-weight: 500;
        color: #878787;
        line-height: 20px;
        margin-top: 30px;
        text-align: center;
    }

    .btn-outline-sm {
        position: relative;
        padding: 10px 15px;
        background: #FFFFFF;
        border-radius: 10px;
        border: 2px;
        color: #11c0f8;
        font-size: 1.1rem;
        cursor: pointer;
    }
    .btn-outline-sm::before {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        margin: -2px;
        z-index: -1;
        border-radius: inherit;
        background: linear-gradient(to right bottom, #11c0f8, #0566ea);
    }
    

    .btn {
        display: flex;
        margin: auto;
        background: linear-gradient(to right bottom, #11c0f8, #0566ea);
        color: #FFFFFF;
        padding: 15px 40px;
        border: none;
        border-radius: 8px;
        font-size: 18px;
        font-weight: 500;
        margin-top: 40px;
        box-shadow: 0px 0px 20px 2px rgba(5, 102, 234,.2);
        cursor: pointer;
        }

        .hero .hero-right img {
            display: flex;
            margin: auto;
            width: 80%;
        }

        .testing {
            display: flex;
            flex-direction: column;
            height: 100vh;
            align-items: center;
            justify-content: space-between;
        }

        .testing .testing-left img {
            display: flex;
            margin: 80px auto;
            width: 80%;
        }
        
        .testing .testing-right h2 {
            font-size: 2.0rem;
            color: #14263f;
            text-transform: capitalize;
            text-align: center;
        }
        
        .testing .testing-right p {
            font-weight: 500;
            color: #878787;
            line-height: 20px;
            margin-top: 50px;
            text-align: center;
        }    

        .technical-section {
            display: flex;
            flex-direction: column;
            height: 100vh;
            align-items: center;
            justify-content: space-between;
        }
        .technical-section .technical-section-left h2 {
            font-size: 2rem;
            color: #14263f;
            text-transform: capitalize;
            text-align: center;
            margin-top: 80px;
        }
        .technical-section .technical-section-left p {
            font-weight: 500;
            color: #878787;
            line-height: 20px;
            margin-top: 30px;
            text-align: center;
        }
        .technical-section .technical-section-right img {
            display: flex;
            margin: auto;
            width: 80%;
        }
        

        .services-section .services-headline {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            align-items: center;
            margin-top: 100px;
           
        }
        .services-section .services-headline h2 {
            font-size: 2rem;
            color: #14263f;
            text-transform: capitalize;
            text-align: center;
        }
        .services-section .services-headline p {
            font-weight: 500;
            color: #878787;
            line-height: 20px;
            margin-top: 30px;
            width: 100%;
            text-align: center;
        }
        
        .services-card {
            width: 100%;
            display: flex;
            flex-direction: column;
            flex-wrap: wrap;
            margin-top: 70px;
            justify-content: center;
        }
        .services-card .card {
            background-color: #FFFFFF;
            padding: 20px;
        }
        .services-card .card img {
            width: 60px;
            padding-bottom: 30px;
        }
        .services-card .card h4 {
            font-size: 1.5rem;
            color: #213958;
            padding-bottom: 30px;
        }
        .services-card .card p {
            font-size: 14px;
            line-height: 30px;
            color: #9ba0ac;
            padding-bottom: 20px;
            border-radius: 10px;
            width: auto;
        }
        
        .pricing-wrapper {
            margin-top: 120px;
            padding: 30px 0px;
            text-align: center;
            position: unset;
            left: 0;
            right: 0;
            color: #FFFFFF;
            background: linear-gradient(to right bottom, #08b4f6, #0566ea);
        }
        
        .pricing-wrapper h2 {
            font-size: 1.5rem;
            font-weight: 500;
            padding-bottom: 30px;
        }
        
        .pricing {
            max-width: 100%;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            text-align: left;
            gap: 20px;
            justify-content: center;
            align-items: center;
        }
        
        .pricing .pricing-card {
            background-color: #FFFFFF;
            color: #14263f;
            border-radius: 10px;
            width: 80%;
            overflow: hidden;
            position: relative;
        }

        .pricing .pricing-card:nth-child(2) .card-heading {
            z-index: 4;
            color: #FFFFFF;
            position: relative;
            margin-left: -40px;
            padding-left: 40px;
            border-radius: 40px;
        }

        .pricing .pricing-card:nth-child(2) .card-heading::after {
            content: " ";
            position: absolute;
            display: block;
            background-color: #2c2c2c;
            left: 0;
            right: 0;
            top: 0;
            height: 150px;
            column-rule: #FFFFFF;
            z-index: -1;
            border-bottom-right-radius: 10px;
            border-bottom-left-radius: 10px;
        }

        .pricing .pricing-card .card-heading h4 {
            font-size: 1.8rem;
            font-weight: 700;
            padding-bottom: 12px;
            padding-top: 30px;
        }

        .pricing .pricing-card .card-heading p {
            margin-bottom: 70px;
            color: #878787;
            font-size: 15px;
        }
        
        .pricing-card-body ul  {
            list-style-type: none;
        }

        .pricing-card-body ul li  {
            display: flex;
            align-items: center;
        }

        .pricing-card-body ul li span  {
            margin-right: 20px;
            color: #20daaa;
            width: 15px;
            height: 15px;
            border: 3px solid #20daaa;
            border-radius: 100px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .pricing-card-body ul li {
            padding-bottom: 30px;
            font-weight: 600;
            font-size: 16px;
            color: #5d596c;
        }
        
        .pricing-card-footer {
            text-align: center;
            margin-left: -40px;
            margin-top: 60px;
        }

        .pricing-card-footer h4 {
            font-size: 2rem;
        }

        .pricing-card-footer h4 span {
            color: #8787a0;
            margin-left: -8px;
        }

        .pricing-card-footer p {
            color: #8d8a9c;
            font-weight: 600;
            margin-top: 15px;
            padding-bottom: 10px;
        }

        .pricing-card-footer button {
            margin-bottom: 40px;
        }

        .btn-pricing {
            padding: 13px 40px;
            background: #FFFFFF;
            border-radius: 10px;
            border: 2px solid;
            color: #11c0f8;
            font-size: 1.1rem;
            cursor: pointer;
            margin-top: 40px;
            box-shadow: 0 0 10px 8px rgba(5, 102, 234,.1);
        }

.customer-section {
   margin-top: auto;
}
.customer-section h1 {
    font-size: 1.4rem;
    text-align: center;
    color: #14263f;
}
.customer-section p {
    text-align: center;
    padding-top: 20px;
    color: #b8b3cb;
    font-weight: 600;
    font-size: 14px;
    padding-bottom: 20px;
}
.customer-cards {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}
.customer-card {
    margin: auto 10px;
    padding: 0px 22px;
    width: auto;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    height: auto;
}
.customer-card p {
    line-height: 28px;
    text-align: left;
    color: #56565f;
    font-size: 15px;
}
.customer-card .customer-info div img {
    width: 80px;
}
.customer-card .customer-info {
    display: flex;
    gap: 20px;
}
.customer-card .customer-info .info h5 {
    margin-top: 17px;
    font-size: 1rem;
    color: #253853;
}
.customer-card .customer-info .info p {
    margin-top: -20px;
    font-size: 15px;
}
.customer-card:first-child {
    box-shadow: 0 0 40px 20px rgba(66, 79, 98, 0.05);
}


.footer-wrapper {
    background-image: url('../assets/footer-bg.svg');
    position: absolute;
    left: 0;
    right: 0;
    background-repeat: no-repeat;
    height: 44vh;
    margin-top: 160px;
}

.footer-container {
    height: auto;
    max-width: 100%;
    margin: 0 auto;
}
.footer-container .footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #FFFFFF;
    align-items: center;
    height: 44vh;
    justify-content: space-between;
}
.footer-container .footer .footer-left h1 {
    font-size: 1.2rem;
    text-align: center;
}
.footer-container .footer .footer-left p {
    margin-top: 28px;
    text-align: center;
}
.footer-right button {
    background-color: transparent;
    color: #FFFFFF;
    border: 1.4px solid #FFFFFF;
    padding: 15px 40px;
    cursor: pointer;
    font-size: 17px;
    font-weight: 600;
    border-radius: 10px;
}
.bottom-footer {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.bottom-footer .logo-container {
    width: auto;
}
.bottom-footer .logo-container img {
    display: flex;
    margin: auto;
    width: 100px;
}
.bottom-footer .logo-container p {
    padding-top: 20px;
    color: #777777;
    text-align: center;
}
.bottom-footer .footer-navbar {
    flex: 2;
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: space-between;
}
.bottom-footer .footer-navbar div ul {
    list-style-type: none;
}
.bottom-footer .footer-navbar div h5 {
    padding-bottom: 20px;
    font-size: 1.4rem;
    color: #14263f;
}
.bottom-footer .footer-navbar div ul li {
    list-style-type: none;
    padding-bottom: 20px;
    color: #6e6e6e;
    font-size: 14px;
}
.bottom-footer .footer-navbar div:last-child ul {
    display: flex;
    gap: 20px;
    justify-content: center;
}
.bottom-footer .footer-navbar div:last-child h5 {
    text-align: center;
}
.bottom-footer .footer-navbar div:last-child ul li img {
    width: 36px;
}
}