/**** Basic setup here *****/
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@200;300;400;500;600;700&amp;family=Nunito+Sans:wght@300;400;600;700;900&amp;display=swap");

:root {
    --main-bg-color: #FF7F50;
    --main-shadow-color:#feece7;
    --alternative-bg-color: #008080;
    --text-color: #000000;
    --text-faint-color: #555555;
    --bg-color:#ffffff;
    --faq-background-color:#b6d9d9;
    --faq-border-color: #b6d9d9;
    --button-hover-color: rgba(253, 147, 107, 0.38);
    --button-pill-hover:#FD936B61;
    --button-text-color:#FFFFFF;
}

* {
    margin: 0;
    padding: 0;
}

body {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-family: 'Nunito Sans', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
}

.decoration {
    text-decoration: none !important;
}

a, span, i, p {
    display: inline-block;
    text-decoration: none;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* header */
.header {
    display: block;
    width: 100%;
    position: relative;
    z-index: 101;
    padding: 15px;
}

.header .item-left {
    flex: 0 0 17%;
}

.logo img {
    margin: auto;
    width: 130px;
}

.header .logo a {
    font-size: 30px;
    color: var(--text-color);
    font-weight: 700;
    text-decoration: none;
}

.header .item-center {
    flex: 0 0 66%;
}

.header .item-right {
    flex: 0 0 17%;
    display: flex;
    justify-content: flex-end;
}

.header .item-right a {
    text-decoration: none;
    display: inline-block;
    margin-left: 10px;
    font-size: 15px;
    font-weight: 700;
    color: var(--text-color);
    position: relative;
    text-transform: capitalize;
    transition: color 0.3s ease;
    margin-top: 12px;
}

.header .menu > ul > li {
    display: inline-block;
    line-height: 50px;
    margin-left: 25px;
}

.header .menu > ul > li > a {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-color);
    position: relative;
    text-transform: capitalize;
    transition: color 0.3s ease;
}

.header .menu > ul > li .sub-menu {
    position: absolute;
    z-index: 500;
    background-color: var(--bg-color);
    box-shadow: inset 0 0em 0em rgb(0 0 0 / 10%), 0.3em 0.3em 1em rgb(0 0 0 / 30%);
    padding: 20px 30px;
    transition: all 0.5s ease;
    margin-top: 25px;
    opacity: 0;
    visibility: hidden;
}

@media (min-width: 992px) {
    .header .menu > ul > li.menu-item-has-children:hover .sub-menu {
        margin-top: 0;
        visibility: visible;
        opacity: 1;
    }
}

.header .menu > ul > li .sub-menu > ul > li {
    line-height: 1;
}

.header .menu > ul > li .sub-menu > ul > li > a {
    display: inline-block;
    padding: 10px 0;
    font-size: 15px;
    color: var(--text-faint-color);
    transition: color 0.3s ease;
    text-decoration: none;
    text-transform: capitalize;
}

.header .menu > ul > li .single-column-menu {
    min-width: 280px;
    max-width: 350px;
}

.header .menu > ul > li .sub-menu.mega-menu > .list-item > ul > li {
    line-height: 1;
    display: block;
}

.header .menu > ul > li .sub-menu.mega-menu > .list-item > ul > li > a {
    padding: 10px 0;
    display: inline-block;
    font-size: 15px;
    color: var(--text-faint-color);
    transition: color 0.3s ease;
}

.header .menu > ul > li .sub-menu.mega-menu {
    left: 50%;
    transform: translateX(-50%);
}

.header .menu > ul > li .sub-menu.mega-menu-column-4 {
    max-width: 1100px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding: 20px 15px;
}

.header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item {
    flex: 0 0 25%;
    padding: 0 15px;
}

.header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item .title {
    font-size: 16px;
    color: var(--text-color);
    font-weight: 500;
    line-height: 1;
    padding: 10px 0;
}

.header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item .title:hover {
    color: var(--main-bg-color);
}

.header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item.text-center .title {
    text-align: center;
}

.header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item img {
    max-width: 100%;
    width: 100%;
    vertical-align: middle;
    margin-top: 10px;
}

.header .menu > ul > li .sub-menu.mega-menu > .list-item > ul > li > a:hover,
.header .menu > ul > li .sub-menu > ul > li > a:hover,
.header .item-right a:hover,
.header .menu > ul > li:hover > a {
    color: var(--main-bg-color);
    text-decoration: none;
}

/* banner section */

.mobile-menu-head,
.mobile-menu-trigger {
    display: none;
}

