/* @font-face {font-family: "Gilroy";
    src: url("../fonts/gilroy-full/Gilroy-Regular.eot");
    src: local("Gilroy Regular"), local("Gilroy-Regular"),
        url("../fonts/gilroy-full/Gilroy-Regular.eot?#iefix") format("embedded-opentype"),
        url("../fonts/gilroy-full/Gilroy-Regular.woff2") format("woff2"),
        url("../fonts/gilroy-full/Gilroy-Regular.woff") format("woff"),
        url("../fonts/gilroy-full/Gilroy-Regular.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;}

@font-face {font-family: "Gilroy";
    src: url("../fonts/gilroy-full/Gilroy-Semibold.eot");
    src: local("Gilroy Semibold"), local("Gilroy-Semibold"),
        url("../fonts/gilroy-full/Gilroy-Semibold.eot?#iefix") format("embedded-opentype"),
        url("../fonts/gilroy-full/Gilroy-Semibold.woff2") format("woff2"),
        url("../fonts/gilroy-full/Gilroy-Semibold.woff") format("woff"),
        url("../fonts/gilroy-full/Gilroy-Semibold.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;}

@font-face {font-family: "Gilroy";
    src: url("../fonts/gilroy-full/Gilroy-Bold.eot");
    src: local("Gilroy Bold"), local("Gilroy-Bold"),
        url("../fonts/gilroy-full/Gilroy-Bold.eot?#iefix") format("embedded-opentype"),
        url("../fonts/gilroy-full/Gilroy-Bold.woff2") format("woff2"),
        url("../fonts/gilroy-full/Gilroy-Bold.woff") format("woff"),
        url("../fonts/gilroy-full/Gilroy-Bold.ttf") format("truetype");
    font-weight: bold;
    font-style: normal;} */

