:root {
    --primary-color: #160E09;
    --black-color: #000000;
    --white-color: #ffffff;
    --secondary-color: #FF6B3D;
    --rating-color: #FCD503;
    --box-bg-color: #F2F2F2;
    --green-color: #159F55;
    --reviews-box-bg: #281610;
    --reviews-box-border: border 1px solid rgba(25, 17, 13, 0.6);
}

@font-face {
    font-family: 'fontRoobert';
    src: url('../../fonts/RoobertBold.ttf') format('woff2');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'fontRoobert';
    src: url('../../fonts/RoobertBoldItalic.ttf') format('woff2');
    font-weight: bold;
    font-style: italic;
}

@font-face {
    font-family: 'fontRoobert';
    src: url('../../fonts/RoobertHeavy.ttf') format('woff2');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'fontRoobert';
    src: url('../../fonts/RoobertHeavyItalic.ttf') format('woff2');
    font-weight: 900;
    font-style: italic;
}

@font-face {
    font-family: 'fontRoobert';
    src: url('../../fonts/RoobertLight.ttf') format('woff2');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'fontRoobert';
    src: url('../../fonts/RoobertLightItalic.ttf') format('woff2');
    font-weight: 300;
    font-style: italic;
}

@font-face {
    font-family: 'fontRoobert';
    src: url('../../fonts/RoobertMedium.ttf') format('woff2');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'fontRoobert';
    src: url('../../fonts/RoobertMediumItalic.ttf') format('woff2');
    font-weight: 500;
    font-style: italic;
}

@font-face {
    font-family: 'fontRoobert';
    src: url('../../fonts/RoobertRegular.ttf') format('woff2');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'fontRoobert';
    src: url('../../fonts/RoobertRegularItalic.ttf') format('woff2');
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: 'fontRoobert';
    src: url('../../fonts/RoobertSemiBold.ttf') format('woff2');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'fontRoobert';
    src: url('../../fonts/RoobertSemiBoldItalic.ttf') format('woff2');
    font-weight: 600;
    font-style: italic;
}

@font-face {
    font-family: 'wilkysta';
    src: url('../../fonts/wilkysta.ttf') format('woff2');
}

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'fontRoobert', Arial, sans-serif;
    width: 100vw;
    overflow-x: hidden;
}

.iswebview-app-loader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999999999;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(2px)
}

.iswebview-app-loader .three-body {
    --uib-size: 35px;
    --uib-speed: 0.8s;
    position: relative;
    display: inline-block;
    height: var(--uib-size);
    width: var(--uib-size);
    animation: spin78236 calc(var(--uib-speed) * 2.5) infinite linear;
}

.iswebview-app-loader .three-body__dot {
    position: absolute;
    height: 100%;
    width: 30%;
}

.iswebview-app-loader .three-body__dot:after {
    content: '';
    position: absolute;
    height: 0%;
    width: 100%;
    padding-bottom: 100%;
    background-color: var(--orange-primary);
    border-radius: 50%;
}

.iswebview-app-loader .three-body__dot:nth-child(1) {
    bottom: 5%;
    left: 0;
    transform: rotate(60deg);
    transform-origin: 50% 85%;
}

.iswebview-app-loader .three-body__dot:nth-child(1)::after {
    bottom: 0;
    left: 0;
    animation: wobble1 var(--uib-speed) infinite ease-in-out;
    animation-delay: calc(var(--uib-speed) * -0.3);
}

.iswebview-app-loader .three-body__dot:nth-child(2) {
    bottom: 5%;
    right: 0;
    transform: rotate(-60deg);
    transform-origin: 50% 85%;
}

.iswebview-app-loader .three-body__dot:nth-child(2)::after {
    bottom: 0;
    left: 0;
    animation: wobble1 var(--uib-speed) infinite calc(var(--uib-speed) * -0.15) ease-in-out;
}

.iswebview-app-loader .three-body__dot:nth-child(3) {
    bottom: -5%;
    left: 0;
    transform: translateX(116.666%);
}

.iswebview-app-loader .three-body__dot:nth-child(3)::after {
    top: 0;
    left: 0;
    animation: wobble2 var(--uib-speed) infinite ease-in-out;
}

