@font-face {
    font-family: Inter;
    font-display: swap;
}

body,
html {
    font-family: Inter;
}

div#site-loader {
    background: #ffffff;
    width: 100%;
    height: 100vh;
    line-height: 50px;
    text-align: center;
    position: fixed;
    font-weight: 900;
    letter-spacing: 0.2em;
    z-index: 9999999;
}

div#site-loader span {
    position: absolute;
    width: 250px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #000;
    text-transform: uppercase;
}

div#site-loader span::before,
div#site-loader span::after {
    content: "";
    display: block;
    width: 15px;
    height: 15px;
    background: #258788;
    background: linear-gradient(90deg, #258788 35%, #079d58 100%);
    position: absolute;
    animation: load 0.7s infinite alternate ease-in-out;
}

div#site-loader span::before {
    top: 0;
}

div#site-loader span::after {
    bottom: 0;
}

@keyframes load {
    0% {
        left: 0;
        height: 30px;
        width: 15px;
    }
    50% {
        height: 8px;
        width: 40px;
    }
    100% {
        left: 235px;
        height: 30px;
        width: 15px;
    }
}

a {
    text-decoration: none;
}

:focus-visible {
    outline: inherit;
}

input:focus {
    box-shadow: inherit!important;
}

.relative {
    position: relative;
}

.primary-btn::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 0 50%;
    transform-origin: 0 50%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
    background: #258788;
    background: linear-gradient(90deg, #258788 35%, #079d58 100%);
}

.primary-btn:hover::before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}

.primary-btn {
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    position: relative;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
}

.primary-btn:hover {
    color: #fff!important;
    border: inherit!important;
}

.secondary-btn::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 0 50%;
    transform-origin: 0 50%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
    background-image: -moz-linear-gradient(180deg, #caa32d 0, #f3bc18 100%);
    background-image: -webkit-linear-gradient(180deg, #caa32d 0, #f3bc18 100%);
    background-image: -ms-linear-gradient(180deg, #caa32d 0, #f3bc18 100%);
}

.secondary-btn:hover::before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}

.secondary-btn {
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    position: relative;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
}

.secondary-btn:hover {
    color: #fff!important;
}

section.contactus-section {
    position: relative;
    padding-top: 60px;
    background-image: url(https://imagedelivery.net/nJwaBs__P2JfMUeYJ4vmjQ/25fb4c46-5076-40a5-2f74-ab1978190b00/public);
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
    background-color: #F0F0F0;
    padding-bottom: 50px;
}

section.contactus-section .contactus-area {
    padding: 0 60px;
}

section.contactus-section h2 {
    font-size: 40px;
    font-weight: 900;
    color: #fff;
    line-height: 50px;
}

section.contactus-section h2 span,
section.contactus-section span {
    display: inline-block;
    font-weight: 900;
    font-size: 45px;
    margin: 0;
    background: -webkit-linear-gradient(left, #efc161 30%, #efac1e 70%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

section.contactus-section span {
    color: #fff;
    display: block;
    line-height: 1;
    margin-bottom: 20px;
}

section.contactus-section a {
    display: block;
    font-size: 16px;
    color: #fff;
    width: max-content;
    padding: .5em 1em;
    line-height: 26px;
    border: 1px solid #fff
}

section.contactus-section .contact-form {
    background-color: #fff;
    box-shadow: 0 0 40px 0 rgba(0, 0, 0, .2);
    padding: 1.5em 1em
}

section.contactus-section .contact-form h3 {
    text-align: center;
    font-size: 30px;
    font-weight: 900;
    color: #272727;
    line-height: 1;
    margin-bottom: 20px
}

section.contactus-section .contact-form form label {
    display: block;
    font-size: 16px;
    color: #000;
    font-weight: 600;
    line-height: 26px;
    margin-bottom: 5px
}

section.contactus-section .contact-form form input {
    border: inherit;
    border-bottom: 1px solid #9e9e9e;
    width: 100%;
    font-size: 14px;
    color: #9e9e9e;
    height: 40px;
    margin-bottom: 15px;
    padding: 0
}

section.contactus-section .contact-form form input::placeholder {
    color: #9d9d9d
}

section.contactus-section .contact-form form button {
    background-image: -moz-linear-gradient(180deg, #034971 0, #0071bc 100%);
    background-image: -webkit-linear-gradient(180deg, #034971 0, #0071bc 100%);
    background-image: -ms-linear-gradient(180deg, #034971 0, #0071bc 100%);
    display: block;
    width: 100%;
    border: inherit;
    height: 50px;
    padding: 0;
    font-size: 18px;
    color: #fff;
    font-weight: 500;
    margin-top: 15px
}

section.faqs-section {
    position: relative;
    padding: 70px 0
}

section.faqs-section h4 {
    background: -webkit-linear-gradient(left, #3978ac 30%, #00a14b 70%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 45px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
    text-align: center
}

section.faqs-section button.accordion-button {
    border-radius: 10px!important;
    background-color: #2b2b2b;
    color: #fff;
    padding: 15px
}

section.faqs-section .accordion-header {
    border: inherit!important;
    margin-top: 15px
}

section.faqs-section .accordion-button::after {
    background-image: url(https://imagedelivery.net/nJwaBs__P2JfMUeYJ4vmjQ/b4ebc539-be2d-4936-4f10-4a90d3baf800/public)!important;
    filter: invert(0) brightness(1)!important;
    width: 20px;
    height: 15px;
    background-size: contain
}

section.faqs-section .accordion-button:focus {
    border: inherit!important;
    box-shadow: inherit!important
}

.accordion-flush .accordion-item .accordion-body {
    font-size: 16px;
    font-weight: 500;
    color: #000;
    line-height: 26px;
    margin-bottom: 0
}

section.faqs-section div#accordionFlushExample {
    width: 80%;
    margin: 0 auto
}

div#site-footer {
    position: relative;
    background-color: #f0f0f0
}

div#site-footer footer.footer {
    padding: 0 25px
}

div#site-footer .footer-main h3 {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    line-height: 1;
    margin-bottom: 20px
}

div#site-footer .footer-main li {
    list-style: none
}

div#site-footer .footer-main ul {
    padding: 0;
    margin: 0
}

div#site-footer .footer-main a,
div#site-footer .footer-main ul li a {
    font-size: 15px;
    color: #636363;
    font-weight: 400;
    line-height: 30px;
    display: block;
    margin: 0
}

div#site-footer .footer-main .industries {
    display: flex
}

div#site-footer .footer-main .locations {
    display: flex;
    justify-content: flex-start
}

div#site-footer .footer-main .locations ul:first-child {
    margin-right: 40px
}

div#site-footer .footer-main .industries div:first-child {
    margin-right: 30px
}

div#site-footer .footer-main .content p {
    font-size: 14px;
    color: #525252;
    line-height: 24px;
    margin-top: 25px;
    margin-bottom: 30px
}

div#site-footer footer.footer .footer-main {
    padding: 80px 0 20px 0;
    border-bottom: 1px solid #63636336
}

div#site-footer .footer-main .content li a {
    color: #525252;
    font-size: 18px;
    padding-right: 20px;
    line-height: 28px;
    display: inline-block;
    margin-bottom: 0
}

div#site-footer .footer-main .content li a:last-child {
    padding-right: 0
}

div#site-footer .footer-main a {
    margin-bottom: 20px
}

div#site-footer .footer-main .alllocations {
    padding-left: 30px
}

div#site-footer footer.footer .footer-bottom {
    padding: 20px 0
}

div#site-footer footer.footer .footer-bottom ul {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    margin-bottom: 20px
}

div#site-footer footer.footer .footer-bottom ul li {
    list-style: none
}

div#site-footer footer.footer .footer-bottom p,
div#site-footer footer.footer .footer-bottom p a,
div#site-footer footer.footer .footer-bottom ul li a {
    font-size: 16px;
    color: #636363;
    font-weight: 400;
    padding: 0 20px;
    line-height: 26px
}

div#site-footer a:hover {
    color: #05512a!important
}

div#site-footer footer.footer .footer-bottom p {
    text-align: center;
    margin-bottom: 0;
    margin-top: 20px
}

div#site-footer .footer-main a.map::before {
    content: "";
    background-image: url(https://imagedelivery.net/nJwaBs__P2JfMUeYJ4vmjQ/5a28dfdb-b962-4d5c-0007-8c233251d400/public);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 14px;
    height: 18px;
    display: block;
    position: absolute;
    left: -5px;
    top: 7px
}

div#site-footer .footer-main a.call,
div#site-footer .footer-main a.map,
div#site-footer .footer-main a.phone {
    position: relative;
    padding-left: 20px
}

div#site-footer .footer-main a.call::before {
    content: "";
    background-image: url(https://imagedelivery.net/nJwaBs__P2JfMUeYJ4vmjQ/9556b08f-a465-4643-a1d7-4004d5eb6900/public);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 18px;
    height: 18px;
    display: block;
    position: absolute;
    left: -5px;
    top: 5px
}

div#site-footer .footer-main a.phone::before {
    content: "";
    background-image: url(https://imagedelivery.net/nJwaBs__P2JfMUeYJ4vmjQ/6cc13821-49bb-46e6-6700-b2440097a700/public);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 18px;
    height: 18px;
    display: block;
    position: absolute;
    left: -5px;
    top: 5px
}

div#rightside-call {
    position: fixed;
    top: 50%;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    color: #fff;
    background-image: -moz-linear-gradient(180deg, #caa32d 0, #f3bc18 100%);
    background-image: -webkit-linear-gradient(180deg, #caa32d 0, #f3bc18 100%);
    background-image: -ms-linear-gradient(180deg, #caa32d 0, #f3bc18 100%);
    border-bottom-left-radius: 12px;
    border-top-left-radius: 12px;
    height: 50px;
    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
    font-size: 20px;
    font-weight: 500;
    padding: .7em
}

div#rightside-call a {
    color: #fff;
    display: none;
    margin-left: 10px;
    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out
}

div#rightside-call:hover a {
    display: block
}

div#rightside-chat {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    color: #fff;
    background-image: -moz-linear-gradient(180deg, #caa32d 0, #f3bc18 100%);
    background-image: -webkit-linear-gradient(180deg, #caa32d 0, #f3bc18 100%);
    background-image: -ms-linear-gradient(180deg, #caa32d 0, #f3bc18 100%);
    border-bottom-left-radius: 12px;
    border-top-left-radius: 12px;
    height: 50px;
    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
    font-size: 20px;
    font-weight: 500;
    padding: .7em;
    top: 40%
}

div#rightside-chat a {
    color: #fff;
    display: none;
    margin-left: 10px;
    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out
}

div#rightside-chat:hover a {
    display: block
}

div#leftside-form {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    background-color: #fff;
    z-index: 1111;
    transition: all .7s;
    transform: translateX(-100%);
    width: 600px;
    display: flex;
    align-items: center;
    cursor: default
}

div#leftside-form h3 {
    text-align: center;
    font-size: 35px;
    font-weight: 900;
    color: #000;
    line-height: 1;
    margin-bottom: 25px
}

div#leftside-form h3 span {
    display: block;
    background: -webkit-linear-gradient(left, #3879ab, #02a04e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: #00000021
}

div#leftside-form form.seo-audit-form input {
    border: 2px solid #1b8e79;
    width: 100%;
    height: 50px;
    padding: 0 20px;
    font-size: 14px;
    color: #000;
    font-weight: 500;
    margin-bottom: 20px
}

div#leftside-form form.seo-audit-form input::placeholder {
    color: #9d9d9d
}

