/* 1.1 typography */


/* https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700 */

@import url("https://fonts.googleapis.com/css?family=Fira Sans");

:root {
    --sx-primary: #045DE9;
    --sx-secondary: #0891F2;
    --sx-purple: #9491ff;
    --sx-grey: #4d546f;
    --sx-wheat: #f5deb3;
    --sx-facebook: #334bff;
    --sx-twitter: #45d9f0;
    --sx-linkedin: #1b91ff;
    --sx-bg-blue: #008dec;
    --sx-green: #119535;
}

body {
    line-height: 31px;
    font-family: "Fira Sans", sans-serif;
    font-weight: 300;
    -webkit-font-smoothing: antialiased;
    font-size: 17px;
    background-color: #fff;
    overflow-x: hidden;
}


/**==============colors classes============*/

.primary-color {
    color: var(--sx-primary);
}

.bg-primary {
    background: var(--sx-bg-blue) !important;
}

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

.text-dark {
    color: #000 !important;
}

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

.text-color {
    color: var(--sx-grey);
}

.text-white {
    color: #fff;
}

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

.user-review-star {
    color: var(--sx-primary);
}

.facebook {
    color: var(--sx-facebook);
}

.twitter {
    color: var(--sx-twitter);
}

.linkedin {
    color: var(--sx-linkedin);
}

.black {
    color: #000;
}


/**=============Other global css============*/

p,
.paragraph,
body {
    font-weight: 500;
    color: #000;
    font-size: 18px;
    line-height: 26px;
    font-family: "Fira Sans", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    color: var(--sx-secondary);
    font-family: "Fira Sans", sans-serif;
    font-weight: 600;
    line-height: 1.5;
}

h1,
.h1 {
    font-size: 43px;
}

h2,
.h2 {
    font-size: 43px;
}

h3,
.h3 {
    font-size: 37px;
}

h4,
.h4 {
    font-size: 24px;
}

h5,
.h5 {
    font-size: 20px;
}

h6,
.h6 {
    font-size: 18px;
}

.btn {
    font-size: 18px;
    font-family: "Poppins", sans-serif;
    text-transform: capitalize;
    padding: 15px 60px;
    font-weight: 400;
    border: 0;
    border-radius: 5px;
    position: relative;
    z-index: 1;
    transition: .2s ease;
}

.btn:focus {
    outline: 0;
    box-shadow: none !important;
}

.btn:active {
    box-shadow: none;
}