@keyframes spin78236 {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes wobble1 {

    0%,
    100% {
        transform: translateY(0%) scale(1);
        opacity: 1;
    }

    50% {
        transform: translateY(-66%) scale(0.65);
        opacity: 0.8;
    }
}

@keyframes wobble2 {

    0%,
    100% {
        transform: translateY(0%) scale(1);
        opacity: 1;
    }

    50% {
        transform: translateY(66%) scale(0.65);
        opacity: 0.8;
    }
}

.bg-light-grey {
    background-color: var(--box-bg-color);
}

.padding-top {
    padding-top: 105px !important;
}

.btn-theme-primary {
    background: var(--secondary-color);
    border: solid 1px var(--secondary-color);
    border-radius: 50px;
    padding: 9px 20px 11px;
    color: var(--white-color) !important;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none !important;
    transition: all 0.3s ease-in-out;
}

.btn-theme-primary:hover {
    background: transparent;
    color: var(--black-color) !important;
    border: solid 1px var(--black-color);
}

.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99999;
    text-align: center;
    background-color: #FFF;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background-image: url(../images/shape/dot-grid.png);
}

.loading-text h1 {
    background-image: url(../../img/scheduledown_bg_compressed.webp);
    background-size: cover;
    color: transparent;
    -moz-background-clip: text;
    -webkit-background-clip: text;
    font-size: 120px;
}


.for_partners_header {
    position: fixed;
    z-index: 1000;
    width: 100%;
    background: var(--primary-color);
    padding: 5px 3%;
    -webkit-transition: all ease-out .5s;
    -moz-transition: all ease-out .5s;
    -o-transition: all ease-out .5s;
    transition: all ease-out .5s;
}

.for_partners_active {
    background-color: var(--white-color);
    box-shadow: 0 0 10px #cccccc;
}

.header-black-logo {
    display: none;
}

.for_partners_header.for_partners_active .header-black-logo {
    display: unset !important;
}

.for_partners_header.for_partners_active .header-white-logo {
    display: none !important;
}

.for_partner_logo img {
    height: 40px;
    width: auto;
}

.for_partner_navbar .nav-link {
    font-size: 1.05rem;
    color: var(--white-color);
    font-weight: 600;
    padding: 0.5rem 0.8rem !important;
}

.for_partners_header.for_partners_active .nav-link {
    color: var(--black-color) !important;
}

.for_partner_navbar .nav-link-btn {
    margin-left: 0.8rem;
    padding: 0.5rem 1rem !important;
    border: solid 1px var(--white-color);
    border-radius: 50px;
    transition: all 0.5s ease-in-out;
}

.for_partners_header.for_partners_active .nav-link-btn {
    border: solid 1px var(--black-color);
}

.for_partner_navbar .nav-link-btn:hover {
    background: var(--white-color);
    color: var(--primary-color) !important;
}

.for_partners_header.for_partners_active .nav-link-btn:hover {
    background: var(--primary-color);
    color: var(--white-color) !important;
}

.hero-section-wrap {
    padding: 40px 4%;
    position: relative;
    width: 100vw;
    overflow: hidden;
}

.hero-section-wrap::before {
    position: absolute;
    content: '';
    top: 0;
    left: -5%;
    height: 60%;
    width: 110%;
    background-color: var(--primary-color);
    z-index: -9;
    border-radius: 0 0 50% 50%;
}

.hero-section-header .hero-section-title {
    color: var(--white-color);
    font-size: 2.6rem;
    font-weight: 700;
}

.hero-section-header .hero-section-content {
    color: var(--white-color);
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 35px;
}

.hero-section-image {
    width: 100%;
    height: auto;
    margin-top: 30px;
}

.hero-section-image img {
    width: 100%;
    height: auto;
}