div#leftside-form form.seo-audit-form button {
    width: 100%;
    background-image: -moz-linear-gradient(180deg, #caa32d 0, #f3bc18 100%);
    background-image: -webkit-linear-gradient(180deg, #caa32d 0, #f3bc18 100%);
    background-image: -ms-linear-gradient(180deg, #caa32d 0, #f3bc18 100%);
    border: inherit;
    height: 51px;
    padding: 0;
    font-size: 16px;
    font-weight: 700;
    color: #000
}

div#leftside-form form.seo-audit-form {
    width: 70%;
    margin: 0 auto
}

button#leftside-form-btn {
    border: inherit;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    width: 180px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    transform: rotate(-90deg);
    position: fixed;
    top: 375px;
    left: -75px;
    background-image: -moz-linear-gradient(180deg, #caa32d 0, #f3bc18 100%);
    background-image: -webkit-linear-gradient(180deg, #caa32d 0, #f3bc18 100%);
    background-image: -ms-linear-gradient(180deg, #caa32d 0, #f3bc18 100%);
    padding: 0
}

button#leftside-form-btn.active {
    z-index: 11111
}

div#leftside-form button#closebtn {
    border: inherit;
    width: max-content;
    height: 30px;
    position: absolute;
    top: 0;
    right: 0;
    background-color: #838383
}

div#leftside-form button#closebtn img {
    width: 100%;
    height: 100%;
    object-fit: contain
}

section#tootlTipArea h2 {
    font-size: 45px;
    font-weight: 900;
    color: #000;
    line-height: 1.1;
    margin-bottom: 60px;
    text-align: center
}

section#tootlTipArea img {
    position: relative;
    top: -60px
}

#tootlTipArea .testimonial-home {
    background: url(https://imagedelivery.net/nJwaBs__P2JfMUeYJ4vmjQ/c6fc0e3d-e2cf-4da1-f751-829bce88de00/public);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    height: 298px;
    width: auto
}

#tootlTipArea .wrapper-1 {
    font-size: 30px;
    bottom: 620px;
    width: 6px;
    left: 512px!important;
    color: #fff
}

#tootlTipArea .wrapper-1 .tooltip p {
    font-size: 12px;
    font-family: Inter;
    font-weight: 500;
    top: 30%;
    right: 10%;
    max-width: 300px;
    color: #000
}

#tootlTipArea .wrapper-1 .tooltip span {
    font-size: 14px;
    font-family: Inter;
    font-weight: 500;
    top: 65%;
    right: 55%;
    max-width: 300px;
    color: #000
}

#tootlTipArea .wrapper-1 .tooltip {
    background: url(https://imagedelivery.net/nJwaBs__P2JfMUeYJ4vmjQ/c6fc0e3d-e2cf-4da1-f751-829bce88de00/public);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    bottom: 75%;
    left: 0;
    height: 250px;
    width: 400px;
    pointer-events: none;
    position: absolute;
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -o-transform: translateY(10px);
    transform: translateY(10px);
    -webkit-transition: all .25s ease-out;
    -moz-transition: all .25s ease-out;
    -ms-transition: all .25s ease-out;
    -o-transition: all .25s ease-out;
    transition: all .25s ease-out
}

#tootlTipArea .wrapper-1:hover .tooltip {
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0)
}

#tootlTipArea .wrapper-2 {
    font-size: 30px;
    position: relative;
    bottom: 620px;
    width: 6px;
    left: 512px!important;
    color: #fff
}

#tootlTipArea .wrapper-2 .tooltip p {
    font-size: 12px;
    font-family: Inter;
    font-weight: 500;
    position: absolute;
    top: 30%;
    right: 10%;
    max-width: 300px;
    color: #000
}

#tootlTipArea .wrapper-2 .tooltip span {
    font-size: 14px;
    font-family: Inter;
    font-weight: 500;
    position: absolute;
    top: 65%;
    right: 55%;
    max-width: 300px;
    color: #000
}

#tootlTipArea .wrapper-2 .tooltip {
    background: url(https://imagedelivery.net/nJwaBs__P2JfMUeYJ4vmjQ/c6fc0e3d-e2cf-4da1-f751-829bce88de00/public);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    bottom: 75%;
    left: 0;
    height: 250px;
    width: 400px;
    pointer-events: none;
    position: absolute;
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -o-transform: translateY(10px);
    transform: translateY(10px);
    -webkit-transition: all .25s ease-out;
    -moz-transition: all .25s ease-out;
    -ms-transition: all .25s ease-out;
    -o-transition: all .25s ease-out;
    transition: all .25s ease-out
}

#tootlTipArea .wrapper-2:hover .tooltip {
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0)
}

#tootlTipArea .lte8 .wrapper-2 .tooltip {
    display: none
}

#tootlTipArea .lte8 .wrapper-2:hover .tooltip {
    display: block
}

#tootlTipArea .wrapper-3 {
    font-size: 30px;
    position: relative;
    bottom: 650px;
    width: 6px;
    left: 300px;
    color: #fff
}

#tootlTipArea .wrapper-3 .tooltip p {
    font-size: 12px;
    font-family: Inter;
    font-weight: 500;
    position: absolute;
    top: 30%;
    right: 10%;
    max-width: 300px;
    color: #000
}

#tootlTipArea .wrapper-3 .tooltip span {
    font-size: 14px;
    font-family: Inter;
    font-weight: 500;
    position: absolute;
    top: 65%;
    right: 50%;
    max-width: 300px;
    color: #000
}

#tootlTipArea .wrapper-3 .tooltip {
    background: url(https://imagedelivery.net/nJwaBs__P2JfMUeYJ4vmjQ/c6fc0e3d-e2cf-4da1-f751-829bce88de00/public);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    bottom: 75%;
    left: 0;
    height: 250px;
    width: 400px;
    pointer-events: none;
    position: absolute;
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -o-transform: translateY(10px);
    transform: translateY(10px);
    -webkit-transition: all .25s ease-out;
    -moz-transition: all .25s ease-out;
    -ms-transition: all .25s ease-out;
    -o-transition: all .25s ease-out;
    transition: all .25s ease-out
}

#tootlTipArea .wrapper-3:hover .tooltip {
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0)
}

#tootlTipArea .lte8 .wrapper-3 .tooltip {
    display: none
}

#tootlTipArea .lte8 .wrapper-3:hover .tooltip {
    display: block
}

#tootlTipArea .wrapper-4 {
    font-size: 30px;
    position: relative;
    bottom: 620px;
    width: 6px;
    left: 190px;
    color: #fff
}

#tootlTipArea .wrapper-4 .tooltip p {
    font-size: 12px;
    font-family: Inter;
    font-weight: 500;
    position: absolute;
    top: 30%;
    right: 10%;
    max-width: 300px;
    color: #000
}

#tootlTipArea .wrapper-4 .tooltip span {
    font-size: 14px;
    font-family: Inter;
    font-weight: 500;
    position: absolute;
    top: 65%;
    right: 43%;
    max-width: 300px;
    color: #000
}

#tootlTipArea .wrapper-4 .tooltip {
    background: url(https://imagedelivery.net/nJwaBs__P2JfMUeYJ4vmjQ/c6fc0e3d-e2cf-4da1-f751-829bce88de00/public);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    bottom: 75%;
    left: 0;
    height: 250px;
    width: 400px;
    pointer-events: none;
    position: absolute;
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -o-transform: translateY(10px);
    transform: translateY(10px);
    -webkit-transition: all .25s ease-out;
    -moz-transition: all .25s ease-out;
    -ms-transition: all .25s ease-out;
    -o-transition: all .25s ease-out;
    transition: all .25s ease-out
}

#tootlTipArea .wrapper-4:hover .tooltip {
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0)
}

#tootlTipArea .lte8 .wrapper-4 .tooltip {
    display: none
}

#tootlTipArea .lte8 .wrapper-4:hover .tooltip {
    display: block
}

#tootlTipArea .wrapper-5 {
    font-size: 30px;
    position: relative;
    bottom: 600px;
    width: 6px;
    left: 200px;
    color: #fff
}

#tootlTipArea .wrapper-5 .tooltip p {
    font-size: 12px;
    font-family: Inter;
    font-weight: 500;
    position: absolute;
    top: 30%;
    right: 10%;
    max-width: 300px;
    color: #000
}

#tootlTipArea .wrapper-5 .tooltip span {
    font-size: 14px;
    font-family: Inter;
    font-weight: 500;
    position: absolute;
    top: 65%;
    right: 50%;
    max-width: 300px;
    color: #000
}

#tootlTipArea .wrapper-5 .tooltip {
    background: url(https://imagedelivery.net/nJwaBs__P2JfMUeYJ4vmjQ/c6fc0e3d-e2cf-4da1-f751-829bce88de00/public);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    bottom: 75%;
    left: 0;
    height: 250px;
    width: 400px;
    pointer-events: none;
    position: absolute;
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -o-transform: translateY(10px);
    transform: translateY(10px);
    -webkit-transition: all .25s ease-out;
    -moz-transition: all .25s ease-out;
    -ms-transition: all .25s ease-out;
    -o-transition: all .25s ease-out;
    transition: all .25s ease-out
}

#tootlTipArea .wrapper-5:hover .tooltip {
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0)
}

#tootlTipArea .lte8 .wrapper-5 .tooltip {
    display: none
}

#tootlTipArea .lte8 .wrapper-5:hover .tooltip {
    display: block
}

#tootlTipArea .wrapper-6 {
    font-size: 30px;
    position: relative;
    bottom: 500px;
    width: 6px;
    left: 250px;
    color: #fff
}

#tootlTipArea .wrapper-6 .tooltip p {
    font-size: 12px;
    font-family: Inter;
    font-weight: 500;
    position: absolute;
    top: 30%;
    right: 10%;
    max-width: 300px;
    color: #000
}

#tootlTipArea .wrapper-6 .tooltip span {
    font-size: 14px;
    font-family: Inter;
    font-weight: 500;
    position: absolute;
    top: 65%;
    right: 50%;
    max-width: 300px;
    color: #000
}

#tootlTipArea .wrapper-6 .tooltip {
    background: url(https://imagedelivery.net/nJwaBs__P2JfMUeYJ4vmjQ/c6fc0e3d-e2cf-4da1-f751-829bce88de00/public);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    bottom: 75%;
    left: 0;
    height: 250px;
    width: 400px;
    pointer-events: none;
    position: absolute;
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -o-transform: translateY(10px);
    transform: translateY(10px);
    -webkit-transition: all .25s ease-out;
    -moz-transition: all .25s ease-out;
    -ms-transition: all .25s ease-out;
    -o-transition: all .25s ease-out;
    transition: all .25s ease-out
}

#tootlTipArea .wrapper-6:hover .tooltip {
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0)
}

#tootlTipArea .lte8 .wrapper-6:hover .tooltip {
    display: none
}

#tootlTipArea .lte8 .wrapper-6:hover .tooltip {
    display: block
}

#tootlTipArea .wrapper-8 {
    font-size: 30px;
    position: relative;
    bottom: 450px;
    width: 6px;
    left: 460px;
    color: #fff
}

#tootlTipArea .wrapper-8 .tooltip p {
    font-size: 12px;
    font-family: Inter;
    font-weight: 500;
    position: absolute;
    top: 30%;
    right: 10%;
    max-width: 300px;
    color: #000
}

#tootlTipArea .wrapper-8 .tooltip span {
    font-size: 14px;
    font-family: Inter;
    font-weight: 500;
    position: absolute;
    top: 65%;
    right: 50%;
    max-width: 300px;
    color: #000
}