:root {
    --primary-color-600: #DE2B33;

    --secondary-color-25: #EEF3F8;
    --secondary-color-300: #5F7190;
    --secondary-color-400: #3C374E;
    --secondary-color-500: #1F2833;
    --secondary-color-600: #11171E;
    --text-dark-grey: #12171E;
    --text-dark-black: #121820;

    --muted-color-200: #F0F3F8;
    --muted-color-300: #E6EBF4;
    --muted-color-400: #9999B5;

    --muted-text: #8296AD;
    --black-color: #000000;
    --white-color: #FFFFFF;
    --footer-bg: radial-gradient(22.19% 95.72% at 77.81% 50%, #102338 0%, #161E29 100%);
}

body {
    /* font-family: "Gilroy" !important; */
    font-weight: 400;
    font-size: clamp(1rem, 0.9286rem + 0.3571vw, 1.25rem);
    color: var(--black-color);
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
    line-height: normal;
    color: inherit;
    /* font-family: "Gilroy" !important; */
}

.text-sm {
    font-size: 16px !important;
}

.pb-80 {
    padding-bottom: 80px;
}

.ps-80 {
    padding-left: 80px;
}

.pr-80 {
    padding-right: 80px;
}

.z-1 {
    z-index: 1;
    position: relative;
}

.lh-normal {
    line-height: 30px;
}

a {
    text-decoration: none !important;
}

p {
    line-height: clamp(1.625rem, 1.5536rem + 0.3571vw, 1.875rem);
}

.text-xl {
    font-size: clamp(2.125rem, -1.9421rem + 11.3171vw, 9.375rem);
}

.text-lg {
    font-size: clamp(2.125rem, 1.125rem + 5vw, 5.625rem);
}

.text-semi {
    font-size: clamp(1.875rem, 0.4726rem + 3.9024vw, 4.375rem);
}

.text-sm {
    font-size: 0.875rem;
}

.w-bold {
    font-weight: 700 !important;
}

.fw-semibold {
    font-weight: 500 !important;
}

.w-semibold {
    font-weight: 600 !important;
}

.w-normal {
    font-weight: 400 !important;
}

.spacer-y {
    padding-block: 150px;
}

.spacer-xl {
    padding-block: 110px;
}

.spacer-y-sm {
    padding-block: 88px;
}

.mb-70 {
    margin-bottom: 70px;
}

.mb-80 {
    margin-bottom: 80px;
}

.mb-50 {
    margin-bottom: 50px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-20 {
    margin-bottom: 20px;
}

.br-0 {
    border-radius: 0px;
}

.padding-left {
    --page-width: 1600px;
    padding-left: calc(50% - (var(--page-width) / 2) + 12px);
}

.padding-right {
    --page-width: 1600px;
    padding-right: calc(50% - (var(--page-width) / 2) + 12px);
}

.dark-bg {
    color: var(--white-color);
    background-color: var(--secondary-color-600) !important;
}

.muted-bg {
    background-color: var(--secondary-color-25);
}

.primary-text {
    color: var(--primary-color-600);
}

.circle-icon {
    height: 35px;
    width: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    border: 2px solid currentColor;
    flex-shrink: 0;
    transition: all 0.3s;
    position: relative;
}

.circle-icon svg {
    animation: arrow-move 0.5s infinite alternate;
}

.seprator {
    display: block;
    width: 100%;
    margin: 70px 0;
    border: 1px solid #D1D1D1;
}

.rating-logo-wrap {
    display: flex;
    align-items: center;
    gap: 30px;
}

@keyframes arrow-move {
    0% {
        transform: translateX(3px);
    }

    100% {
        transform: translateX(-3px);
    }
}

.faq-blocks .accordion-button:not(.collapsed)::after {
    background-image: unset;
    transform: rotate(359deg) !important;
    content: "-";
    font-size: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 300;
}

.button {
    padding: 16px;
    font-weight: 700;
    transition: all .3s ease;
    display: inline-flex;
    gap: 20px;
    align-items: center;
    transition: all .3s ease;
}

.button-primary {
    color: var(--white-color);
    background-color: var(--primary-color-600);
}

.button-primary:hover path {
    fill: currentColor;
}

.button-primary:hover {
    color: var(--white-color) !important;
    background-color: var(--secondary-color-600) !important;
}

.dark-bg .button-primary:hover {
    color: var(--secondary-color-500) !important;
    background-color: var(--secondary-color-25) !important;
}

.button-black:hover path {
    fill: currentColor;
}

.button-black.outline {
    color: var(--black-color);
    background-color: transparent;
    border: 1px solid var(--black-color);
}

.button-black.outline:hover {
    color: var(--white-color);
    background-color: var(--black-color);
}

.button-white.outline {
    color: var(--white-color);
    background-color: transparent;
    border: 1px solid var(--white-color);
}

.button-white.outline:hover {
    color: var(--black-color);
    background-color: var(--white-color);
}

.button-white.outline:hover svg {
    color: var(--black-color);
}

.counter-text.plus::after {
    content: "+";
}

.counter-text.plus.k::after {
    content: "K+";
}

.zindex-up {
    position: relative;
    z-index: 2;
}

.sticky-blk {
    position: sticky;
    top: 218px;
}

.navbar .primary-btn {
    background-image: unset !important;
    background-color: var(--primary-color-600) !important;
    border-radius: 0 !important;
}

.tech-card img {
    width: 100%;
    max-width: 120px;
    height: 120px;
    object-fit: contain;
}

.page-counter .sphere-wrap {
    position: relative;
    border-radius: 50%;
    padding: 70px;
    box-shadow: 0px 4px 24px 0px rgb(222 43 51 / 32%) inset;
    max-width: 620px;
}

.page-counter .count-item {
    padding: 32px 58px;
    border-width: 1px;
    border-style: dashed;
    border-color: rgba(95, 113, 144, 1);
    border-image: unset;
}

.count-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.count-grid::after {
    content: url(../images/grubhub-images/counter-bg.webp);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.count-item {
    padding: 32px 58px;

    border-image: linear-gradient(#D3B464, #6D5D34) 30;
    border-width: 2px;
    border-style: solid;
}

.count-title .count-icon {
    height: 45px;
    width: 45px;
    min-width: 45px;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--secondary-color-600);
}

.sphere-wrap {
    position: relative;
    border-radius: 50%;
    padding: 70px;
    box-shadow: 0px 4px 24px 0px rgba(255, 237, 189, 1) inset;
}

.sphere-wrap .exp-cont {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.sphere-wrap img {
    border-radius: 50%;
}

.accordion-box {
    padding: 24px 0;
    border-top: 1px solid #CACACA !important;
    border: none;
    border-radius: unset !important;
}

.custom-accordion-wrapper .accordion-button {
    padding: 0 !important;
    font-size: 24px !important;
}

.accor-btn span {
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 10px;
}

.accor-btn span::before {
    content: url(https://indeedtraining.in:9191/wp-content/themes/richnew/images/grubhub-images/accordion-arrow.webp);
    transition: all 0.3s;
    display: inline-block;
    height: 30px;
}

.custom-accordion-wrapper .accordion-button:not(.collapsed),
.custom-accordion-wrapper .accordion-button:focus {
    outline: none;
    box-shadow: none;
    background-color: transparent;
    color: #12171E;
    font-weight: 600;
}

.custom-accordion-wrapper .accordion-button::after {
    display: none;
}

.accordion-box .accordion-body {
    padding: 24px 0 0;
    color: #000;
    font-weight: 500;
    font-size: 18px;
}

.accordion-img-wrapper {
    background-image: url(../images/grubhub-images/mockup-bg.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.accordion-img-wrapper img {
    width: 100%;
    max-width: 50%;
    padding: 50px 0 0;
}

.accor-img-wrapper {
    position: relative;
}

.mockup-img-box {
    width: 100%;
    max-width: fit-content;
    position: absolute;
    inset: 0 0 0 0;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mockup-img-box img {
    width: 100%;
    display: none;
}

.right-image-icon,
.left-image-icon {
    position: absolute;
    inset: 0 30px auto auto;
    width: 100%;
    max-width: 220px;
}

.left-image-icon {
    inset: auto auto 20px 85px;
}

.accordion-wrap {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.accordion-wrap .accord-cont {
    border-left: 1px solid transparent;
    padding-left: 100px;
    position: relative;
}

.accordion-wrap .accord-cont.active-accor {
    border-color: #CDCDCD;
}

.accordion-wrap .accord-cont::before {
    content: "";
    width: 5px;
    height: 50px;
    position: absolute;
    inset: 0px auto 0px -3px;
    background: transparent;
}

.accordion-wrap .accord-cont.active-accor::before {
    background: var(--primary-color-600);
}

.accordion-wrap :is(.h4, .contents) {
    color: #000;
}

.accordion-wrap :is(.h4, .contents).active {
    color: #000;
}

.accordion-wrap .contents {
    display: none;
    font-size: 20px;
    color: #000;
}

.accord-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.tab-sec {
    background-position: top;
    background-size: cover;
    background-repeat: no-repeat;
}

.tab-wrapper {
    border: 1px solid var(--text-dark-black);
    width: 100%;
    max-width: 580px;
    margin: auto;
    border-radius: 50px;
    padding: 6px;
    display: flex;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: nowrap;
}

.tab-wrapper .nav-link {
    border: none;
    background: transparent;
    color: var(--text-dark-black);
    padding: 22px 20px;
    font-size: 22px;
    font-weight: 700;
    border-radius: 50px;
    width: 100%;
}

.tab-wrapper .nav-link.active {
    background-color: var(--text-dark-black);
    color: #fff;
}

.invest-icon-wrapper {
    padding: 10px 0;
}

.invest-icon {
    width: 100%;
    max-width: 75px;
    height: 76px;
    min-width: 76px;
    background: var(--text-dark-grey);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 35px;
    transition: all 0.3s;
}

.invest-content .invest-sep {
    border-top: 1px solid #ddd;
    display: block;
    padding: 15px 0;
    width: 100%;
    max-width: 80%;
}

.invest-content p {
    font-weight: 500;
}

.revenue-icon-wrapper,
.plugin-icon-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 40px 30px;
    border: 1px solid #5f719054;
    border-radius: 2px;
    width: 100%;
}

.revenue-reverse {
    flex-direction: column;
    align-items: baseline;
}

.choose-wrapper {
    background-color: #11171E;
    color: #fff;
}

.choose-wrapper .invest-icon-wrapper {
    padding: 45px 35px;
    background: #1F2833;
    border: 1px solid #1F2833;
    transition: all 0.3s;
}

.choose-wrapper .invest-icon-wrapper:hover {
    background: #0F151B;
    transition: all 0.3s;
}

.choose-wrapper .invest-icon-wrapper:hover .invest-icon {
    background: #1F2833;
}

.service-card .service-img {
    height: 100%;
    width: 100%;
    margin-bottom: 10px;
    border-radius: 0 !important;
    overflow: hidden;
}

.service-card .service-img .card-content {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #142138;
    color: var(--white-color);
    padding: 15px;

    transition: all .3s ease;
}

.service-card:hover .service-img .card-content {
    top: 0%;
}

.service-card:hover .circle-btn {
    background-color: rgb(20, 33, 56);
    animation: pulso-hover 2s infinite;
}

.service-card .service-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.service-card .service-cont {
    padding: 10px 25px;
    border: 1px solid #9999B5;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.circle-btn {
    height: 45px;
    width: 45px;
    padding: 10px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--primary-red-clr);
}

@keyframes pulso {
    0% {
        -moz-box-shadow: 0 0 0 0 rgba(222, 43, 51, .8);
        box-shadow: 0 0 0 0 rgba(222, 43, 51, .8);
    }

    70% {
        -moz-box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
    }

    100% {
        -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

@keyframes pulso-hover {
    0% {
        -moz-box-shadow: 0 0 0 0 rgba(20, 33, 56, .8);
        box-shadow: 0 0 0 0 rgba(20, 33, 56, .8);
    }

    70% {
        -moz-box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
    }

    100% {
        -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

.modal-custom {
    max-width: 900px;
}

.modal-body.modal-body-wrap {
    padding: 0;
}

.modal-body .modal-form-wrap {
    padding: 2rem;
    height: 100%;
    border-radius: 30px 0 0 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.modal-form-wrap {
    background-color: var(--white-color);
}

.modal-content.modal-content-wrap {
    border: none;
    background-color: transparent;
}

.modal-img-wrap {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -60px;
    width: 100%;
}

.modal-body-wrap .new-contact-form .card,
.regular-form .card {
    border: none;
}

.modal-body-wrap .new-contact-form .container,
.modal-body-wrap .new-contact-form .card-body,
.regular-form .container,
.regular-form .card-body {
    padding: 0;
}

.modal-body-wrap .new-contact-form .card-body .row .col-md-6:nth-child(n

    /**/
    +3) {
    width: 100%;
}

.modal-body-wrap .new-contact-form .card-body label,
.regular-form .card-body label {
    display: none;
}

.modal-body-wrap .new-contact-form .card-body .errors,
.regular-form .card-body .errors {
    font-size: 14px;
}

.modal-body-wrap .new-contact-form .card-body :is(input, textarea, select) {
    border-radius: 0;
    border: none;
    border-bottom: 1px solid rgba(2, 2, 30, 0.20) !important;
    padding: 10px 0;
    resize: none;
}

.modal-body-wrap .new-contact-form .card-body :is(input, textarea, select):focus {
    box-shadow: none;
}

.new-contact-form .card-body .row .col-md-6:nth-child(4) {
    position: relative;
}

.new-contact-form .card-body .row .col-md-6:nth-child(4)::after {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M13.2802 5.9668L8.93355 10.3135C8.42021 10.8268 7.58021 10.8268 7.06688 10.3135L2.72021 5.9668' stroke='%2398A2B3' stroke-width='1.5' stroke-miterlimit='10' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    position: absolute;
    top: 13px;
    right: 20px;

    pointer-events: none;
}

.modal-body-wrap .new-contact-form .btn.btn-primary,
.regular-form .btn-primary {
    background-image: linear-gradient(to right, #ce272e 0%, #ff8a12 50%, #d2303b 100%) !important;
    transition: .5s;
    position: relative;
    overflow: hidden;
    background-size: 200% auto !important;
    border: none;
    min-width: 170px !important;
    padding: 10px 20px;
    width: 100%;
}

.regular-form iframe {
    scale: 0.8;
    transform-origin: left;
}

.modal-body-wrap .new-contact-form .btn.btn-primary:hover,
.regular-form .btn.btn-primary:hover {
    background-position: right center !important;
}

.btn-modal-close {
    border: 0;
    position: absolute;
    top: 5px;
    right: 5px;
    width: 24px;
    height: 24px;
    min-width: 24px;
    padding: 0;
    border-radius: 50%;
    background: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.regular-form .row>div {
    width: 100%;
}

.regular-form .row input,
.regular-form .row textarea {
    border: 1px solid rgba(2, 2, 30, 0.20) !important;
}

.btn-modal-close svg {
    fill: black;
}

#demand-popup .modal-dialog {
    max-width: 1200px;
}

#demand-popup .modal-content {
    border-radius: 0;
    border: none;
}

#demand-popup .btn-modal-close {
    top: 25px;
    right: 25px;
    width: 34px;
    height: 34px;
    min-width: 34px;
    background: transparent;
}

.popup-grey {
    color: #3F4751;
}

.popup-form {
    padding: 60px 40px;
}

.popup-block {
    padding: 60px 40px;
    background: #F7F7F7;
    height: 100%;
}

.popup-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.popup-list a {
    padding: 6px 10px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #0000000F;
    border-radius: 50px;
    transition: all 0.3s;
    font-size: 14px;
}

.popup-list a:hover {
    background-color: var(--primary-color-600);
    color: var(--white-color);
    border-color: var(--primary-color-600);
}

.popup-logo img {
    width: 100%;
    max-width: 260px;
}

.popup-rating {
    border: 1px solid #00000033;
    padding: 14px 15px 10px;
}

.popup-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin: 0 0 20px;
}

.popup-form .card {
    border: none;
    border-radius: 0;
}

.popup-form .card-body {
    padding: 0;
}

.popup-form label {
    display: none;
}

.popup-form .col-md-6 {
    max-width: 100% !important;
    width: 100% !important;
    position: relative;
}

.popup-form .form-control {
    border: 1px solid #00000033 !important;
    border-radius: 0;
    padding: 10px 16px 10px 40px !important;
    font-size: 18px;
    font-weight: 500;
    position: relative;
}

.popup-form .form-control:focus {
    outline: none;
    box-shadow: unset;
}

.popup-form textarea.form-control {
    resize: none;
    padding: 10px 16px !important;
}

.popup-form .btn.btn-primary {
    background-color: #de2b33 !important;
    background-image: unset !important;
    color: var(--white-color) !important;
    border-radius: unset !important;
    width: 100%;
    border: none;
    padding: 10px;
}

.popup-form .card-body .row .col-md-6:nth-child(1)::before,
.popup-form .card-body .row .col-md-6:nth-child(2)::before,
.popup-form .card-body .row .col-md-6:nth-child(3)::before {
    content: "";
    position: absolute;
    background-image: url(../images/popup-icon-1.webp);
    background-size: contain;
    background-repeat: no-repeat;
    width: 18px;
    height: 17px;
    z-index: 1;
    top: -5px;
    bottom: 0;
    left: 24px;
    margin: auto;
}

.popup-form .card-body .row .col-md-6:nth-child(2)::before {
    background-image: url(../images/popup-icon-2.webp);
    width: 20px;
    top: -2px;
}

.popup-form .card-body .row .col-md-6:nth-child(3)::before {
    background-image: url(../images/popup-icon-3.webp);
}

.popup-counter {
    display: flex;
    gap: 10px;
    justify-content: space-between;
}

.counter-pop-blk {
    display: flex;
    align-items: center;
    gap: 20px;
}

.build-counter {
    display: flex;
    gap: 10px;
    flex-direction: column;
    align-items: baseline;
    width: 100%;
}

.build-counter img {
    filter: invert();
}

.build-counter .build-icon {
    width: 58px;
    height: 58px;
    border: 1px solid #0000003b;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px;
}

.build-wrap .small {
    font-size: 12px;
    line-height: 20px;
}

@media (min-width: 992px) {

    h1,
    .h1 {
        font-size: 3rem;
    }

    h2,
    .h2 {
        font-size: 2.25rem;
    }

    h3,
    .h3 {
        font-size: 1.875rem;
    }

    h4,
    .h4 {
        font-size: 1.5rem;
    }

    h5,
    .h5 {
        font-size: 1.125rem;
    }

    h6,
    .h6,
    .text-md,
    a {
        font-size: 1rem;
    }

    body {
        font-size: 1.125rem;
    }
}

@media (min-width: 1200px) {

    h1,
    .h1 {
        font-size: calc(2.25rem + 0.833vw);
    }

    h2,
    .h2 {
        font-size: calc(1.875rem + 0.417vw);
    }

    h3,
    .h3 {
        font-size: calc(1.5rem + 0.417vw);
    }

    h4,
    .h4 {
        font-size: calc(1.25rem + 0.235vw);
    }

    h5,
    .h5 {
        font-size: calc(1.125rem + 0.235vw);
    }

    h6,
    .h6,
    .text-md,
    a {
        font-size: calc(0.875rem + 0.139vw);
    }

    body {
        font-size: calc(1rem + 0.139vw);
    }
}

@media (min-width: 1700px) {

    h1,
    .h1 {
        font-size: calc(2.25rem + 1.25vw);
    }

    h2,
    .h2 {
        font-size: calc(1.875rem + 0.938vw);
    }

    h3,
    .h3 {
        font-size: calc(1.5rem + 0.625vw);
    }

    h4,
    .h4 {
        font-size: calc(1.25rem + 0.521vw);
    }

    h5,
    .h5 {
        font-size: calc(1.125rem + 0.313vw);
    }

    h6,
    .h6,
    .text-md,
    a {
        font-size: calc(0.875rem + 0.208vw);
    }

    body {
        font-size: calc(1rem + 0.208vw);
    }
}

@media (max-width: 991px) {

    h1,
    .h1 {
        font-size: 2rem;
    }

    h2,
    .h2 {
        font-size: 1.875rem;
    }

    h3,
    .h3 {
        font-size: 1.5rem;
    }

    h4,
    .h4 {
        font-size: 1.50rem;
    }

    h5,
    .h5 {
        font-size: 1.125rem;
    }

    h6,
    .h6,
    .text-md,
    a {
        font-size: 0.875rem;
    }

    body {
        font-size: 0.875rem;
    }
}

@media (max-width: 1599px) {
    .spacer-y {
        padding-block: 100px;
    }

    .mb-70 {
        margin-bottom: 40px;
    }

    .mb-50 {
        margin-bottom: 30px;
    }

    .mb-30 {
        margin-bottom: 20px;
    }

    .page-counter .count-item {
        padding: 22px 18px;
    }

    .count-item .counter-text {
        font-size: 52px;
        margin: 0 0 14px;
    }

    .sphere-wrap .counter-text {
        font-size: 88px;
    }

    .count-grid::after {
        content: unset !important;
    }

    .right-image-icon,
    .left-image-icon {
        max-width: 160px;
    }
}

@media (min-width: 1600px) {
    .container {
        max-width: 1600px !important;
        width: 100%;
    }
}

@media (min-width: 1200px) and (max-width: 1599px) {
    .container {
        max-width: 1200px !important;
        width: 100%;
    }

    .padding-left,
    .padding-right {
        padding-inline: 12px;
    }
}

@media (max-width: 1399px) {
    .spacer-y-sm {
        padding-block: 40px;
    }

    main .accordion-flush .accordion-item .accordion-button {
        padding-block: 25px !important;
        font-size: 20px !important;
    }

    .padding-left,
    .padding-right {
        --page-width: 1140px;
    }

    .sticky-blk {
        top: 150px;
    }

    .banner-con-wrap {
        padding-right: 15px !important;
    }

    .popup-form,
    .popup-block {
        padding: 20px 20px;
    }

    .build-counter .build-icon {
        width: 48px;
        height: 48px;
        padding: 8px;
    }

    .popup-form .form-control {
        padding: 8px 16px 8px 40px !important;
        font-size: 16px;
    }

    .popup-form textarea.form-control {
        padding: 8px 16px !important;
    }

    .popup-counter,
    .popup-grid {
        margin: 0 0 10px;
    }
}

@media (max-width: 1280px) {

    .padding-left,
    .padding-right {
        padding-inline: 12px;
    }

    .page-counter .count-item {
        padding: 22px 18px;
    }

    .count-item .counter-text {
        font-size: 52px;
        margin: 0 0 14px;
    }

    .sphere-wrap .counter-text {
        font-size: 88px;
    }

    .accordion-wrap .accord-cont {
        padding-left: 30px;
    }
}

@media (max-width: 992px) {
    p {
        font-size: 16px !important;
    }

    .count-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .page-counter .sphere-wrap {
        margin: auto;
    }

    .right-image-icon,
    .left-image-icon {
        display: none;
    }

    .revenue-icon-wrapper,
    .plugin-icon-wrapper {
        align-items: flex-start;
        flex-direction: column;
    }

    br {
        display: none;
    }

    .spacer-xl {
        padding-block: 70px;
    }

    .modal-body .modal-form-wrap {
        padding: 20px;
        border-radius: 20px;
    }

    .tab-content {
        padding: 30px 20px;
    }

    .footer-copyright,
    .footer-copyright p {
        text-align: center !important;
    }

    #demand-popup .btn-modal-close {
        top: 10px !important;
        right: 5px !important;
        width: 30px !important;
        height: 30px !important;
        min-width: 30px !important;
    }

    .popup-form {
        padding: 30px 20px !important;
    }
}

@media (max-width: 767px) {
    .spacer-y {
        padding-block: 60px;
    }



    .count-item .counter-text {
        font-size: 36px;
        margin: 0 0 14px;
    }

    .page-counter .sphere-wrap {
        padding: 20px;
    }

    .count-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 15px !important;
    }

    .sphere-wrap .counter-text {
        font-size: 100px !important;
    }

    .count-title .count-icon {
        height: 22px !important;
        width: 22px !important;
        min-width: 22px !important;
    }

    .count-icon img {
        width: 100% !important;
        max-width: 13px !important;
    }

    .count-title p {
        font-size: 14px !important;
        font-weight: 700 !important;
    }

    .count-item {
        padding: 15px 15px !important;
    }

    .sphere-wrap .count-title .count-icon {
        width: 50px !important;
        height: 50px !important;
        min-width: 50px !important;
    }

    .sphere-wrap .count-title .count-icon img {
        width: 100% !important;
        max-width: 24px !important;
    }





    .seprator {
        margin: 0 0 30px !important;
    }

    .text-align-center {
        text-align: center;
    }

    .row-order {
        flex-direction: column-reverse;
        display: flex;
    }

    .button {
        width: 100%;
        justify-content: center;
        padding: 10px 16px;
    }

    .tech-card img {
        width: 100%;
        max-width: 80px;
        height: 50px;
    }

    .p-content {
        padding: 0 20px !important;
    }

    .faq-blocks .accordion-body {
        padding-right: 0 !important;
        padding-bottom: 30px !important;
    }

    .tab-wrapper .nav-link {
        padding: 10px 10px;
        font-size: 12px;
    }

    .custom-accordion-wrapper .accordion-button::after {
        display: block;
    }

    .invest-icon {
        margin-bottom: 25px;
    }

    .revenue-icon-wrapper,
    .plugin-icon-wrapper,
    .choose-wrapper .invest-icon-wrapper {
        padding: 20px 20px;
    }

    .footer-copyright,
    .footer-copyright p {
        text-align: center !important;
    }
}

@media only screen and (max-width: 600px) {
    .count-grid {
        grid-template-columns: repeat(1, 1fr) !important;
    }
}

@media only screen and (max-width: 475px) {
    .count-title p {
        font-size: 12px !important;
    }

    .count-item {
        padding: 10px 8px !important;
    }

    .count-title .count-icon {
        height: 26px !important;
        width: 26px !important;
        min-width: 26px !important;
    }

    .count-icon img {
        width: 100% !important;
        max-width: 13px !important;
    }
}

.faq-blocks {
    border-top: 1px solid var(--black-color);
}

.faq-blocks .accordion-item {
    margin-bottom: 0 !important;
    border-bottom: 1px solid var(--black-color) !important;
}

.faq-blocks .accordion-body {
    padding: 0 300px 50px 0;
    color: inherit;
}

.faq-blocks .accordion-button:not(.collapsed) {
    box-shadow: unset !important;
}

.faq-blocks .accordion-flush .accordion-item:last-child .accordion-header,
.faq-blocks .accordion-flush .accordion-collapse,
.faq-blocks .accordion-flush .accordion-item .accordion-header {
    border: unset !important;
}

main .accordion-flush .accordion-item .accordion-button.collapsed {
    padding: 50px 0;
    transition: all 0.3s;
}

main .accordion-flush .accordion-item .accordion-button {
    border-radius: 0;
    padding: 50px 0 10px;
    font-weight: bold;
    font-size: clamp(1.25rem, 1.0714rem + 0.8929vw, 1.875rem);
    transition: all 0.3s;
}

p+ol li,
p+ul li {
    font-size: 16px;
    text-align: start;
}

@keyframes pulso_w {
    0% {
        -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, .8);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, .8);
    }

    70% {
        -moz-box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
    }

    100% {
        -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

:root {
    --theme-primary: #00732F;
    --theme-secondary: #DEFFEC;
    --theme-blue: #EFF6FB;
    --black-color: #000000;
    --white-color: #ffffff;
    --text-grey: #6D737A;
}

.theme-primary {
    background-color: var(--theme-primary);
}

.theme-secondary {
    background-color: var(--theme-secondary);
}

.theme-blue {
    background-color: var(--theme-blue);
}

.black-color {
    color: var(--black-color);
}

.white-color {
    color: var(--white-color);
}

.text-grey {
    color: var(--text-grey);
}

.container {
    max-width: 1140px;
}

img {
    max-width: 100%;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
    line-height: normal;
    color: inherit;
    font-weight: 700;
    font-family: "Gilroy" !important;
}

.spacer-xl {
    padding-block: 90px;
}

.button {
    padding: 12px 25px;
    font-weight: 600;
    transition: all .3s ease;
    display: inline-flex;
    gap: 18px;
    align-items: center;
    transition: all .3s ease;
}

.circle-icon {
    height: 35px;
    width: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    flex-shrink: 0;
    transition: all 0.3s;
    position: relative;
}

.button-bordered {
    border: 1px solid #fff !important;
    color: var(--white-color) !important;
    border-radius: 5px !important;
    background: transparent;
}

.button-bordered:hover {
    background-color: var(--white-color);
    color: var(--theme-primary) !important;
}

.button-secondary {
    background-color: var(--theme-secondary);
    color: var(--black-color);
}

.button-secondary:hover {
    background-color: var(--theme-primary);
    color: var(--white-color);
}

.button-secondary:hover svg path {
    stroke: var(--white-color);
}

.button-primary {
    background-color: var(--theme-primary);
    color: var(--white-color);
}

.button-primary:hover {
    background-color: var(--theme-secondary);
    color: var(--black-color);
}

.button-primary:hover svg path {
    stroke: var(--black-color);
}

.site-header {
    background-color: var(--theme-primary);
    position: sticky;
    top: 0px;
    z-index: 9;
}

.header-top {
    color: var(--white-color);
    padding: 8px 0;
    border-bottom: 0.5px solid #DBDFEC;
}

.mail-link,
.phone-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white-color);
}

.site-header .social-links {
    display: flex;
    align-items: center;
    gap: 20px;
    color: var(--white-color);
}

.navigation-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
}

.navigation-nav .nav-link {
    font-size: 17px;
}

.navbar-nav {
    display: flex;
    gap: 30px;
    flex-direction: row;
}

.navbar-toggler {
    display: none;
}

#nav-icon1 {
    width: 28px;
    height: 28px;
    position: relative;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
    padding: 0;
    margin: 0 0 0 18px;
}

#nav-icon1 span {
    display: block;
    position: absolute;
    right: 0;
    height: 3px;
    width: 100%;
    background: var(--white-color);
    border-radius: 2px;
    opacity: 1;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}

#nav-icon1 span:nth-child(1) {
    top: 3px;
    width: 24px;
}

#nav-icon1 span:nth-child(2) {
    top: 12px;
    width: 21px;
}

#nav-icon1 span:nth-child(3) {
    top: 20px;
    width: 17px;
    background-color: var(--theme-secondary);
}