.hero-section-header .hero-section-btn {
    background: var(--secondary-color);
    border: solid 1px var(--secondary-color);
    border-radius: 50px;
    padding: 9px 20px 11px;
    color: var(--white-color) !important;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

.hero-section-header .hero-section-btn:hover {
    background: transparent;
    color: var(--white-color);
    border: solid 1px var(--white-color);
}

.reviews-items-wrap {
    padding: 50px 4%;
}

.images-reviews-wrap img {
    width: 130px;
    height: 130px;
    border-radius: 10px;
    object-fit: cover;
}

.google-reviews-section-wrap {
    width: 100vw;
    overflow: hidden;
}

.google-reviews-stars-wrapper i {
    font-size: 1.3rem;
    color: var(--rating-color);
    padding: 15px 1px 0px 1px;
}

.images-reviews-wrap p {
    color: var(--black-color);
    font-size: 1.1rem;
    font-weight: 700;
}

.images-reviews-column {
    width: 130px;
}

.counter-section-wrap {
    background: linear-gradient(0deg, #F2F2F2 0%, #FFFFFF 100%);
}

.google-review-content-column {
    width: calc(100% - 130px);
}

.google-review-content-wrap {
    width: 95%;
    margin: 0 0 0 auto;
}

.google-review-content-wrap .google-review-content {
    color: var(--black-color);
    font-size: 1rem;
    font-weight: 500;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;

}

.google-review-content-wrap .google-review-user {
    color: var(--black-color);
    font-size: 1rem;
    font-weight: 600;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}

.slick-dots {
    bottom: 90px !important;
    width: 75% !important;
    margin-left: 14% !important;
    text-align: left !important;
}

.slick-dots li {
    margin: 0 1px !important;
}

.slick-dots li button:before {
    font-size: 16px !important;
    color: #E7E8E9 !important;
    opacity: 1 !important;
}

.slick-dots li.slick-active button:before {
    opacity: 1 !important;
    color: var(--black-color) !important;
}

.counter-section-gap {
    padding: 30px 4%;
}

.counter-header-wrap .counter-title {
    color: var(--black-color);
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 50px;
}

.counter-header-wrap .counter-content {
    color: var(--black-color);
    font-size: 1rem;
    font-weight: 500;
    margin-top: 10px;
    line-height: 24px;
}

.counter-items-wrap {
    width: 80%;
    margin: 0 0 0 auto;
}

.counter-item {
    padding: 15px 0;
}

.counter-item-number {
    color: var(--black-color);
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 40px;
}

.counter-item .counter-item-content {
    color: var(--black-color);
    font-size: 1rem;
    font-weight: 500;
}

.control-your-business-section-wrap {
    padding: 50px 4%;
}

.section-header-wrap {
    width: 100%;
    margin: auto;
    text-align: center;
}

.section-header-wrap .section-title {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--black-color);
}

.section-header-wrap .section-sub-title {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--black-color);
    width: 75%;
    margin: auto;
}

.control-your-business-column-wrap {
    padding: 0 10px;
}

.control-your-business-cards-wrap {
    margin-top: 50px;
}

.control-your-business-card {
    background: var(--box-bg-color);
    border-radius: 10px;
    padding: 25px;
}

.control-your-business-card .control-your-business-card-icon img {
    width: 42px !important;
    height: auto;
}

.control-your-business-card-content .business-card-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--black-color);
}

.control-your-business-card-content .business-card-content {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--black-color);
}

.marque-schedule-section-wrap {
    width: 100vw;
    overflow: hidden;
}

.marque-schedule-section-wrap {
    padding: 50px 0;
}

.marque-schedule-section-wrap .marquee-block {
    position: relative;
    display: flex;
    width: 100%;
    animation-duration: 20s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    justify-content: space-between;
}

.marque-schedule-section-wrap .marquee-item-list {
    display: inline-flex;
}

.marque-schedule-section-wrap .marquee-item-list li {
    width: 100%;
    list-style: none;
    padding-right: 15px;
    font-size: 60px;
    white-space: nowrap;
    font-family: 'wilkysta';
    color: var(--black-color);
}

.marque-schedule-section-wrap .marquee-item-list li span {
    color: var(--secondary-color);
}

.marque-schedule-section-wrap .marquee {
    animation-name: marquee;
}

@keyframes marquee {
    0% {
        left: 0;
    }

    100% {
        left: -100%;
    }
}

.custom-container {
    width: 78%;
    margin: auto;
}

.detailed-section-wrap {
    padding: 50px 0;
}

.detailed-section-image {
    width: 100%;
    margin: auto;
}

.detailed-section-image img {
    height: auto;
    width: 100%;
    margin: auto;
}

.detailed-section-image-digital-sinage img {
    width: 80% !important;
}

.detailed-content-wrapper {
    width: 95%;
}

.detailed-content-wrapper .detailed-content-tag {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-color);
}

.detailed-content-wrapper .detailed-content-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--black-color);
}

.detailed-content-wrapper .detailed-content-content,
.detailed-section-list-wrap li span p {
    font-size: 1rem;
    font-weight: 500;
    color: var(--black-color);
}

.detailed-section-list-wrap {
    padding-left: 0 !important;
}

.detailed-section-list-wrap li {
    padding: 3px 0;
}

.detailed-section-list-wrap li {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 7px;
}