#tootlTipArea .wrapper-8 .tooltip {
    background: url(https://imagedelivery.net/nJwaBs__P2JfMUeYJ4vmjQ/c6fc0e3d-e2cf-4da1-f751-829bce88de00/public);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    bottom: 75%;
    left: 0;
    height: 250px;
    width: 400px;
    pointer-events: none;
    position: absolute;
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -o-transform: translateY(10px);
    transform: translateY(10px);
    -webkit-transition: all .25s ease-out;
    -moz-transition: all .25s ease-out;
    -ms-transition: all .25s ease-out;
    -o-transition: all .25s ease-out;
    transition: all .25s ease-out
}

#tootlTipArea .wrapper-8:hover .tooltip {
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0)
}

#tootlTipArea .lte8 .wrapper-8 .tooltip {
    display: none
}

#tootlTipArea .lte8 .wrapper-8:hover .tooltip {
    display: block
}

#tootlTipArea .wrapper-9 {
    font-size: 30px;
    position: relative;
    bottom: 1050px;
    width: 6px;
    left: 450px;
    color: #fff
}

#tootlTipArea .wrapper-9 .tooltip p {
    font-size: 12px;
    font-family: Inter;
    font-weight: 500;
    position: absolute;
    top: 30%;
    right: 10%;
    max-width: 300px;
    color: #000
}

#tootlTipArea .wrapper-9 .tooltip span {
    font-size: 14px;
    font-family: Inter;
    font-weight: 500;
    position: absolute;
    top: 65%;
    right: 50%;
    max-width: 300px;
    color: #000
}

#tootlTipArea .wrapper-9 .tooltip {
    background: url(https://imagedelivery.net/nJwaBs__P2JfMUeYJ4vmjQ/c6fc0e3d-e2cf-4da1-f751-829bce88de00/public);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    bottom: 75%;
    left: 0;
    height: 250px;
    width: 400px;
    pointer-events: none;
    position: absolute;
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -o-transform: translateY(10px);
    transform: translateY(10px);
    -webkit-transition: all .25s ease-out;
    -moz-transition: all .25s ease-out;
    -ms-transition: all .25s ease-out;
    -o-transition: all .25s ease-out;
    transition: all .25s ease-out
}

#tootlTipArea .wrapper-9:hover .tooltip {
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0)
}

#tootlTipArea .lte8 .wrapper-9 .tooltip {
    display: none
}

#tootlTipArea .lte8 .wrapper-9:hover .tooltip {
    display: block
}

#tootlTipArea .wrapper-10 {
    font-size: 30px;
    position: relative;
    bottom: 700px;
    width: 6px;
    left: 750px;
    color: #fff
}

#tootlTipArea .wrapper-10 .tooltip p {
    font-size: 12px;
    font-family: Inter;
    font-weight: 500;
    position: absolute;
    top: 30%;
    right: 10%;
    max-width: 300px;
    color: #000
}

#tootlTipArea .wrapper-10 .tooltip span {
    font-size: 14px;
    font-family: Inter;
    font-weight: 500;
    position: absolute;
    top: 65%;
    right: 50%;
    max-width: 300px;
    color: #000
}

#tootlTipArea .wrapper-10 .tooltip {
    background: url(https://imagedelivery.net/nJwaBs__P2JfMUeYJ4vmjQ/c6fc0e3d-e2cf-4da1-f751-829bce88de00/public);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    bottom: 75%;
    left: 0;
    height: 250px;
    width: 400px;
    pointer-events: none;
    position: absolute;
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -o-transform: translateY(10px);
    transform: translateY(10px);
    -webkit-transition: all .25s ease-out;
    -moz-transition: all .25s ease-out;
    -ms-transition: all .25s ease-out;
    -o-transition: all .25s ease-out;
    transition: all .25s ease-out
}

#tootlTipArea .wrapper-10:hover .tooltip {
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0)
}

#tootlTipArea .lte8 .wrapper-10 .tooltip {
    display: none
}

#tootlTipArea .lte8 .wrapper-10:hover .tooltip {
    display: block
}

#tootlTipArea .wrapper-11 {
    font-size: 30px;
    position: relative;
    bottom: 710px;
    width: 6px;
    left: 430px;
    color: #fff
}

#tootlTipArea .wrapper-11 .tooltip p {
    font-size: 12px;
    font-family: Inter;
    font-weight: 500;
    position: absolute;
    top: 30%;
    right: 10%;
    max-width: 300px;
    color: #000
}

#tootlTipArea .wrapper-11 .tooltip span {
    font-size: 14px;
    font-family: Inter;
    font-weight: 500;
    position: absolute;
    top: 65%;
    right: 50%;
    max-width: 300px;
    color: #000
}

#tootlTipArea .wrapper-11 .tooltip {
    background: url(https://imagedelivery.net/nJwaBs__P2JfMUeYJ4vmjQ/c6fc0e3d-e2cf-4da1-f751-829bce88de00/public);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    bottom: 75%;
    left: 0;
    height: 250px;
    width: 400px;
    pointer-events: none;
    position: absolute;
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -o-transform: translateY(10px);
    transform: translateY(10px);
    -webkit-transition: all .25s ease-out;
    -moz-transition: all .25s ease-out;
    -ms-transition: all .25s ease-out;
    -o-transition: all .25s ease-out;
    transition: all .25s ease-out
}

#tootlTipArea .wrapper-11:hover .tooltip {
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0)
}

#tootlTipArea .lte8 .wrapper-11 .tooltip {
    display: none
}

#tootlTipArea .lte8 .wrapper-11:hover .tooltip {
    display: block
}

#tootlTipArea .wrapper-12 {
    font-size: 30px;
    position: relative;
    bottom: 600px;
    width: 6px;
    left: 750px;
    color: #fff
}

#tootlTipArea .wrapper-12 .tooltip p {
    font-size: 12px;
    font-family: Inter;
    font-weight: 500;
    position: absolute;
    top: 30%;
    right: 10%;
    max-width: 300px;
    color: #000
}

#tootlTipArea .wrapper-12 .tooltip span {
    font-size: 14px;
    font-family: Inter;
    font-weight: 500;
    position: absolute;
    top: 65%;
    right: 50%;
    max-width: 300px;
    color: #000
}

#tootlTipArea .wrapper-12 .tooltip {
    background: url(https://imagedelivery.net/nJwaBs__P2JfMUeYJ4vmjQ/c6fc0e3d-e2cf-4da1-f751-829bce88de00/public);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    bottom: 75%;
    left: 0;
    height: 250px;
    width: 400px;
    pointer-events: none;
    position: absolute;
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -o-transform: translateY(10px);
    transform: translateY(10px);
    -webkit-transition: all .25s ease-out;
    -moz-transition: all .25s ease-out;
    -ms-transition: all .25s ease-out;
    -o-transition: all .25s ease-out;
    transition: all .25s ease-out
}

#tootlTipArea .wrapper-12:hover .tooltip {
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0)
}

#tootlTipArea .lte8 .wrapper-12 .tooltip {
    display: none
}

#tootlTipArea .lte8 .wrapper-12:hover .tooltip {
    display: block
}

#tootlTipArea .wrapper-13 {
    font-size: 30px;
    position: relative;
    bottom: 1050px;
    width: 6px;
    left: 130px;
    color: #fff
}

#tootlTipArea .wrapper-13 .tooltip p {
    font-size: 12px;
    font-family: Inter;
    font-weight: 500;
    position: absolute;
    top: 30%;
    right: 10%;
    max-width: 300px;
    color: #000
}

#tootlTipArea .wrapper-13 .tooltip span {
    font-size: 14px;
    font-family: Inter;
    font-weight: 500;
    position: absolute;
    top: 65%;
    right: 50%;
    max-width: 300px;
    color: #000
}

#tootlTipArea .wrapper-13 .tooltip {
    background: url(https://imagedelivery.net/nJwaBs__P2JfMUeYJ4vmjQ/c6fc0e3d-e2cf-4da1-f751-829bce88de00/public);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    bottom: 75%;
    left: 0;
    height: 250px;
    width: 400px;
    pointer-events: none;
    position: absolute;
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -o-transform: translateY(10px);
    transform: translateY(10px);
    -webkit-transition: all .25s ease-out;
    -moz-transition: all .25s ease-out;
    -ms-transition: all .25s ease-out;
    -o-transition: all .25s ease-out;
    transition: all .25s ease-out
}

#tootlTipArea .wrapper-13:hover .tooltip {
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0)
}

#tootlTipArea .lte8 .wrapper-13 .tooltip {
    display: none
}

#tootlTipArea .lte8 .wrapper-13:hover .tooltip {
    display: block
}

#tootlTipArea .wrapper-14 {
    font-size: 30px;
    position: relative;
    bottom: 750px;
    width: 6px;
    left: 650px;
    color: #fff
}

#tootlTipArea .wrapper-14 .tooltip p {
    font-size: 12px;
    font-family: Inter;
    font-weight: 500;
    position: absolute;
    top: 30%;
    right: 10%;
    max-width: 300px;
    color: #000
}

#tootlTipArea .wrapper-14 .tooltip span {
    font-size: 14px;
    font-family: Inter;
    font-weight: 500;
    position: absolute;
    top: 65%;
    right: 50%;
    max-width: 300px;
    color: #000
}

#tootlTipArea .wrapper-14 .tooltip {
    background: url(https://imagedelivery.net/nJwaBs__P2JfMUeYJ4vmjQ/c6fc0e3d-e2cf-4da1-f751-829bce88de00/public);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    bottom: 75%;
    left: 0;
    height: 250px;
    width: 400px;
    pointer-events: none;
    position: absolute;
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -o-transform: translateY(10px);
    transform: translateY(10px);
    -webkit-transition: all .25s ease-out;
    -moz-transition: all .25s ease-out;
    -ms-transition: all .25s ease-out;
    -o-transition: all .25s ease-out;
    transition: all .25s ease-out
}

#tootlTipArea .wrapper-14:hover .tooltip {
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0)
}

#tootlTipArea .lte8 .wrapper-14 .tooltip {
    display: none
}

#tootlTipArea .lte8 .wrapper-14:hover .tooltip {
    display: block
}

#tootlTipArea .wrapper-15 {
    font-size: 30px;
    position: relative;
    bottom: 950px;
    width: 6px;
    left: 550px;
    color: #fff
}

#tootlTipArea .wrapper-15 .tooltip p {
    font-size: 12px;
    font-family: Inter;
    font-weight: 500;
    position: absolute;
    top: 30%;
    right: 10%;
    max-width: 300px;
    color: #000
}

#tootlTipArea .wrapper-15 .tooltip span {
    font-size: 14px;
    font-family: Inter;
    font-weight: 500;
    position: absolute;
    top: 65%;
    right: 47%;
    max-width: 300px;
    color: #000
}

#tootlTipArea .wrapper-15 .tooltip {
    background: url(https://imagedelivery.net/nJwaBs__P2JfMUeYJ4vmjQ/c6fc0e3d-e2cf-4da1-f751-829bce88de00/public);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    bottom: 75%;
    left: 0;
    height: 250px;
    width: 400px;
    pointer-events: none;
    position: absolute;
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -o-transform: translateY(10px);
    transform: translateY(10px);
    -webkit-transition: all .25s ease-out;
    -moz-transition: all .25s ease-out;
    -ms-transition: all .25s ease-out;
    -o-transition: all .25s ease-out;
    transition: all .25s ease-out
}

