/*===========================================================
 Custom Font CSS
============================================================*/
@font-face {
    font-family: 'GilroyExtraBold';
    src: url('../fonts/GilroyExtraBold.eot');
    src: url('../fonts/GilroyExtraBold.eot') format('embedded-opentype'),
    url('../fonts/GilroyExtraBold.woff2') format('woff2'),
    url('../fonts/GilroyExtraBold.woff') format('woff'),
    url('../fonts/GilroyExtraBold.ttf') format('truetype'),
    url('../fonts/GilroyExtraBold.svg#GilroyExtraBold') format('svg');
}

/*===========================================================
 Hero Area
============================================================*/
.hero-area {
    background-image: url(../images/home/home-hero.webp);
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 680px;
    position: relative;
    display: flex;
    align-items: center;
}

@media screen and (min-width: 768px) {
    .hero-area:before {
        position: absolute;
        content: '';
        width: 100%;
        height: 100%;
        background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 33%, rgba(0, 0, 0, 0) 66%);
    }
}
@media screen and (max-width: 767px) {
    .hero-area {
        background-image: url(../images/home/home-hero-mobile.webp);
    }
}

.hero-text {
    max-width: 522px;
    position: relative;
}

.hero-text h1 {
    text-shadow: 2px 2px 7px rgba(0, 0, 0, 0.2);
    color: #ffdc1b;
    font-family: 'GilroyExtraBold';
    font-size: 64px;
    font-weight: 400;
    font-style: normal;
    letter-spacing: normal;
    line-height: 1.1;
}

.hero-text p {
    text-shadow: 2px 2px 7px rgba(0, 0, 0, 0.54);
    color: #ffffff;
    font-size: 26px;
    font-weight: 400;
    font-family: 'GilroyExtraBold';
    font-style: normal;
    letter-spacing: normal;
    line-height: 1.2;
    text-align: left;
    margin-bottom: 35px;
    margin-top: 25px;
}

.started-btn a {
    color: #ffffff;
    font-size: 21px;
    font-weight: 400;
    font-style: normal;
    letter-spacing: normal;
    line-height: normal;
    text-align: center;
    text-transform: uppercase;
    line-height: 70px;
    width: 292px;
    text-align: center;
    display: inline-block;
    border-radius: 6px;
    background-color: #ff0074;
}

.started-btn a:hover {
    background-color: #383838;
}

.hero-text span {
    color: #ffffff;
    font-size: 18px;
    font-weight: 400;
    font-style: normal;
    letter-spacing: normal;
    line-height: normal;
    text-align: center;
    margin-top: 6px;
    width: 290px;
    display: block;
}

/*===========================================================

===========================================================*/


@media (min-width: 767px) {
    .hero-mobile-text {
        display: none;
    }
}

@media (max-width: 767px) {
    .hero-area {
        height: 310px;
    }

    .hero {
        display: none;
    }

    .hero-mobile-text {
        display: block;
    }

    .hero-text {
        max-width: 350px;
        margin-left: auto;
        margin-right: auto;
        padding-top: 30px;
        padding-bottom: 110px;
    }

    .hero-text .started-btn {
        text-align: center;
    }

    .hero-text h1 {
        color: #2a2a2a;
        font-size: 44px;
        font-weight: 400;
        font-style: normal;
        letter-spacing: normal;
        line-height: 60px;
        text-align: center;
        font-family: 'GilroyExtraBold', 'Arial', sans-serif;
        margin-bottom: 25px;

    }

    .hero-text span {
        color: #555555;
        font-size: 18px;
        font-weight: 400;
        font-style: normal;
        letter-spacing: normal;
        line-height: normal;
        text-align: center;
        width: 100%;
    }
}


@media (max-width: 375px) {

}

@media (max-width: 349px) {
    .started-btn {
        padding-left: 10px;
        padding-right: 10px;
    }

    .started-btn a {
        width: 100%;
    }
}

/*===========================================================
Preloader CSS
============================================================*/
.preloader {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: white;
    z-index: 99999999;
}

#preloader-logo {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

.loading-msg {
    width: 100%;
    font-size: 0.75em;
    color: #555;
    position: fixed;
    bottom: 10%;
    left: 50%;
    transform: translate(-50%, 50%);
    text-align: center;
}

.spinner {
    width: 80px;
    height: 80px;
    border: 2px solid #f3f3f3;
    border-top: 3px solid #2489CE;
    border-radius: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    -webkit-animation: spin 1s infinite ease;
    animation: spin 1s infinite ease;
}

@-webkit-keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

#loading-msg {
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 25px;
    text-align: center;
    color: #333;
    font-size: 0.8em;
}