.detailed-section-list-wrap li span img {
    width: 25px;
    height: auto;
}

.detailed-section-about-wrap {
    padding-left: 4%;
    padding-right: 4%;
}

.detailed-content-main-title {
    font-size: 30px;
    font-weight: 600;
    color: var(--black-color);
}

.detailed-content-main-title span {
    color: var(--secondary-color);
}

.detailed-content-about-content {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--black-color);
}

.detailed-section-image-about {
    margin: 0 0 0 auto !important;
    width: 77%;
}

.partners-reviews-section-wrap {
    padding: 50px 4%;
    position: relative;
}

.partners-reviews-wrap {
    width: 700px;
    margin: 40px auto 50px auto;
    background: var(--reviews-box-bg);
    border-radius: 20px;
    padding: 50px 35px;
    text-align: center;
    color: var(--white-color);
}

.partners-reviews-wrap .partners-reviews-content {
    font-size: 1.3rem;
    font-weight: 400;
}

.partners-reviews-wrap .partners-reviews-star i {
    color: var(--rating-color);
    font-size: 1.4rem;
    font-weight: 400;
}

.partners-reviews-profile-wrap {
    padding-top: 30px;
}

.see-pricing-wrap .see-pricing-title {
    color: var(--black-color);
    font-size: 1.4rem;
    font-weight: 600;
    max-width: 40%;
    margin: auto;
}

.see-pricing-wrap .see-pricing-btn {
    background: var(--white-color);
    border: 1px solid #19110D66;
    border-radius: 50px;
    padding: 9px 20px 11px;
    color: var(--reviews-box-bg) !important;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

.see-pricing-wrap .see-pricing-btn:hover {
    background: var(--reviews-box-bg);
    color: var(--white-color) !important;
}

.partners-reviews-section-header p,
.business-growth-section-wrap .section-header p {
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--black-color);
    width: 60%;
    margin: auto;
}

.partners-reviews-profile img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.business-growth-section-wrap {
    padding: 50px 4%;
}

.business-growth-section-wrap .section-header p span {
    color: var(--secondary-color) !important;
}

.business-growth-image-wrap {
    position: relative;
    overflow: hidden;
}

.business-growth-category {
    padding: 50px 0 30px 0;
}

.business-growth-image-wrap img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 25px;
}

.business-growth-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--white-color);
    color: #414141;
    font-size: 1.1rem;
    padding: 5px 14px;
    border-radius: 30px;
}


.all-solution-wrap {
    padding-top: 30px;
}

.all-solution-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.all-solution-column {
    width: 40%;
}

.all-solution-column-small {
    width: 20%;
}

.all-solution-icon img {
    opacity: 0.4 !important;
    width: 40px;
    height: auto;
}

.see-all-solutions-btn {
    color: var(--reviews-box-bg) !important;
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 700;
}

.see-all-solutions-btn:hover {
    color: var(--reviews-box-bg) !important;
}

.see-all-solutions-btn:hover i {
    transform: rotate(90deg);
}

.see-all-solutions-btn i {
    color: var(--secondary-color);
    margin-left: 10px;
    font-size: 0.9rem;
    transition: all 0.3s ease-in-out;
}

/* .footer-divider {
    background: #19110D4D;
} */

/* .explore-our-countries-section-wrap {
    padding: 50px 4%;
}

.explore-our-countries-header {
    font-size: 1.7rem;
    font-weight: 600;
    color: var(--black-color);
}

.countries-list-wrap {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.countries-list-column {
    width: calc(14.28% - 10px);
    padding: 10px 5px;
} */

.footer-section-wrap {
    width: 100%;
    padding: 50px 4%;
}

.footer-section-wrap .for_partner_logo img {
    height: 30px !important;
}

.footer-items-wrap p {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--black-color);
}

.footer-links-header .footer-links-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--reviews-box-bg);
}

.footer-link {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--black-color);
}

.footer-link:hover {
    color: var(--black-color) !important;
}

.orange-bardge-comming-soon {
    position: absolute;
    top: -4px;
    right: 0.8rem;
    background: var(--secondary-color);
    color: var(--white-color);
    border-radius: 30px;
    padding: 0px 7px 1px;
    font-size: 0.6rem;
}

.image-section-wrap {
    margin: auto;
    width: 100%;
    text-align: center;
}

.image-section-wrap img{
    width: 70% !important;
    height: auto;
    margin: auto;
}