.footer {
    background-color: var(--theme-secondary);
    padding: 70px 0;
}

.action-link a {
    color: #363A3D;
    font-weight: 600;
    font-size: 19px;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 18px;
}

.footer-social a {
    width: 44px;
    height: 44px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #30AD1C;
    color: var(--white-color);
    border-radius: 5px;
    transition: all 0.3s;
}

.footer-social a:hover {
    background: var(--theme-primary);
    color: var(--white-color);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-links li a {
    display: block;
    transition: all 0.3s;
}

.footer-links li a:hover {
    color: var(--theme-primary) !important;
    transform: translateY(-2px) !important;
}

.footer-gallery .swiper-slide {
    height: auto;
}

.footer-gallery-block {
    height: 100%;
}

.footer-gallery-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer-bottom {
    background-color: #fff;
    box-shadow: -6px 0 18px 1px rgba(0, 0, 0, .19);
    padding: 8px 0 4px;
    position: fixed;
    right: 0;
    bottom: 0;
    transition: transform .5s ease-out;
    width: 100%;
    z-index: 9;
}

.footer-sidebar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.sidebar-item {
    width: 100%;
    max-width: 100px;
    white-space: nowrap;
}

.sidebar-item a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--black-color);
    transition: all 0.3s;
}

.sidebar-item a:hover {
    color: var(--theme-primary);
}