/*responsive*/
@media (max-width: 991px) {

    .header .item-center {
        order: 3;
        flex: 0 0 100%;
    }

    .header .item-left,
    .header .item-right {
        flex: 0 0 auto;
    }

    .v-center {
        justify-content: space-between;
    }

    .header .mobile-menu-trigger {
        display: flex;
        height: 30px;
        width: 30px;
        margin-left: 15px;
        cursor: pointer;
        align-items: center;
        justify-content: center;
    }

    .header .mobile-menu-trigger span {
        display: block;
        height: 2px;
        background-color: var(--text-color);
        width: 24px;
        position: relative;
    }

    .header .mobile-menu-trigger span:before,
    .header .mobile-menu-trigger span:after {
        content: '';
        position: absolute;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: var(--text-color);
    }

    .header .mobile-menu-trigger span:before {
        top: -6px;
    }

    .header .mobile-menu-trigger span:after {
        top: 6px;
    }

    .header .item-right {
        align-items: center;
    }

    .header .menu {
        position: fixed;
        width: 320px;
        background-color: var(--bg-color);
        left: 0;
        top: 0;
        height: 100%;
        overflow: hidden;
        transform: translate(-100%);
        transition: all 0.5s ease;
        z-index: 1099;
    }

    .header .menu.active {
        transform: translate(0%);
    }

    .header .menu > ul > li {
        line-height: 1;
        margin: 0;
        display: block;
    }

    .header .menu > ul > li > a {
        line-height: 50px;
        height: 50px;
        padding: 0 50px 0 15px;
        display: block;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    .header .menu > ul > li > a i {
        position: absolute;
        height: 50px;
        width: 50px;
        top: 0;
        right: 0;
        text-align: center;
        line-height: 50px;
        transform: rotate(-90deg);
    }

    .header .menu .mobile-menu-head {
        display: flex;
        height: 50px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        justify-content: space-between;
        align-items: center;
        position: relative;
        z-index: 501;
        position: sticky;
        background-color: var(--bg-color);
        top: 0;
    }

    .header .menu .mobile-menu-head .go-back {
        height: 50px;
        width: 50px;
        border-right: 1px solid rgba(0, 0, 0, 0.1);
        cursor: pointer;
        line-height: 50px;
        text-align: center;
        color: var(--text-color);
        font-size: 16px;
        display: none;
    }

    .header .menu .mobile-menu-head.active .go-back {
        display: block;
    }

    .header .menu .mobile-menu-head .current-menu-title {
        font-size: 15px;
        font-weight: 500;
        color: var(--text-color);
    }

    .header .menu .mobile-menu-head .mobile-menu-close {
        height: 50px;
        width: 50px;
        border-left: 1px solid rgba(0, 0, 0, 0.1);
        cursor: pointer;
        line-height: 50px;
        text-align: center;
        color: var(--text-color);
        font-size: 25px;
    }

    .header .menu .menu-main {
        height: 100%;
        overflow-x: hidden;
        overflow-y: auto;
    }

    .header .menu > ul > li .sub-menu.mega-menu,
    .header .menu > ul > li .sub-menu {
        visibility: visible;
        opacity: 1;
        position: absolute;
        box-shadow: none;
        margin: 0;
        padding: 15px;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        padding-top: 65px;
        max-width: none;
        min-width: auto;
        display: none;
        transform: translateX(0%);
        overflow-y: auto;
    }

    .header .menu > ul > li .sub-menu.active {
        display: block;
    }

    @keyframes slideLeft {
        0% {
            opacity: 0;
            transform: translateX(100%);
        }
        100% {
            opacity: 1;
            transform: translateX(0%);
        }
    }
    @keyframes slideRight {
        0% {
            opacity: 1;
            transform: translateX(0%);
        }
        100% {
            opacity: 0;
            transform: translateX(100%);
        }
    }
    .header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item img {
        margin-top: 0;
    }

    .header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item.text-center .title {
        margin-bottom: 20px;
    }

    .header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item.text-center:last-child .title {
        margin-bottom: 0px;
    }

    .header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item {
        flex: 0 0 100%;
        padding: 0px;
    }

    .header .menu > ul > li .sub-menu > ul > li > a,
    .header .menu > ul > li .sub-menu.mega-menu > .list-item > ul > li > a {
        display: block;
    }

    .header .menu > ul > li .sub-menu.mega-menu > .list-item > ul {
        margin-bottom: 15px;
    }

    .menu-overlay {
        position: fixed;
        background-color: rgba(0, 0, 0, 0.5);
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        z-index: 1098;
        visibility: hidden;
        opacity: 0;
        transition: all 0.5s ease;
    }

    .menu-overlay.active {
        visibility: visible;
        opacity: 1;
    }
}

/*** Banner section *****/
.button {
    background: var(--main-bg-color);
    padding: 15px 25px;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-color);
    text-transform: capitalize;
    border-radius: 10px;
    text-align: center;
}