#tootlTipArea .wrapper-15:hover .tooltip {
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0)
}

#tootlTipArea .lte8 .wrapper-15 .tooltip {
    display: none
}

#tootlTipArea .lte8 .wrapper-15:hover .tooltip {
    display: block
}

#tootlTipArea .wrapper-16 {
    font-size: 30px;
    position: relative;
    bottom: 800px;
    width: 6px;
    left: 850px;
    color: #fff
}

#tootlTipArea .wrapper-16 .tooltip p {
    font-size: 12px;
    font-family: Inter;
    font-weight: 500;
    position: absolute;
    top: 30%;
    right: 10%;
    max-width: 300px;
    color: #000
}

#tootlTipArea .wrapper-16 .tooltip span {
    font-size: 14px;
    font-family: Inter;
    font-weight: 500;
    position: absolute;
    top: 65%;
    right: 50%;
    max-width: 300px;
    color: #000
}

#tootlTipArea .wrapper-16 .tooltip {
    background: url(https://imagedelivery.net/nJwaBs__P2JfMUeYJ4vmjQ/c6fc0e3d-e2cf-4da1-f751-829bce88de00/public);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    bottom: 75%;
    left: 0;
    height: 250px;
    width: 400px;
    pointer-events: none;
    position: absolute;
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -o-transform: translateY(10px);
    transform: translateY(10px);
    -webkit-transition: all .25s ease-out;
    -moz-transition: all .25s ease-out;
    -ms-transition: all .25s ease-out;
    -o-transition: all .25s ease-out;
    transition: all .25s ease-out
}

#tootlTipArea .wrapper-16:hover .tooltip {
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0)
}

#tootlTipArea .lte8 .wrapper-16 .tooltip {
    display: none
}

#tootlTipArea .lte8 .wrapper-16:hover .tooltip {
    display: block
}

#tootlTipArea .tooltip.active {
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0)
}

section#tootlTipArea i {
    background-image: url(https://imagedelivery.net/nJwaBs__P2JfMUeYJ4vmjQ/a6c990d3-1ebe-44ae-6459-5c6263955500/public);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain
}

section#pagebanner-section {
    position: relative;
}

section#pagebanner-section .background-wrapper {
    background-image: url(https://imagedelivery.net/nJwaBs__P2JfMUeYJ4vmjQ/627c8f95-27af-4db0-9e5d-8e1e18f0cf00/public);
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: 150px;
    padding-bottom: 50px;
    background-position: center;
}

section#pagebanner-section span {
    font-size: 22px;
    color: #fff;
    font-weight: 500;
    line-height: 1;
    display: block;
    margin-bottom: 15px;
    text-align: center;
    border: 2px solid #f2bc18;
    width: max-content;
    margin: auto;
    margin-bottom: 15px;
    padding: 0.5rem;
    position: relative;
}

section#pagebanner-section span::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border: 2px solid #f2bc18;
    box-shadow: 0px 0px 10px #2b838c;
}

section#pagebanner-section h1 {
    font-size: 45px;
    font-weight: 900;
    color: #fff;
    line-height: 55px;
    margin-bottom: 40px;
    text-align: center;
}

section#pagebanner-section .counter-row .counter-box {
    position: relative;
    border-right: 1px solid #659bad;
    padding-right: 25px;
}

section#pagebanner-section .counter-row .counter-box:last-child {
    border: inherit;
    margin: 0;
    padding: 0;
}

section#pagebanner-section .counter-row .counter-box .counter-number span {
    font-size: 30px;
    font-weight: 700;
    color: #fff;
    line-height: 40px;
    margin-left: 15px;
    display: inline-block;
    margin-bottom: 0;
    border: inherit;
    padding: 0;
}

section#pagebanner-section .counter-row .counter-box .counter-number span::before {
    display: none;
}

section#pagebanner-section .counter-row .counter-box .counter-number img {
    object-fit: contain;
}

section#pagebanner-section .counter-row .counter-box p {
    font-size: 12px;
    margin: 0;
    color: #fff;
    font-weight: 400;
    margin-top: 10px;
    line-height: 22px;
}

section#pagebanner-section .counter-row {
    margin-top: 60px;
}

section#pagebanner-section .banner-form {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

section#pagebanner-section .banner-form input {
    border: 2px solid #f2bc18;
    width: 20%;
    height: 50px;
    padding: 0 10px;
    font-size: 14px;
    color: #000;
    font-weight: 500;
}

section#pagebanner-section .banner-form button {
    width: 15%;
    background-image: -moz-linear-gradient(180deg, #caa32d 0, #f3bc18 100%);
    background-image: -webkit-linear-gradient(180deg, #caa32d 0, #f3bc18 100%);
    background-image: -ms-linear-gradient(180deg, #caa32d 0, #f3bc18 100%);
    border: inherit;
    height: 51px;
    padding: 0;
    font-size: 16px;
    font-weight: 700;
    color: #000;
}

section#pagebanner-section .partners-logo {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

section#pagebanner-section .partners-logo img {
    filter: brightness(0) invert(1);
}

section#bussinessproblem-section {
    position: relative;
}

section#bussinessproblem-section .wrapper {
    position: relative;
    background-image: url(https://imagedelivery.net/nJwaBs__P2JfMUeYJ4vmjQ/f659562a-6fab-496b-d3c9-a1d9c7794600/public);
    background-size: cover;
    background-position: right;
    background-repeat: no-repeat;
    padding: 40px 0 30px 0;
}

section#bussinessproblem-section h2 {
    text-align: center;
    font-size: 45px;
    font-weight: 900;
    line-height: 55px;
    background: -webkit-linear-gradient(left, #3879ab, #3879ab, #02a04e, #02a04e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: #00000021;
    margin-top: 60px;
    margin-bottom: 0;
}

section#bussinessproblem-section .wrapper .box {
    border-radius: 5px;
    transition: all .7s ease-in-out;
    background-color: #fff;
    box-shadow: 0.174px 0.985px 8.73px 0.27px rgb(0 0 0 / 15%);
    padding-top: 0.7rem;
    padding-bottom: 0.7rem;
    margin-bottom: 15px;
}

section#bussinessproblem-section .wrapper .box p {
    font-size: 16px;
    font-weight: 600;
    color: #000;
    line-height: 26px;
    margin: 0;
}

section#bussinessproblem-section .wrapper .box:hover {
    background-image: -moz-linear-gradient(-2deg, #3978ac 0, #00a14b 100%);
    background-image: -webkit-linear-gradient(-2deg, #3978ac 0, #00a14b 100%);
    background-image: -ms-linear-gradient(-2deg, #3978ac 0, #00a14b 100%);
}

section#bussinessproblem-section .wrapper .box:hover p {
    color: #fff;
}

section#bussinessproblem-section .wrapper .box:hover img {
    filter: brightness(0) invert(1);
}

section#marketingbanner-section {
    position: relative;
    background-image: url(https://imagedelivery.net/nJwaBs__P2JfMUeYJ4vmjQ/02a311fe-20c7-4ca5-23b4-8419e63fe100/public);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 50px 0;
}

section#marketingbanner-section h3 {
    font-size: 28px;
    color: #fff;
    font-weight: 800;
    line-height: 38px;
    margin-bottom: 5px;
}

section#marketingbanner-section p {
    font-size: 18px;
    color: #fff;
    font-weight: 400;
    line-height: 28px;
}

section#marketingbanner-section a.call {
    font-size: 40px;
    color: #fff;
    font-weight: 800;
    line-height: 1;
    display: block;
    position: relative;
    padding-left: 60px;
}

section#marketingbanner-section h4 {
    text-align: center;
    font-size: 26px;
    font-weight: 900;
    line-height: 36px;
    color: #fff;
    margin: 0;
}

section#marketingbanner-section h4 span {
    text-align: center;
    font-size: 36px;
    font-weight: 800;
    color: #efac1e;
    text-transform: uppercase;
}

section#marketingbanner-section a.call::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 0;
    display: block;
    background-image: url(https://imagedelivery.net/nJwaBs__P2JfMUeYJ4vmjQ/7e7eb17b-3880-4592-37f5-38ce25896a00/public);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 50px;
    height: 50px;
}

section.digitalmarketing-section {
    position: relative;
    padding: 50px 0;
}

section.digitalmarketing-section h4 {
    font-size: 35px;
    font-weight: 900;
    line-height: 45px;
    background: -webkit-linear-gradient(left, #3879ab, #3879ab, #02a04e, #02a04e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: #00000021;
}

section.digitalmarketing-section p {
    font-size: 15px;
    color: #515151;
    line-height: 25px;
    margin-bottom: 20px;
}

section.digitalmarketing-section form {
    width: 90%;
    height: 50px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0px 1px 14px 0px rgba(0, 0, 0, 0.19);
}

section.digitalmarketing-section form input {
    width: 60%;
    border: inherit;
    height: 100%;
    font-size: 16px;
    border-left: 3px solid #1a816f;
    border-bottom: 3px solid #1a816f;
    padding: 10px;
    box-sizing: border-box;
    color: #000;
}

section.digitalmarketing-section form button {
    border: inherit;
    padding: 0;
    width: 40%;
    height: 100%;
    background-color: #1c8d7a;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
}

section.digitalmarketing-section form input::placeholder {
    color: #b9b9b9;
}

section.roi-section {
    position: relative;
    padding: 30px 0 50px 0;
}

section.roi-section h4 {
    font-size: 30px;
    font-weight: 900;
    line-height: 40px;
    background: -webkit-linear-gradient(left, #3879ab, #3879ab, #02a04e, #02a04e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: #00000021;
    margin-bottom: 20px;
}

section.roi-section .box h5 {
    font-size: 40px;
    color: #2c6d8b;
    font-weight: 900;
    line-height: 50px;
    margin: 0;
}

section.roi-section .box h5 span {
    display: inline-block;
    font-size: 20px;
    font-weight: 500;
    color: #000;
    line-height: 30px;
    position: relative;
    top: -7px;
}

section.roi-section .box p {
    font-size: 15px;
    color: #515151;
    line-height: 25px;
    margin: 0;
}

section.roi-section .box {
    transition: 0.7s;
}

section.roi-section .box:hover {
    padding: 1rem;
    border-style: solid;
    border-width: 2px;
    border-color: rgb(25, 122, 109);
    background-color: rgba(35, 115, 124, 0.071);
}

section.roi-section .box:hover h5 span {
    color: #348e8c;
}

section#clientslogo-section {
    position: relative;
    padding: 70px 0;
    background: #258788;
    background: linear-gradient(90deg, #258788 35%, #079d58 100%);
    text-align: center;
}

section#clientslogo-section h3 {
    font-size: 45px;
    font-weight: 900;
    line-height: 55px;
    color: #f2bc18;
    margin-bottom: 60px;
}

section#clientslogo-section img {
    transition: 0.7s;
    filter: brightness(0) invert(1);
}

section#clientslogo-section img:hover {
    filter: inherit;
    cursor: pointer;
}

section#seolocations-section {
    position: relative;
    padding: 50px 0;
    background-image: url(https://imagedelivery.net/nJwaBs__P2JfMUeYJ4vmjQ/1d4b2ca7-24c0-43fa-ab80-da516c49f400/public);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat
}

section#seolocations-section h2 {
    color: #fff;
    font-size: 45px;
    font-weight: 800;
    line-height: 55px;
    margin-bottom: 40px
}

section#seolocations-section .cta-box a {
    display: inline-block;
    width: 170px;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    margin: 0 5px;
    height: 45px;
    text-align: center;
    line-height: 45px
}