.sidebar-item a i {
    font-size: 20px;
}

.award-grid {
    grid-template-columns: repeat(6, 1fr);
    justify-content: space-between;
    display: grid;
    gap: 20px 40px;
}

.award-logo {
    background: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    height: 130px;
    transition: all 0.3s;
    padding: 16px;
}

.award-logo:hover {
    transform: scale(1.1);
}

.award-logo img {
    object-fit: contain;
}

.new-faq {
    border-top: 1px solid #BEDBE0;
}

.new-faq .accordion-item {
    border: none;
    border-bottom: 1px solid #BEDBE0;
    padding: 28px 0px;
    border-radius: 0px;
}

.new-faq .accordion-item h2.accordion-header button {
    font-size: 24px !important;
    color: var(--black-color);
    font-weight: 700;
    background: none !important;
    padding: 0px;
    box-shadow: none !important;
}

.new-faq .accordion-body {
    padding: 0px;
    margin-top: 20px;
    font-size: 18px;
    max-width: 1300px;
}

.new-faq .accordion-button::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='35' height='40' fill='currentColor' class='bi bi-plus' viewBox='0 0 16 16'%3E%3Cpath d='M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4z'/%3E%3C/svg%3E");
    transition: all 0.5s;
}

.new-faq .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='35' height='40 ' fill='currentColor' class='bi bi-dash' viewBox='0 0 16 16'%3E%3Cpath d='M4 8a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7A.5.5 0 0 1 4 8z'/%3E%3C/svg%3E");
}