.button:hover {
    background: var(--button-hover-color);
    text-decoration: none;
    color: var(--text-color);
}

section.banner {
    overflow: hidden;
}

section.banner .shape {
    width: 57%;
    position: absolute;
    right: -275px;
    top: -50px;
    z-index: -1;
}

section.banner .shape svg {
    color: var(--alternative-bg-color);
}

section.banner .banner-left h1 {
    font-size: 56px;
    font-weight: 900;
}

section.banner .banner-left h1 span {
    color: var(--alternative-bg-color);
}

section.banner .banner-left .sub-title {
    font-size: 18px;
    line-height: 1.44;
    margin: 30px 0px;
    color: var(--text-color);
}

section.banner .banner-left p {
    font-size: 22px;
    color: var(--alternative-bg-color);
}

section.banner .banner-left p strong {
    color: var(--text-color);
    font-size: 24px;
    font-weight: 900;
}

section.banner .banner-left .brand-logo img {
    margin-right: 20px;
    width: 100px;
}

section.banner .button {
    width: 250px;
    margin-top: 30px;
}

section.banner .banner-right {
    text-align: center;
    padding-top: 60px;
}

section.banner .banner-right .intro-img {
    width: 80%;
}

section.banner .banner-right .float-img {
    position: absolute;
}

section.banner .banner-right .img-1 {
    z-index: 2;
    bottom: 20px;
    left: 50px;
}

section.banner .banner-right .img-2 {
    bottom: 0;
    right: -75px;
}

section.banner .banner-right .img-3 {
    bottom: -25px;
    z-index: 99;
    left: 189px;
}

section.banner .banner-right .img-4 {
    top: 20%;
    right: -120px;
}

section.banner .banner-right .img-5 {
    top: -75px;
    right: 135px;
}

section.banner .banner-right .img-6 {
    bottom: -100px;
    left: 60px;
}

/***** Client section******/
.section-title {
    text-align: center;
}

.section-title h2 {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 5px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    position: absolute;
    bottom: -5px;
    left: 20%;
    height: 3px;
    width: 50%;
    background: var(--main-bg-color);
}

.section-title span {
    display: block;
    color: var(--alternative-bg-color);
    font-size: 16px;
}

.client {
    /*margin-top: 100px;*/
    padding-top: 100px;
}

.client .counter-wrapper {
    margin-top: 100px;
    margin-bottom: 100px;
}

.client .counter-content {
    position: relative;
}

.client .counter-content img {
    position: absolute;
    top: -100px;
    padding: 20px;
    z-index: 999;
}

.client .counter-box {
    margin-top: 10px;
    text-align: center;
    border-radius: 15px;
    background: transparent;
    padding: 30px;
    position: relative;
    overflow: hidden;
}

.client .counter-box h2 {
    font-size: 48px;
    color: var(--main-bg-color);
    margin: 20px 0px;
    font-weight: 700;
}

.client .counter-box span {
    font-size: 18px;
    font-weight: 600;
}

/**** Service test section ****/
.test-service {
    margin: 100px 0px;
}

.test-service .section-title h2 {
    font-weight: 900;
}

.test-service .email-box {
    background: var(--main-bg-color);
    padding: 30px;
    border-radius: 15px;
    width: 750px;
    margin: 50px auto 0px auto;
    text-align: center;
}

.test-service .email-box input {
    width: 68%;
    border-radius: 10px;
    padding: 15px;
    border: none;
    outline: none;
}

.test-service .email-box input::-webkit-input-placeholder {
    color: var(--text-color);
}

.test-service .email-box input:-ms-input-placeholder {
    color: var(--text-color);
}

.test-service .email-box input::-ms-input-placeholder {
    color: var(--text-color);
}

.test-service .email-box input::placeholder {
    color: var(--text-color);
}

.test-service .email-box .button {
    width: 27%;
    margin-left: 10px;
}

.test-service .email-box .button i {
    margin-right: 10px;
    font-size: 21px;
}

/***** Tab section *******/
section.tab {
    margin-bottom: 100px;
}

section.tab .setiom-title h2 {
    font-weight: 700;
    margin-bottom: 50px;
}

section.tab .mobile-tab {
    display: none;
}

