/* Start Banner Section */
.banner {
    background-image: url(../../img/testimonial/banner-bg.webp);
    background-size: cover;
}

.banner .banner-container .breadcrumb li a {
    color: var(--black) !important;
}

.banner .breadcrumb li:first-child a {
    width: 18px;
    height: 18px;
}

/* End Banner Section */

/* Start Course Section */
.course .course-item h3 {
    border: 1px solid var(--darkGreyColor);
    padding: 2.5rem 2rem 1.5rem 1.2rem;
    line-height: 30px !important;
}

.course .course-item b {
    padding: 5px 10px;
    transition: 1s all;
}

.course .course-item b img {
    width: 13px;
    height: 10px;
    margin-left: 10px;
    transition: 1s all;
}

.course .course-item {
    margin-top: 3rem;
}

.course .course-item::before {
    content: "";
    background-image: url(../../img/topic/note-book.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 28px 28px;
    width: 50px;
    height: 50px;
    background-color: var(--lightGreyColor);
    position: absolute;
    top: -25px;
    left: 20px;
    transition: 0.5s all;
}

.course .course-item:hover:before {
    background-image: url(../../img/topic/white-book.svg),
        linear-gradient(90deg, var(--primaryColor) 0%, var(--greenColor) 100%);
    background-size: 100% 100%;
}

.course .course-item:hover b {
    background-color: var(--primaryColor);
    color: var(--white);
}

.course .course-item:hover img {
    filter: brightness(0) invert(1);
}

/* End Course Section */

/* Start Overview Section */
.overview {
    background-image: linear-gradient(180deg,
            var(--white) -41.9%,
            var(--white) 6.06%,
            var(--backgroundColor) 41.33%,
            var(--backgroundColor) 99.45%);
}

.overview .heading {
    margin-bottom: 2rem;
}

.overview .overview-detail .overview-head {
    border: 1px solid rgba(0, 0, 0, 0.13);
    border-radius: 20px;
    box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.1);
}

.overview .overview-detail .overview-head .head-item {
    color: var(--black);
    margin-right: 1rem;
}

.overview .overview-detail .overview-head .head-item:last-child {
    margin-right: 0;
}

.overview .overview-detail .overview-head .head-item.active {
    color: var(--primaryColor);
    font-weight: 600;
}

.overview .overview-list {
    margin-top: 2rem;
}

.overview .overview-item {
    backdrop-filter: blur(35px);
    background-color: rgba(255, 255, 255, 0.5);
}
.overview .overview-item ul{
    margin: 1rem 0 0;
}
.overview .overview-item p{
    line-height: 2;
}

.overview .overview-item h3 {
    font-size: 22px;
}

.overview .overview-item h4 {
    font-size: 20px;
}

.overview .overview-item .text::before,
.overview .overview-item ul li::before {
    content: "";
    background-image: url(../../img/topic/element.svg);
    background-size: 100% 100%;
    height: 22px;
    min-width: 22px;
    animation: rotation 2s linear infinite;
    position: absolute;
    top: 2px;
    left: -30px;
}

/* End Overview Section */

/* Start Advantage Section */
.advantage .advantage-list {
    counter-reset: advantage-counter;
}

.advantage .owl-carousel {
    position: static;
}

.advantage .advantage-item {
    width: 145px;
    height: 145px;
    background-color: #163c92;
}

.advantage .owl-item:not(.cloned) {
    counter-increment: advantage-counter;
}

.advantage .advantage-item p {
    opacity: 0;
    max-height: 0;
}

.advantage .advantage-item p::after {
    content: counter(advantage-counter, decimal-leading-zero);
    font-size: 25px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.3);
    line-height: 1;
    margin-top: 1rem;
}

.advantage .owl-stage {
    display: flex;
    justify-content: center;
    align-items: center;
}

.advantage .owl-item {
    display: flex;
    justify-content: center;
}

.advantage .owl-item.active.center {
    width: auto !important;
}

.advantage .owl-item.active.center .advantage-item {
    width: 300px;
    height: 300px;
    background-image: linear-gradient(90deg,
            var(--primaryColor) 0%,
            var(--greenColor) 100%);
    padding: 2rem 2rem 1rem !important;
}

.advantage .owl-item.active.center .advantage-item h3 {
    font-size: 16px !important;
}