.new-faq .accordion-button::after {
    transition: all 0.5s;
    background-size: 40px;
    width: 40px;
    height: 40px;
}

.modal-custom {
    max-width: 1100px;
}

.build-counter {
    display: grid;
    align-items: center;
    grid-template-columns: auto 1fr;
    gap: 10px;
}

.build-counter .build-icon {
    width: 62px;
    height: 62px;
    border: 2px solid var(--black-color);
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px;
}

.build-close {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: #00732F;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: -14px;
    right: -10px;
}

.boost-wrap {
    position: relative;
    border-radius: 14px;
    background-image: url(../images/popup-bg-main.webp);
    background-size: cover;
    background-repeat: no-repeat;
    box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.25);
    padding: 30px 30px;
}

.boost-wrap .card {
    border: none;
    padding: 0;
    background-color: transparent;
}

.boost-wrap .card-body {
    padding: 0;
    background: transparent !important;
}

.boost-wrap label {
    display: none !important;
}

.boost-wrap .container {
    padding: 0;
}

.boost-wrap input:focus,
.boost-wrap textarea:focus {
    box-shadow: unset !important;
    outline: none !important;
}

.boost-wrap .col-md-6 {
    width: 100% !important;
}

.boost-wrap .form-control {
    padding: 12px 14px !important;
    border: 1px solid #ddd !important;
}