section.tab nav {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

section.tab nav .nav-tabs {
    border: none;
}

section.tab nav .nav-tabs .nav-link {
    color: var(--text-color);
    font-size: 21;
    font-weight: 900;
    text-transform: uppercase;
    border: none;
    padding: 20px 0px;
    margin: 0px 20px;
}

section.tab nav .nav-tabs .nav-link.active {
    border-bottom: 3px solid var(--main-bg-color);
    color: var(--main-bg-color);
}

section.tab .single-tab {
    margin-top: 0px;
}

section.tab .single-tab img {
    width: 60%;
}

section.tab .single-tab span {
    font-size: 18px;
    color: var(--main-bg-color);
    font-weight: 700;
    margin-top: 30px;
}

section.tab .single-tab h2 {
    font-size: 24px;
    font-weight: 900;
    margin: 20px 0px;
}

section.tab .single-tab p {
    color: var(--text-color);
    line-height: 1.5;
    margin-top: 10px;
    font-size: 16px;
}

section.tab .single-tab .button {
    width: 200px;
    margin-top: 20px;
}

/*****Pricing section*****/
section.pricing {
    padding: 50px 0px;
}

section.pricing .section-title {
    margin-bottom: 50px;
}

section.pricing .price-wrapper {
    background: #ebf5fa;
    border-radius: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    text-align: center;
    padding: 40px;
    font-size: 1em;
    color: var(--text-faint-color);
    font-weight: 800;
}

section.pricing .price-wrapper .product {
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

section.pricing .price-wrapper .product #period {
    color: var(--main-bg-color);
}

section.pricing .price-wrapper .product #pageviews {
    text-align: center;
    outline: none;
    padding: 10px;
    background: var(--bg-color);
    width: 350px;
    font-size: 32px;
    color: var(--text-color);
    border: 1px solid var(--main-bg-color) 52;
    border-radius: 5px;
}

section.pricing .price-wrapper .product .purces-title {
    font-size: 12px;
    font-weight: 400;
    color: var(--text-color);
}

section.pricing .price-wrapper .product .button {
    margin-top: 50px;
}

section.pricing .price-wrapper .product i {
    font-size: 12px;
    color: var(--text-color);
    margin-top: 10px;
    font-weight: 400;
}

section.pricing .price-wrapper .right .price {
    color: black;
    font-size: 58px;
    margin-right: 5px;
}

section.pricing .price-wrapper .right .total {
    font-size: 14px;
    color: var(--text-color);
    font-weight: 400;
}

section.pricing .toggle-container {
    text-align: center;
    color: var(--text-faint-color);
    font-size: 0.95em;
    padding: 40px;
}

section.pricing .toggle-container .month {
    color: var(--main-bg-color);
    font-size: 18px;
}

section.pricing .toggle-container .year {
    color: var(--main-bg-color);
    font-weight: 600;
    font-size: 18px;
}

section.pricing .toggle-container .show {
    display: none;
}

section.pricing .toggle-container .switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 25px;
    margin: 0 15px;
}

section.pricing .toggle-container .switch .slide {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: white;
    -webkit-transition: 0.2s;
    transition: 0.2s;
}

section.pricing .toggle-container .switch .slide:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 6px;
    bottom: 3px;
    background-color: var(--main-bg-color);
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

section.pricing .toggle-container .switch .slide.round {
    border-radius: 34px;
}

section.pricing .toggle-container .switch .slide.round:before {
    border-radius: 50%;
}

section.pricing .toggle-container .switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

section.pricing .toggle-container .switch input:checked + .slide {
    background-color: var(--main-bg-color);
}

section.pricing .toggle-container .switch input:focus + .slide {
    -webkit-box-shadow: 0 0 1px var(--alternative-bg-color);
    box-shadow: 0 0 1px var(--alternative-bg-color);
}

section.pricing .toggle-container .switch input:checked + .slide:before {
    -webkit-transform: translateX(18px);
    transform: translateX(18px);
}

section.pricing .toggle-container .discount {
    background-color: var(--main-shadow-color);
    color: var(--main-bg-color);
    font-size: 0.85em;
    padding: 1px 8px;
    border-radius: 15px;
    margin-left: 6px;
}

.slider {
    width: 70%;
    margin: 50px auto 50px auto;
    padding: 0 40px;
}