/*===========================================================
 Scroll To Top
============================================================*/

.go-top {
    bottom: 15px;
    display: none;
    position: fixed;
    right: 15px;
    z-index: 999;
}

.go-top img {
    width: 35px;
}

.go-top span {
    /*background-color: #4285F4;*/
    color: rgba(255, 255, 255, .6);
    cursor: pointer;
    float: right;
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    padding: 5px 10px;
}

.go-top span:hover {
    color: #fff;
}





/*===========================================================
 Company Logo Area
===========================================================*/
.company-logo-area {
    background: #f2f4f6;
    padding-top: 25px;
    padding-bottom: 25px;
}

.company-logo {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
}
.company-logo a {
    cursor: default;
}

/*.company-logo a {
    width: 18%;
}*/

/*===========================================================
 Service Area
===========================================================*/
.service-area-2 {
    width: 100%;
    height: 100%;
    position: relative;
    padding-left: 70px;
    padding-right: 70px;
    overflow: hidden;

}

.service-area-inner {
    background: #f2f4f6;
    padding: 80px 0;
}

.divider-box-top {
    position: absolute;
    top: -1px;
    width: 100%;
    z-index: 1;
    transform: rotate(180deg);
}

.service-area {
    overflow: hidden;
    padding-top: 100px;
    padding-bottom: 100px;
}

.service-2 {
    flex-direction: row-reverse;
}

.service {
    max-width: 1071px;
    margin-left: auto;
    margin-right: auto;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
}

.service-left-img img {
    position: relative;
    z-index: 5;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

.service-left-img {
    padding: 5px 16px 0 24px;
    position: relative;
}

.animated-square,
.animated-box {
    transition: .6s;
}

.animated-box-1 .animated-square {
    width: 39px;
    height: 39px;
    background-color: rgb(51, 145, 225);
}

.animated-box-2 .animated-square {
    width: 32px;
    height: 32px;
    background-color: rgb(228, 178, 20);
}

.service-area .service-left-img .animated-box-1 {
    top: 20px;
    left: 26px;
    z-index: 1;
}

.service-area .service-left-img .animated-box-2 {
    top: 160px;
    right: 20px;
    z-index: 10;
}

.animated-box.animated-box-3 .animated-square,
.animated-box.animated-box-3 {
    transition: 1s;
}

.service-area-2 .service-left-img .animated-box-3 {
    right: 20px;
    bottom: 250px;
}

.service-area-2 .service-left-img .animated-box-3 .animated-square {
    width: 22px;
    height: 22px;
    z-index: 11;
    background-color: rgb(228, 178, 20);
}

.service-area-2 .service-left-img .animated-box-4 {
    right: 0;
    bottom: 150px;
}

.service-area-2 .service-left-img .animated-box-4 .animated-square {
    width: 16px;
    height: 16px;
    z-index: 11;
    background-color: rgb(51, 145, 225);
}

.service-area-2 .service-left-img .animated-box-2 .animated-square {
    width: 38px;
    height: 38px;
    z-index: 1;
}

.service-area-2 .service-left-img .animated-box-2 {
    bottom: 100px;
    left: 30px;
    z-index: 10;

}

.service-left-img .animated-box {
    position: absolute;
    transform: translate(0);
}

.service-area-2 .service-left-img .animated-box-1 {
    bottom: 100px;
    right: 18px;
    z-index: 11;
}

.service-2 .service-text p {
    margin-top: 22px;
    margin-bottom: 85px;
}

.service-text h2 {
    color: #242424;
    font-size: 54px;
    font-style: normal;
    letter-spacing: normal;
    line-height: 1.1;
    font-family: 'GilroyExtraBold';
}

.service-text p {
    color: #161616;
    font-size: 20px;
    font-weight: 400;
    font-style: normal;
    letter-spacing: normal;
    line-height: 1.4;
    margin-top: 45px;
    margin-bottom: 40px;
}

.service-left {
    width: 50%;
}

.service-right {
    width: 50%;
}

/*===========================================================
 Product Area
===========================================================*/
.product-area {
    padding-top: 60px;
}

.product-inner {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
}

#product-left-image-holder {
    top: 44%;
    position: absolute;
    z-index: 1000;
    transform: translateY(-44%);
}

.circles_img {
    width: auto;
    height: auto;
}
#product-left-image-holder img {
    width: 900px;
}
.product-left {
    width: 50%;
    position: relative;
}

.product-right {
    width: 50%;

}

.product-text {}

.product-text h2 {
    color: #242424;
    font-size: 54px;
    font-weight: 400;
    font-style: normal;
    letter-spacing: normal;
    line-height: 1.1;
    color: #2a2a2a;
    font-family: 'GilroyExtraBold';

}