.advantage .owl-item.active.center .advantage-item p {
    opacity: 1;
    max-height: fit-content;
    margin-top: 10px;
}

.advantage .advantage-list .owl-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100px;
    margin: 1.8rem auto 0;
}

.advantage .advantage-list .owl-nav .active {
    border: 1px solid var(--white) !important;
}

.advantage .advantage-list .owl-nav .owl-prev span,
.advantage .advantage-list .owl-nav .owl-next span {
    display: none;
}

.advantage .advantage-list .owl-nav .owl-prev,
.advantage .advantage-list .owl-nav .owl-next {
    display: flex;
    background-image: url(../../img/topic/prev.svg);
    background-size: 15px 10px;
    background-repeat: no-repeat;
    background-position: center;
    width: 40px;
    height: 40px;
    border-radius: 50px;
    background-color: #0d2b6b;
    border: 1px solid var(--primaryColor);
    outline: none;
}

.advantage .advantage-list .owl-nav .owl-next {
    transform: rotate(180deg);
    margin-right: 0;
}

/* End Advantage Section */

/* Start Delivery Section */
.delivery .nav-tabs .nav-link {
    border-radius: 0;
    padding: 10px 12px;
    transition: 0.5s all;
    color: var(--black);
    cursor: pointer;
}

.delivery .nav-tabs .nav-link.active {
    background-color: var(--darkBlue);
    color: var(--white);
}

.delivery .delivery-info {
    margin-top: 2rem;
}

.delivery .buttons .btn-blue {
    min-width: 142px;
}

/* End Delivery Section */

/* Start Importance Section */
.importance {
    padding-top: 1rem;
}

.importance .importance-content p {
    text-align: left !important;
}

.importance .importance-info {
    margin-top: 2rem;
}

.importance .importance-detail {
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.08);
}

.importance .importance-detail .buttons {
    margin-bottom: -1.5rem;
}

.importance .importance-detail::before {
    content: "";
    width: 223px;
    height: 147px;
    background-image: url(../../img/topic/laptop.webp);
    background-size: 100% 100%;
    margin-bottom: 5px;
}

.importance .detail-content {
    padding: 2rem 1rem 1rem 0.6rem;
}

.importance .importance-detail h3 {
    font-size: 15px;
}

.importance .fact-list {
    margin-top: 2rem;
    box-shadow: 0px 5px 30px 0px rgba(0, 0, 0, 0.1);
    width: 303px;
}

.importance .fact-item p {
    line-height: 27px;
    width: calc(100% - 132px);
}

.importance .fact-item {
    border-bottom: 1px solid var(--greyColor);
}

.importance .fact-item:last-child {
    border-bottom: none;
}

.importance .fact-item .fact-info {
    border-radius: 2px;
    padding: 0.9rem;
    clip-path: polygon(0 0, 100% 0, 95% 100%, 5% 100%);
}

.importance .fact-item .fact-info strong {
    color: transparent;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 1px var(--white);
    font-size: 20px;
    line-height: 27px;
}

/* End Importance Section */

/* Start Success Section */
.success .success-item span {
    width: 33px;
    height: 33px;
}

.success .success-item {
    padding: 1.2rem 1.5rem;
    border-radius: 15px;
}

.success .success-detail p::before {
    content: "";
    width: 50px;
    height: 58px;
    background-image: url(../../img/topic/delegate.svg);
    background-size: 100% 100%;
    margin-bottom: 5px;
}

.success .success-detail .buttons .btn-blue {
    background-image: linear-gradient(90deg,
            var(--primaryColor) 0%,
            var(--greenColor) 100%);
}

/* End Success Section*/


/* Start Help Section */
.help {
    padding: 2rem 1.5rem;
}

/* End Help Section */

/* Start FAQ section */

.faq .accordion-button::after {
    content: "";
    background-image: url(../../img/about/black-arrow.svg);
    background-size: 100% 100%;
    margin-top: 5px;
    transition: 0.7s all;
}

.faq .accordion-flush .accordion-item {
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
    border-radius: 8px 30px 30px 8px;
    border: 1px solid var(--darkGreyColor) !important;
}

.faq .accordion-button:not(.collapsed)::after {
    transform: rotate(90deg);
    filter: invert(28%) sepia(98%) saturate(3435%) hue-rotate(222deg) brightness(95%) contrast(101%);
}

