body {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    padding: 0;
    margin: 0;
    position: relative;
    width: 100%;
    background-image: linear-gradient(to top, #eee, #f6f6f6);
}

:root {
    --main-color: #40989a;
    --linear-color: #5bca9f;
    --submain-color: #186567;
    --p-color: #515f60;
    --white-color: #fff;
}

.container {
    width: 960px;
    margin: 0 auto;
}

.button {
    min-width: 125px;
    text-align: center;
    padding: 15px 30px;
    border-radius: 49px;
    transition: all 0.5s;
    font-size: 20px;
    color: var(--white-color);
    text-decoration: none;
    transition: all 0.2s;
}

    .button:hover {
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
    }

.start-btn {
    background: var(--submain-color);
    border: none;
}

    .start-btn:hover {
        background: #188968;
    }

@media (max-width: 767px) {
    .button {
        font-size: 13px !important;
        padding: 13px 6px;
        border-radius: 10px;
    }
}

/******************/
.navbar {
    background-color: #57c39f;
    width: 100%;
    padding: 15px 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    box-sizing: border-box;
}

    .navbar .nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        box-sizing: border-box;
    }

    .navbar .logo {
        width: 50%;
    }

    .navbar .learn-more {
        width: 50%;
        display: flex;
        justify-content: flex-end;
    }

    .navbar .logo img {
        width: 200px;
    }

    .navbar .learn-more .learn-btn {
        font-weight: 600;
        font-size: 25px;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
    }

        .navbar .learn-more .learn-btn img {
            width: 30px;
            margin: 0 3px;
        }

        .navbar .learn-more .learn-btn span {
            color: #fff;
            margin: 0 3px;
        }

    .navbar .learn-more .language {
        height: 50px;
        width: 50px;
        border: 1px solid #fff;
    }

    .navbar .learn-more .language-btn {
        background: transparent;
        font-weight: 600;
        border: 1px solid var(--white-color);
        font-size: 25px;
        margin-left: 10px;
        width: 45px;
        height: 45px;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0;
        min-width: auto;
    }

@media (max-width: 767px) {
    .navbar {
        padding: 15px 10px;
    }

        .navbar .logo img {
            width: 120px;
        }

        .navbar .learn-more .learn-btn {
            padding: 0;
        }

            .navbar .learn-more .learn-btn img {
                width: 20px;
                margin: 0 2px;
            }

            .navbar .learn-more .learn-btn span {
                color: #fff;
                margin: 0 2px;
                font-size: 15px;
            }

        .navbar .learn-more .language-btn {
            width: 35px;
            height: 35px;
            font-size: 18px !important;
            border-radius: 50%;
        }
}

@media (max-width: 575.98px) {
    .navbar .learn-more {
        width: 60%;
    }

    .navbar .logo {
        width: 40%;
    }

    .navbar {
        margin-right: 0;
        padding-left: 0;
    }
}

/*******************/
.header {
    position: relative;
    background-image: linear-gradient( to top, var(--main-color), var(--linear-color) );
    padding: 140px 0 50px;
    height: 600px;
    margin-bottom: 200px;
    color: var(--white-color);
    text-align: center;
}

    .header .intro h1 {
        font-weight: 400;
        font-size: 50px;
    }

        .header .intro h1 span {
            font-weight: 600;
        }

    .header .intro p {
        font-size: 30px;
    }

    .header .intro .email-box {
        margin: 30px 0;
        display: flex;
        justify-content: center;
    }

        .header .intro .email-box form {
            max-width: 500px;
            position: relative;
            width: 100%;
            display: flex;
        }

        .header .intro .email-box input {
            padding-left: 30px;
            border-radius: 49px;
            outline: none;
            border: none;
            font-size: 20px;
            color: var(--p-color);
            background-color: var(--white-color);
            width: 93%;
            height: 40px;
            display: block;
            padding-right: 0;
            height: 53px;
        }

            .header .intro .email-box input::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
                color: #ddd;
                opacity: 1; /* Firefox */
            }

        .header .intro .email-box .start-btn {
            position: absolute;
            right: 0;
            top: 0;
            margin: 0;
            border-radius: 0 50px 50px 0;
            height: 55px;
            padding-top: 0;
            padding-bottom: 0;
            display: flex;
            align-items: center;
        }