.slider input {
    background: -webkit-gradient(linear, left top, right top, from(var(--main-bg-color)), color-stop(0%, var(--main-bg-color)), color-stop(0%, #eaeefb), to(#eaeefb));
    background: linear-gradient(to right, var(--main-bg-color) 0%, var(--main-bg-color) 0%, #eaeefb 0%, #eaeefb 100%);
    border-radius: 8px;
    height: 8px;
    width: 100%;
    border-radius: 4px;
    outline: none;
    -webkit-transition: all 450ms ease-in;
    transition: all 450ms ease-in;
    -webkit-appearance: none;
}

.slider input::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: url(../img/price-range.png) var(--main-bg-color) center no-repeat;
    background-size: cover;
    -webkit-box-shadow: 0px 10px 20px 0px var(--main-bg-color);
    box-shadow: 0px 10px 20px 0px var(--main-bg-color);
    cursor: pointer;
    position: relative;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

@media only screen and (max-width: 610px) {
    .title {
        text-align: center;
    }

    .title .hide {
        display: block;
    }

    .container .upper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .container .slider {
        width: 100%;
    }

    .discount .hide {
        display: none;
    }
}

@media only screen and (max-width: 400px) {
    .container .toggle-container {
        text-align: center;
    }

    .container .toggle-container .show {
        display: block;
    }
}

/**** Zero bounch section *****/


.zero-bounch .section-title {
    margin-bottom: 70px;
}

.zero-bounch .service-box {
    padding: 32px;
    border-radius: 10px;
    background: #F8F4FB;
    text-align: center;
}

.zero-bounch .service-box i {
    font-size: 50px;
    color: var(--main-bg-color);
    margin: 10px 0px;
}

.zero-bounch .service-box h3 {
    color: var(--text-color);
    font-size: 22px;
    margin: 20px 0px;
    font-weight: 800;
}

.zero-bounch .service-box p {
    font-size: 16px;
    color: var(--text-color);
    font-weight: 600;
}

.zero-bounch .button {
    margin: 80px auto auto auto;
}

/****************** FAQ section **************/
section.faq {
    position: relative;
    padding: 50px 0px;
    padding-bottom: 110px;
}

section.faq .section-title {
    margin-bottom: 70px;
}

section.faq .intrigrate-img {
    width: 100%;
}

section.faq .circle svg {
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}

section.faq .row {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

section.faq #content-faq {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
}

section.faq .accordion-container {
    position: relative;
    width: 100%;
    border-top: none;
    outline: 0;
    cursor: pointer;
}

section.faq .accordion-container .article-title {
    display: block;
    position: relative;
    margin: 0;
    padding: 0.625em 0.625em 0.625em 2em;
    font-size: 22px;
    font-weight: 600;
    color: var(--text-color);
    cursor: pointer;
    background: var(--faq-background-color);
    border-radius: 10px;
    margin: 15px 0px;
    border: 1px solid transparent;
}

section.faq .accordion-container .article-title:hover,
section.faq .accordion-container .article-title:active,
section.faq .accordion-container .content-entry.open .article-title {
    background: var(--faq-background-color);
    border-color: var(--faq-border-color);
}

section.faq .accordion-container .article-title:hover i:before,
section.faq .accordion-container .article-title:hover i:active,
section.faq .accordion-container .content-entry.open i {
    background: #EEF6FA;
}

section.faq .accordion-container .content-entry i {
    position: absolute;
    top: 15px;
    right: 10px;
    font-style: normal;
    font-size: 20px;
    color: var(--text-color);
}

section.faq .accordion-container .content-entry i:before {
    content: "\f067";
    font-family: 'Font Awesome 5 Free';
    font-weight: 600;
}

section.faq .accordion-container .content-entry.open i:before {
    content: "\f068";
    font-family: 'Font Awesome 5 Free';
    font-weight: 600;
}

section.faq .accordion-content {
    display: none;
    padding-left: 2.3125em;
}

section.faq #content {
    width: 100%;
}

section.faq .accordion-container,
section.faq #description {
    width: 90%;
    margin: 1.875em auto;
}

section.faq #description p {
    line-height: 1.5;
}

section.faq #description h2 {
    text-align: center;
}

@media all and (min-width: 860px) {
    section.faq #content {
        width: 70%;
        margin: 0 auto;
    }
}

/**** Section verification *********/
section.verify {
    overflow: hidden;
    background: var(--alternative-bg-color);
    padding: 50px 0px;
}

section.verify .callout .callout__shape {
    background: var(--alternative-bg-color);
    opacity: .36;
    mix-blend-mode: multiply;
    width: 710px;
    height: 710px;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    margin-left: -406px;
    top: -444px;
}

section.verify .verify-text h2 {
    color: var(--bg-color);
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 30px;
}

section.verify .verify-text .button {
    width: 250px;
    font-weight: 800;
    margin-bottom: 10px;
}

section.verify i {
    color: var(--bg-color);
}

section.verify .img-wrapper .callout__image-shaped-icon {
    position: absolute;
    top: 50px;
    left: 0px;
    background: var(--bg-color);
    padding: 15px 15px 7px 15px;
    border-radius: 10px;
    z-index: 99;
}