.faq .accordion-flush .accordion-item .accordion-button:not(.collapsed) {
    border-bottom: 1px solid var(--darkGreyColor) !important;
    padding-bottom: 1.3rem !important;
}

.faq .accordion-body {
    padding: 1rem 0 0 0 !important;
}

.faq .accordion-button {
    padding: 0 !important;
    color: var(--black);
}

.faq .accordion-flush .accordion-item.active {
    border: 1px solid var(--primaryColor) !important;
    border-radius: 8px 30px 30px 30px;
}


/* End FAQ Section */

/* Start Client Section */
.client .heading span:nth-of-type(1) {
    margin-right: 1.2rem;
    line-height: 2.8;
}

.client .heading span:nth-of-type(2) {
    font-size: 60px;
    color: #dcdfe0;
}

.client-text {
    bottom: 0;
    right: 4px;
    display: flex;
}

.client-text strong {
    font-size: 60px;
    -webkit-text-stroke: 1px var(--black);
    color: transparent;
    display: flex;
}

.client .client-list span img {
    object-fit: scale-down;
}

.client .client-list span {
    border-right: 1px solid var(--darkGreyColor);
    border-bottom: 1px solid var(--darkGreyColor);
}

.client .client-list span:nth-child(2n) {
    border-right: 1px solid transparent;
}

.client .client-list span:last-child strong {
    font-size: 22px;
    color: transparent;
    -webkit-text-stroke: 1.5px var(--primaryColor);
}

.client .client-list span:last-child,
.client .client-list span:nth-child(9) {
    border-bottom: none;
}

/* End Client Section */

/* Start Review Section */
.review .review-list .review-item {
    border: 1px solid var(--darkGreyColor);
    margin-top: 2.3rem;
    padding-top: 4.3rem !important;
}

.review .review-list .review-item .review-info {
    border-radius: 15px;
    padding: 0.6rem 1.2rem;
    width: 278px;
    margin-top: -6rem;
}

.review .review-list .review-item>p {
    margin-top: 1.5rem;
}

.review .review-list .review-item .review-info span {
    width: 55px;
    height: 55px;
}

.review .review-list .review-item .review-info span::after {
    content: "";
    background-image: url(../../img/topic/quote.svg),
        linear-gradient(90deg, var(--primaryColor) 0%, var(--greenColor) 100%);
    background-size: 18px 15px, 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    min-width: 47px;
    height: 47px;
    border-radius: 50px;
    margin-left: -1rem;
}

.review .review-list .review-item .review-info .review-content {
    width: calc(100% - 102px);
}

.review .review-list .review-item .review-info .review-content p {
    color: #999696;

}

.review .review-list .review-item>p::before {
    content: "";
    background-image: url(../../img/home/stars.svg);
    background-size: 100% 100%;
    width: 110px;
    height: 20px;
    margin-bottom: 10px;
    display: flex;
}