.header-img {
    position: absolute;
    top: 530px;
    left: 50%;
    transform: translateX(-50%);
}

@media (max-width: 767px) {
    .header {
        height: 305px;
        margin-bottom: 100px;
        padding: 70px 0;
    }

        .header .intro h1 {
            font-size: 30px;
        }

        .header .intro p {
            font-size: 18px;
        }

        .header .intro .email-box input {
            font-size: 13px;
        }

    .header-img {
        width: 280px;
        top: 355px;
    }

        .header-img img {
            width: 100%;
            height: auto;
        }

    .header .intro .email-box .start-btn {
        min-width: 100px;
    }

    .header .intro .email-box input {
        padding-left: 20px;
    }
}

/*************************/
.features,
.clients,
.testimonials {
    color: var(--submain-color);
    text-align: center;
    padding: 50px 0 25px;
}

.testimonials {
    padding: 50px 0px;
}

    .features h2,
    .clients h2,
    .testimonials h2 {
        margin-bottom: 40px;
        font-size: 36px;
    }

.features .feature-card {
    width: 33%;
    display: inline-block;
    text-align: left;
    padding: 0 18px;
    box-sizing: border-box;
    color: var(--p-color);
}

    .features .feature-card h3 {
        font-size: 20px;
    }

@media (max-width: 767px) {
    .features,
    .clients {
        padding: 30px 0;
    }

        .features h2,
        .clients h2 {
            font-size: 22px;
        }

        .features .feature-card {
            width: 100%;
            padding: 0 40px;
        }
}
/******************/
.testimonials .card {
    display: flex;
    justify-content: space-between;
    box-sizing: border-box;
    align-items: center;
    text-align: left;
    padding: 10px 20px 30px;
}

    .testimonials .card .card-img {
        width: 30%;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: end;
    }

        .testimonials .card .card-img img {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            box-shadow: 0 15px 30px 0 rgb(0 0 0 / 16%);
        }

    .testimonials .card .card-body {
        /*width: 70%;*/
        display: flex;
        padding: 26px;
        background: var(--white-color);
        box-shadow: 0 15px 30px 0 rgb(0 0 0 / 16%);
        border-radius: 50px 5px 50px 50px;
        box-sizing: border-box;
    }

        .testimonials .card .card-body .card-body-img {
            /* width: 10%;
            padding-top: 20px;*/
            width: 12%;
            padding-top: 0px;
        }

            .testimonials .card .card-body .card-body-img img {
                border-radius: 50%;
            }

        .testimonials .card .card-body .card-text {
            width: 90%;
            padding-left: 20px;
            font-size: 15px;
            color: var(--p-color);
        }

.owl-theme .owl-nav,
.owl-theme .owl-dots {
    display: none;
}

@media (max-width: 767px) {
    .testimonials .card {
        padding: 60px 20px;
    }

    .testimonials .card {
        flex-direction: column;
    }

        .testimonials .card .card-body {
            order: 2;
        }

        .testimonials .card .card-img,
        .testimonials .card .card-body {
            width: 100%;
        }

            .testimonials .card .card-img img {
                width: 70px;
                height: 70px;
            }
}
/****************/
.clients .our-clients .client-img {
    width: 15%;
    padding: 0 20px;
    margin: 30px 0;
    box-sizing: border-box;
    display: inline-block;
}

    .clients .our-clients .client-img img {
        width: 100%;
    }

@media (max-width: 767px) {
    .clients h2 {
        margin: 15px 0;
    }

    .clients .our-clients .client-img {
        padding: 0 5px;
        margin: 5px 0 0;
    }
}

/************************/
.footer {
    padding: 25px 0;
    background-image: linear-gradient( to right, var(--main-color), var(--linear-color) );
    z-index: 10;
}

    .footer .footer-content {
        display: flex;
        justify-content: center;
        align-items: center;
    }

        .footer .footer-content .footer-img {
            /*          width: 10%;
            display: inline-block;*/
            width: 15%;
        }

            .footer .footer-content .footer-img img {
                height: 60px;
            }

        .footer .footer-content .footer-content {
            /*  display: inline-block;
            width: 64%;*/
            display: inline-block;
            width: 70%;
            margin-bottom: 9px;
        }