.product-text h2 span {
    color: #3391e1;
}

.product-text h2.red-clr {
    color: #df3650;
}

.product-text p {
    color: #161616;
    font-size: 20px;
    font-weight: 400;
    font-style: normal;
    letter-spacing: normal;
    line-height: 1.4;
    max-width: 488px;
    margin-bottom: 90px;
    margin-top: 22px;
}

.product-text .started-btn a {
    background-color: #448ccb;
}

.product-text .started-btn a:hover {
    background: #df3650;
}

.product-btn {
    width: 292px;
}

.product-text h6 {
    text-align: center;
    color: #191919;
    font-family: inherit;
    font-size: 18px;
    font-weight: 400;
    font-style: normal;
    letter-spacing: normal;
    line-height: normal;
    margin-top: 5px;
}

/*===========================================================
 Swapping Area
===========================================================*/

.swapping-area {
    margin-top: 70px;
    padding-left: 70px;
    padding-right: 70px;
    position: relative;
}

.divider-box-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

.swapping-area-inner {
    padding-top: 100px;
    padding-bottom: 140px;
    background: #f2f4f6;
}

.swapping {
    text-align: center;
    margin-bottom: 100px;
}

.swapping-block .single-content {
    width: calc(33.33% - 15px);
}

.swapping-block {
    justify-content: space-between;
    display: flex;
    flex-wrap: wrap;
}

.swapping h2 {
    color: #000000;
    font-size: 48px;
    font-weight: 400;
    font-style: normal;
    letter-spacing: normal;
    line-height: 1.1;
    text-align: center;
    font-family: 'GilroyExtraBold';
    margin-bottom: 30px;

}

.swapping p {
    color: #3b3b3b;
    font-size: 18px;
    font-weight: 400;
    font-style: normal;
    letter-spacing: normal;
    line-height: 1.4;
}


.single-content {
    box-shadow: 0 0 32px rgba(0, 0, 0, 0.39);
}

.content-inner {
    padding: 30px 30px 50px 30px;

}

.content-title {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 30px;
    min-height: 58px;
}


.content-inner p {
    color: #3e3e3e;
    font-size: 18px;
    font-weight: 400;
    font-style: normal;
    letter-spacing: normal;
    line-height: normal;
}

.content-icon {
    width: 50px;
}

.content-title h2 {
    width: calc(100% - 50px);

}

.content-title h2 {
    font-family: 'GilroyExtraBold';
    color: #000000;
    text-align: center;
    font-size: 24px;
    font-weight: 400;
    font-style: normal;
    letter-spacing: normal;
    line-height: normal;
}


/*===========================================================
 Revolution Area
===========================================================*/

.revolution-area {
    margin-top: 60px;
    margin-bottom: 90px;
}

.revolution {
    max-width: 922px;
    margin-left: auto;
    margin-right: auto;
    background-color: #030639;
    text-align: center;
    padding-top: 90px;
    padding-bottom: 80px;
}

.revolution-inner {}

.revolution-inner h2 {
    color: #ffffff;
    font-size: 36px;
    font-weight: 400;
    font-style: normal;
    letter-spacing: normal;
    line-height: 32px;
    text-align: center;
    font-family: 'GilroyExtraBold';

}

.revolution-inner p {
    color: #ffffff;
    font-size: 18px;
    font-weight: 400;
    font-style: normal;
    letter-spacing: normal;
    line-height: 1;
    text-align: center;
    margin-top: 25px;
    margin-bottom: 55px;
}

.revolution-area {}



@media (max-width: 1199px) {
    .service-text h2 {
        font-size: 45px;
    }

    .service-text p {
        margin-top: 30px;
        font-size: 22px;
    }

    .service-area {
        padding-top: 100px;
        padding-bottom: 100px;
    }

    .content-title h2 {
        font-size: 20px;
    }

    .content-inner p {
        /*font-size: 16px;*/
    }

    .content-inner {
        padding: 30px 18px 60px 18px;
    }
}

@media (max-width: 991px) {
    .company-logo {
        flex-wrap: nowrap;
    }
    .company-logo a{
        padding-left: 10px;
        padding-right: 10px;
    }
    .service-left {
        width: 100%;
        text-align: center;
    }

    .service-left-img {
        display: inline-block;
    }

    .service-right {
        width: 100%;
    }

    .single-content {
        margin-top: 30px;
    }

    .swapping {
        margin-bottom: 50px;
    }

    .swapping h2 {
        font-size: 45px;
    }

    .swapping-block .single-content {
        width: 100%;
    }
}

@media (min-width: 767px) {
    .mobile-show {
        display: none;
    }

    .mobile-product {
        display: none;
    }
}