section#seolocations-section .cta-box a:last-child {
    border: 1px solid
}

section#seolocations-section ul#pills-tab {
    margin-bottom: 30px!important;
    justify-content: center
}

section#seolocations-section ul#pills-tab li button {
    color: #fff;
    font-size: 40px;
    font-weight: 800;
    line-height: 50px;
    background-color: transparent;
    margin: 0;
    padding: 0 1rem
}

section#seolocations-section div#pills-tabContent a {
    color: #fff;
    display: block;
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
    margin-bottom: 50px
}

section#seolocations-section div#pills-tabContent .col a:last-child {
    margin: 0
}

section#industries-section {
    position: relative;
    padding: 60px 0;
    background: #f9f9f9
}

section#industries-section .wrapper {
    padding: 0 1rem;
    text-align: center
}

section#industries-section .wrapper .industries-slider {
    width: 75%;
    margin: 0 auto
}

section#industries-section h3 {
    font-family: Inter;
    font-size: 50px;
    font-weight: 900;
    line-height: 1;
    color: #000
}

section#industries-section .wrapper img {
    object-fit: contain;
    margin: auto;
    margin-bottom: 15px
}

section#industries-section .wrapper h4 {
    font-size: 20px;
    font-weight: 600;
    color: #000;
    line-height: 30px;
    margin-bottom: 0;
    min-height: 60px
}

section#industries-section p {
    color: #000;
    font-weight: 500;
    font-size: 16px;
    line-height: 25px;
    margin-bottom: 50px
}

section#industries-section .wrapper .box {
    position: relative;
    width: 70%;
    margin: auto!important;
    padding: 40px 1rem 10px 1rem;
    box-shadow: 0 5px 18px 0 rgba(0, 0, 0, .17);
    border-style: solid;
    border-width: 3px;
    border-image: linear-gradient(45deg, #069647, #165e38) 1
}

section#industries-section .wrapper .box:hover {
    background-image: -moz-linear-gradient(-2deg, #3978ac 0, #00a14b 100%);
    background-image: -webkit-linear-gradient(-2deg, #3978ac 0, #00a14b 100%);
    background-image: -ms-linear-gradient(-2deg, #3978ac 0, #00a14b 100%);
    border: inherit
}

section#industries-section .wrapper .box:hover:after {
    display: none
}

section#industries-section .wrapper .box:hover h4 {
    color: #fff
}

section#industries-section .wrapper .box:hover img {
    filter: brightness(0) invert(1)
}

section#industries-section .wrapper .slick-next:before {
    content: url(https://imagedelivery.net/nJwaBs__P2JfMUeYJ4vmjQ/71cadb08-ca19-4643-ef98-21181841d000/public);
    opacity: 1
}

section#industries-section .wrapper .slick-prev:before {
    content: url(https://imagedelivery.net/nJwaBs__P2JfMUeYJ4vmjQ/e155835d-f2db-4ef9-01f0-1fb27dbc5e00/public);
    opacity: 1
}

section#whychoose-section {
    padding: 50px 0;
    position: relative;
    background-image: url(https://imagedelivery.net/nJwaBs__P2JfMUeYJ4vmjQ/8a050955-9bdc-42f2-a718-0ac84e54a200/public);
    background-size: cover;
    background-position: right top;
    background-repeat: no-repeat
}

section#whychoose-section .top-content {
    text-align: center;
    margin-bottom: 50px
}

section#whychoose-section .top-content h2 {
    font-size: 45px;
    font-weight: 900;
    line-height: 55px;
    color: #000
}

section#whychoose-section .top-content p {
    color: #000;
    font-weight: 600;
    font-size: 18px;
    line-height: 28px;
    text-align: center;
    margin-bottom: 0
}

section#whychoose-section .main-content h3 {
    font-weight: 800;
    font-size: 28px;
    line-height: 38px;
    color: #262626;
    margin-bottom: 20px
}

section#whychoose-section .main-content p {
    font-weight: 500;
    font-size: 17px;
    line-height: 27px;
    color: #000
}

section#whychoose-section .main-content {
    padding: 0 25px
}

section#whychoose-section .main-content p span {
    background: -webkit-linear-gradient(left, #3978ac 30%, #00a14b 70%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 25px;
    font-weight: 900
}

section#whychoose-section .main-content .cta-box {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-top: 30px
}

section#whychoose-section .main-content .cta-box a {
    display: block;
    width: 200px;
    font-size: 18px;
    color: #fff;
    background: linear-gradient(to right, #069647, #05532b);
    margin-right: 15px;
    text-align: center;
    height: 50px;
    line-height: 50px
}

section#whychoose-section .main-content .box {
    background-color: transparent;
    border-style: solid;
    border-width: 2px;
    border-image: linear-gradient(45deg, #3879aa, #01a04d) 1;
    padding: 0;
    box-shadow: 2px 2px 20px #ccc;
    transition: all .5s;
    cursor: pointer;
    margin-bottom: 15px;
    height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center
}

section#whychoose-section .main-content .box img {
    object-fit: contain;
    display: block;
    margin: 0 auto;
    margin-bottom: 10px
}

section#whychoose-section .main-content .box h4 {
    font-size: 14px;
    font-weight: 600;
    color: #000;
    text-align: center;
    line-height: 20px
}

section#whychoose-section .main-content .box.mr-top {
    margin-top: -50px
}

section#whychoose-section .main-content .box:hover {
    background: linear-gradient(to left, #3879aa, #01a04d)
}

section#whychoose-section .main-content .box:hover h4 {
    color: #fff
}

section#whychoose-section .main-content .box:hover img {
    filter: brightness(0) invert(1)
}

section#grow-section {
    position: relative;
    padding: 70px 0;
    background: #258788;
    background: linear-gradient(90deg, #258788 35%, #079d58 100%);
}

section#grow-section::after {
    content: '';
    position: absolute;
    display: block;
    width: 701px;
    height: 581px;
    background-image: url(https://imagedelivery.net/nJwaBs__P2JfMUeYJ4vmjQ/91eb9dc4-7234-4ed7-69f6-4d5ac0e31c00/public);
    background-position: top;
    background-size: contain;
    background-repeat: no-repeat;
    top: -60px;
    right: 100px;
}

section#grow-section h4 {
    color: #fff;
    font-size: 30px;
    font-weight: 900;
    line-height: 40px;
}

section#grow-section p {
    font-size: 15px;
    color: #fff;
    font-weight: 400;
    line-height: 25px;
}

section#grow-section form {
    width: 75%;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

section#grow-section form input {
    width: 100%;
    border: inherit;
    height: 55px;
    font-size: 16px;
    padding: 10px 20px;
    box-sizing: border-box;
    color: #000;
    box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.19);
}

section#grow-section form input::placeholder {
    color: #9b9b9b;
}

section#grow-section form button {
    border: inherit;
    padding: 0;
    width: 100%;
    height: 55px;
    background-color: #ffc90e;
    color: #000;
    font-size: 18px;
    font-weight: 700;
    margin-top: 15px;
    box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.19);
}

section#casestudy-section {
    position: relative;
    /* padding: 70px 0; */
}

section#casestudy-section h4 {
    font-size: 45px;
    font-weight: 900;
    line-height: 55px;
    background: -webkit-linear-gradient(left, #3879ab, #3879ab, #02a04e, #02a04e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: #00000021;
}

section#casestudy-section p {
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #000;
}

section#casestudy-section a.cta {
    display: block;
    width: 200px;
    font-size: 18px;
    color: #fff;
    background: linear-gradient(to right, #069647, #05532b);
    margin-right: 15px;
    text-align: center;
    height: 50px;
    line-height: 50px;
}

section#portfolio-section {
    position: relative;
    padding: 40px 0;
}

section#portfolio-section h4 {
    font-size: 45px;
    font-weight: 900;
    line-height: 55px;
    background: -webkit-linear-gradient(left, #3879ab, #3879ab, #02a04e, #02a04e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: #00000021;
    margin-bottom: 10px;
}

section#portfolio-section p {
    font-size: 20px;
    color: #505050;
    font-weight: 400;
    line-height: 30px;
    margin-bottom: 0;
}

section#portfolio-section div#nav-tab button {
    width: 49%;
    padding: 10px;
    text-align: left;
    border: 0 !important;
    margin-top: 30px;
    font-size: 18px;
    color: #000;
    font-weight: 600;
    transition: all 0.3s;
}

section#portfolio-section div#nav-tab button img {
    margin-right: 15px;
}

section#portfolio-section div#nav-tab {
    border-bottom: 0 !important;
    justify-content: space-between;
}

section#portfolio-section div#nav-tab button.active {
    border-radius: 5px;
    background-color: rgb(229 228 229 / 65%);
    box-shadow: 0px 0px 32px 0px rgba(0, 0, 0, 0.05);
    border-left: 5px solid #46b19c !important;
    padding: 10px;
}

div#readContent,
div#readContent2 {
    display: none;
}

button#readMore,
button#readMore2 {
    padding: 0;
    border: inherit;
    background-color: transparent;
    color: #000;
    font-weight: 700;
    font-size: 18px;
    display: block;
    margin-top: 20px;
}

.col-xl-7.center.slick-initialized.slick-slider img {
    max-width: 295px;
}

.slick-slide img {
    max-width: 100%;
    transition: transform 0.5s;
}

.slick-slide.slick-center img {
    transform: scale(2.1);
}

.showtooltip {
    opacity: 1
}

.show-tooltip {
    display: none;
    background: #316995;
    color: #fff;
    padding: 12px 20px;
    border-radius: 10px;
    text-align: left;
    position: absolute;
    width: 330px
}

@media (max-width:600px) {
    #technologies-section,
    section#seoprocess-section {
        display: none
    }
}

section#casestudy-section .slick-slide {
    background-image: url(https://imagedelivery.net/nJwaBs__P2JfMUeYJ4vmjQ/e2ea9e45-a9e4-4bf2-01fc-cdc222fab500/public);
    min-height: 300px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 15px;
    position: relative;
    opacity: 0;
}

section#casestudy-section .slick-slide.slick-current.slick-active {
    opacity: 1;
    position: relative;
    box-shadow: 0px 0px 20px #d1b7b7;
    min-height: 400px;
    width: 300px !important;
}

section#casestudy-section .slick-slide.slick-active {
    opacity: 0.3;
    width: 180px !important;
    position: relative;
}

section#casestudy-section .slick-list {
    padding: 50px !important;
}

section#casestudy-section .slick-list .slick-track {
    display: flex;
    align-items: center;
}

section#casestudy-section .slick-slide a {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    bottom: 0;
    justify-content: center;
    width: 80px;
    height: 80px;
    margin: auto;
    background-color: #438394a6;
    color: #fff;
    border-radius: 50px;
}

section#casestudy-section .slick-slide a i {
    font-size: 25px;
}

section#casestudy-section .slick-slide h5 {
    display: none !important;
}

section#casestudy-section .slick-slide.slick-current.slick-active h5 {
    display: block !important;
    position: absolute;
    bottom: 30px;
    left: 15px;
    font-size: 35px;
    color: #fff;
    font-weight: 700;
    text-align: left;
    line-height: 45px;
    right: 0;
    margin: auto;
}


/* @-webkit-keyframes slideLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
    }
}

@keyframes slideLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
    }
}

@-webkit-keyframes slideRight {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }
}

@keyframes slideRight {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }
} */


/* header#header .container {
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 0 1.5rem;
} */

header#header {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 0.75rem 0;
    z-index: 100;
    background: var(--color-white);
    -webkit-box-shadow: var(--shadow-medium);
    box-shadow: var(--shadow-medium);
}