.footer .footer-content .footer-content p {
    margin: 0;
    font-size: 25px;
    font-weight: 500;
    color: var(--white-color);
}

.footer .footer-content .footer-btn {
    width: 35%;
    text-align: right;
}

@media (max-width: 767px) {
    body {
        padding-bottom: 100px;
    }

    .footer.footer--scrolled {
        position: fixed;
        bottom: 0;
        opacity: 1;
        width: 100%;
    }

    .footer {
        padding: 15px 10px;
        opacity: 0;
        transition: all 0.5s;
    }

        .footer .footer-content .footer-btn .start-btn {
            min-width: 80px;
            font-size: 12px;
            padding: 0 5px;
            display: inline-flex;
        }

        .footer .footer-content .footer-content p {
            font-size: 14px;
        }

        .footer .footer-content .footer-img img {
            height: 35px;
            margin-inline-start: -18px;
        }
}

/***************************/
.container {
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
}

@media (max-width: 576px) {
    .container {
        width: 100%;
    }
}

@media (min-width: 576px) and (max-width: 767px) {
    .container {
        width: 540px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .container {
        width: 720px;
    }
}

grammarly-desktop-integration {
    display: none;
}

.start-btn {
    display: inline-flex;
    contain: content;
    align-items: center;
    justify-content: center;
    padding: 0;
    padding-left: 15px;
    padding-right: 15px;
    height: 55px;
}

    .start-btn img {
        width: 21px;
        height: 21px;
        margin: 0 5px;
    }

    .start-btn span {
        margin: 0 5px;
    }

@media (max-width: 575.98px) {
    .start-btn img {
        width: 20px;
        height: 20px;
        margin: 0 2px;
    }

    .start-btn span {
        margin: 0 2px;
    }

    .footer .footer-content .footer-content {
        width: 60%;
        margin: 0 3px;
    }

    .footer .footer-content .footer-btn {
        width: 40%;
    }
}

ul.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    font-size: 20px;
}

    ul.breadcrumb li {
        margin: 0 3px;
        font-weight: bold;
    }

        ul.breadcrumb li a {
            color: #fff;
            font-weight: normal;
        }
/* .input-icon {
  position: absolute;
  left: 13px;
  top: 16px;
  z-index: 115;
}

.input-icon img {
  width: 22px;
  height: 22px;
} */

.text-content p {
    margin-bottom: 0;
    margin: 30px 0 15px;
    font-style: normal;
    line-height: 1.6;
    letter-spacing: normal;
    color: #263238;
    font-size: 18px;
}

.text-content h2 {
    font-size: 30px;
    font-weight: 700;
    padding-bottom: 15px;
    margin-top: 30px;
    color: #404040;
}

.text-content h3 {
    font-size: 25px;
    font-weight: 700;
    margin: 5px 0;
    margin-top: 30px;
    margin-bottom: 20px;
    color: #404040;
    line-height: 30px;
}

.text-content h4 {
    font-size: 22px;
    font-weight: 700;
    margin: 0;
    margin-top: 30px;
    margin-bottom: 20px;
    color: #404040;
}

.text-content h5 {
    font-size: 18px;
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 20px;
    color: #404040;
}

.text-content h6 {
    font-size: 16px;
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 20px;
    color: #404040;
}

.text-content .blog_title {
    margin: 0;
    padding: 0;
}

.text-content ul {
    padding: 0 20px 0 0;
    margin: 0;
    list-style-type: none;
}

.text-content ol {
    padding: 0 20px 0 0;
    margin: 0;
}

    .text-content ol li {
        font-size: 16px;
        color: #404040;
        line-height: 32px;
        margin-bottom: 15px
    }

.text-content ul li {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
    flex-wrap: wrap;
    position: relative;
    padding-left: 20px;
    font-size: 18px;
    line-height: 32px;
    color: #404040;
}

    .text-content ul li:before {
        content: "";
        width: 6px;
        height: 6px;
        background: #294088;
        display: block;
        border-radius: 50%;
        margin-right: 10px;
        position: absolute;
        top: 15px;
        left: 0;
    }

.text-content img {
    border: 1px solid #eee;
    border-radius: 10px;
    background: #fff;
    padding: 5px;
}

.blank-page .header {
    height: auto !important;
    padding: 120px 0px 50px 0px !important;
    margin-bottom: 100px !important;
}