.slick-initialized .slick-slide {
    text-align: center;
}

@media (max-width: 767px) {
    .company-logo-area {
        overflow: hidden;
    }

    .service-area-inner {
        padding-top: 100px;
    }

    .service-area {
        padding-bottom: 70px;
    }

    .divider-box {
        height: 100px;
    }

    .divider-box {
        height: 90px;
        background: #fff;
        border-radius: 100%;
        top: -50px;
    }

    .divider-box-top svg {
        display: none;
    }

    .animated-box-1 .animated-square {
        width: 27px;
        height: 27px;
    }

    .animated-box-2 .animated-square {
        width: 23px;
        height: 23px;
    }

    .service-area-2 .service-left-img .animated-box-3 .animated-square {
        width: 18px;
        height: 18px;
    }

    .service-area-2 .service-left-img .animated-box-4 .animated-square {
        width: 12px;
        height: 12px;
    }

    .service-area-2 .service-left-img .animated-box-2 .animated-square {
        width: 24px;
        height: 24px;
    }

    .swapping-area,
    .service-area,
    .service-area-2 {
        padding-left: 0;
        padding-right: 0;
    }

    .swapping-area-inner {
        padding-bottom: 0;
        padding-top: 0;
    }

    .divider-box.divider-box-bottom {
        display: none;
    }

    .product-area {
        display: none;
    }

    .mobile-product {
        display: block;
        padding-top: 25px;
        position: relative;
        overflow: hidden;
    }

    .mobile-product-img {
        text-align: center;
        left: -30px;
        right: -50px;
        top: -10px;
        position: absolute;
    }
    .mobile-product-img img {
        max-height: 450px;
    }

    #mobile-product-text-wrap {
        margin-top: 330px;
    }

    .mobile-product-text {
        margin-top: 40px;

    }

    .mobile-product-text h2 {
        color: #2a2a2a;
        font-size: 45px;
        font-weight: 400;
        font-style: normal;
        letter-spacing: normal;
        line-height: 1.2;
        font-family: 'GilroyExtraBold';
        text-align: center;
    }

    .red-clr {
        color: #df3650 !important;
    }

    .product-btn {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .product-btn a {
        background-color: #448ccb;
        margin-top: 20px;
    }

    .service-text {}

    .service-text .started-btn {
        text-align: center;
    }

    .service-text h2 {
        text-align: center;
    }

    .mobile-show {
        display: block;
        text-align: center;
        margin-top: 60px;
    }

    .single-content {
        margin-top: 40px;
    }

    .swapping {
        margin-bottom: 10px;
    }

    .swapping h2 {
        margin: 0;
    }

    .swapping .started-btn {
        display: none;
    }

    .swapping p {
        display: none;
    }

    .content-title {
        justify-content: unset;
    }

    .content-title h2 {
        color: #438cca;
        font-size: 24px;
        padding-left: 20px;
        max-width: 250px;
        text-align: center;
    }

    .service-2 .service-text p {
        margin-top: 22px;
        margin-bottom: 70px;
        font-size: 22px;
        font-weight: 400;
        font-style: normal;
        letter-spacing: normal;
        line-height: 32px;
    }

    .service-text h2 {
        display: none;
    }

    .service-text h1 {
        display: block;
        color: #242424;
        font-size: 45px;
        font-style: normal;
        letter-spacing: normal;
        line-height: 1.1;
        font-family: 'GilroyExtraBold';
        text-align: center;
    }

    .slick-slide img {
        display: inline-block;
    }

    .company-logo a {
        padding: 0;
    }

    .company-logo-area {
        padding-top: 35px;
        padding-bottom: 40px;
    }

    .swapping-area {
        background-color: #f2f4f6;
        padding-top: 80px;
        margin-top: 115px;
        padding-bottom: 94px;
    }

    .revolution-area {
        margin: 0;
    }

    .copy-right-text p {
        font-size: 12px;
    }
}

@media (min-width: 576px) {
    .company-logo a {}

    .company-logo {
        align-items: center;
        display: flex;
        justify-content: space-between;
    }
}

@media (max-width: 575px) {
    .revolution {
        /*margin-left: -15px;
        margin-right: -15px;*/
        margin-right: calc(-1 * (var(--bs-gutter-x) * .5));
        margin-left: calc(-1 * (var(--bs-gutter-x) * .5));
    }

    .swapping h2 {
        font-size: 42px;
    }
}

@media (max-width: 375px) {


    .content-title h2 {
        font-size: 23px;
    }

    .service-text h1 {
        font-size: 42px;
    }

    .hero-text h2 {
        font-size: 46px;
        line-height: 1.1;
    }
}