.review .review-list .owl-dots {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.review .review-list .owl-dots .owl-dot {
    background-color: var(--darkGreyColor) !important;
    width: 15px;
    height: 15px;
    border-radius: 50px;
    margin-right: 10px;
}

.review .review-list .owl-dots .owl-dot.active {
    background-color: var(--primaryColor) !important;
}

.review .review-list .owl-dots .owl-dot:last-child {
    margin-right: 0;
}

.owl-item.center .review-item .review-info {
    background-color: var(--darkBlue) !important;
}

.owl-item.center .review-item .review-info .review-content strong {
    color: var(--white);
}

.owl-item.center .review-item .review-info .review-content p {
    color: var(--lightGreyColor);
}

/* End Review Section */

@media screen and (min-width: 768px) {

    /* Start Course Section */
    .course .course-item {
        width: 47%;
        margin-right: 1.8rem;
    }

    .course .course-item:nth-child(2n) {
        margin-right: 0;
    }

    .course .course-item:last-child {
        margin-right: 0 !important;
    }

    /* End Course Section */

    /* Start Overview Section */
    .overview {
        padding-bottom: 9.8rem !important;
    }

    .overview .overview-detail .overview-head {
        width: fit-content;
        padding: 1rem 3.7rem !important;
        border-radius: 50px;
        z-index: 1;
    }

    .overview .overview-detail .overview-head .head-item {
        margin-right: 2.5rem;
    }

    .overview .overview-list {
        margin-top: -2rem;
    }

    .overview .overview-item {
        padding: 4.5rem 3rem 2.2rem !important;
        height: 370px;
        overflow-y: scroll;
    }

    /* End Overview Section */

    /* Start Advantage Section */
    .advantage {
        background-image: url(../../img/topic/advantage-bg.webp);
        background-size: cover;
        background-repeat: no-repeat;
        background-color: transparent;
        background-position: center;
        margin-top: -11rem;
    }

    .advantage .advantage-container {
        margin-top: 6rem;
    }

    /* End Advantage Section */

    /* Start Delivery Section */
    .delivery .delivery-content ul {
        width: 72%;
    }

    .delivery .delivery-info span {
        width: 26%;
        top: 0;
        left: 0;
    }

    /* End Delivery Section */

    /* Start Importance Section */
    .importance .importance-detail {
        width: 280px;
    }

    .importance .importance-detail::after {
        content: "";
        width: 45px;
        height: 45px;
        background-color: var(--backgroundColor);
        border-radius: 50%;
        box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15);
        background-image: url(../../img/topic/lecture.svg);
        background-size: 25px 23px;
        background-repeat: no-repeat;
        background-position: center;
        position: absolute;
        top: -19px;
        right: -15px;
    }

    .importance .fact-list {
        width: 315px;
        margin-left: -8px;
    }

    .importance .fact-list::before {
        content: "";
        width: 45px;
        height: 45px;
        background-color: var(--backgroundColor);
        border-radius: 50%;
        box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15);
        background-image: url(../../img/topic/success.svg);
        background-size: 25px 23px;
        background-repeat: no-repeat;
        background-position: center;
        position: absolute;
        top: -33px;
        right: -30px;
        z-index: 1;
    }

    .importance .fact-item p {
        padding: 14px 14px 14px 24px !important;
        font-size: 13px;
    }

    /* End Importance Section */

    /* Start Success Section */
    .success .success-item {
        width: 46%;
    }

    /* End Success Section */

    /* Start FAQ section */
    .faq .accordion-flush {
        counter-reset: section;
    }

    .faq .accordion-item::before {
        content: counter(section, decimal-leading-zero);
        counter-increment: section;
        background-color: var(--backgroundColor);
        height: 40px;
        min-width: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 500;
        position: absolute;
        left: -17px;
        top: 11px;
    }

    .faq .accordion-item {
        padding: 1.3rem 1.3rem 1.3rem 2.8rem !important;
    }

    .faq .accordion-item.active::before {
        background-image: linear-gradient(90deg, var(--primaryColor) 0%, var(--greenColor) 100%);
        color: var(--white);
    }

    .faq .faq-container {
        width: 95%;
        margin: 0 auto;
    }

    /* End FAQ Section */

    /* Start Client Section */
    .client .heading span:nth-of-type(1) {
        font-size: 35px;
    }

    .client .heading span:nth-of-type(2) {
        font-size: 100px;
    }

    .client-text strong {
        font-size: 100px;
    }

    .client .client-list span {
        width: 25% !important;
    }

    .client .client-list span:first-child {
        margin-left: 11rem;
        border-left: 1px solid var(--darkGreyColor);
    }

    .client .client-list span:nth-child(2n) {
        border-right: 1px solid var(--darkGreyColor);
    }

    .client .client-list span:nth-child(1),
    .client .client-list span:nth-child(2),
    .client .client-list span:nth-child(3),
    .client .client-list span:nth-child(4) {
        border-top: 1px solid var(--darkGreyColor);
    }

    .client .client-list span:nth-child(4),
    .client .client-list span:nth-child(8) {
        border-left: 1px solid var(--darkGreyColor);
    }

    .client .client-list span:nth-child(9) {
        border-bottom: 1px solid var(--darkGreyColor);
    }

    .client .client-list span:last-child {
        border-right: none;
    }

    .client .client-list span:last-child b {
        font-size: 14px;
    }

    .client .client-list span:last-child strong {
        font-size: 30px;
    }

    /* End Client Section */

    /* Start Review Section */
    .review .review-list .review-item .review-info {
        width: 286px;
    }

    /* End Review Section */
}