.btn-primary {
    background-image: linear-gradient(25deg, #a64a4a 0%, #fcfbf5 95%);
    color: var(--sx-secondary);
    transition: background 1s ease-out;
}

.btn-primary:active {
    background: linear-gradient(25deg, #17ffd3 0%, #d3fc71 95%) !important;
}

.btn-primary:hover {
    color: var(--sx-secondary);
}

.btn-secondary {
    background-image: linear-gradient(6deg, #17ffd3 0%, #23e3ee 100%);
    background-color: transparent;
    color: var(--sx-secondary);
}

.btn-secondary:active {
    background: linear-gradient(6deg, #17ffd3 0%, #23e3ee 100%) !important;
}

.btn-secondary:hover {
    background: linear-gradient(186deg, #17ffd3 0%, #23e3ee 100%);
    color: var(--sx-secondary);
}

.btn-lg {
    padding: 15px 85px;
}

::-moz-selection {
    background: #20a5ff;
    color: #fff;
}

::selection {
    background: #20a5ff;
    color: #fff;
}


/**================preloader===============*/

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}

ol,
ul {
    /* list-style-type: none; */
    margin: 0px;
}

img {
    vertical-align: middle;
    border: 0;
}

a,
a:hover,
a:focus {
    text-decoration: none;
}

a,
button,
select {
    cursor: pointer;
    transition: .2s ease;
}

a:focus,
button:focus,
select:focus {
    outline: 0;
}

a:hover,
a {
    color: var(--sx-primary) !important;
    font-weight: 700 !important;
}

.slick-slide {
    outline: 0;
}

.section {
    padding-top: 130px;
    padding-bottom: 130px;
}

.section-sm {
    padding-top: 40px;
    padding-bottom: 40px;
}

.bg-cover {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}


/**============overlay============*/

.overlay {
    position: relative;
}

.overlay::before {
    position: absolute;
    content: '';
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background: #000;
    opacity: .5;
}

.outline-0 {
    outline: 0 !important;
}

.d-unset {
    display: unset !important;
}

.page-title {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.primary-shadow {
    box-shadow: 0px 35px 46px 0px rgb(177 192 201 / 0%);
}

.border-blue {
    border-color: #dcebf4 !important;
}

.shadow-primary {
    box-shadow: 0px 35px 46px 0px rgba(172, 189, 199, 0.28);
}

.mb-10 {
    margin-bottom: 10px !important;
}

.mb-20 {
    margin-bottom: 20px !important;
}

.mb-30 {
    margin-bottom: 30px !important;
}

.mb-40 {
    margin-bottom: 40px !important;
}

.mb-50 {
    margin-bottom: 50px !important;
}

.mb-60 {
    margin-bottom: 60px !important;
}

.mb-70 {
    margin-bottom: 70px !important;
}

.mb-80 {
    margin-bottom: 80px !important;
}

.mb-90 {
    margin-bottom: 90px !important;
}

.mb-100 {
    margin-bottom: 100px !important;
}

.pb-100 {
    padding-bottom: 100px !important;
}

.pt-70 {
    padding-top: 70px;
}

@media (max-width: 575px) {
    .translate-y-150 {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

.left-right-animation {
    animation: left_right 3s ease-in infinite alternate-reverse;
}

@-webkit-keyframes left_right {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        -webkit-transform: translateX(-20px);
        transform: translateX(-20px);
    }
}

@keyframes left_right {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        -webkit-transform: translateX(-20px);
        transform: translateX(-20px);
    }
}

.up-down-animation {
    animation: up_down 3s ease-in infinite alternate-reverse;
}

@-webkit-keyframes up_down {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }
}

@keyframes up_down {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }
}

.zindex-1 {
    z-index: 1;
}

.navbar-light .navbar-nav .nav-link {
    color: var(--sx-secondary);
}

.navigation {
    transition: .3s ease;
}

.navbar {
    transition: .3s ease;
}

@media (max-width: 991px) {
    .navbar-collapse {
        padding-bottom: 20px;
    }

    h3,
    .h3 {
        font-size: 28px;
    }
}

.nav-bg {
    background-image: -webkit-linear-gradient(53deg, #770000 30%, #091337 100%);
    box-shadow: -4px 12px 14px 17px #78060824;
}

.nav-bg .navbar {
    padding: 10px 0;
}

.nav-item {
    padding: 20px 10px;
}

@media (max-width: 991px) {
    .nav-item {
        padding: 0;
    }
}

.hero-section {
    /* padding-top: 200px;
    padding-bottom: 200px; */
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom center;
}

.banner-image {
    position: absolute;
    top: 110%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.hero-bg-1 {
    position: absolute;
    left: 30px;
    top: 200px;
}

.hero-bg-2 {
    position: absolute;
    top: 45%;
    left: 16%;
}

.hero-bg-3 {
    position: absolute;
    bottom: 0%;
    left: 10%;
}

.hero-bg-4 {
    top: 210px;
    right: 40%;
    position: absolute;
}

.hero-bg-5 {
    position: absolute;
    top: 250px;
    right: 17%;
}

.hero-bg-6 {
    position: absolute;
    right: 10%;
    bottom: 20%;
}

.hero-bg-7 {
    position: absolute;
    left: 20%;
    bottom: -17%;
    z-index: 1;
}

.hero-bg-8 {
    position: absolute;
    bottom: -30%;
    right: 50%;
    z-index: 1;
}

.hero-bg-9 {
    position: absolute;
    right: 20%;
    bottom: -10%;
    z-index: 1;
}

.feature {
    position: relative;
}

.feature-item h4 {
    line-height: 1;
}

.feature-item p {
    line-height: 25px;
}

.feature-icon img {
    height: 32px;
    width: 32px;
    object-fit: contain;
}

.feature-item:hover .feature-icon {
    box-shadow: 0px 18px 43px 0px rgba(0, 141, 236, 0.21);
}

.feature-item div i {
    font-size: 24px !important;
}

.feature-bg-1 {
    position: absolute;
    left: 0;
    top: 44%;
    z-index: -1;
}

.feature-bg-2 {
    position: absolute;
    right: 80px;
    bottom: 14%;
    z-index: -1;
}

.feature-icon {
    display: inline-block;
    border-radius: 5px;
    color: var(--sx-secondary);
    font-size: 30px;
    width: 60px;
    padding: 12px 0px;
    background: linear-gradient(-35deg, #045DE9 10%, #0891F2 100%);
    box-shadow: 0px 18px 25px 0px #0890f263;
    text-align: center;
    transition: .2s ease;
}

.seo {
    position: relative;
    overflow: visible;
}

.seo-bg {
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}

@media (max-width: 1200px) {
    .seo-bg {
        max-width: 500px;
    }
}

@media (max-width: 991px) {
    .seo-bg {
        max-width: 400px;
    }
}

.seo-bg-shape-1 {
    position: absolute;
    left: 25%;
    top: 0;
    z-index: -1;
}

.seo-bg-shape-2 {
    position: absolute;
    right: 2%;
    top: 40%;
    z-index: -1;
}

.seo-bg-shape-3 {
    position: absolute;
    left: 50%;
    bottom: 0;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: -1;
}

.service {
    position: relative;
    overflow: visible;
}

.service-list li {
    margin-bottom: 30px;
    color: var(--sx-grey);
}

.service-list li i {
    margin-right: 20px;
    color: var(--sx-grey);
}

.service-bg {
    position: absolute;
    right: 0;
    top: -10%;
    z-index: -1;
}

@media (max-width: 1200px) {
    .service-bg {
        max-width: 500px;
    }
}

@media (max-width: 991px) {
    .service-bg {
        max-width: 400px;
        top: 0;
    }
}

.service-bg-shape-1 {
    position: absolute;
    left: 0;
    top: 150px;
    z-index: -1;
}

.service-bg-shape-2 {
    position: absolute;
    left: 40%;
    bottom: 0;
    z-index: -1;
}

.team {
    overflow: visible;
    position: relative;
}

.team-slider {
    overflow: hidden;
    padding-bottom: 80px;
}

.team-slider .slick-list {
    overflow: visible;
}

.team-slider .slick-arrow {
    border: 0;
    background: transparent;
    color: var(--sx-secondary) !important;
    position: absolute;
    bottom: 0;
    z-index: 1;
    font-size: 25px;
}

.team-slider .slick-arrow.slick-disabled {
    color: #86ceff;
}

.team-slider .prevArrow {
    left: 10px;
}

.team-slider .nextArrow {
    left: 50px;
}

.team-member {
    min-height: 280px;
    height: auto;
    padding: 30px 35px;
    background: #fff;
    box-shadow: 0px 10px 25px 0px #39393929;
    margin: 0 20px;
    border-radius: 20px;
    background-color: #0890f22d;
}

@media (max-width: 1200px) {
    .team-member {
        padding: 30px;
    }
}

.team-bg {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
}

.team-bg-shape-1 {
    position: absolute;
    top: 100px;
    left: 20px;
    z-index: -1;
}

.team-bg-shape-2 {
    position: absolute;
    top: 100px;
    right: -5px;
    z-index: -1;
}

.team-bg-shape-3 {
    position: absolute;
    bottom: 20%;
    right: 40%;
    z-index: -1;
}

.team-bg-shape-4 {
    position: absolute;
    bottom: 84%;
    right: 112px;
    z-index: -1;
}

.team-bg-shape-5 {
    position: absolute;
    bottom: 84%;
    left: 112px;
    z-index: -1;
}

.pricing {
    position: relative;
    overflow: visible;
}

.pricing-table {
    padding: 50px 35px 30px;
    transition: .2s ease;
}

@media (max-width: 1200px) {
    .pricing-table {
        padding: 30px 20px;
    }
}

.pricing-table h1 {
    font-size: 65px;
}

.pricing-table h1 span {
    font-size: 20px;
    vertical-align: top;
    line-height: 65px;
    margin-right: 5px;
}

.pricing-table:hover {
    box-shadow: 0px 59px 43px 0px rgba(216, 233, 243, 0.3);
}

.pricing-table.table-1 {
    background-image: linear-gradient(59deg, #d5fc71 0%, #64feab 95%);
}

.pricing-table.table-2 {
    background-image: linear-gradient(59deg, #06ffdf 0%, #42dbef 95%);
}

.pricing-table.table-3 {
    background-image: linear-gradient(59deg, #0bfce0 0%, #c5fd78 95%);
}

.pricing-btn {
    font-size: 25px;
    font-weight: 700;
    color: var(--sx-secondary);
}

@media (max-width: 1200px) {
    .pricing-btn {
        padding: 5px;
    }
}

.pricing-btn:hover {
    color: var(--sx-bg-blue);
}

.pricing-bg-shape-1 {
    position: absolute;
    left: 30%;
    top: 100px;
    z-index: -1;
}

.pricing-bg-shape-2 {
    position: absolute;
    right: 10%;
    top: 110px;
    z-index: -1;
}

.pricing-bg-shape-3 {
    position: absolute;
    bottom: 20%;
    left: 0;
    z-index: -1;
}

.newsletter {
    position: relative;
}

.newsletter-form {
    height: 70px;
    width: 90%;
    padding: 0px 40px;
    border: 0;
    background: #fff;
    box-shadow: rgb(36 36 35 / 21%) -3px 5px 11px 9px;
    border-radius: 20px;
}

.newsletter-form:focus {
    outline: 0;
    box-shadow: 0;
}

.newsletter-btn {
    position: absolute;
    height: 100%;
    background: var(--sx-green);
    top: 0;
    right: 0;
    border-radius: 0 20px 20px 0;
    font-weight: 600;
    font-size: 16px;
    color: #f6f3f3;
    text-transform: uppercase
}

@media (max-width: 575px) {
    .newsletter-btn {
        padding-left: 15px;
        padding-right: 15px;
    }
}

.newsletter-bg-shape {
    position: absolute;
    top: 0;
    right: 10%;
    z-index: -1;
}

.footer {
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
}

.footer-menu a {
    color: var(--sx-secondary);
    display: block;
    padding: 15px;
    font-weight: 400;
}

.social-icon li a {
    height: 45px;
    width: 45px;
    background: white;
    color: var(--sx-secondary);
    border-radius: 5px;
    line-height: 48px;
    display: block;
    text-align: center;
    box-shadow: 2px 2px 5px -1px;
}

.social-icon li a:hover {
    height: 45px;
    width: 45px;
    background: var(--sx-secondary);
    color: white !important;
    border-radius: 5px;
    line-height: 45px;
    display: block;
    text-align: center;
}

.client-logo-slider img {
    transition: .2s ease;
}

.client-logo-slider a:hover img {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
}


/* service page */

.service-bg-image {
    background-size: containe;
    background-repeat: no-repeat;
    background-position: center 400px;
}

.service-bg-1 {
    position: absolute;
    left: 10%;
    top: 10%;
    z-index: -1;
}

.service-bg-2 {
    position: absolute;
    right: -5%;
    top: 10%;
    z-index: -1;
}

.service-bg-3 {
    position: absolute;
    right: 50px;
    top: 50%;
    z-index: -1;
}

.service-bg-4 {
    position: absolute;
    left: -5%;
    bottom: 30%;
    z-index: -1;
}

.service-bg-5 {
    position: absolute;
    left: 10%;
    bottom: 5%;
    z-index: -1;
}

.about {
    position: relative;
    overflow: visible;
}

.about-video {
    position: relative;
}

.about-video .play-btn {
    position: absolute;
    left: 77%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.about-bg-1 {
    position: absolute;
    left: 8%;
    top: 126%;
    z-index: -1
}

.about-bg-2 {
    position: absolute;
    top: 50%;
    left: 0%;
    z-index: -1;
}

.about-bg-100 {
    position: absolute;
    top: 160%;
    left: -5%;
    z-index: -1;
}

.about-bg-3 {
    position: absolute;
    bottom: 7%;
    left: 8%;
    z-index: -1;
}

.about-bg-4 {
    position: absolute;
    top: 5%;
    left: 7%;
    z-index: -1;
}

.about-bg-5 {
    position: absolute;
    bottom: 20%;
    right: 7%;
    z-index: -1;
}

.about-bg-6 {
    position: absolute;
    top: 125%;
    right: 0%;
    z-index: -1;
}

.about-bg-101 {
    position: absolute;
    top: 121%;
    right: 0%;
    z-index: -1;
}

.about-bg-102 {
    position: absolute;
    top: 50%;
    right: 0%;
    z-index: -1;
}

.about-bg-103 {
    position: absolute;
    top: 50%;
    right: 0%;
    z-index: -1;
}

.play-btn {
    height: 70px;
    width: 70px;
    border-radius: 50%;
    color: #fff;
    padding: 23px;
    font-size: 20px;
    text-align: center;
    background: var(--sx-secondary);
    display: inline-block;
    transition: .2s ease;
    box-shadow: 0px 23px 43px 0px rgba(94, 254, 198, 0.3);
}

.play-btn:hover {
    color: var(--sx-secondary);
    font-size: 20px;
    font-weight: bolder;
    background: #fff;
}

.product {
    position: relative;
    overflow: visible;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
}

.about-bg {
    position: absolute;
    left: 0;
    top: 0px;
    z-index: -1;
}

.form-control {
    height: 65px;
    width: 100%;
    background: #f7fafc;
}

.form-control:focus {
    border-color: var(--sx-bg-blue);
    box-shadow: none;
}

textarea.form-control {
    height: 157px;
}

.contact-bg {
    background-color: #f3f7fb;
}

.round-icon {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    font-size: 18px;
    line-height: 50px;
    display: inline-block;
    vertical-align: middle;
    text-align: center;
}

.round-icon.green {
    background: #e0fef4;
    color: #00f7a7;
}

.round-icon.red {
    background: #f5f6f5;
    color: var(--sx-primary);
}

.round-icon.blue {
    background: #e0f1ff;
    color: #008cff;
}

.round-icon.orange {
    background: #fff1e0;
    color: #ff8b00;
}

.contact {
    position: relative;
}

.contact-bg-1 {
    position: absolute;
    left: 0;
    top: 10%;
    z-index: -1;
}

.contact-bg-2 {
    position: absolute;
    top: 20%;
    right: 10%;
    z-index: -1;
}

.contact-bg-3 {
    position: absolute;
    top: 10%;
    left: 40%;
    z-index: -1;
}

.contact-bg-4 {
    position: absolute;
    bottom: 10%;
    left: 10%;
    z-index: -1;
}

.contact-bg-5 {
    position: absolute;
    bottom: 10%;
    right: 10%;
    z-index: -1;
}


/** ----------------------------------- app screenshot ---------------------------------- */

.applic-apps {
    overflow: hidden;
    position: relative;
    z-index: 0;
}

.applic-apps .single-cases-info {
    position: relative;
    left: 30%;
    margin-top: 0px;
}

@media (max-width:1800px) {
    .applic-apps .single-cases-info {
        position: relative;
        left: 30%;
        margin-top: 0px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
    .applic-apps .single-cases-info {
        /* margin-top: 72px; */
        left: 25%;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .applic-apps .single-cases-info {
        left: 25%;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .applic-apps .single-cases-info {
        left: 0%;
        margin-top: 0px;
        margin-bottom: 50px !important
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .applic-apps .single-cases-info {
        left: 1%;
        margin-top: 20px;
    }
}

.applic-apps .single-cases-info h3 {
    color: #2b044d;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    padding-right: 30px;
}

.applic-apps .single-cases-info .prg-text {
    margin-bottom: 50px;
    padding-right: 80px;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
    .applic-apps .single-cases-info p {
        padding-right: 0px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .applic-apps .single-cases-info p {
        margin-bottom: 20px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .applic-apps .single-cases-info p {
        margin-bottom: 20px;
    }
}

.applic-apps .owl-carousel .owl-stage-outer {
    overflow: visible;
}

.applic-apps .no-js .owl-carousel,
.applic-apps .owl-carousel.owl-loaded {
    overflow: hidden;
    position: relative;
    right: -14%;
}

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

    .applic-apps .no-js .owl-carousel,
    .applic-apps .owl-carousel.owl-loaded {
        right: 0%;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {

    .applic-apps .no-js .owl-carousel,
    .applic-apps .owl-carousel.owl-loaded {
        right: 0%;
    }
}

.applic-apps .owl-carousel .owl-item img {
    display: block;
    width: 100%;
    height: 500px;
    object-fit: contain;
}


/** --------------------- faqs ------------------- */

.faq-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.question p {
    font-weight: 600;
    padding-right: 10px;
}

.faq-wrapper {
    width: 60%;
    display: flex;
    flex-direction: column;
    max-width: 1800px;
}

.faq-container {
    background-color: white;
    color: black;
    border-radius: 20px;
    box-shadow: 0 5px 10px 0 rgb(0, 0, 0, 0.25);
    margin: 0 0 30px 0;
}

.question {
    font-size: 1.2rem;
    font-weight: 600;
    padding: 20px 80px 20px 20px;
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.question::after {
    content: "\002B";
    font-size: 2.2rem;
    position: absolute;
    top: 18px;
    right: 20px;
    transition: 0.2s;
}

.question.active::after {
    transform: rotate(45deg);
}

.answercont {
    max-height: 0;
    overflow: hidden;
    transition: 0.3s;
}

.answer {
    padding: 0 20px 20px;
    line-height: 1.5rem;
}


/* Apply styles for screens with a maximum width of 767px */

@media screen and (max-width: 790px) {
    html {
        font-size: 14px;
    }

    .wrapper {
        width: 80%;
    }
}


/** ----------------------------------------------- footer ---------------------------------- */

.footer-container {
    max-width: 1350px;
    margin: auto;
}

.footer-row {
    display: flex;
    flex-wrap: wrap;
}

.footer-section {
    background: linear-gradient(to top, #045DE9 10%, #0891F2 100%);
}

.follow-us {
    color: white;
}

.footer-col-last h4 {
    font-size: 18px;
    color: #fff;
    text-transform: capitalize;
    margin-bottom: 35px;
    font-weight: 500;
    position: relative;
}

.footer-col-last h4::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    background-color: #fff;
    height: 2px;
    box-sizing: border-box;
    width: 50px;
}

.footer-col h4 {
    font-size: 18px;
    color: #fff;
    text-transform: capitalize;
    margin-bottom: 35px;
    font-weight: 500;
    position: relative;
}

.footer-col h4::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    background-color: #fff;
    height: 2px;
    box-sizing: border-box;
    width: 50px;
}

.footer-col ul li:not(:last-child) {
    margin-bottom: 10px;
}

.footer-col ul li a {
    font-size: 16px;
    text-transform: capitalize;
    text-decoration: none;
    font-weight: 300 !important;
    color: #fff !important;
    display: block;
    transition: all 0.3s ease;
}

.footer-col ul li a:hover {
    color: wheat;
    padding-left: 8px;
}

.footer-col .social-links a {
    display: inline-block;
    height: 40px;
    width: 40px;
    background-color: rgba(255, 255, 255, 0.2);
    margin: 0 10px 10px 0;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    color: #ffffff;
    transition: all 0.5s ease;
}

.footer-col .social-links a:hover {
    color: #24262b;
    background-color: #ffffff;
}

@media (max-width: 767px) {
    .hero-bg-1 {
        display: none;
    }

    .hero-bg-2 {
        display: none;
    }

    .hero-bg-3 {
        display: none;
    }

    .hero-bg-4 {
        display: none;
    }

    .hero-bg-5 {
        display: none;
    }

    .hero-bg-6 {
        display: none;
    }

    .hero-bg-7 {
        display: none;
    }

    .hero-bg-8 {
        display: none;
    }

    .hero-bg-9 {
        display: none;
    }

    .feature-bg-1 {
        display: none;
    }

    .feature-bg-2 {
        display: none;
    }

    .seo-bg-shape-1 {
        display: none;
    }

    .seo-bg-shape-2 {
        display: none;
    }

    .seo-bg-shape-3 {
        display: none;
    }

    .service-bg-shape-1 {
        display: none;
    }

    .service-bg-shape-2 {
        display: none;
    }

    .team-bg-shape-1 {
        display: none;
    }

    .team-bg-shape-2 {
        display: none;
    }

    .team-bg-shape-3 {
        display: none;
    }

    .team-bg-shape-4 {
        display: none;
    }

    .team-bg-shape-5 {
        display: none;
    }

    .pricing-bg-shape-1 {
        display: none;
    }

    .pricing-bg-shape-2 {
        display: none;
    }

    .pricing-bg-shape-3 {
        display: none;
    }

    .newsletter-bg-shape {
        display: none;
    }

    .service-bg-1 {
        display: none;
    }

    .service-bg-2 {
        display: none;
    }

    .service-bg-3 {
        display: none;
    }

    .service-bg-4 {
        display: none;
    }

    .service-bg-5 {
        display: none;
    }

    .about-bg-1 {
        display: none;
    }

    .about-bg-2 {
        display: none;
    }

    .about-bg-100 {
        display: none;
    }

    .about-bg-3 {
        display: none;
    }

    .about-bg-4 {
        display: none;
    }

    .about-bg-5 {
        display: none;
    }

    .about-bg-6 {
        display: none;
    }

    .about-bg-101 {
        display: none;
    }

    .about-bg-102 {
        display: none;
    }

    .about-bg-103 {
        display: none;
    }

    .contact-bg-1 {
        display: none;
    }

    .contact-bg-2 {
        display: none;
    }

    .contact-bg-3 {
        display: none;
    }

    .contact-bg-4 {
        display: none;
    }

    .contact-bg-5 {
        display: none;
    }

    .applic-apps .single-cases-info {
        left: 1%;
        margin-top: 10px;
    }

    .applic-apps .single-cases-info h3 {
        font-size: 30px;
    }

    .applic-apps .single-cases-info p {
        margin-bottom: 20px;
        padding-right: 0px;
    }

    .applic-apps .no-js .owl-carousel,
    .applic-apps .owl-carousel.owl-loaded {
        right: 0%;
    }

    .app-screenshot-section {
        padding: 10px;
    }

    .faq-section {
        margin-top: 150px !important;
        margin-bottom: 150px !important;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
    }

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

    .faq-wrapper {
        width: 80%;
    }

    .question {
        padding: 20px 20px;
    }

    .answer {
        padding: 0 15px 20px;
    }

    .footer-col,
    .footer-col-other,
    .footer-col-last {
        width: 100%;
        padding: 0 15px;
    }

    .footer-section {
        padding: 30px 0;
    }

    .follow-us,
    .footer-col h4,
    .footer-col-last h4 {
        text-align: center;
    }

    .footer-col h4::before,
    .footer-col-last h4::before {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-img {
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .footer-img .col-5 {
        width: 100%;
        margin-bottom: 10px;
    }

    .footer-head,
    .footer-title {
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .footer-head .col-md-6 {
        width: 100%;
    }

    .footer-head img.img-fluid {
        max-width: 100%;
        height: auto;
    }

    .footer-img img.img-fluid {
        max-width: 85%;
        height: auto;
    }

    .footer-col-last {
        text-align: center;
    }

    .footer-col-last .row {
        justify-content: center;
    }

    .footer-col-last .col-md-6,
    .footer-second-title {
        margin-top: 20px;
    }

    .footer-col-last .col-2 {
        width: 25%;
        padding: 0;
    }

    .footer-col-last .social-icon {
        margin-bottom: 0px;
    }
}

@media(max-width: 574px) {
    .footer-col {
        width: 100%;
    }
}


/* * ------------------------------------- what we offer ------------------------- */

.bg-gray {
    background-color: var(--sx-secondary);
}

.site-heading h2 {
    display: block;
    font-weight: 700;
    margin-bottom: 10px;
}

.site-heading h2 span {
    color: var(--sx-secondary);
}

.site-heading h4 {
    display: inline-block;
    padding-bottom: 20px;
    position: relative;
    text-transform: capitalize;
    z-index: 1;
}

.site-heading h4::before {
    background: var(--sx-secondary) none repeat scroll 0 0;
    bottom: 0;
    content: "";
    height: 2px;
    left: 50%;
    margin-left: -25px;
    position: absolute;
    width: 50px;
}

.site-heading {
    overflow: hidden;
    margin-top: -5px;
}

.carousel-shadow .owl-stage-outer {
    margin: -15px -15px 0;
    padding: 15px;
}

.we-offer-area .our-offer-carousel .owl-dots .owl-dot span {
    border: 2px solid;
    height: 15px;
    margin: 0 5px;
    width: 15px;
}

.we-offer-area .our-offer-carousel .owl-dots .owl-dot.active span {
    background: var(--sx-secondary) none repeat scroll 0 0;
    border-color: var(--sx-secondary);
}

.we-offer-area .item {
    background: #ffffff none repeat scroll 0 0;
    border-left: 2px solid var(--sx-secondary);
    -moz-box-shadow: 0 0 10px #cccccc;
    -webkit-box-shadow: 0 0 10px #cccccc;
    -o-box-shadow: 0 0 10px #cccccc;
    box-shadow: 0 0 10px #cccccc;
    overflow: hidden;
    padding: 30px;
    position: relative;
    z-index: 1;
}

.we-offer-area.text-center .item {
    background: #ffffff none repeat scroll 0 0;
    border: medium none;
    padding: 40px 30px 40px;
}

.we-offer-area.text-center .item a {
    background: #fff none repeat scroll 0 0;
    -webkit-border-radius: 50% !important;
    -moz-border-radius: 50% !important;
    border-radius: 50% !important;
    padding: 40px 20px;
    height: 80px !important;
    line-height: 80px;
    width: 80px;
    border: 2px solid var(--sx-primary);
}

.we-offer-area.text-center .item img {
    color: var(--sx-primary);
    height: 64px !important;
    width: 64px !important;
    position: relative;
    text-align: center;
    object-fit: contain;
    z-index: 1;
    transition: all 0.35s ease-in-out;
    -webkit-transition: all 0.35s ease-in-out;
    -moz-transition: all 0.35s ease-in-out;
    -ms-transition: all 0.35s ease-in-out;
    -o-transition: all 0.35s ease-in-out;
}

.we-offer-area.item-border-less .item {
    border: medium none;
}

.we-offer-area.item-border-less .item .number {
    font-family: "Poppins", sans-serif;
    font-size: 50px;
    font-weight: 900;
    opacity: 0.1;
    position: absolute;
    right: 30px;
    top: 30px;
}

.our-offer-carousel.center-active .owl-item:nth-child(2n) .item,
.we-offer-area.center-active .single-item:nth-child(2n) .item {
    background: var(--sx-secondary) none repeat scroll 0 0;
}

.our-offer-carousel.center-active .owl-item:nth-child(2n) .item i,
.our-offer-carousel.center-active .owl-item:nth-child(2n) .item h4,
.our-offer-carousel.center-active .owl-item:nth-child(2n) .item p,
.we-offer-area.center-active .single-item:nth-child(2n) .item i,
.we-offer-area.center-active .single-item:nth-child(2n) .item h4,
.we-offer-area.center-active .single-item:nth-child(2n) .item p {
    color: #ffffff;
}

.we-offer-area .item i {
    color: var(--sx-secondary);
    display: inline-block;
    font-size: 60px;
    margin-bottom: 20px;
    cursor: pointer;
}

.we-offer-area .item h4 {
    font-weight: 600;
    text-transform: capitalize;
}

.we-offer-area .item p {
    margin: 0;
}

.we-offer-area .item i,
.we-offer-area .item h4,
.we-offer-area .item p {
    transition: all 0.35s ease-in-out;
    -webkit-transition: all 0.35s ease-in-out;
    -moz-transition: all 0.35s ease-in-out;
    -ms-transition: all 0.35s ease-in-out;
    -o-transition: all 0.35s ease-in-out;
}

.we-offer-area .item::after {
    background: linear-gradient(-35deg, #045DE9 10%, #0891F2 100%);
    content: "";
    height: 100%;
    left: -100%;
    position: absolute;
    top: 0;
    transition: all 0.35s ease-in-out;
    -webkit-transition: all 0.35s ease-in-out;
    -moz-transition: all 0.35s ease-in-out;
    -ms-transition: all 0.35s ease-in-out;
    -o-transition: all 0.35s ease-in-out;
    width: 100%;
    z-index: -1;
}

.we-offer-area .item:hover::after {
    left: 0;
}

.we-offer-area .item:hover i,
.we-offer-area .item:hover h4,
.we-offer-area .item:hover p {
    color: #ffffff !important;
}

.we-offer-area.text-center .item:hover i::after {
    border-color: #ffffff !important;
}

.we-offer-area.text-center .item:hover i {
    background-color: #ffffff !important;
    color: var(--sx-secondary) !important;
}

.we-offer-area.text-left .item i {
    background: var(--sx-secondary) none repeat scroll 0 0;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    color: #ffffff;
    display: inline-block;
    font-size: 60px;
    height: 100px;
    line-height: 100px;
    margin-bottom: 30px;
    position: relative;
    width: 100px;
    z-index: 1;
    text-align: center;
}

.we-offer-area.text-left .item i::after {
    border: 2px solid var(--sx-secondary);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    content: "";
    height: 120px;
    left: -10px;
    position: absolute;
    top: -10px;
    width: 120px;
}


/** --------------------------------------- app available ----------------------------- */

.available-app-area {
    background-color: var(--sx-secondary);
}

.available-app-area .app-caption .section-tittle3 h1 {
    color: #fff;
    font-weight: 600;
}

.available-app-area .app-caption p {
    color: #fff;
    padding-right: 52px;
    padding-bottom: 26px;
}

.available-app-area .app-caption .app-btn .app-btn1 {
    padding-right: 15px;
}

.available-app-area .app-img {
    position: relative;
    width: 218px;
}

.available-app-area .app-img img {
    width: 100%;
}

.available-app-area .app-shape .app-shape-top {
    position: absolute;
    top: 100px;
    left: 125px;
}

.available-app-area .app-shape .app-shape-left {
    position: absolute;
    left: 0;
    bottom: 0;
}

.available-app-area .app-shape .app-shape-right {
    position: absolute;
    right: 252px;
    top: 208px;
}


/* Apply styles for screens with a maximum width of 767px */

@media (max-width: 1020px) {
    .available-app-area .app-caption {
        text-align: center;
    }

    .available-app-area .app-caption .section-tittle3 h2 {
        margin-bottom: 20px;
        font-size: 24px;
    }

    .available-app-area .app-caption p {
        padding-right: 0;
        padding-bottom: 20px
    }

    .available-app-area .app-caption .app-btn .app-btn1 {
        padding-right: 0;
    }

    .available-app-area .app-shape .app-shape-top,
    .available-app-area .app-shape .app-shape-left,
    .available-app-area .app-shape .app-shape-right {
        display: none;
    }

    .app-available-img .col-3 {
        width: 100%;
        text-align: center;
        margin-bottom: 10px;
    }

    .qr-code {
        justify-content: center;
    }

    .qr-code img {
        width: 70%;
        text-align: center;
        display: block;
    }

    .available-app-area .app-img {
        text-align: center;
        margin-top: 0px;
    }

    .available-app-area .app-img img {
        width: 70%;
        display: block;
    }
}


/* * --------------------------------------- navigation -------------------------------------- */

.menu {
    --menu-height: 40px;
    box-sizing: border-box;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    display: flex;
    justify-content: flex-end;
    max-width: 1600px;
}

.menu ul {
    list-style: none;
    padding: 40px;
    margin: 0;
}

.menu ul li,
.menu ul li a {
    opacity: 1;
    color: #fafbfc;
    cursor: pointer;
    transition: 200ms;
    text-decoration: none;
    white-space: nowrap;
    font-weight: 700;
}

.menu ul li:hover,
.menu ul li a:hover {
    opacity: 1;
}

.menu ul li a,
.menu ul li a a {
    display: flex;
    align-items: center;
    height: 100%;
    width: 100%;
}

.menu ul li {
    padding-right: 36px;
}

.menu ul li::before {
    content: '';
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #FAFBFC;
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
}

.menu ul .link::before {
    padding-right: 0;
    display: none;
}

.menu>ul {
    display: flex;
    height: var(--menu-height);
    align-items: center;
}

.menu>ul li {
    position: relative;
    margin: 0 8px;
}

.menu>ul li ul {
    visibility: hidden;
    opacity: 0;
    padding: 5px;
    min-width: 160px;
    background-color: #fafbfc;
    position: absolute;
    top: calc(var(--menu-height) + 5px);
    left: 50%;
    transform: translateX(-50%);
    transition: 200ms;
    transition-delay: 200ms;
}

.menu>ul li ul li {
    margin: 0;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 30px;
    padding-right: 40px;
    color: black;
}

.sub-menu {
    color: #000 !important;
}

.menu>ul li ul li::before {
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 5px solid #871524;
}

.menu>ul li ul li ul {
    top: -2%;
    left: 100%;
    transform: translate(0);
}

.menu>ul li ul li:hover {
    background-color: #c222288a;
}

.menu>ul li:hover>ul {
    opacity: 1;
    visibility: visible;
    transition-delay: 0ms;
}

.navbar .min-screen-logo img {
    height: 45px !important;
    object-fit: contain;
}


/* * ------------------------------------------------------ counters ------------------------------------------ */

.counter-section {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 40px 0px;
    / background-image: -webkit-linear-gradient(53deg, #770000 30%, #091337 100%);
    / / margin-top: 60px;
    /
}

#counter {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
}

#counter .item {
    background: #faebd7;
    width: 200px;
    padding: 35px 40px;
    margin: 0px 10px;
    text-align: center;
    border-radius: 20px;
    -webkit-box-shadow: 0px 0px 38px -8px rgba(0, 0, 0, 0.34);
    -moz-box-shadow: 0px 0px 38px -8px rgba(0, 0, 0, 0.34);
    box-shadow: 0px 0px 38px -8px rgba(0, 0, 0, 0.34);
}

#counter .item .count {
    color: var(--sx-primary);
    margin-bottom: 5px;
    font-size: 40px;
}

#counter .item h3 {
    color: #4f4e28;
    text-transform: capitalize;
}


/* Apply styles for screens with a maximum width of 767px */

@media (max-width: 994px) {
    .counter-section {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    #counter {
        flex-direction: column;
    }

    #counter .item {
        width: 80%;
        margin: 10px auto;
    }

    .team-bg-shape-5,
    .team-bg-shape-4 {
        display: none;
    }
}


/* * ------------------------------- sub menu wrapper ----------------------------------------- */

.inner-page-header .post-meta span.entry-meta {
    font-size: 16px;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    background: rgba(0, 0, 0, 0.08);
    padding: 10px 30px;
}

.style-dark .post-meta a {
    color: rgba(255, 255, 255, 0.7);
}

.style-dark .post-meta a:hover {
    color: rgba(255, 255, 255, 1);
}

.inner-page-header .post-meta span.entry-meta::before {
    display: none;
}

.inner-page-header {
    position: relative;
    background: url('../images/header/half-circle-bg.png') no-repeat scroll bottom center;
    background-size: cover;
}

.section-padding {
    padding: 100px 0px;
}

.st-breadcrumb {
    text-transform: uppercase;
    font-weight: 600;
    font-size: 17px;
    margin: 0px auto 0px;
    display: table;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    background: rgb(4 106 195);
    padding: 10px 30px;
}

.st-breadcrumb li {
    display: inline-block;
    padding: 0px 0px;
}

.st-breadcrumb li a {
    padding: 0px 5px;
}

.st-breadcrumb li span {
    padding: 0px 5px;
    opacity: 0.6;
}

.st-breadcrumb li:not(.active):after {
    content: "/";
    margin: 0px 10px;
    color: white;
}

.lead-text,
.lead-text p {
    font-size: 20px;
    line-height: 1.6;
}

.heading-wrapper {
    margin-bottom: 30px;
    margin-top: 30px;
}

.heading-wrapper span {
    font-family: 'Alegreya', serif;
    font-style: italic;
}

.heading-wrapper span.sub-title {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 1px;
    font-family: 'Source Sans Pro', sans-serif;
    font-style: normal;
}

.style-dark .heading-wrapper span {
    color: #ffffff;
}

.lead-text,
.lead-text p {
    font-size: 20px;
    line-height: 1.6;
}

.intro-header-slider {
    padding-top: 60px;
    margin-bottom: -300px;
}

.heading-wrapper.with-separator h1:after,
.heading-wrapper.with-separator h2:after,
.heading-wrapper.with-separator h3:after {
    height: 6px;
    width: 60px;
    content: "";
    display: block;
    margin-top: 18px;
}

.heading-wrapper.with-separator.text-center h1:after,
.heading-wrapper.with-separator.text-center h2:after,
.heading-wrapper.with-separator.text-center h3:after {
    display: table;
    margin-left: auto;
    margin-right: auto;
}

.heading-wrapper span {
    color: #2a1fbc;
}

.heading-wrapper.with-separator h1:after,
.heading-wrapper.with-separator h2:after,
.heading-wrapper.with-separator h3:after {
    background: -moz-linear-gradient(left, #488fed 0%, #291fbc 100%);
    background: -webkit-gradient(left top, right top, color-stop(0%, #488fed), color-stop(100%, #291fbc));
    background: -webkit-linear-gradient(left, #488fed 0%, #291fbc 100%);
    background: linear-gradient(to right, #488fed 0%, #291fbc 100%);
}


/* * ------------------------------------ about us --------------------------------------- */

.about-section {
    margin-top: 100px !important;
}

.about-us-1 {
    max-width: 100% !important;
    height: auto !important;
    object-fit: contain;
}

.main {
    height: auto;
    background-color: var(--sx-secondary);
}

.profile-card {
    position: relative;
    font-family: sans-serif;
    width: 220px;
    height: 220px;
    background: #fff;
    padding: 30px;
    z-index: 0;
    border-radius: 50%;
    box-shadow: 0 0 22px #3336;
    transition: .6s;
    margin: 0 25px;
    cursor: pointer;
}

.profile-card:hover {
    border-radius: 10px;
    height: 260px;
}

.profile-card .img {
    position: relative;
    width: 100%;
    height: 100%;
    transition: .6s;
    z-index: 99;
}

.profile-card:hover .img {
    transform: translateY(-60px);
}

.img img {
    width: 100%;
    border-radius: 50%;
    box-shadow: 0 0 22px #78060838;
    transition: .6s;
}

.profile-card:hover img {
    border-radius: 10px;
}

.caption {
    text-align: center;
    transform: translateY(-80px);
    opacity: 0;
    transition: .6s;
}

.profile-card:hover .caption {
    opacity: 1;
}

.caption h3 {
    font-size: 21px;
    font-family: sans-serif;
}

.caption p {
    font-size: 15px;
    color: #0c52a1;
    font-family: sans-serif;
    margin: 2px 0 9px 0;
}

.caption .social-links a {
    color: #333;
    margin-right: 15px;
    font-size: 21px;
    transition: .6s;
}

.social-links a:hover {
    color: #0c52a1;
}

.our-team-role {
    color: var(--sx-secondary) !important;
    font-size: 17px !important;
}


/* * ---------------------------------------------- contact us ------------------------------------------ */

.contact-btn {
    color: var(--sx-primary);
    font-size: 18px;
    padding: 0;
    font-weight: 600;
    border: 0;
    border-radius: 5px;
    position: relative;
    z-index: 1;
    transition: .2s ease;
    line-height: 1.3;
    letter-spacing: 0;
}

.contact-btn:hover {
    color: black;
}

.contact-card {
    border: 1px solid #dddddd;
    padding: 20px;
    border-radius: 20px;
}

.contact-us-map {
    border: 0px solid #f5b90640;
    border-radius: 12px;
    box-shadow: 0px 2px 19px #0913374d;
}

.icon-box.theme-one {
    text-align: center;
    min-height: 375px;
    padding: 30px 30px 30px 30px;
}

.icon-box.theme-one .icon {
    height: 120px;
    width: 120px;
    padding: 10px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background: var(--heading-text-color);
    line-height: 100px;
    text-align: center;
    margin: 0px auto 30px;
}

.icon-box.theme-one .icon img {
    max-width: 64px;
}

.icon-box.theme-one h4 {
    font-size: 24px;
}

.icon-box.theme-one p:last-child {
    margin-bottom: 0;
}

.icon-box.theme-two {
    text-align: center;
    padding: 30px 30px 30px 30px;
    border: 1px solid var(--light-gray);
    -webkit-border-radius: 8px;
    border-radius: 8px;
    background: var(--white-color);
}

.icon-box.theme-two .icon {
    height: 120px;
    width: 120px;
    padding: 10px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background: var(--heading-text-color);
    line-height: 100px;
    text-align: center;
    margin: 0px auto 30px;
}

.icon-box.theme-two .icon img {
    max-width: 64px;
}

.icon-box.theme-two h4 {
    font-size: 24px;
}

.icon-box.theme-two p {
    margin-bottom: 0;
}

.icon-box.theme-one .icon {
    background: linear-gradient(-35deg, #045DE9 10%, #0891F2 100%);
}


/* * ----------------------------------------------- point system -------------------------------------------- */

.navbar-section {
    max-width: 1346px !important;
    margin-top: 6px !important;
}

.point-table .responsive-table .table-header .col,
.point-table .responsive-table .table-row .col {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
}

.point-table .responsive-table .table-header .col-1,
.point-table .responsive-table .table-row .col-1 {
    flex-basis: 40%;
    flex-grow: 1;
    max-width: 40%;
}

.responsive-table li {
    border-radius: 3px;
    padding: 13px 16px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px
}

.responsive-table .table-row {
    background-color: #fff;
    box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.1);
}

.responsive-table .col-1 {
    flex-basis: 10%;
}

.responsive-table .col-2 {
    flex-basis: 6%;
}

.responsive-table .col-3 {
    flex-basis: 6%;
}

.responsive-table .col-4 {
    flex-basis: 6%;
}

@media all and (max-width: 767px) {
    .responsive-table .table-header {
        display: none;
    }

    .responsive-table li {
        display: block;
    }

    .responsive-table .col {
        flex-basis: 100%;
    }

    .responsive-table .col {
        display: flex;
        padding: 10px 0;
    }

    .responsive-table .col:before {
        color: #6c7a89;
        padding-right: 10px;
        content: attr(data-label);
        flex-basis: 50%;
        text-align: right;
    }
}

.point-table table {
    width: 100%;
}


/* * ------------------------------- fantasy cricket -------------------------------------- */

.fantasy-table .responsive-table .table-header .col,
.fantasy-table .responsive-table .table-row .col {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
}

.fantasy-table .responsive-table .table-header .col-2,
.fantasy-table .responsive-table .table-row .col-2 {
    flex-basis: 90%;
    flex-grow: 1;
    max-width: 95%;
}

.player-selection .responsive-table .table-header .col,
.player-selection .responsive-table .table-row .col {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
}

.fantasy-section .square-check li {
    display: flex !important;
}

.fantasy-section .square-check li::before {
    font-family: 'Font Awesome 5 Free';
    content: '\f14a';
    margin-right: 8px;
    color: var(--sx-green);
}

.fantasy-section ol,
.fantasy-section ul {
    margin-bottom: 20px !important;
}

.fantasy-section ul li,
.fantasy-section ol li {
    line-height: 38px !important;
}

.player-selection .responsive-table .table-header .col-2,
.player-selection .responsive-table .table-row .col-2 {
    flex-basis: 30%;
    flex-grow: 1;
    max-width: 30%;
}

.pro-tip {
    background: #fff2f2;
    padding: 10px 60px;
    border: 1px solid var(--sx-primary);
    border-radius: 15px;
    color: #000;
}

.create-team-icon {
    margin-right: 10px;
    color: var(--sx-linkedin);
}


/* * ------------------------------------------- getting started ---------------------------------------- */

.started-card {
    padding: 20px;
    border: 2px solid var(--sx-primary);
    border-radius: 15px;
    min-height: 240px;
    width: 100%;
}


/* * ------------------------------------------- cricket tips -------------------------------------- */

.cricket-tips-icon {
    margin-right: 10px;
    color: var(--sx-green);
}


/* * --------------------------------------- free play ------------------------------------- */

.free-play-word {
    color: var(--sx-primary);
    font-weight: 600;
    line-height: 1.5;
}

.do-tip {
    background: #d9e9dd;
    padding: 10px 60px;
    border: 1px solid var(--sx-green);
    border-radius: 15px;
    color: #000;
}

.dont-tip {
    background: #fff2f2;
    padding: 10px 60px;
    border: 1px solid var(--sx-primary);
    border-radius: 15px;
    color: #000;
}

.dont-tips-icon {
    margin-right: 10px;
    color: var(--sx-primary);
}

.sub-menu-title:hover {
    color: white !important;
}


/* simran css */

.navbar-brand img,
.footer-col-other a .logo-main {
    /* width: 230px; */
    object-fit: contain;
}

.footer-logo-main {
    height: 44px;
    /* width: 180px; */
}

.country-number span {
    border-right: 1px solid #d5d5d5;
    color: #828282 !important;
    font-size: 14px;
    left: 0;
    position: absolute;
    text-align: center;
    width: 55px;
    line-height: 54px;
    z-index: 2;
    padding: 0px 24px;
}

.country-number input {
    font-size: 13px;
    height: 54px;
    position: relative;
    padding: 3% 5% 3% 14%;
}


/*thumbnail css*/

.cover-layer {
    border-radius: 20px;
}

.cover {
    background-image: url("../images/accoro-play-thumbnail.png");
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 600px;
    position: relative;
    background-position: top;
    border-radius: 20px;
    margin-bottom: 50px;
}

.cover p {
    font-size: 70px;
    line-height: 80px;
    font-weight: bold;
    position: absolute;
    top: 28%;
    left: 0;
    margin-left: 100px;
    transform: translate(0, 28%);
}

.cover iframe {
    opacity: 0;
    padding: 0px !important;
    height: 600px;
    width: 100%;
    margin: 0px !important;
    transition: 1s;
    position: relative;
    z-index: -1;
    border-radius: 20px;
}


/* how to play page css */

.how-play .owl-item>div {
    cursor: pointer;
    margin: 6% 8%;
    transition: margin 0.4s ease;
}

.how-play .item h4 {
    color: var(--sx-primary) !important;
}

.how-play .owl-item.center>div {
    cursor: auto;
    margin: 0;
    transform: scale(1.1);
}

.how-play .owl-item:not(.center)>div {
    opacity: 0.5;
}

.how-play .item img {
    object-fit: contain;
    height: 500px;
    width: 100% !important;
    margin-top: 31px;
}


/* blogs page css */

.switch-team {
    height: auto;
}

.switch-team img {
    border: 2px solid rgba(177, 174, 174, 0.679);
    border-radius: 10px;
}

.quick-create {
    height: 220px;
}

.earn-feature {
    height: 200px;
}

.guru-team {
    height: 260px;
}

.blog-share button p i {
    padding: 4px 0px 0px 5px !important;
}

.blog-content-title .sx-title {
    height: 80px;
}

.read-more button {
    padding: 4px 20px 4px 20px;
    border: 1px solid #fff;
    border-radius: 4px;
}

.sixer-blog-main img {
    object-fit: contain;
    border-top-right-radius: 15px;
    border-top-left-radius: 15px;
}

.blog-share a .counting {
    padding: 2.6px 0px 0px 0px;
}

.blog-share a {
    background-image: -webkit-linear-gradient(53deg, #770000 30%, #091337 100%);
    padding: 1px 15px;
    border-radius: 4px;
}

.blog-main-radius {
    border-radius: 15px;
}

.blog-btn:hover {
    color: #fff;
    background-position: 100%;
    transform: translateX(0.5rem);
}

.blog-btn {
    border-radius: 50px;
    position: relative;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid var(--color-secondary);
    padding: 10px 20px 14px 20px;
    background-size: 300%;
    transition: all 0.6s;
    width: 200px;
}

.blog-btn {
    color: var(--color-secondary);
    background-image: -webkit-linear-gradient(53deg, #770000 30%, #091337 100%);
}

.blog-btn:active {
    transform: translate(0.5rem, 0.5rem);
    box-shadow: 0px 10px 20px -15px rgba(0, 0, 0, 0.75);
}


/*--------------- blog detail page-------------- */

.more-blogs {
    height: auto;
}

.sixer-blog-detail img {
    width: 700px;
    object-fit: contain;
    border-radius: 15px;
}

.sixer-blog-mini-detail img {
    object-fit: contain;
    border-radius: 15px;
}

.mini-blog-hover .mini-blog a:hover:before {
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
    opacity: 1;
    visibility: visible;
}

.mini-blog-hover .mini-blog a {
    position: relative;
    display: block;
}

.subscribe-input {
    height: auto !important;
}

.s-color-red {
    color: var(--sx-primary);
    font-size: 20px !important;
}

.subscribe-button button {
    padding: 4px 15px !important;
    color: #fff;
    font-size: 16px;
    border-radius: 4px;
    background-image: -webkit-linear-gradient(53deg, #770000 30%, #091337 100%);
}

.subscribe-button button:hover {
    color: #fff;
}

.mini-blog-hover .mini-blog a:before {
    background-color: rgb(255 255 255 / 51%);
    content: "";
    position: absolute;
    opacity: 0;
    visibility: hidden;
    border-top-right-radius: 15px;
    border-top-left-radius: 15px;
    left: 0;
    top: 0;
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    height: 100%;
    width: 100%;
    z-index: 2;
}

.blog-title-details button {
    background: linear-gradient(-35deg, #045DE9 10%, #0891F2 100%);
    padding: 4px 20px 4px 20px;
    border: none;
    border-radius: 4px;
}

.read-more button p i {
    padding: 4px 0px 0px 10px !important;
}

.blog-hr {
    color: #c3c3c3;
    height: 1px !important;
    opacity: unset !important;
}

.sixer-detail-bg,
.overlay {
    text-align: center;
}

img,
.overlay {
    transition: 0.3s all;
    border-radius: 3px;
}

.sixer-detail-bg {
    position: relative;
}

.sixer-detail-bg img {
    width: 100%;
}

.sixer-detail-bg .overlay {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    background: rgb(12 11 11 / 42%);
    color: #fff;
    opacity: 0;
    border-radius: 15px;
}

.sixer-detail-bg .overlay h2 {
    padding-top: 25%;
}

.sixer-detail-bg:hover .overlay {
    opacity: 1;
}

.more-blogs img {
    border-radius: 8px;
    object-fit: contain;
}

.blog-video iframe {
    border: 1px solid #b7abab;
    border-radius: 10px;
    box-shadow: 0 18px 15px rgba(34, 30, 30, 0.2) !important;
}

.more-blog-radius {
    border-radius: 10px;
}

.blog-subscribe {
    border: 1px solid rgb(245 244 244);
    border-radius: 10px;
    padding: 15px;
}

.subscribe-input:focus {
    color: none !important;
    background-color: #fff;
    border-color: rgb(187, 178, 178) !important;
    outline: none !important;
    box-shadow: none !important;
}


/* how to play page css */

.select-match {
    padding-top: 100px;
}


/* fantasy cricket page css */

.topic-table th {
    font-size: 16px;
    text-transform: uppercase;
    color: wheat;
    font-weight: normal;
}

.topic-table tr {
    box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.1);
}

.topic-table th,
tr td {
    padding: 14px;
}

.table-header {
    background-color: var(--sx-secondary);
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: wheat;
}

table {
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid white;
}

th {
    color: #FFFFFF;
}

th,
tr,
td {
    padding: 10px;
}


/* required css to make the rows rounded */

th:first-child,
.data-row,
tr:first-child {
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
}

th:last-child,
.data-row,
tr:last-child {
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
}

.row-spacing {
    border-spacing: 0 15px;
    border-collapse: separate;
}

.col-spacing {
    column-count: 2;
    column-gap: 60px;
}

@media (max-width:1400px) {
    .applic-apps .single-cases-info .prg-text {
        padding-right: 0px !important;
    }

    .applic-apps .single-cases-info {
        margin-top: 0px;
    }
}

@media (max-width:1300px) {
    .hero-section {
        /* padding-top: 120px;
        padding-bottom: 120px; */
    }
}

@media (min-width:991.5px) and (max-width:1199.5px) {
    .profile-card {
        height: 200px;
    }
}

@media (max-width:1024px) {
    .heading-wrapper {
        margin-top: 10px !important;
    }

    .cover p {
        font-size: 52px !important;
        line-height: 62px !important;
        top: 27% !important;
        margin-left: 70px !important;
    }
}

@media (max-width:991.5px) {

    .cover iframe,
    .cover {
        height: 400px !important;
        background-size: 100% 100% !important;
    }

    .guru-team,
    .quick-create,
    .switch-team,
    .earn-feature {
        height: auto;
    }

    .icon-box.theme-one {
        min-height: auto;
    }

    .display-md-center {
        justify-content: center !important;
    }

    .md-center {
        text-align: center !important;
    }

    .available-app-area .app-caption {
        text-align: left;
    }

    .available-app-area .app-img {
        margin-top: 4px;
    }

    .applic-apps .single-cases-info p {
        padding-right: 0px;
    }

    .main {
        width: 100%;
        height: auto;
        padding: 50px 0px 30px 0px;
        justify-content: center !important;
        align-items: center;
    }

    .display-grid {
        display: block !important;
    }

    .started-card {
        min-height: 180px;
    }
}

@media (max-width:768px) {
    .about-us-1 {
        height: auto !important;
    }

    .main {
        width: 100%;
        height: auto;
        display: grid;
        padding: 30px 0px;
        justify-content: center !important;
        align-items: center;
    }

    .profile-card {
        margin-top: 35px;
    }

    .footer-col h4 {
        margin-bottom: 25px !important;
    }
}

@media (max-width:767.5px) {
    .country-number input {
        padding: 3% 4% 3% 20% !important;
    }

    .question::after {
        top: 14px !important;
    }

    .hero-section {
        /* padding-top: 100px;
        padding-bottom: 100px; */
    }

    .cover p {
        font-size: 32px !important;
        line-height: 42px !important;
        top: 25% !important;
        margin-left: 34px !important;
    }

    .applic-apps .single-cases-info {
        left: 0% !important;
    }

    h4,
    .h4 {
        font-size: 20px;
        line-height: 28px;
    }

    .app-available-img img {
        display: flex !important;
        justify-content: center !important;
    }

    .pro-tip {
        padding: 10px 30px;
    }

    .dont-tip,
    .do-tip {
        padding: 10px 25px;
    }

    .started-card {
        min-height: auto;
    }

    .footer-col h4::before,
    .footer-col-last h4::before {
        left: 50%;
        transform: translateX(-50%);
    }

    .mission-col-reverse {
        flex-direction: column-reverse !important;
    }

    .sm-center {
        text-align: center !important;
    }

    .display-center {
        justify-content: center !important;
    }

    .display-grid {
        display: flex !important;
    }

    .justify-start {
        justify-content: flex-start !important;
    }

    .team-profile {
        display: grid !important;
    }

    #scene {
        display: none !important;
    }

    .newsletter-btn {
        font-size: 14px;
    }

    .team-member {
        padding: 20px;
        margin: 0px 12px;
    }

    .team-slider {
        padding-bottom: 75px;
    }

    .app-image img {
        height: auto;
        width: 50%;
        object-fit: contain;
        margin-bottom: 4px;
    }

    .available-app-area .app-img img {
        width: 50%;
        box-shadow: none !important;
    }

    .answer {
        font-size: 14px !important;
    }

    .site-heading h2 {
        margin-top: 0px !important;
    }

    /*.site-heading h4,*/
    /*.we-offer-area {*/
    /*    padding-bottom: 0px !important;*/
    /*}*/

    .we-offer-area.text-center .item {
        padding: 45px 40px 40px;
    }

    #counter {
        padding-top: 10px;
        padding: 10px 0px 0px 0px;
    }

    .user-review-section {
        padding-top: 40px !important;
        padding-bottom: 0px !important;
    }

    #counter .item {
        padding: 30px 30px;
        width: 80%;
    }

    .available-app-area .app-img {
        position: relative;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .available-app-area {
        margin-top: 0px !important;
    }

    .faq-section {
        margin-top: 40px !important;
        margin-bottom: 40px !important;
    }

    h2,
    .h2 {
        font-size: 28px;
        line-height: 38px;
    }

    .question {
        padding: 15px 15px;
        font-size: 16px;
        line-height: 26px;
    }

    .faq-container {
        margin: 12px 0px;
    }

    .question::after {
        right: 10px;
    }

    .team-slider .slick-arrow {
        bottom: 15px;
    }

    .pt-70 {
        padding-top: 5px;
    }

    .site-heading h4::before {
        bottom: -8px !important;
        height: 3px !important;
    }

    .square-check ul {
        padding-left: 0px !important;
    }

    .footer-link img {
        height: 60px;
    }

    .more-blogs {
        height: auto !important;
    }

    .owl-item.center>div {
        transform: none;
    }

    p,
    .paragraph {
        font-size: 17px;
        line-height: 25px;
    }

    h3,
    .h3 {
        font-size: 30px;
    }

    .team-member {
        min-height: auto;
    }

    .cover iframe,
    .cover {
        height: 400px !important;
        background-size: 100% 100% !important;
    }

    .how-play .owl-item.center>div {
        transform: none !important;
    }
}

@media (max-width:425px) {
    .cover p {
        font-size: 22px !important;
        line-height: 32px !important;
        top: 25% !important;
        margin-left: 20px !important;
    }

    .cover iframe,
    .cover {
        height: 100% !important;
    }
}

.navbar .min-screen-logo img {
    height: 45px !important;
    object-fit: contain;
}

.navbar .max-screen-logo img {
    height: 50px;
    width: 100%;
    object-fit: contain;
}

.footer-col-other .footer-logo a img {
    height: 35px;
    max-width: 100%;
    object-fit: contain;
}

.how-play .owl-stage-outer {
    height: auto !important;
}

#scene {
    position: relative;
}

.nav-pills li .active {
    color: var(--sx-primary) !important;
    border-bottom: 3px solid var(--sx-primary);
    font-weight: 600;
}

.nav-pills a {
    color: #000 !important;
}

.nav-pills li a {
    transition: none !important;
    padding: 0px 20px 5px 20px;
}

.list-style {
    list-style-type: disc !important;
}

@media (max-width:767.5px) {

    .nav-pills li,
    .nav-pills h4 {
        font-size: 14px !important;
        font-weight: bold;
    }

    .nav-pills li a {
        transition: none !important;
        padding: 0px 10px 2px 10px;
    }

    .nav-pills li {
        padding: 0px 0px 15px 0px;
    }
}

/* changes */

.new-min-height-100 {
    min-height: 100vh;
}

.new-hero-main-title {
    font-size: 65px !important;
}

.new-hero-sub-title {
    font-size: 30px !important;
    line-height: 35px;
}

.new-hero-sub-title p span {
    font-size: 20px !important;
    line-height: 30px;
}

@media (max-width: 1350px) {

    .new-hero-main-title {
        font-size: 55px !important;
    }

    .new-hero-sub-title {
        font-size: 24px !important;
        line-height: 35px !important;
    }

    .new-hero-sub-title p span {
        font-size: 16px !important;
        line-height: 1 !important;
    }
}

@media (min-width: 992px) and (max-width: 1100px) {

    .new-hero-main-title {
        font-size: 45px !important;
    }

    .new-hero-sub-title {
        font-size: 20px !important;
        line-height: 30px !important;
    }

    .new-hero-sub-title p span {
        font-size: 14px !important;
        line-height: 1 !important;
    }
}

.new-qr-title {
    font-size: 30px !important;
}

@media (max-width: 992px) {

    h1,
    .h1 {
        font-size: 32px !important;
    }

    .new-qr-title {
        font-size: 24px !important;
    }

    .new-min-height-100 {
        padding-top: 55px;
        min-height: 85vh;
    }


    .new-hero-main-title {
        font-size: 42px !important;
    }

    .new-hero-sub-title {
        font-size: 20px !important;
        line-height: 30px !important;
    }

    .new-hero-sub-title p span {
        font-size: 17px !important;
        line-height: 1 !important;
    }

}