section.verify .img-wrapper .img-man {
    position: relative;
}

section.verify .img-wrapper .img-man::after {
    /*position: absolute;
    content: '';
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--main-bg-color);
    right: 50px;
    top: 0;
    z-index: 99;*/
}

.img-man-img {
    width: 90%;
}

.footer-button {
    background: var(--alternative-bg-color);
}

.footer-button:hover {
    background: rgba(158, 109, 200, 0.67);
}

/**** Footer section*****/
footer {
    padding: 50px 0px;
    /*** Mobile footer ********/
}

footer .footer-pc .footer-logo img {
    width: 90%;
    margin-bottom: 30px;
}

footer .footer-pc h4 {
    font-size: 14px;
    color: var(--text-color);
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 15px;
}

footer li {
    color: var(--text-color);
    font-size: 14px;
    line-height: 1.72;
}

footer a {
    color: var(--text-color);
    font-size: 14px;
}

footer a:hover {
    color: var(--text-color);
    text-decoration: none;
}

footer .social-link {
    margin-top: 10px;
}

footer .social-link a {
    margin-right: 10px;
    color: var(--text-color);
}

footer .social-link a:hover {
    color: var(--text-color);
}

footer .mobile-footer {
    display: none;
}

footer .mobile-footer .footer-logo img {
    width: 200px;
    margin-bottom: 30px;
}

footer .mobile-footer #content-faq {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
}

footer .mobile-footer .content-entry {
    margin-bottom: 30px;
}

footer .mobile-footer .accordion-container {
    position: relative;
    width: 100%;
    border-top: none;
    outline: 0;
    cursor: pointer;
}

footer .mobile-footer .accordion-container .article-title {
    display: block;
    position: relative;
    padding-bottom: 10px;
    letter-spacing: .07em;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-color);
    cursor: pointer;
}

footer .mobile-footer .accordion-container .content-entry i {
    position: absolute;
    top: 15px;
    right: 0px;
    font-style: normal;
    font-size: 20px;
    color: var(--text-color);
}

footer .mobile-footer .accordion-container .content-entry i:before {
    content: "\f0d7";
    font-family: 'Font Awesome 5 Free';
    font-weight: 600;
}

footer .mobile-footer .accordion-container .content-entry.open i:before {
    content: "\f0de";
    font-family: 'Font Awesome 5 Free';
    font-weight: 600;
}

footer .mobile-footer .accordion-content {
    display: none;
    margin-bottom: 30px;
}

footer .mobile-footer .accordion-content li {
    padding-bottom: 10px;
}

footer .mobile-footer #content {
    width: 100%;
}

footer .mobile-footer #description h2 {
    text-align: center;
}

@media all and (min-width: 860px) {
    footer .mobile-footer #content {
        width: 70%;
        margin: 0 auto;
    }
}

footer .mobile-footer .social-link {
    margin: 20px 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

footer .mobile-footer .social-link a {
    font-size: 25px;
}

footer .mobile-footer .copyright-text {
    text-align: center;
}

/*# sourceMappingURL=style.css.map */
/*Credit page*/
.credit_link {
    text-decoration: none;
    color: var(--text-color);
}

.job-item {
    width: 100%;
    max-width: 920px;
    margin: 0 auto 16px;
    background: var(--bg-color);
    box-shadow: 0 8px 17px 0 rgb(96 110 123 / 15%);
    border-radius: 13px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 18px;
    padding: 10px 65px;
    position: relative;
    overflow: hidden;
}

.job-item .job-item__content {
    display: flex;
    align-items: center;
    flex-grow: 1;
    padding-right: 10px;
}

.job-item .job-item__title {
    color: var(--text-color);
}

.CareerBanner {
    height: 100vh;
    background: #fafbfc;
    margin-top: 0 !important;
}

.buttonPill {
    margin-left: 10px;
    margin-bottom: 5px;
    text-decoration: none;
    font-size: 15px;
    color: var(--text-color);
    background-color: transparent !important;
    font-weight: bold;
    padding: 5px;
    border-radius: 18px 8px 18px 8px;
    width: auto;
    background: linear-gradient(to bottom left,var(--button-pill-hover), transparent);
    border: 2px solid var(--main-bg-color);
}

.buttonPill:hover,
.buttonPill:active,
.buttonPill:focus {
    background: linear-gradient(to bottom left, var(--main-bg-color), transparent, var(--main-bg-color));
    background-color: var(--main-bg-color) !important;
    border-color: var(--main-bg-color) !important; /* Ensure the border color stays the same */
    color: var(--text-color) !important; /* Maintain the same text color */
    box-shadow: 0 0 0 .1rem var(--main-bg-color) !important;
}

.item:hover {
    text-decoration: none;
    list-style: none;
    color: var(--text-color);
}

.item {
    text-decoration: none;
    list-style: none;
    color: var(--text-color);
}

.marginPillTop {
    border: none !important;
}

@media screen and (max-width: 991px) {
    .buttonPill {
        display: none;
    }
}


/*
---------------------------------------------
About Style
---------------------------------------------
*/

#about {
    /*padding-top: 130px;*/
}