@media screen and (min-width: 1024px) {

    /* Start Banner Section */
    .banner .banner-container h1::after {
        content: "";
        background-image: url(../../img/testimonial/arrow.webp);
        background-size: 100% 100%;
        min-width: 85px;
        height: 82px;
        margin-left: 3rem;
    }

    /* End Banner Section */

    /* Start Course Section */
    .course .course-item {
        width: 31%;
    }

    .course .course-item:nth-child(2n) {
        margin-right: 2rem;
    }

    .course .course-item:nth-child(3n) {
        margin-right: 0;
    }

    /* End Course Section */

    /* Start Overview Section */
    .overview {
        padding: 3rem 4rem;
    }

    .overview-content>ul {
        width: auto;
        margin-top: 5rem;
    }

    .overview-content>ul li {
        width: 50px;
        height: 50px;
        border: 1px solid var(--darkBlue);
        font-size: 25px;
        background-color: var(--white);
        color: var(--darkBlue);
        cursor: pointer;
    }

    .overview-content>ul li.active {
        background-color: var(--primaryColor);
        color: var(--white);
        border: none;
    }

    .overview-content>ul li.active::after {
        content: "";
        border: 1px solid var(--primaryColor);
        width: 62px;
        position: absolute;
        left: 50px;
    }

    .overview .overview-detail {
        width: 88%;
    }

    .overview .overview-item h3 {
        font-size: 25px;
    }

    /* End Overview Section */

    /* Start Advantage Section */
    .advantage .advantage-container {
        margin-top: 9rem;
    }

    .advantage .advantage-list .owl-nav {
        position: absolute;
        left: 0;
        right: 0;
        margin: 0 auto;
    }

    .advantage .owl-carousel .owl-stage {
        padding: 3rem 0;
    }

    .advantage .advantage-item p::after {
        font-size: 50px;
        line-height: 1.5;
    }

    .advantage .advantage-item {
        width: 160px;
        height: 160px;
    }

    .advantage .advantage-item h3 {
        font-size: 16px !important;
    }

    .advantage .advantage-list::before {
        content: "";
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        width: 100%;
        position: absolute;
        left: 0;
    }

    .advantage .advantage-list .owl-nav {
        width: 93%;
        bottom: 34%;
    }

    .advantage .advantage-list .owl-nav .owl-prev {
        margin-right: 0;
    }

    .advantage .owl-item.active.center .advantage-item {
        width: 360px;
        height: 360px;
        padding: 5rem 2rem 0.6rem !important;
    }

    .advantage .owl-item.active.center .advantage-item::after {
        content: "";
        background-image: url(../../img/topic/dotted-circle.webp);
        background-size: 100% 100%;
        width: 445px;
        height: 445px;
        position: absolute;
        top: -42px;
        z-index: -1;
        animation: rotation 30s linear infinite;
    }

    /* End Advantage Section */

    /* Start Delivery Section */
    .delivery .nav-item b::after {
        content: "";
        width: 30px;
        position: absolute;
        height: 30px;
        bottom: -40px;
        border-top-color: var(--darkBlue) !important;
        border: 20px solid transparent;
        right: 0px;
        opacity: 0;
    }

    .delivery .nav-item b.active::after {
        opacity: 1;
    }

    .delivery .delivery-content li {
        width: fit-content !important;
    }

    .delivery .delivery-content b {
        text-align: center;
    }

    .delivery .delivery-info span {
        width: 20%;
    }

    .delivery .delivery-content ul {
        width: 80%;
    }

    .delivery .delivery-info {
        width: 72%;
        margin-right: 2rem;
    }

    /* End Delivery Section */

    /* Start Importance Section */
    .importance .importance-detail .buttons .btn-blue {
        font-size: 14px;
    }

    /* End Importance Section */

    /* Start Successs Section */
    .success .success-detail::before {
        content: "";
        width: 785px;
        height: 80px;
        background-image: url(../../img/topic/line-dots.webp);
        background-size: 100% 100%;
        margin-left: 1.5rem;
    }

    .success .success-item {
        width: 30%;
    }

    .success .success-detail p {
        width: 88%;
    }

    /* End Success Section */

    /* Start Help Section */
    .help .help-container {
        background-image: linear-gradient(270deg, #2c67f2 0%, #2c67f2 100%),
            linear-gradient(104.69deg, #3cedb7 57.59%, #2c67f2 100.63%);
        background-size: 70% 100%, 100% 100%;
        background-repeat: no-repeat;
        padding: 2rem 3rem !important;
    }


    .help .help-container::before,
    .help .help-container::after {
        content: "";
        background-image: linear-gradient(124deg,
                #3cedb7 -39.03%,
                #2c67f2 80.97%);
        position: absolute;
        height: 100px;
        width: 138px;
        bottom: 0;
        right: 30%;
        opacity: 0;
        transform: translateX(100%);
        transition: transform 0.8s ease, opacity 0.5s ease;
        transition-delay: 0.5s;
    }

    .help .help-container::after {
        height: 56px;
        width: 166px;
        right: 44.4%;

    }

    .help .help-container.animate::before,
    .help .help-container.animate::after {
        transform: translateX(0);
        opacity: 1;
    }

    .help .help-container.animate::after {

        transition-delay: 1s;
    }

    /* End Help Section */

    /* Start FAQ Section */
    .faq .faq-container {
        width: 912px;
    }

    /* End FAQ Section */


    /* Start Client Section */
    .client .client-content,
    .client .client-list {
        width: 50%;
    }

    .client .client-content p {
        width: 450px;
    }

    .client .client-list span:first-child {
        margin-left: 7.5rem;
    }

    .client .client-list span:last-child {
        width: 30% !important;
    }

    .client .client-list span {
        padding: 1.5rem 0.5rem !important;
    }

    /* End Client Section */

    /* Start Review Section */
    .review .review-container {
        background-image: url(../../img/topic/review-bg.webp);
        background-size: 100% 100%;
        padding: 4.8rem 0 4rem;
    }

    .review .review-list .owl-dots {
        margin-top: 2.8rem;
    }

    .review .review-list .review-item .review-info {
        width: 330px;
    }

    /* End Review Section */
}

@media screen and (min-width: 1366px) {

    /* Start Banner Section */
    .banner {
        background-size: 100% 100%;
    }

    .banner .banner-container h1 {
        font-size: 50px;
    }

    /* End Banner Section */

    /* Start Course Section */

    .course .course-container {
        width: 88%;
    }

    /* End Course Section */

    /* Start Overview Section */
    .overview {
        padding: 3rem 5rem;
    }

    .overview .overview-detail {
        width: 91%;
    }

    /* End Overview Section */

    /* Start Advantage Section */
    .advantage {
        background-size: 100% 100%;
    }

    .advantage .advantage-list .owl-nav {
        width: 87%;
    }

    .advantage .advantage-item {
        width: 180px;
        height: 180px;
    }

    /* End Advantage Section */

    /* Start Delivery Section */
    .delivery .delivery-content li {
        width: 240px !important;
    }

    .delivery .delivery-info {
        width: 67%;
        margin-right: 6.2rem;
    }

    /* End Delivery Section */

    /* Start Importance Section */
    .importance .importance-content {
        width: 45%;
    }

    .importance .importance-info {
        width: 52%;
    }

    /* End Importance Section */

    /* Start Success Section */
    .success .success-container {
        width: 88%;
    }

    /* End Success Section */

    /* Start Help section */
    .help .help-container {
        background-size: 78% 100%, 100% 100%;
    }

    .help .help-container::before {
        right: 22%;
    }

    .help .help-container::after {
        right: 33.5%;
    }

    /* End Help Section */

    /* Start Client Section */
    .client .heading span:nth-of-type(1) {
        font-size: 50px;
        line-height: 1;
    }

    .client .heading span:nth-of-type(2) {
        font-size: 130px;
        line-height: 1;
    }

    .client-text strong {
        font-size: 130px;
    }

    .client-text {
        bottom: -32px;
    }

    .client .client-content p {
        width: 510px;
    }

    .client .client-list span:first-child {
        margin-left: 9.3rem;
    }

    .client .client-list span:last-child strong {
        font-size: 50px;
    }

    .client .client-list span:last-child {
        padding: 1.5rem 1rem;
        line-height: 1;
    }

    /* End Client Section */
}

@media screen and (min-width: 1500px) {

    /* Start Advantage Section */
    .advantage .advantage-container {
        position: relative;
    }

    .advantage .advantage-list .owl-nav {
        width: 100%;
        bottom: 40%;
    }

    /* End Advantage Section */
}

@media screen and (min-width: 1900px) {}