header#header .wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

header#header .header-item-left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 17%;
    flex: 0 0 17%;
}

header#header .header-item-center {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

header#header .header-item-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 17%;
    flex: 0 0 17%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

header#header .menu>ul {
    margin: 0;
    padding: 0;
}

header#header .menu>ul>li {
    display: inline-block;
    line-height: 3.125rem;
    margin-left: 1.5rem;
}

header#header .menu>ul>li>a {
    position: relative;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.25;
    border: none;
    outline: none;
    color: #fff;
    text-transform: capitalize;
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease;
}

header#header .menu>ul>li .menu-subs {
    position: absolute;
    width: 100%;
    height: auto;
    margin-top: 1.75rem;
    padding: 1rem 2rem;
    z-index: 109;
    opacity: 0;
    visibility: hidden;
    border-top: 5px solid #edb91b;
    /* background: #258788; */
    /* background: linear-gradient(90deg, #258788 35%, #079d58 100%); */
    -webkit-box-shadow: var(--shadow-medium);
    box-shadow: 0 10px 10px -5px;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
    background-color: #fff;
}

header#header .menu>ul>li .menu-subs>ul>li {
    line-height: 1;
}

header#header .menu>ul>li .menu-subs>ul>li>a {
    display: inline-block;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.25;
    padding: 0.75rem 0;
    border: none;
    outline: none;
    color: var(--color-black);
    text-transform: capitalize;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

header#header .menu>ul>li .menu-column-1 {
    min-width: 16rem;
    max-width: 20rem;
}

header#header .menu>ul>li .menu-subs.menu-mega {
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

header#header .menu>ul>li .menu-subs.menu-mega>.list-item>ul>li {
    display: block;
    line-height: 1;
}

header#header .menu>ul>li .menu-subs.menu-mega>.list-item>ul>li>a {
    display: inline-block;
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    padding: 0.5rem 0;
    border: none;
    outline: none;
    color: #000;
    text-transform: capitalize;
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease;
}

header#header .menu>ul>li .menu-subs.menu-column-4 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    max-width: 100%;
    width: 100%;
    padding: 1.25rem 1rem;
}

header#header .menu>ul>li .menu-subs.menu-column-4>.list-item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 24%;
    padding: 0.5rem;
    border-radius: 8px;
    margin-right: 15px;
}

header#header .menu>ul>li .menu-subs.menu-column-4>.list-item .title {
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    margin: 0;
    color: #000;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    padding: 10px 0;
}

header#header .menu>ul>li .menu-subs.menu-column-4>.list-item.text-center .title {
    text-align: center;
}

header#header .menu>ul>li .menu-subs.menu-column-4>.list-item img {
    margin-right: 10px;
}

header#header .menu>ul>li .menu-subs.menu-mega>.list-item>ul>li>a:hover,
header#header .menu>ul>li .menu-subs>ul>li>a:hover {
    color: #f2bc18;
}

header#header .header-item-right a:hover,
header#header .menu>ul>li:hover>a {
    color: #f2bc18;
}

header#header .menu>ul>li .menu-subs.menu-mega>.list-item>ul {
    padding: 0;
    margin: 0;
}

header#header .menu-mobile-header,
header#header .menu-mobile-toggle {
    display: none;
}

header#header .header-item-right a.cta {
    font-size: 18px;
    font-weight: 700;
    line-height: 30px;
    display: inline-block;
    width: max-content;
    background-color: #fff;
    color: #000;
    padding: 0.5em 1em;
    box-shadow: 0 2px 24px 0 rgb(0 0 0 / 16%);
    border-radius: 12px;
}

section#seoprocess-section .flip-card {
    background-color: transparent;
    height: 150px;
    perspective: 1000px;
}

section#seoprocess-section .flip-card-inner {
    position: relative;
    transition: transform .7s ease-in-out;
    transform-style: preserve-3d;
    height: 100%;
    display: flex;
    align-items: center;
}

section#seoprocess-section .flip-card-front {
    background-color: #fff;
    color: #000;
}

section#seoprocess-section .flip-card-back {
    color: #000;
    transform: rotateY(180deg);
}

section#seoprocess-section .flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

section#seoprocess-section .flip-card-back,
section#seoprocess-section .flip-card-front {
    position: absolute;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

section#seoprocess-section h3 {
    font-size: 45px;
    font-weight: 900;
    line-height: 55px;
    background: -webkit-linear-gradient(left, #3879ab, #3879ab, #02a04e, #02a04e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: #00000021;
}

section#seoprocess-section .flip-card h5 {
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
    margin-bottom: 0;
}

section#seoprocess-section .flip-card p {
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    color: #000;
    margin-bottom: 0;
}

section#seoprocess-section .flip-card-back {
    overflow-y: scroll;
    height: 100%;
    padding: 5px;
}

section#seoprocess-section .flip-card-back p {
    text-align: justify;
}

section#seoprocess-section .flip-card-back::-webkit-scrollbar {
    width: 5px;
}

section#seoprocess-section .flip-card-back::-webkit-scrollbar-track {
    background: transparent;
}

section#seoprocess-section .flip-card-back::-webkit-scrollbar-thumb {
    background: #818181;
}

section#seoprocess-section .flip-card-back::-webkit-scrollbar-thumb:hover {
    background: transparent;
}

section#seoprocess-section .flip-card.align-left {
    position: relative;
    right: -50px;
}

section#seoprocess-section .flip-card.align-right {
    position: relative;
    left: -50px;
}

section#our-seo-services-section {
    position: relative;
    padding: 50px 0
}

section#our-seo-services-section h3 {
    text-align: center;
    font-family: Inter;
    font-size: 50px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 40px;
    color: #000
}

section#our-seo-services-section p {
    font-size: 16px;
    font-family: Inter;
    color: #000;
    font-weight: 500;
    margin-bottom: 30px;
    text-align: center
}

section#our-seo-services-section .flip-card {
    background-color: transparent;
    height: 350px;
    perspective: 1000px;
    margin-bottom: 1.5rem
}

section#our-seo-services-section .flip-card-front div {
    display: flex;
    align-items: center;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    padding: 0 1.5rem
}

section#our-seo-services-section .flip-card-front h4 {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    line-height: 1.3;
    display: flex;
    align-items: center;
    min-height: 50px
}

section#our-seo-services-section .flip-card-front img {
    margin-bottom: 15px;
    max-width: 100%;
    object-fit: contain
}

section#our-seo-services-section .flip-card-front p {
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
    margin-bottom: 0;
    color: #000
}

section#our-seo-services-section .flip-card-front a {
    display: none;
    font-size: 16px;
    color: #000;
    font-weight: 700;
    line-height: 1;
    margin-top: 5px
}

section#our-seo-services-section .flip-card-back h5 {
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 10px;
    color: #000;
    text-align: center
}

section#our-seo-services-section .flip-card-back p {
    font-size: 13px;
    font-weight: 400;
    line-height: 20px;
    margin: 0;
    text-align: justify;
    color: #000
}

section#our-seo-services-section .flip-card-back a {
    font-size: 14px;
    color: #000;
    font-weight: 600;
    display: block;
    width: 100%;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border: 1px solid #000;
    margin-top: 15px
}

section#our-seo-services-section .flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform .6s;
    transform-style: preserve-3d
}

section#our-seo-services-section .flip-card:hover .flip-card-inner {
    transform: rotateY(180deg)
}

section#our-seo-services-section .flip-card-back,
section#our-seo-services-section .flip-card-front {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden
}

section#our-seo-services-section .flip-card.row-one {
    border-style: solid;
    border-width: 3px;
    border-image: linear-gradient(45deg, #0071bc, #02588d) 1
}

section#our-seo-services-section .flip-card.row-two {
    border-style: solid;
    border-width: 3px;
    border-image: linear-gradient(45deg, #069647, #165e38) 1
}

section#our-seo-services-section .flip-card.row-three {
    border-style: solid;
    border-width: 3px;
    border-image: linear-gradient(45deg, #e5b31d, #927315) 1
}

section#our-seo-services-section .flip-card-front {
    background-color: #fff;
    color: #000
}

section#our-seo-services-section .flip-card-back {
    color: #fff;
    transform: rotateY(180deg);
    text-align: left;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    background-color: #fff
}

header#header .menu>ul>li .menu-subs.menu-column-4>.list-item:nth-child(1) {
    background-color: #f2f8ff;
}

header#header .menu>ul>li .menu-subs.menu-column-4>.list-item:nth-child(2) {
    background-color: #f1f5f9;
}

header#header .menu>ul>li .menu-subs.menu-column-4>.list-item:nth-child(3) {
    background-color: #f2f5f9;
}

@media screen and (min-width: 993px) {
    header#header .menu>ul>li.menu-item-has-children:hover .menu-subs {
        margin-top: 30px;
        opacity: 1;
        visibility: visible;
    }
}