.about-left-image img {
    margin-right: 45px;
}

.about-right-content p {
    margin-top: 8px;
    margin-bottom: 8px;
}

.skills-content {
    position: relative;
    z-index: 1;
    margin-top: -50px;
    background-color: var(--bg-color);
    border-bottom-right-radius: 50px;
    border-bottom-left-radius: 50px;
    padding: 110px 0px 50px 0px;
}

.skill-item {
    text-align: center;
}

.progress {
    width: 150px;
    height: 150px;
    line-height: 150px;
    background: none;
    margin: 0 auto;
    box-shadow: none;
    position: relative;
}

.progress:after {
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 5px solid var(--bg-color);
    position: absolute;
    top: 0;
    left: 0;
}

.progress > span {
    width: 50%;
    height: 100%;
    overflow: hidden;
    position: absolute;
    top: 0;
    z-index: 1;
}

.progress .progress-left {
    left: 0;
}

.progress .progress-bar {
    width: 100%;
    height: 100%;
    background: none;
    border-width: 5px;
    border-style: solid;
    position: absolute;
    top: 0;
    border-color: var(--main-bg-color);
}

.first-skill-item .progress .progress-bar {
    border-color: var(--main-bg-color);
}

.second-skill-item .progress .progress-bar {
    border-color: var(--alternative-bg-color);;
}

.third-skill-item .progress .progress-bar {
    border-color: var(--main-bg-color);
}

.progress .progress-left .progress-bar {
    left: 100%;
    border-top-right-radius: 75px;
    border-bottom-right-radius: 75px;
    border-left: 0;
    -webkit-transform-origin: center left;
    transform-origin: center left;
}

.progress .progress-right {
    right: 0;
}

.progress .progress-right .progress-bar {
    left: -100%;
    border-top-left-radius: 75px;
    border-bottom-left-radius: 75px;
    border-right: 0;
    -webkit-transform-origin: center right;
    transform-origin: center right;
}

.progress .progress-value {
    text-align: center;
    color: var(--text-color);
    display: flex;
    width: 100%;
    border-radius: 50%;
    font-size: 35px;
    text-align: center;
    line-height: 25px;
    align-items: center;
    justify-content: center;
    height: 100%;
    font-weight: 700;
}

.progress .progress-value div {
    margin-top: 10px;
}

.progress .progress-value span {
    font-size: 18px;
    text-transform: none;
    color: var(--text-faint-color);
    font-weight: 300;
}

/* This for loop creates the  necessary css animation names
Due to the split circle of progress-left and progress right, we must use the animations on each side.
*/
.progress[data-percentage="10"] .progress-right .progress-bar {
    animation: loading-1 1.5s linear forwards;
}

.progress[data-percentage="10"] .progress-left .progress-bar {
    animation: 0;
}

.progress[data-percentage="20"] .progress-right .progress-bar {
    animation: loading-2 1.5s linear forwards;
}

.progress[data-percentage="20"] .progress-left .progress-bar {
    animation: 0;
}

.progress[data-percentage="30"] .progress-right .progress-bar {
    animation: loading-3 1.5s linear forwards;
}

.progress[data-percentage="30"] .progress-left .progress-bar {
    animation: 0;
}

.progress[data-percentage="40"] .progress-right .progress-bar {
    animation: loading-4 1.5s linear forwards;
}

.progress[data-percentage="40"] .progress-left .progress-bar {
    animation: 0;
}

.progress[data-percentage="50"] .progress-right .progress-bar {
    animation: loading-5 1.5s linear forwards;
}

.progress[data-percentage="50"] .progress-left .progress-bar {
    animation: 0;
}

.progress[data-percentage="60"] .progress-right .progress-bar {
    animation: loading-5 1.5s linear forwards;
}

.progress[data-percentage="60"] .progress-left .progress-bar {
    animation: loading-1 1.5s linear forwards 1.5s;
}

.progress[data-percentage="70"] .progress-right .progress-bar {
    animation: loading-5 1.5s linear forwards;
}