.boost-wrap textarea {
    resize: unset !important;
}

.boost-wrap .btn-primary {
    background: #00732F !important;
    border: none;
    font-size: 18px !important;
    padding: 12px 14px;
    border-radius: 8px !important;
    width: 100%;
}

.popup-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 20px;
}

.popup-list li {
    position: relative;
    padding: 0 0 0 22px;
}

.popup-list li:before {
    content: "";
    background-image: url(../images/popup-check.webp);
    height: 18px;
    width: 18px;
    position: absolute;
    top: 6px;
    left: 0;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.popup-block {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
    margin: 26px 0 0;
}

.popup-call {
    background: linear-gradient(270deg, #38BA6D 0%, #185331 100%);
    color: var(--white-color) !important;
    padding: 4px 30px 4px 4px;
    border-radius: 40px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.popup-call span {
    display: flex;
    width: 50px;
    height: 50px;
    align-items: center;
    justify-content: center;
    background: var(--white-color);
    color: #00732F;
    border-radius: 50px;
}

.form-group {
    display: block;
    margin-bottom: 15px;
}

.form-group input {
    padding: 0;
    height: initial;
    width: initial;
    margin-bottom: 0;
    display: none;
    cursor: pointer;
}

.popup-check label {
    display: flex !important;
    font-size: 14px;
    font-weight: 600;
    align-items: center;
    position: relative;
    cursor: pointer;
}

.form-group label:before {
    content: "";
    -webkit-appearance: none;
    background-color: var(--white-color);
    border: 1px solid var(--black-color);
    padding: 10px;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
    margin-right: 5px;
    border-radius: 6px;
}

.form-group input:checked+label:after {
    content: "";
    display: block;
    position: absolute;
    top: 2px;
    left: 8px;
    width: 7px;
    height: 14px;
    border: solid var(--black-color);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.video-block {
    width: 100%;
    height: 100%;
}

.video-block video {
    width: 100% !important;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

@media (min-width: 992px) {

    h1,
    .h1 {
        font-size: 3rem;
    }

    h2,
    .h2 {
        font-size: 2.25rem;
    }

    h3,
    .h3 {
        font-size: 1.875rem;
    }

    h4,
    .h4 {
        font-size: 1.5rem;
    }

    h5,
    .h5 {
        font-size: 1.125rem;
    }

    h6,
    .h6,
    .text-md {
        font-size: 1rem;
    }

    body {
        font-size: 1.125rem;
    }
}

@media (min-width: 1200px) {

    h1,
    .h1 {
        font-size: calc(2.25rem + 0.833vw);
    }

    h2,
    .h2 {
        font-size: calc(1.875rem + 0.417vw);
    }

    h3,
    .h3 {
        font-size: calc(1.5rem + 0.417vw);
    }

    h4,
    .h4 {
        font-size: calc(1.25rem + 0.235vw);
    }

    h5,
    .h5 {
        font-size: calc(1.125rem + 0.235vw);
    }

    h6,
    .h6,
    .text-md {
        font-size: calc(0.875rem + 0.139vw);
    }

    body {
        font-size: calc(1rem + 0.139vw);
    }
}

@media (min-width: 1700px) {

    h1,
    .h1 {
        font-size: calc(2.25rem + 1.25vw);
    }

    h2,
    .h2 {
        font-size: calc(1.875rem + 0.938vw);
    }

    h3,
    .h3 {
        font-size: calc(1.5rem + 0.625vw);
    }

    h4,
    .h4 {
        font-size: calc(1.25rem + 0.521vw);
    }

    h5,
    .h5 {
        font-size: calc(1.125rem + 0.313vw);
    }

    h6,
    .h6,
    .text-md {
        font-size: calc(0.875rem + 0.208vw);
    }

    body {
        font-size: calc(1rem + 0.208vw);
    }
}

@media (max-width: 991px) {

    h1,
    .h1 {
        font-size: 2rem;
    }

    h2,
    .h2 {
        font-size: 1.875rem;
    }

    h3,
    .h3 {
        font-size: 1.5rem;
    }

    h4,
    .h4 {
        font-size: 1.50rem;
    }

    h5,
    .h5 {
        font-size: 1.125rem;
    }

    h6,
    .h6,
    .text-md {
        font-size: 0.875rem;
    }

    body {
        font-size: 0.875rem;
    }
}

@media screen and (max-width: 1200px) {
    .navbar-nav {
        display: flex;
        gap: 16px;
        position: fixed;
        flex-direction: column;
        top: 0;
        height: 100%;
        background-color: var(--theme-secondary);
        width: 100%;
        left: -100%;
        max-width: 280px;
        padding: 10px 20px;
        transition: all 0.3s;
    }

    .site-header.active .navbar-nav {
        left: 0;
    }

    .navbar-nav .nav-link {
        color: var(--black-color) !important;
        font-weight: 600;
    }

    .navbar-toggler {
        display: block;
    }
}

@media screen and (max-width: 991px) {
    .spacer-xl {
        padding-block: 70px;
    }

    .mail-link,
    .phone-link {
        justify-content: center;
    }

    .mb-50 {
        margin-bottom: 30px;
    }

    .action-link a {
        font-size: 14px;
    }
}

@media screen and (max-width: 767px) {
    .new-faq .accordion-item h2.accordion-header button {
        font-size: 20px !important;
        gap: 18px;
    }

    .mb-20 {
        margin-bottom: 15px;
    }

    .mb-30 {
        margin-bottom: 20px;
    }

    .popup-block {
        flex-direction: column;
    }
}

@media (max-width: 575px) {
    .boost-wrap {
        padding: 20px 12px;
    }

    header .logo {
        width: 100%;
        max-width: 90px;
    }

    .footer-social {
        gap: 15px;
    }

    .footer-social a {
        width: 40px;
        height: 40px;
    }

    .site-header .button-bordered {
        display: none;
    }

    .new-faq .accordion-item h2.accordion-header button {
        font-size: 18px !important;
        gap: 12px;
    }

    .button {
        justify-content: center;
    }

    .sidebar-item a {
        font-size: 14px;
    }

    .sidebar-item a i {
        font-size: 16px;
    }
}