@media screen and (max-width: 992px) {
    header#header .header-item-center {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3;
    }
    header#header .header-item-left,
    header#header .header-item-right {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    }
    header#header .wrapper {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        margin: 0 auto;
        padding: 0.5rem 0;
    }
    header#header .menu-mobile-toggle {
        position: relative;
        display: block;
        cursor: pointer;
        width: 1.75rem;
        height: 1rem;
        border: none;
        outline: none;
        margin-left: 1.25rem;
        margin-top: -0.25rem;
        background: none;
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
        -webkit-transition: 0.35s ease-in-out;
        transition: 0.35s ease-in-out;
    }
    header#header .menu-mobile-toggle span {
        display: block;
        position: absolute;
        width: 100%;
        height: 2px;
        left: 0;
        border: none;
        outline: none;
        opacity: 1;
        border-radius: 0.25rem;
        background: #fff;
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
        -webkit-transition: 0.25s ease-in-out;
        transition: 0.25s ease-in-out;
    }
    header#header .menu-mobile-toggle span:nth-child(1) {
        top: 0;
    }
    header#header .menu-mobile-toggle span:nth-child(2),
    header#header .menu-mobile-toggle span:nth-child(3) {
        top: 0.5rem;
    }
    header#header .menu-mobile-toggle span:nth-child(4) {
        top: 1rem;
    }
    header#header .header-item-right {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
    header#header .menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 75%;
        height: 100%;
        z-index: 111;
        overflow: hidden;
        background: #258788;
        background: linear-gradient(90deg, #258788 35%, #079d58 100%);
        -webkit-transform: translate(-100%);
        transform: translate(-100%);
        -webkit-transition: all 0.5s ease-in-out;
        transition: all 0.5s ease-in-out;
    }
    header#header .menu.active {
        -webkit-transform: translate(0%);
        transform: translate(0%);
    }
    header#header .menu>ul>li {
        display: block;
        line-height: 1;
        margin: 0;
    }
    header#header .menu>ul>li>a {
        display: block;
        line-height: 3.125rem;
        height: 3.125rem;
        padding: 0 3.125rem 0 1rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }
    header#header .menu>ul>li>a i.ion {
        position: absolute;
        font-size: 1.25rem;
        line-height: 3.125rem;
        top: 0;
        right: 0;
        width: 3.125rem;
        height: 3.125rem;
        text-align: center;
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg);
    }
    header#header .menu .menu-mobile-header {
        position: relative;
        position: sticky;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        top: 0;
        height: 3.125rem;
        z-index: 110;
        background: var(--color-white);
    }
    header#header .menu .menu-mobile-header .menu-mobile-arrow {
        display: none;
        font-size: 1.25rem;
        line-height: 3.125rem;
        width: 3.125rem;
        height: 3.125rem;
        cursor: pointer;
        text-align: center;
        border-right: 1px solid rgba(0, 0, 0, 0.1);
        color: var(--color-black);
    }
    header#header .menu .menu-mobile-header.active .menu-mobile-arrow {
        display: block;
    }
    header#header .menu .menu-mobile-header .menu-mobile-title {
        font-family: inherit;
        font-size: 1rem;
        font-weight: 500;
        line-height: inherit;
        color: #fff;
        text-transform: capitalize;
    }
    header#header .menu .menu-mobile-header .menu-mobile-close {
        font-size: 2.25rem;
        line-height: 3.125rem;
        cursor: pointer;
        width: 3.125rem;
        height: 3.125rem;
        text-align: center;
        border-left: 1px solid rgba(0, 0, 0, 0.1);
        color: var(--color-black);
    }
    header#header .menu .menu-section {
        height: 100%;
        overflow-y: auto;
        overflow-x: hidden;
    }
    header#header .menu>ul>li .menu-subs {
        position: absolute;
        display: none;
        top: 0;
        left: 0;
        max-width: none;
        min-width: auto;
        width: 100%;
        height: 100%;
        margin: 0;
        padding: 1rem;
        padding-top: 4rem;
        opacity: 1;
        overflow-y: auto;
        visibility: visible;
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
        -webkit-box-shadow: none;
        box-shadow: none;
    }
    header#header .menu>ul>li .menu-subs.menu-mega {
        position: absolute;
        display: none;
        top: 0;
        left: 0;
        max-width: none;
        min-width: auto;
        width: 100%;
        height: 100%;
        margin: 0;
        padding: 1rem;
        padding-top: 4rem;
        opacity: 1;
        overflow-y: auto;
        visibility: visible;
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
        -webkit-box-shadow: none;
        box-shadow: none;
    }
    header#header .menu>ul>li .menu-subs.active {
        display: block;
    }
    header#header .menu>ul>li .menu-subs.menu-column-4>.list-item {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        padding: 0rem;
    }
    /* header#header .menu>ul>li .menu-subs.menu-column-4>.list-item img {
        margin-top: 0;
    } */
    header#header .menu>ul>li .menu-subs.menu-column-4>.list-item.text-center .title {
        margin-bottom: 1.25rem;
    }
    header#header .menu>ul>li .menu-subs.menu-column-4>.list-item.text-center:last-child .title {
        margin-bottom: 0rem;
    }
    header#header .menu>ul>li .menu-subs>ul>li>a {
        display: block;
    }
    header#header .menu>ul>li .menu-subs.menu-mega>.list-item>ul {
        margin-bottom: 1rem;
    }
    header#header .menu>ul>li .menu-subs.menu-mega>.list-item>ul>li>a {
        display: block;
    }
    header#header .overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 100;
        opacity: 0;
        visibility: hidden;
        background: rgba(0, 0, 0, 0.65);
        -webkit-transition: all 0.45s ease-in-out;
        transition: all 0.45s ease-in-out;
    }
    header#header .overlay.active {
        opacity: 1;
        visibility: visible;
    }
    header#header .header-item-right a.cta {
        display: none;
    }
}

@media only screen and (max-width:500px) {
    section.contactus-section .contactus-area {
        padding: 0
    }
    section.contactus-section h2 {
        font-size: 24px;
        line-height: 34px
    }
    section.contactus-section h2 span,
    section.contactus-section span {
        font-size: 30px
    }
    section.contactus-section h2 br {
        display: none
    }
    section.contactus-section a {
        font-size: 12px;
        margin-bottom: 20px
    }
    section.faqs-section h4 {
        font-size: 24px;
        line-height: 34px;
        margin-bottom: 10px
    }
    section.faqs-section button.accordion-button {
        padding: 10px;
        font-size: 14px;
        line-height: 22px
    }
    section.faqs-section .accordion-button::after {
        width: 10px;
        height: 10px
    }
    .accordion-flush .accordion-item .accordion-body {
        padding: 10px;
        font-size: 14px;
        line-height: 22px
    }
    div#site-footer footer.footer .footer-main {
        padding: 40px 0
    }
    div#site-footer .footer-main .industries {
        display: block
    }
    div#site-footer .footer-main h3 {
        margin: 20px 0
    }
    div#site-footer .footer-main .alllocations {
        padding-left: calc(var(--bs-gutter-x) * .5)
    }
    div#site-footer .footer-main a,
    div#site-footer .footer-main ul li a {
        font-size: 14px;
        line-height: 26px
    }
    div#site-footer footer.footer .footer-bottom ul {
        display: block;
        text-align: center
    }
    div#site-footer footer.footer .footer-bottom ul li {
        margin: 10px 0
    }
    div#site-footer footer.footer .footer-bottom p {
        font-size: 15px;
        line-height: 25px
    }
    div#leftside-form,
    div#leftside-form-btn,
    div#rightside-call,
    div#rightside-chat {
        display: none
    }
    button#leftside-form-btn {
        display: none
    }
    section#our-seo-services-section {
        padding: 20px 0
    }
    section#our-seo-services-section h3 {
        font-size: 24px;
        line-height: 34px;
        margin-bottom: 20px
    }
    section#our-seo-services-section p {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 15px
    }
    section#our-seo-services-section .flip-card.row-three {
        display: none
    }
    section#seolocations-section {
        display: none
    }
    section#industries-section h3 {
        font-size: 24px;
        line-height: 34px
    }
    section#industries-section p {
        font-size: 14px;
        line-height: 24px
    }
    section#industries-section .wrapper .box {
        width: 100%
    }
    section#industries-section .wrapper .industries-slider {
        width: 100%
    }
    section#whychoose-section .top-content h2 {
        font-size: 24px;
        line-height: 34px
    }
    section#whychoose-section .top-content p {
        font-size: 14px;
        line-height: 24px
    }
    section#whychoose-section .main-content h3 {
        font-size: 17px;
        line-height: 27px
    }
    section#whychoose-section .main-content h3 br {
        display: none
    }
    section#whychoose-section .main-content p {
        font-size: 14px;
        line-height: 24px
    }
    section#whychoose-section .top-content {
        margin-bottom: 20px
    }
    section#whychoose-section .main-content .cta-box a {
        width: 100%!important;
        margin: 10px 0
    }
    section#whychoose-section .main-content .cta-box {
        flex-direction: column;
        margin: 20px 0
    }
    section#whychoose-section .main-content .box.mr-top {
        margin: 0
    }
    section#whychoose-section .main-content .box {
        margin: 0!important;
        margin-bottom: 20px!important
    }
    section.contactus-section h2 br {
        display: none
    }
    section.contactus-section h2 span {
        display: inline-block
    }
    section.contactus-section .contact-form h3 {
        font-size: 24px
    }
    section.contactus-section {
        background-image: inherit;
        background-image: inherit;
        background: #258788;
        background: linear-gradient(90deg, #258788 35%, #079d58 100%);
        padding: 30px 0
    }
    section#whychoose-section {
        background-image: inherit
    }
    div#site-footer footer.footer .footer-main .row .col-lg-3:last-child img {
        display: none
    }
    section#tootlTipArea {
        display: none
    }
    div#site-footer .footer-main .locations {
        display: block
    }
    section#whychoose-section .main-content {
        padding: 0
    }
    section.faqs-section div#accordionFlushExample {
        width: 100%
    }
    div#site-footer footer.footer .footer-bottom p a {
        padding: 0
    }
    section#pagebanner-section .background-wrapper {
        background: #258788;
        background: linear-gradient(90deg, #258788 35%, #079d58 100%)!important;
        padding: 150px 0 50px 0;
    }
    section#pagebanner-section span {
        display: block;
        font-size: 16px;
        letter-spacing: 1px;
        line-height: 26px;
        margin-bottom: 5px;
        text-align: left;
    }
    section#pagebanner-section h1 {
        font-size: 20px;
        letter-spacing: 1px;
        line-height: 30px;
        margin-bottom: 20px;
        text-align: left;
    }
    section#pagebanner-section h1 br {
        display: none;
    }
    section#pagebanner-section .banner-form {
        flex-wrap: wrap;
    }
    section#pagebanner-section .banner-form input {
        width: 100%!important;
        margin-bottom: 10px;
    }
    section#pagebanner-section .banner-form button {
        width: 100%;
    }
    section#pagebanner-section .counter-row,
    section#pagebanner-section .partners-logo {
        display: none !important;
    }
    section#bussinessproblem-section h2 {
        font-size: 24px;
        line-height: 34px;
        margin: 10px 0;
        margin-top: 30px;
        margin-bottom: 0;
    }
    section#bussinessproblem-section .wrapper {
        background-image: inherit;
        padding: 30px 0;
    }
    section#bussinessproblem-section .wrapper .box {
        padding: 20px;
        width: 90%;
    }
    section#bussinessproblem-section .wrapper .box p {
        font-size: 14px;
        margin-top: 10px;
    }
    section#marketingbanner-section h3 {
        font-size: 20px;
        line-height: 30px;
    }
    section#marketingbanner-section p {
        font-size: 14px;
        line-height: 24px;
    }
    section#marketingbanner-section p br {
        display: none;
    }
    section#marketingbanner-section a.call {
        font-size: 20px;
        line-height: 30px;
        padding-left: 40px;
    }
    section#marketingbanner-section a.call::before {
        width: 30px;
        height: 30px;
        top: 0;
    }
    section#marketingbanner-section h4 {
        font-size: 20px;
        line-height: 30px;
        margin-top: 20px;
    }
    section#marketingbanner-section h4 br {
        display: none;
    }
    section#marketingbanner-section h4 span {
        font-size: 24px;
        line-height: 34px;
    }
    section#marketingbanner-section {
        padding: 30px 0;
        background-image: inherit;
        background: #258788;
        background: linear-gradient(90deg, #258788 35%, #079d58 100%);
    }
    section.digitalmarketing-section h4,
    section.roi-section h4 {
        font-size: 22px;
        line-height: 32px;
    }
    section.digitalmarketing-section h4 br {
        display: none;
    }
    section.digitalmarketing-section p {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 10px;
    }
    section.digitalmarketing-section form {
        width: 100%;
    }
    section.digitalmarketing-section form button {
        font-size: 14px;
        width: 50%;
    }
    section.digitalmarketing-section form input {
        width: 50%;
        border-width: 2px;
    }
    section.digitalmarketing-section img {
        display: none;
    }
    section.roi-section h4 br {
        display: none;
    }
    section.roi-section img {
        display: none;
    }
    section.roi-section .box p {
        font-size: 14px;
    }
    section#clientslogo-section {
        display: none;
    }
    section.digitalmarketing-section {
        padding: 30px 0;
    }
    section.roi-section {
        padding: 10px 0 30px 0;
    }
    section.digitalmarketing-section form {
        margin-top: 20px;
    }
    section#grow-section::after {
        display: none;
    }
    section#grow-section h4 {
        font-size: 25px;
        line-height: 35px;
    }
    section#grow-section h4 br {
        display: none;
    }
    section#grow-section p {
        font-size: 15px;
        line-height: 25px;
    }
    section#grow-section form {
        width: 100%;
    }
    section#grow-section {
        padding: 30px 0;
    }
    section#portfolio-section {
        display: none;
    }
    section#casestudy-section .center-casestudy {
        display: none;
    }
    section#casestudy-section h4 {
        font-size: 25px;
        line-height: 35px;
    }
    section#casestudy-section h4 br {
        display: none;
    }
    section.roi-section .box h5 span {
        font-size: 14px;
        top: -4px;
    }
    section.roi-section .box h5 {
        font-size: 25px;
        line-height: 35px;
    }
    section#casestudy-section {
        padding: 20px 0;
    }
    section#our-seo-services-section {
        padding: 20px 0
    }
    section#our-seo-services-section p {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 15px
    }
    section#our-seo-services-section .flip-card.row-three {
        display: none
    }
}