.progress[data-percentage="70"] .progress-left .progress-bar {
    animation: loading-2 1.5s linear forwards 1.5s;
}

.progress[data-percentage="80"] .progress-right .progress-bar {
    animation: loading-5 1.5s linear forwards;
}

.progress[data-percentage="80"] .progress-left .progress-bar {
    animation: loading-3 1.5s linear forwards 1.5s;
}

.progress[data-percentage="90"] .progress-right .progress-bar {
    animation: loading-5 1.5s linear forwards;
}

.progress[data-percentage="90"] .progress-left .progress-bar {
    animation: loading-4 1.5s linear forwards 1.5s;
}

.progress[data-percentage="100"] .progress-right .progress-bar {
    animation: loading-5 1.5s linear forwards;
}

.progress[data-percentage="100"] .progress-left .progress-bar {
    animation: loading-5 1.5s linear forwards 1.5s;
}

@keyframes loading-1 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(36);
        transform: rotate(36deg);
    }
}

@keyframes loading-2 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(72);
        transform: rotate(72deg);
    }
}

@keyframes loading-3 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(108);
        transform: rotate(108deg);
    }
}

@keyframes loading-4 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(144);
        transform: rotate(144deg);
    }
}

@keyframes loading-5 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(180);
        transform: rotate(180deg);
    }
}

.progress {
    margin-bottom: 1em;
}

.section-heading {
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
}


.section-heading h6 {
    font-size: 15px;
    font-weight: 700;
    color: var(--main-bg-color);
    text-transform: uppercase;
    margin-bottom: 15px;
}

.section-heading h4 {
    color: var(--text-color);
    font-size: 35px;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 25px;
}

.section-heading h4 em {
    font-style: normal;
    color: var(--main-bg-color);
}

.section-heading .line-dec {
    width: 50px;
    height: 2px;
    background-color: var(--main-bg-color);
}

.aboutPTag {
    text-align: justify;
    font-size: 15px;
    line-height: 30px;
    font-weight: 300;
    color: var(--text-faint-color);
}

.copyright-text {
    color: var(--text-color) !important;
}

.badge_class {
    background-color: var(--main-bg-color) !important;
    border: 1px solid var(--main-bg-color) !important; /* Adding border color */
}

.badge_class:hover,
.badge_class:active,
.badge_class:focus {
    background-color: var(--main-bg-color) !important;
    border-color: var(--main-bg-color) !important; /* Ensure the border color stays the same */
}
.love_symbol{
    font-size:18px;
    color: var(--main-bg-color);
}

.download_btn{
    background-color: var(--main-bg-color) !important;
    color: var(--button-text-color) !important;
    font-weight: bold!important;
    border-color: var(--main-bg-color) !important;
}


.download_btn:hover,
.download_btn:active,
.download_btn:focus {
    background-color: var(--main-bg-color) !important;
    border-color: var(--main-bg-color) !important; /* Ensure the border color stays the same */
    color: var(--button-text-color) !important; /* Maintain the same text color */
    box-shadow: 0 0 0 .1rem var(--main-bg-color) !important;
}



/* Style each review card to make them consistent */
#reviewContainer .row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

/* Style each review card */
.review-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    color: #333;
    display: flex;
    flex-direction: column;
    padding: 20px;
    box-sizing: border-box;
    margin-bottom: 20px; /* Add some bottom margin for Masonry */
}

@media (min-width: 1200px) {
    .review-card {
        width: calc(33.333% - 20px); /* 3 cards per row on medium screens */
    }
}

@media (min-width: 768px) and (max-width: 1199px) {
    .review-card {
        width: calc(33.333% - 20px); /* 3 cards per row on medium screens */
    }
}

@media (max-width: 767px) {
    .review-card {
        width: calc(50% - 20px); /* 2 cards per row on small screens */
    }
}

@media (max-width: 480px) {
    .review-card {
        width: 100%; /* 1 card per row on extra-small screens */
    }
}
/* Ensure image and name are aligned in each card */
.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.star {
    color: #ccc;
    font-size: 1.2em;
}

.star.filled {
    color: var(--main-bg-color) !important;
}

.pagination .page-link {
    cursor: pointer;
}

/* Pagination styling */
.pagination .page-item .page-link {
    color: var(--main-bg-color);
    border-color: var(--main-bg-color);
    font-weight: bold;
}

.pagination .page-item.active .page-link,
.pagination .page-item .page-link:hover,
.active > .page-link,
.page-link.active {
    background-color: var(--alternative-bg-color) !important;
    color: #fff !important;
    border-color: var(--alternative-bg-color) !important;
    font-weight: bold;
}