.heading__box {
    width: 90%;
    padding: 8px 5px;
}

.heading__box h6 {
    font-size: 14px;
    text-align: left;
    font-weight: 600;
    line-height: 24px;
}

.heading__box a {
    color: #000;
}

.heading__box a:hover {
    color: #CCA42C;
}
.font__18{
    font-size:18px;
    font-weight:700;
}
ol li{
    font-weight:normal !important;
    font-size:18px;
}
.background-wrapper h1 a {
    color: #fff !important;
}
section.packages-section {
    position: relative;
    padding: 0 0 100px 0;
}
section.packages-section .top-content {
    margin-bottom: 60px
}
section.packages-section .top-content h2 {
    font-size: 45px;
    font-weight: 900;
    color: #000;
    line-height: 1.1;
    margin-bottom: 15px
}
section.packages-section .top-content p {
    font-size: 18px;
    font-weight: 500;
    color: #000;
    line-height: 25px;
    margin-bottom: 0
}
section.packages-section ul#pills-tab {
    justify-content: center;
    width: max-content;
    margin: 0 auto !important;
    padding: 1.5em;
    border-radius: 20px;
    background-color: #fcfcfc;
    box-shadow: 0 2px 24px 0 rgba(0, 0, 0, .16);
    position: relative;
    bottom: -25px;
    z-index: 1;
    display: none
}
section.packages-section ul#pills-tab li button {
    font-size: 20px;
    font-weight: 700;
    padding: .5em 1.5em;
    border-radius: 15px;
    color: #000;
    text-transform: uppercase
}
section.packages-section ul#pills-tab li button span {
    display: block;
    font-size: 15px;
    font-weight: 500;
    color: #a80b0b
}
section.packages-section ul#pills-tab li button.active {
    color: #fff;
    background-color: #a80b0b
}
section.packages-section ul#pills-tab li button.active span {
    color: #fff
}
section.packages-section .pricing-box {
    position: relative;
    box-sizing: border-box;
    border: 1px solid #000;
    padding-bottom: 30px;
    transition: all .5s ease-in-out
}
section.packages-section .pricing-box:hover {
    box-shadow: 0 0 25px #b3adad;
    cursor: pointer
}
section.packages-section .pricing-box .head {
    padding: 23px;
    min-height: 205px
}
section.packages-section .pricing-box .head h3 {
    font-size: 35px;
    font-weight: 900;
    margin: 0;
    color: #fff;
    position: relative;
    line-height: 1;
    margin-bottom: 0;
    margin-left: 10px
}
section.packages-section .pricing-box .head div {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px
}
section.packages-section .pricing-box .head p {
    font-size: 16px;
    font-weight: 400;
    line-height: 25px;
    margin-bottom: 0;
    color: #fff
}
section.packages-section .pricing-box .scroll-area {
    height: 330px;
    overflow-y: scroll;
    margin: 25px
}
section.packages-section .pricing-box .scroll-area span {
    display: inline-block;
    font-size: 20px;
    color: #000;
    font-weight: 600;
    line-height: 1;
    position: relative;
    width: max-content
}
section.packages-section .pricing-box .scroll-area span::after {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background-color: red;
    margin: 10px 0
}
section.packages-section .pricing-box .scroll-area li {
    list-style: none;
    font-size: 15px;
    color: #393c3d;
    font-weight: 400;
    line-height: 25px;
    position: relative
}
section.packages-section .pricing-box a.order-cta {
    display: inline-block;
    width: 180px;
    height: 50px;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    line-height: 50px;
    margin-bottom: 15px;
    margin-left: 25px
}
section.packages-section .pricing-box.blue a.order-cta {
    background-image: -moz-linear-gradient(180deg, #034971 0, #0071bc 100%);
    background-image: -webkit-linear-gradient(180deg, #034971 0, #0071bc 100%);
    background-image: -ms-linear-gradient(180deg, #034971 0, #0071bc 100%)
}
section.packages-section .pricing-box.green a.order-cta {
    background-image: -moz-linear-gradient(180deg, #054c28 0, #069647 100%);
    background-image: -webkit-linear-gradient(180deg, #054c28 0, #069647 100%);
    background-image: -ms-linear-gradient(180deg, #054c28 0, #069647 100%)
}
section.packages-section .pricing-box.yellow a.order-cta {
    background-image: -moz-linear-gradient(180deg, #caa32d 0, #f3bc18 100%);
    background-image: -webkit-linear-gradient(180deg, #caa32d 0, #f3bc18 100%);
    background-image: -ms-linear-gradient(180deg, #caa32d 0, #f3bc18 100%)
}
section.packages-section .pricing-box p.offer {
    margin-left: 25px;
    font-size: 18px;
    color: #393c3d;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 12px
}
section.packages-section .pricing-box a.call-cta {
    font-size: 16px;
    font-weight: 500;
    color: #000;
    line-height: 1;
    margin-left: 25px
}
section.packages-section .pricing-box .scroll-area::-webkit-scrollbar {
    width: 3px
}
section.packages-section .pricing-box .scroll-area::-webkit-scrollbar-track {
    background-color: #b5b5b5
}
section.packages-section .pricing-box.blue .scroll-area::-webkit-scrollbar-thumb {
    background-color: #006fb8
}
section.packages-section .pricing-box.green .scroll-area::-webkit-scrollbar-thumb {
    background-color: #068d43
}
section.packages-section .pricing-box.yellow .scroll-area::-webkit-scrollbar-thumb {
    background-color: #e0b022
}
section.packages-section div#pills-tabContent {
    padding: 0 25px
}
section.packages-section .pricing-box.blue .head {
    background-image: -moz-linear-gradient(180deg, #034971 0, #0071bc 100%);
    background-image: -webkit-linear-gradient(180deg, #034971 0, #0071bc 100%);
    background-image: -ms-linear-gradient(180deg, #034971 0, #0071bc 100%)
}
section.packages-section .pricing-box.yellow .head {
    background-image: -moz-linear-gradient(180deg, #caa32d 0, #f3bc18 100%);
    background-image: -webkit-linear-gradient(180deg, #caa32d 0, #f3bc18 100%);
    background-image: -ms-linear-gradient(180deg, #caa32d 0, #f3bc18 100%)
}
section.packages-section .pricing-box.green .head {
    background-image: -moz-linear-gradient(180deg, #054c28 0, #069647 100%);
    background-image: -webkit-linear-gradient(180deg, #054c28 0, #069647 100%);
    background-image: -ms-linear-gradient(180deg, #054c28 0, #069647 100%)
}
section.packages-section .pricing-box.blue span::after {
    background-color: #006fb8
}
section.packages-section .pricing-box.green span::after {
    background-color: #068d43
}
section.packages-section .pricing-box.yellow span::after {
    background-color: #d3a829
}
section.packages-section .pricing-box a.call-cta i {
    color: #a80b0b;
    padding-right: 5px
}
section.packages-section .pricing-box .head h3::before {
    content: "";
    display: none;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 70px;
    height: 70px;
    position: absolute;
    left: 0
}
section.packages-section .pricing-box.blue .head h3::before {
    background-image: url(https://imagedelivery.net/nJwaBs__P2JfMUeYJ4vmjQ/6a2ffd5c-8a67-4be8-e625-0531bbf06500/public)
}
section.packages-section .pricing-box.green .head h3::before {
    background-image: url(https://imagedelivery.net/nJwaBs__P2JfMUeYJ4vmjQ/ba7c774b-6817-4ccd-4014-d805f1cf1200/public)
}
section.packages-section .pricing-box.yellow .head h3::before {
    background-image: url(https://imagedelivery.net/nJwaBs__P2JfMUeYJ4vmjQ/bffdfb70-c37d-4b61-68f4-2ce2189bea00/public)
}
section.packages-section .pricing-box .scroll-area li::before {
    content: "";
    display: inline-block;
    background-image: url(https://imagedelivery.net/nJwaBs__P2JfMUeYJ4vmjQ/f6371140-3484-40d3-1612-da21840c0e00/public);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 10px;
    height: 10px;
    margin-right: 5px;
    position: relative;
    top: -1px
}
.single__blog__newsletter {
    text-align: left;
    background-image: url(https://imagedelivery.net/nJwaBs__P2JfMUeYJ4vmjQ/fb825d49-d359-4c2b-6033-3b94b191cf00/public);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top right;
    background-color: #f2f2f2;
    padding: 70px 15px 25px 15px;
}
.single__blog__newsletter h5 {
    background: -webkit-linear-gradient(left, #3978ac 30%, #00a14b 70%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 25px;
    font-weight: 900;
    line-height: 35px;

}
.single__blog__newsletter p {
    font-size: 16px;
    color: #515151;
    line-height: 26px;
    margin-bottom: 20px;
    font-weight: 400;
}
.single__blog__newsletter form input {
    border: 2px solid #1b8e79;
    width: 100%;
    height: 50px;
    padding: 0 20px;
    font-size: 14px;
    color: #000;
    font-weight: 500;
    margin-bottom: 20px;
}
.single__blog__newsletter form button {
    background-image: -moz-linear-gradient(180deg, #034971 0, #0071bc 100%);
    background-image: -webkit-linear-gradient(180deg, #034971 0, #0071bc 100%);
    background-image: -ms-linear-gradient(180deg, #034971 0, #0071bc 100%);
    display: block;
    width: 100%;
    border: inherit;
    height: 50px;
    padding: 0;
    font-size: 18px;
    color: #fff;
    font-weight: 500;
}
@media only screen and (max-width: 1400px) and (min-width: 1000px) {
    .scroll__content {
        height: 100vh;
        overflow-y: scroll;
        scrollbar-color: transparent transparent;
    }
    .scroll__content::-webkit-scrollbar {
        width: 0;
    }
    .scroll__content::-webkit-scrollbar-track {
        background: transparent;
    }
    .scroll__content::-webkit-scrollbar-thumb {
        background: transparent;
    }
    .scroll__content::-webkit-scrollbar-thumb:hover {
        background: transparent;
    }
}
@media only screen and (max-width:676px) {
    section.packages-section {
        padding: 25px 0 !important
    }
    section.packages-section .top-content h2 {
        font-size: 24px;
        line-height: 34px;
        margin-bottom: 10px
    }
    section.packages-section .top-content p {
        font-size: 14px;
        line-height: 22px;
        letter-spacing: 1px
    }
    section.packages-section .top-content p br {
        display: none
    }
    section.packages-section ul#pills-tab {
        width: 100% !important;
        padding: 1em;
        flex-wrap: wrap !important
    }
    section.packages-section ul#pills-tab li {
        width: 100% !important
    }
    section.packages-section ul#pills-tab li button {
        width: 100%
    }
    section.packages-section .top-content h2 br {
        display: none
    }
    section.packages-section .pricing-box .head h3 {
        font-size: 24px;
        margin: 0
    }
    section.packages-section .pricing-box .head div img {
        display: none
    }
    section.packages-section .top-content {
        margin-bottom: 30px
    }
    section.packages-section .pricing-box {
        margin: 15px 0
    }
}
.sticky{
    position:sticky;
    top:15%;
}