﻿@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;700;900&display=swap");
@import url("https://cdn.jsdelivr.net/npm/remixicon@2.3.0/fonts/remixicon.css");
@import url("https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css");

*, *, *:after, *:before {
    margin: 0;
    padding: 0;
    position: relative;
    box-sizing: border-box;
}

html, body {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    scroll-behavior: smooth;
    color: #333333;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
}

div, header, nav, footer, section, aside, article {
    display: block;
}

p, span, li {
    color: #000;
}

a {
    color: #202243;
    text-decoration: none;
}

    a:hover {
        text-decoration: none;
        color: #4285F4;
    }

ul {
    margin: 0;
    padding: 0;
}

    ul li {
        list-style-type: none;
    }


/* components */
.btn {
    background-color: #4285F4;
    color: #fff;
    border-radius: 0 !important;
    min-width: 150px;
   
    outline: none !important;
    transition: all 0.2s cubic-bezier(0, -1.16, 1, -0.26);
}

    .btn:hover {
        outline: none !important;
        

        color: #000;
background-color: #fff;
    }

.title {
    font-size: 60px;
    color: transparent;
    font-weight: 900;
color: #4285F4;
}

@media (max-width: 576px) {
    .title {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .title {
        font-size: 46px;
    }
}

@media (max-width: 992px) {
    .title {
        font-size: 52px;
    }
}

.section-padding {
    padding: 120px 15px;
}

.arrow {
    transition: all 0.2s ease-in;
}

    .arrow.next:hover {
        transform: translateX(-10px);
    }

    .arrow.prev:hover {
        transform: translateX(10px);
    }

/* main css */
header {
    position: absolute;
}

@media (max-width: 992px) {
    header {
        position: fixed;
        top: 0;
        left: 0;
        padding: 10px;
        background-color: #fff;
        width: 100%;
    }

        header .logo {
            padding-left: 20px !important;
        }
}

@media (max-width: 768px) {
    header {
        position: fixed;
        top: 0;
        left: 0;
        padding: 10px;
        background-color: #fff;
        width: 100%;
    }

        header .logo {
            padding-left: 20px !important;
        }
}

@media (max-width: 576px) {
    header {
        position: fixed;
        top: 0;
        left: 0;
        padding: 10px;
        background-color: #fff;
        width: 100%;
    }

        header .logo {
            padding-left: 20px !important;
        }
}

@media (min-width: 1200px) {
    header .logo {
        padding-left: 120px !important;
    }
}

header .logo {
    padding-left: 90px;
}

    header .logo img {
        width: 180px;
    }

.bar {
    position: absolute;
    top: 43px;
    transform: translateY(-50%);
    right: 20px;
    height: 30px;
    width: 30px;
    cursor: pointer;
    z-index: 1;
    transition: all 0.2s ease-in;
}

@media (max-width: 992px) {
    .bar {
        top: 40px;
        left: auto !important;
        right: 30px;
    }

        .bar span {
            background-color: #000 !important;
        }
}

.bar span {
    height: 2px;
    background-color: #333333;
    display: block;
    transition: all 0.5s ease-in-out;
}

    .bar span:nth-child(1) {
        width: 20px;
        margin-top: 3px;
        transition-delay: 0s;
    }

    .bar span:nth-child(2) {
        width: 30px;
        margin-top: 3px;
        transition-delay: 0.5s;
    }

    .bar span:nth-child(3) {
        width: 20px;
        margin-left: auto;
        margin-top: 3px;
        transition-delay: 0s;
    }

.bar.fillid {
    transition: all 0.2s ease-in;
}
@media (max-width: 576px){
    .bar{
        z-index: 10000000 !important;
    }
    .mega-menu{
        top: 0 !important;
    }
}
@media (max-width: 992px) {
    .bar.fillid::before {
        display: none;
    }
}

.bar.fillid::before {
    position: absolute;
    top: -12px;
    left: -5px;
    background-color: #FFF;
    width: 40px;
    height: 40px;
    content: '';
    transition: all 0.2s ease-in;
}

.bar.fillid span {
    background-color: #000;
}

.bar.cross {
    transition: all 0.2s ease-in;
}

    .bar.cross span {
        height: 2px;
        background-color: #000;
        display: block;
    }

        .bar.cross span:nth-child(1) {
            width: 20px;
            margin-top: 3px;
            transform: rotate(45deg);
        }

        .bar.cross span:nth-child(2) {
            width: 30px;
            margin-top: 3px;
            transform: rotate(-45deg);
        }

        .bar.cross span:nth-child(3) {
            width: 20px;
            margin-left: auto;
            margin-top: 3px;
            transform: rotate(45deg);
        }

.mega-menu.open {
    position: fixed;
    top: 0;
    right: 0;
    width: 56%;
    background-color: #FFFFFF;
    z-index: 997;
    height: 100%;
    bottom: 0;
    padding: 50px;
    transform: translateX(0);
    transition: all 0.4s ease-in-out;
}

@media (max-width: 992px) {
    .mega-menu.open {
        top: 70px;
        width: 100% !important;
    }
}

.mega-menu.open a, .mega-menu.open p, .mega-menu.open address {
    color: #000;
    transition: all 0.4s ease-in-out;
}
.mega-menu.open li.active a {
    font-weight:600;
}
.mega-menu.open ul:hover li {
    opacity: 0.3;
}

.mega-menu.open li {
    margin: 20px 0;
    animation: menuList 2s ease-in forwards;
    animation-delay: calc( 0.5s * var(--i));
    opacity: 0;
}

    .mega-menu.open li:hover {
        opacity: 1 !important;
color: #4285F4;
    }

    .mega-menu.open li a {
        font-size: 40px;
        text-transform: uppercase;
color: #000;
    }

        .mega-menu.open li a:hover {
            color: #4285F4;
        }

.mega-menu.open .side-contact p {
    margin-bottom: 15px;
    padding: 0 15px;
}

    .mega-menu.open .side-contact p i {
        vertical-align: middle;
    }

.mega-menu.open .side-contact .logo{
    display: none;
}

.mega-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: calc( 100% - 60px);
    background-color: #202243;
    z-index: 997;
    height: 100%;
    bottom: 0;
    padding: 50px;
    transform: translateX(2000px);
    transition: all 0.4s ease-in-out;
    display: flex;
}
.contact {
    padding: 0 !important;
  }
   
  .contact iframe {
    min-height: 410px;
    max-height: 410px;
    height: 100% !important;
    width: 100% !important;
  }
   
  .contact .slide-item {
    padding: 0 !important;
  }
   
  .contact .left {
    padding: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 410px !important;
    max-height: 410px !important;
    padding: 0 !important;
  }
   
  .contact .left h1 {
    font-size: 60px !important;
  }

@media (max-width: 576px) {
    .mega-menu {
        padding-right: 0 !important;
    }

        .mega-menu .border-right {
            border: 0 !important;
        }

        .mega-menu .side-contact {
            padding-left: 0 !important;
        }
        .testimonial-wrapper .carousel-item{
            min-height: 450px;
        }
        .about-widget .img-box .img-widget img{
            width: 100% !important;
        }
    
}

.mega-menu .row {
    width: 100%;
}

.mega-menu .opened-sub::after {
    transform: rotate(180deg);
}

.mega-menu .has-menu::after {
    position: absolute;
    left: -30px;
    width: 24px;
    height: 32px;
    top: 0;
    content: "\EA4E";
    font-family: remixicon !important;
    font-style: normal;
    font-size: 24px;
    transition: all 0.4s ease-in;
    transform-origin: center;
    color: #000;
    transform-origin: center;
}

.mega-menu .has-menu ul {
    position: absolute;
    z-index: 10;
    transform: scaleY(0);
    transform-origin: top;
}

.mega-menu .has-menu .open-sub {
    transform: scaleY(1);
    background-color: #FFF;
    padding: 10px 30px;
    z-index: 10;
    position: relative !important;
    margin-top: 20px;
}

    .mega-menu .has-menu .open-sub li a {
        color: #000;
        text-transform: capitalize !important;
        font-size: 18px;
    }

.mega-menu a, .mega-menu p, .mega-menu address {
    color: #fff;
    transition: all 0.4s ease-in-out;
}

.mega-menu ul:hover li {
    opacity: 0.3;
}

.mega-menu li {
    margin: 20px 0;
    animation: menuList 2s ease-in forwards;
    animation-delay: calc( 0.2s * var(--i));
}

    .mega-menu li:hover {
        opacity: 1 !important;
color: #4285F4;
    }

    .mega-menu li a {
        font-size: 24px;
        text-transform: uppercase;
    }

.mega-menu .side-contact {
    padding-left: 20px;
}

    .mega-menu .side-contact p {
        margin-bottom: 15px;
        padding: 0 15px;
        font-size: 14px;
    }

    .mega-menu .side-contact .logo {
        margin-bottom: 50px;
    }

        .mega-menu .side-contact .logo img {
            max-width: 230px;
            width: 100%;
        }

.social {
    position: fixed;
    bottom: 10px;
    left: 20px;
    z-index: 1095;
}

@media (max-width: 576px) {
    .social {
        display: none;
    }
    .wrapper #slides video{
        min-height: unset !important;
    }
}

.social i {
    font-size: 24px;
    display: inline-block;
}

    .social i:hover {
        color: #4285F4;
        transform: scale(1.2);
    }

.wrapper {
    width: 90%;
    margin: 0 auto !important;
}

    .wrapper.home-wrapper {
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        padding-top: 70px !important;
    }

@media (max-width: 1024px) {
    .wrapper {
        margin: 0;
        width: 100%;
        height: auto !important;
        margin: 20px auto;
    }

        .wrapper .slide-item h1 {
            font-size: 42px !important;
        }
}

@media (max-width: 992px) {
    .wrapper {
        margin: 0;
        width: 100%;
        height: auto !important;
        margin-top: 110px;
    }

        .wrapper .slide-item {
            flex: 0 0 50%;
            max-width: 50%;
        }

            .wrapper .slide-item h1 {
                font-size: 42px !important;
            }
}

@media (max-width: 768px) {
    .wrapper {
        margin: 0;
        width: 100%;
        height: auto !important;
        margin-top: 110px;
    }

        .wrapper .slide-item {
            flex: 0 0 50%;
            max-width: 50%;
        }

            .wrapper .slide-item h1 {
                font-size: 42px !important;
            }
}

@media (max-width: 576px) {
    .wrapper {
        margin: 0;
        width: 100%;
        height: auto !important;
        margin-top: 110px;
    }

        .wrapper .slide-item {
            flex: 0 0 50%;
            max-width: 50%;
        }

            .wrapper .slide-item h1 {
                font-size: 42px !important;
            }
}

.wrapper .slide-item {
    padding: 120px 15px;
}

    .wrapper .slide-item h1 {
        font-size: 150px;
        font-weight: 900;
    }

.wrapper .left {
    background-color: #fff;
    text-align: right;
    color: #fff;
}

.wrapper .right {
    background-color: #fff;
    color: #4285F4;
}

.case-study .slide-item {
    padding: 100px 15px;
}

.case-snap {
    margin-top: 30px;
    margin-bottom: 30px;
    position: relative;
}

@media (min-width: 1440px) {
    .case-snap .carousel-control-next {
        right: -166px !important;
    }

    .case-snap .carousel-control-prev {
        left: -130px !important;
    }
}

@media (max-width: 576px) {
    .case-snap .arrow {
        display: none;
    }

    .case-snap::before {
        height: 50% !important;
    }
}

.case-snap::before {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 230px;
    
    content: '';
    transform: translateY(-50%);
}

.case-snap .carousel-inner {
    box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.1);
}

.case-snap .arrow {
    opacity: 1 !important;
    vertical-align: middle;
}

    .case-snap .arrow p {
        font-size: 24px;
        -webkit-text-stroke-color: #fff;
        margin-bottom: 0;
    }

.case-snap .carousel-control-next {
    right: -90px;
}

.case-snap .carousel-control-prev {
    left: -90px;
}

.technical {
    padding-top: 70px;
    padding-bottom: 70px;
}

@media (max-width: 576px) {
    .technical ul {
        padding: 10px !important;
    }
}

.technical .details-box {
    box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    padding: 30px;
    margin-top: 30px;
    margin-bottom: 30px;
}

    .technical .details-box ul {
        padding-left: 50px;
        margin-top: 40px;
        margin-bottom: 40px;
    }

        .technical .details-box ul li {
            margin: 30px 0;
        }

.technical .snap-box {
    max-height: 370px;
    height: 100%;
    overflow: hidden;
    margin-top: 30px;
    margin-bottom: 30px;
}

    .technical .snap-box img {
        max-height: 370px;
        width: 100% !important;
        object-fit: contain;
    }

.technical .logo-box {
    padding: 20px 15px;
}

    .technical .logo-box img {
        max-width: 250px;
    }

@media (max-width: 576px) {
    .contact .left {
        max-width: 100%;
        text-align: center;
        flex: 0 0 100%;
    }

    .contact .right {
        max-width: 100%;
        text-align: center;
        flex: 0 0 100%;
    }

    .contact iframe {
        height: 300px !important;
    }
}

@media (max-width: 768px) {
    .contact .wrapper-row {
        margin-bottom: 0 !important;
    }

    .contact iframe {
        height: 300px !important;
    }
}

@media (max-width: 1024px) {
    .contact .wrapper-row {
        margin-bottom: 0 !important;
    }

    .contact iframe {
        height: 500px !important;
    }
}

.contact .left {
    background-color: #fff;
    text-align: center;
    color: #4285F4;
}

.contact .wrapper-row {
    margin-bottom: 50px;
}

.contact h1 {
    font-size: 120px !important;
}

.contact iframe {
    width: 100%;
    height: calc( 100vh - 40px);
    margin-top: -30px;
}

.contact .right {
    padding: 0;
}

.services-wrapper {
    padding: 30px 15px;
    margin: 50px auto;
    position: relative;
}

@media (max-width: 576px) {
    .services-wrapper .mt-big, .services-wrapper .mt-small {
        margin: 20px auto !important;
    }
}

.services-wrapper::before {
    background-color: #f1f3f6;
    left: 0;
    top: 0;
    width: 60%;
    height: 80%;
    position: absolute;
    content: '';
}

.services-wrapper::after {
    background: url("/content/images/service-bg.png");
    right: 0;
    top: 30px;
    width: 35%;
    height: 50%;
    position: absolute;
    content: '';
    z-index: -1;
    background-attachment: fixed;
    background-size: cover;
}

.services-wrapper .mt-big {
    margin-top: 150px;
}

.services-wrapper .mt-small {
    margin-top: 80px;
}

.services-wrapper .content {
    text-align: center;
}

    .services-wrapper .content p, .services-wrapper .content h1, .services-wrapper .content h2, .services-wrapper .content h3, .services-wrapper .content h4, .services-wrapper .content h5 {
        text-align: left;
    }

.services-wrapper .box {
    box-shadow: 0px 0px 12px rgba(66, 133, 244, 0.1);
    border-radius: 4px;
    padding: 30px 15px;
    text-align: center;
    transition: all 0.2s linear;
    position: relative;
    overflow: hidden;
    margin-bottom: 15px;
    background-color: #fff;
}

    .services-wrapper .box table i {
        font-size: 18px;
    }

    .services-wrapper .box table td {
        vertical-align: top;
        padding: 5px;
    }

    .services-wrapper .box i {
        color: #000;
        font-size: 70px;
    }

    .services-wrapper .box h1, .services-wrapper .box h2, .services-wrapper .box h3, .services-wrapper .box h4, .services-wrapper .box h5, .services-wrapper .box h6 {
        font-size: 24px;
        font-weight: 400;
    }

    .services-wrapper .box:hover {
        cursor: pointer;
        background-color: #4285F4;
    }

        .services-wrapper .box:hover h1, .services-wrapper .box:hover h2, .services-wrapper .box:hover h3, .services-wrapper .box:hover h4, .services-wrapper .box:hover h5, .services-wrapper .box:hover h6, .services-wrapper .box:hover p, .services-wrapper .box:hover i, .services-wrapper .box:hover span, .services-wrapper .box:hover td, .services-wrapper .box:hover a {
            color: #fff !important;
        }

        .services-wrapper .box:hover::after {
            left: 50%;
            opacity: 1;
        }

    .services-wrapper .box::after {
        position: absolute;
        bottom: 5px;
        content: "\EA6A";
        font-family: remixicon !important;
        vertical-align: bottom;
        left: 0;
        transform: translate(-50%, 0);
        color: #fff;
        opacity: 0;
        transition: all 0.2s linear;
    }

.services-wrapper .contact-info td {
    border: none;
}

.services-wrapper .contact-info i {
    font-size: 24px !important;
    color: #000;
}

.contacts-wrapper {
    padding: 30px 15px;
    margin: 50px auto;
    position: relative;
}

    .contacts-wrapper::before {
        background-color: #f1f3f6;
        left: 0;
        top: 0;
        width: 60%;
        height: 80%;
        position: absolute;
        content: '';
    }

    .contacts-wrapper::after {
        background: url("/content/images/service-bg.png");
        right: 0;
        bottom: 0;
        width: 50%;
        height: 50%;
        position: absolute;
        content: '';
        z-index: -1;
        background-attachment: fixed;
        background-size: cover;
    }

    .contacts-wrapper .mt-big {
        margin-top: 150px;
    }

    .contacts-wrapper .mt-small {
        margin-top: 80px;
    }

    .contacts-wrapper .content {
        text-align: center;
    }

        .contacts-wrapper .content p, .contacts-wrapper .content h1, .contacts-wrapper .content h2, .contacts-wrapper .content h3, .contacts-wrapper .content h4, .contacts-wrapper .content h5 {
            text-align: left;
        }

    .contacts-wrapper .box {
        box-shadow: 0px 0px 12px rgba(66, 133, 244, 0.1);
        border-radius: 4px;
        padding: 30px 15px;
        text-align: center;
        transition: all 0.2s linear;
        position: relative;
        overflow: hidden;
        margin-bottom: 15px;
        background-color: #fff;
    }

        .contacts-wrapper .box table i {
            font-size: 18px;
        }

        .contacts-wrapper .box table td {
            vertical-align: top;
            padding: 5px;
        }

        .contacts-wrapper .box i {
            color: #000;
            font-size: 70px;
        }

        .contacts-wrapper .box h1, .contacts-wrapper .box h2, .contacts-wrapper .box h3, .contacts-wrapper .box h4, .contacts-wrapper .box h5, .contacts-wrapper .box h6 {
            font-size: 24px;
            font-weight: 400;
        }

        .contacts-wrapper .box:hover {
            cursor: pointer;
            background-color: #4285F4;
        }

            .contacts-wrapper .box:hover h1, .contacts-wrapper .box:hover h2, .contacts-wrapper .box:hover h3, .contacts-wrapper .box:hover h4, .contacts-wrapper .box:hover h5, .contacts-wrapper .box:hover h6, .contacts-wrapper .box:hover p, .contacts-wrapper .box:hover i, .contacts-wrapper .box:hover span, .contacts-wrapper .box:hover td, .contacts-wrapper .box:hover a {
                color: #fff !important;
            }

            .contacts-wrapper .box:hover::after {
                left: 50%;
                opacity: 1;
            }

        .contacts-wrapper .box::after {
            position: absolute;
            bottom: 5px;
            content: "\EA6A";
            font-family: remixicon !important;
            vertical-align: bottom;
            left: 0;
            transform: translate(-50%, 0);
            color: #fff;
            opacity: 0;
            transition: all 0.2s linear;
        }

    .contacts-wrapper .contact-info td {
        border: none;
    }

    .contacts-wrapper .contact-info i {
        font-size: 24px !important;
        color: #000;
    }

.project-wrapper {
    padding: 50px 15px;
}

@media (max-width: 576px) {
    .project-wrapper #projectSlide {
        margin-top: 150px;
    }

    .project-wrapper .pro-box {
        flex-direction: column !important;
    }

    .project-wrapper .content-box {
        max-width: 100% !important;
        padding: 20px !important;
        margin: 0 0 30px 0 !important;
    }

    .project-wrapper .img-box {
        max-width: 100% !important;
        margin: 0 !important;
        width: 100% !important;
    }

    .project-wrapper .carousel-inner {
        padding: 0 !important;
    }
}

@media (max-width: 768px) {
    .project-wrapper .arrow-box {
        top: -130px !important;
    }

    .project-wrapper .pro-box {
        flex-direction: column !important;
    }

    .project-wrapper .content-box {
        max-width: 100% !important;
        padding: 20px !important;
        margin: 0 0 30px 0 !important;
    }

    .project-wrapper .img-box {
        max-width: 100% !important;
        margin: 0 !important;
        width: 100% !important;
    }

    .project-wrapper .carousel-inner {
        padding: 0 !important;
    }
}

@media (max-width: 992px) {
    .project-wrapper .arrow-box {
        top: -130px !important;
    }

    .project-wrapper .pro-box {
        flex-direction: column !important;
    }

    .project-wrapper .content-box {
        max-width: 100% !important;
        padding: 20px !important;
        margin: 0 0 30px 0 !important;
    }

    .project-wrapper .img-box {
        max-width: 100% !important;
        margin: 0 !important;
        width: 100% !important;
    }

    .project-wrapper .carousel-inner {
        padding: 0 !important;
    }
}

.project-wrapper::before {
    position: absolute;
    left: 0;
    top: 0;
    height: 50%;
    width: 65%;
    content: '';
    background-color: #f1f3f6;
}

.project-wrapper .title {
    margin-bottom: 30px;
}

.project-wrapper .carousel-inner {
    padding: 30px;
}

.project-wrapper .pro-box {
    display: flex;
}

.project-wrapper .img-box {
    max-width: 270px;
    width: calc( 100% - 15px);
    margin-right: 15px;
    z-index: 2;
}

    .project-wrapper .img-box::before {
        position: absolute;
        top: 0;
        left: 0;
        content: '';
        width: 50%;
        height: 100%;
        transform: skew(0deg);
        background-color: #fff;
        opacity: 0;
        z-index: 2;
        transition: all 0.2s cubic-bezier(0, -1.16, 1, -0.26);
    }

    .project-wrapper .img-box:hover {
        overflow: hidden;
    }

        .project-wrapper .img-box:hover::before {
            position: absolute;
            top: 0;
            left: 0;
            content: '';
            width: 50%;
            height: 100%;
            transform: skew(20deg);
            background-color: #fff;
            opacity: 0.3;
            z-index: 2;
            transition: all 0.2s cubic-bezier(0, -1.16, 1, -0.26);
        }

.project-wrapper .content-box {
    margin-top: 50px;
    padding: 30px 15px 50px 200px;
    max-width: 470px;
    width: 100%;
    margin-left: -200px;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    background-color: #fff;
}

    .project-wrapper .content-box h3 {
        font-size: 30px;
        color: #000;
    }

.project-wrapper .arrow-box {
    position: absolute;
    right: 0;
    top: -100px;
    display: flex;
    flex-direction: column;
}

    .project-wrapper .arrow-box p {
        font-size: 32px;
        display: inline-block;
        vertical-align: middle;
    }

    .project-wrapper .arrow-box .arrow.next {
        margin-left: -100px;
    }

    .project-wrapper .arrow-box svg {
        vertical-align: super;
    }

.testimonial-wrapper {
    position: relative;
    padding: 30px 15px;
}

@media (max-width: 576px) {
    .testimonial-wrapper .arrows-indicators {
        margin-top: 70px;
    }
}

.testimonial-wrapper:before {
    position: absolute;
    width: calc( 50% - 100px);
    height: 100%;
    background-color: #f1f3f6;
    content: '';
    top: 0;
    left: 0;
}

.testimonial-wrapper .text-content {
    overflow: hidden;
 min-height: 300px;
}

.testimonial-wrapper .carousel-indicators {
    position: absolute;
    top: -120px;
    z-index: -1;
}

    .testimonial-wrapper .carousel-indicators li.active {
        width: auto !important;
        height: auto !important;
        color: rgba(0, 0, 0, 0.05);
        font-size: 120px;
        display: block;
        text-indent: 1px !important;
        background-color: transparent;
        transition: all 0.2s ease-in;
        font-weight: bold;
    }

    .testimonial-wrapper .carousel-indicators li {
        display: none;
    }

.testimonial-wrapper .carousel-inner {
    padding: 50px 30px 50px 0;
}

.testimonial-wrapper .testimonial-text {
    margin-bottom: 30px;
}

.testimonial-wrapper .client-info p {
    margin-bottom: 0;
    color: #333333;
}

.testimonial-wrapper .client-info span {
    color: #333333;
    padding-left: 20px;
}

    .testimonial-wrapper .client-info span:before {
        position: absolute;
        top: 10px;
        left: 0;
        content: '';
        height: 1px;
        width: 15px;
        background-color: #333333;
    }

.testimonial-wrapper .arrow-box {
    display: flex;
    flex-direction: column;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    padding: 15px 30px;
}

    .testimonial-wrapper .arrow-box .prev {
        text-align: right;
    }

    .testimonial-wrapper .arrow-box p {
        font-size: 32px;
        display: inline-block;
        vertical-align: middle;
    }

    .testimonial-wrapper .arrow-box svg {
        vertical-align: super;
    }

.fact-wrapper {
    position: relative;
    margin: 70px 0;
}

@media (max-width: 768px) {
    .fact-wrapper .img-wrapper {
        height: 100%;
        width: 20% !important;
    }
}

@media (max-width: 576px) {
    .fact-wrapper {
        text-align: center !important;
    }

        .fact-wrapper::before {
            display: none;
        }

        .fact-wrapper .title-box {
            position: relative !important;
            transform: rotate(0deg) !important;
            left: auto !important;
            width: 100% !important;
            text-align: center;
        }

        .fact-wrapper .content {
            background: none !important;
        }
}

.fact-wrapper:before {
    position: absolute;
    right: 0;
    width: 30%;
    z-index: -1;
    height: 100%;
    content: '';
    background-color: #f1f3f6;
}

.fact-wrapper .img-wrapper {
    position: absolute;
    width: calc(50% - 300px);
    background-image: url("/content/images/service-bg.png");
    background-attachment: fixed;
    background-size: cover;
    height: 100%;
}

    .fact-wrapper .img-wrapper img {
        opacity: 0;
    }

.fact-wrapper .title-box {
    position: absolute;
    width: max-content;
    transform: rotate(270deg);
    left: -100px;
}

    .fact-wrapper .title-box .title {
        font-size: 32px;
    }

.fact-wrapper .content {
    background-color: #f1f3f6;
    text-align: center;
    padding: 30px 15px;
}

.fact-wrapper .fact-box:hover {
    box-shadow: 0 0 24px rgba(0, 0, 0, 0.09);
}

.fact-wrapper .fact-box h3, .fact-wrapper .fact-box span {
    font-size: 60px;
    color: #4285F4;
    font-weight: bold;
}

.fact-wrapper .fact-box p {
    font-size: 24px;
    color: #000;
}

.client-wrapper {
    padding: 50px 15px;
}

    .client-wrapper .logos {
        text-align: center;
    }

    .client-wrapper img {
        margin: 30px 0;
        width: 80%;
        transition: all 0.2s ease;
    }

        .client-wrapper img:hover {
            filter: drop-shadow(0 0 12px rgba(0, 0, 0,0.1));
            transform: scale(1.1);
        }

.contact {
    background-color: #FFF;
    padding-top: 30px;
    padding-bottom: 30px;
    z-index: 2;
}

    .contact .text-center:hover i {
        transform: scale(1.2);
    }

    .contact i, .contact p {
        color: #000;
    }

    .contact i {
        font-size: 50px;
        display: inline-block;
        transition: all 0.2s ease;
    }

    .contact p {
        margin-bottom: 0;
    }

    .contact a {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
    }

footer {
    width: 95%;
    margin-left: auto;
    margin-right: auto;
    background-color: #f1f3f6;
    padding: 30px;
    margin-top: 70px;
}

    footer .footer-contact {
        margin-top: -100px;
        margin-bottom: 50px;
    }

    @media (max-width: 1080px) and (min-width: 557px) {
        .footer-box p, .footer-box a {
          font-size: 14px;
        }
      }
       
      @media (max-width: 576px) {
        .footer-box .time {
          margin-top: 0 !important;
          flex-direction: column;
          margin-bottom: 20px;
          text-align: center;
        }
        .footer-box .time .icons {
          margin-bottom: 10px;
          margin-right: 0 !important;
        }
        .footer-box .links {
          flex-direction: column;
        }
        .footer-box .links li {
          margin: 10px 0 !important;
        }
      }
       
      .footer-box .links {
        justify-content: center;
        display: flex;
      }
       
      .footer-box .links li {
        margin: 0 15px;
      }
       
      .footer-box .links li a {
        font-weight: 600;
      }
       
      .footer-box .time {
        display: flex;
        justify-content: center;
        margin-top: 30px;
        align-items: center;
        margin-bottom: 30px;
      }
       
      .footer-box .time p {
        margin-bottom: 0;
      }
       
      .footer-box .time .icons {
        margin-right: 10px;
      }
       
      .footer-box .time .icon {
        display: grid;
        place-content: center;
        width: 40px;
        height: 40px;
        background-color: #4285F4;
        color: #fff;
        border-radius: 50%;
        font-size: 24px;
      }

@media (max-width: 576px) {
    footer {
        width: 100%;
        margin-bottom: 0;
    }

        footer .title {
            font-size: 28px !important;
        }

        footer .col-sm-4 {
            margin: 20px 0;
        }

}

@media (max-width: 768px) {
    footer .title {
        font-size: 28px !important;
    }

    footer .col-sm-4 {
        margin: 20px 0;
    }
}

footer .title {
    font-size: 42px;
}

footer .list {
    margin-top: 15px;
}

    footer .list li {
        padding-left: 20px;
        margin: 15px 0;
    }

        footer .list li:hover::before {
            transform: translateX(-10px);
        }

        footer .list li:before {
            position: absolute;
            top: 10px;
            left: 0;
            content: '';
            width: 15px;
            height: 2px;
            background-color: #202243;
            transition: all 0.2s ease-in;
        }

footer .copyright {
    text-align: center;
}

    footer .copyright p {
        color: #8E8E8E;
        margin-bottom: 0;
    }

[data-scroll] {
    transition: all 1.6s ease-in-out;
}

[data-scroll="in"] {
    opacity: 1;
    transform: translateY(0);
}

[data-scroll="out"] {
    opacity: 0;
    transform: translateY(150px);
}

@keyframes menuList {
    0% {
        opacity: 0;
        transform: translateX(200px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.mega-social {
    display: flex;
    margin-left: 35px;
    justify-content: start !important;
    margin-top: 30px;
}

    .mega-social li {
        margin: 0 5px !important;
        text-align: center;
    }

        .mega-social li a {
            font-size: 24px !important;
            letter-spacing: normal !important;
        }

        .mega-social li i {
            font-size: 20px;
            background-color: #4285F4;
            display: grid;
            place-content: center;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            color: #fff;
            text-align: center;
            margin: 0 auto;
        }

img.img-responsive {
    width: 100%;
}

.link-color {
    color: #000000;
    font-size: 30px;
}

.staff-widgte {
    padding: 50px 0;
}

@media (max-width: 992px) {
    .staff-widgte::before {
        max-width: 100% !important;
        left: 0 !important;
    }

    .staff-widgte .box {
        margin-bottom: 20px;
    }
}

.staff-widgte::before {
    position: absolute;
    top: 0;
    max-width: 90%;
    width: 100%;
    left: 5%;
    height: 350px;
    content: '';
    background-color: #f1f3f6;
}

.staff-widgte .box {
    background-color: #fff;
    box-shadow: 0px 0px 60px rgba(0, 0, 0, 0.1);
    padding: 20px;
}

    .staff-widgte .box h1, .staff-widgte .box h2, .staff-widgte .box h3, .staff-widgte .box h4, .staff-widgte .box h5, .staff-widgte .box h6 {
        font-size: 32px;
        font-weight: 700;
    }

    .staff-widgte .box p {
        margin: 15px 0;
        display: flex;
        align-items: center;
    }

        .staff-widgte .box p span {
            display: block;
            margin-left: 10px;
        }

        .staff-widgte .box p i {
            font-size: 24px;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: grid;
            place-content: center;
            background-color: #4285F4;
color: #fff;
        }

.about-widget {
    padding: 50px 0;
    padding-bottom: 100px;
}

@media (max-width: 1024px) and (min-width: 992px) {
    .about-widget .img-box {
        margin-left: -170px !important;
    }
}

@media (max-width: 576px) {
    .about-widget .tag {
        transform: translateY(0) !important;
        text-align: center;
    }

        .about-widget .tag h1, .about-widget .tag h2, .about-widget .tag h3, .about-widget .tag h4, .about-widget .tag h5 {
            font-size: 32px !important;
        }

    .about-widget .img-box {
        margin-left: 0 !important;
        margin-top: 10px;
    }
}

.about-widget .img-box {
    margin-left: -270px;
}

.about-widget .text-widget {
    z-index: 2;
    background-color: #fff;
    padding-top: 30px;
}

    .about-widget .text-widget .tag {
        transform: translateY(30px);
    }

        .about-widget .text-widget .tag h1, .about-widget .text-widget .tag h2, .about-widget .text-widget .tag h3, .about-widget .text-widget .tag h4, .about-widget .text-widget .tag h5 {
            font-size: 42px;
            color: #4285F4;
            font-weight: 400;
            line-height: 40px;
        }

.vision-widget {
    padding-bottom: 50px;
    margin-bottom: 100px;
}

    .vision-widget::before {
        position: absolute;
        bottom: -50px;
        left: 0;
        width: 100%;
        height: 80%;
        content: '';
        background-image: url("/content/images/vision.jpg");
    }

    .vision-widget .text-widget {
        background-color: #fff;
        box-shadow: 0px 0px 60px rgba(0, 0, 0, 0.1);
        text-align: center;
        padding: 15px 30px;
    }

.process-widget {
    padding: 50px 0;
}

@media (max-width: 1024px) and (min-width: 576px) {
    .process-widget .row {
        justify-content: center;
    }

    .process-widget .box {
        max-width: 50%;
        flex: 0 0 50%;
    }
}

@media (max-width: 576px) {
    .process-widget .box {
        max-width: 100%;
        flex: 0 0 100%;
        margin-bottom: 15px;
    }
}

.process-widget .row {
    margin-top: 50px;
    background-color: #f1f3f6;
    border-top: 3px solid #202243;
}

.process-widget .box {
    text-align: center;
    margin-top: -25px;
    padding-bottom: 10px;
}

    .process-widget .box span {
        display: block;
    }

    .process-widget .box .number {
        width: 50px;
        height: 50px;
        background-color: #202243;
        color: #fff;
        border-radius: 50%;
        display: grid;
        place-content: center;
        font-size: 26px;
        margin: 0 auto;
        margin-bottom: 10px;
    }

    .process-widget .box .lable {
        font-size: 20px;
        font-weight: 600;
        color: #202243;
        margin-bottom: 10px;
    }

.portfolio-btns {
    display: flex;
    margin-bottom: 20px;
}

    .portfolio-btns li {
        margin: 0 15px;
    }

    .portfolio-btns .btn.bordered {
        background: #fff;
        color: #202243;
        border: 1px solid #202243;
    }

@media (max-width: 576px) {
    .portfolio-btns {
        flex-wrap: wrap;
    }
}

/* .slides-container li {
    position: relative !important;
} */

    .slides-container li video {
        width: 100%;
        min-height: 80vh;
        object-fit: cover;
    }

.slide-item.right img {
    width: 100%;
}

#CybotCookiebotDialogBodyLevelButtonLevelOptinAllowallSelectionWrapper {
    display: flex !important;
    width: 100% !important;
    justify-content: space-between !important;
    padding: 15px 0 !important;
}

#CybotCookiebotDialogBodyLevelButtonLevelOptinAllowallSelectionWrapper a {
    display: block !important;
    padding: 10px !important;
    border-radius: 4px !important;
}

#CybotCookiebotDialogBodyLevelButtonLevelOptinAllowallSelectionWrapper a:first-child {
    color: #202243 !important;
    text-decoration: none !important;
    background-color: transparent !important;
 border: 1px solid #e4e4e4 !important;
}

#CybotCookiebotDialogBodyLevelButtonLevelOptinAllowallSelectionWrapper a:nth-child(2) {
    color: #202243 !important;
    text-decoration: none !important;
    background-color: transparent !important;
    border: 1px solid #202243 !important;
    border-radius: 4px !important;
}

#CybotCookiebotDialogBodyLevelButtonLevelOptinAllowallSelectionWrapper a:nth-child(3) {
    color: #fff !important;
    text-decoration: none !important;
    background-color: #202243 !important;
    border: 1px solid #202243 !important;
    border-radius: 4px !important;
    box-shadow: 0px 8px 12px rgba(28, 63, 150, 0.3) !important;
}

#CybotCookiebotDialogBodyLevelButtons {
    display: block !important;
    width: 100% !important;
}

#CybotCookiebotDialogBodyLevelButtons #CybotCookiebotDialogBodyLevelButtonsTable {
    width: 100% !important;
}

#CybotCookiebotDialogBodyLevelButtonsSelectPane {
    border: none !important;
}

#CybotCookiebotDialogBodyLevelButtons #CybotCookiebotDialogBodyLevelDetailsWrapper {
    background-color: #CFCFCF;
    border-radius: 4px !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 10px !important;
    border: none !important;
}

.CybotCookiebotDialogBodyLevelButtonWrapper input[type="checkbox"].CybotCookiebotDialogBodyLevelButton {
    opacity: 1 !important;
    top: 3px !important;
}
#CybotCookiebotDialogDetailFooter{
    position: relative !important;
}
 
#CybotCookiebotDialogDetailFooter::before{
    position: absolute !important;
    right: 0 !important;
    width: 71px;
    height: 30px;
    background-color: #fff;
    content: '';
z-index: 10;
}
#fa-cog {
    cursor: pointer;
    z-index: 999;
    background: #202243;
    width: 36px;
    border-radius: 50%;
    color: #fff;
    height: 35px;
    padding: 10px 0px 0px 11px;
    margin-right: 10px;
}
.cookie-settings {

margin: 0px 50px 5px 54px;
position: fixed;
bottom: 0;
}
#CybotCookiebotDialogBodyContentTitle {
    color: #202243 !important;

}
#CybotCookiebotDialogBodyLevelButtonLevelOptinAllowallSelectionWrapper a{
    text-decoration: none !important;
}
@media (max-width: 576px){
    .wrapper{
        margin-bottom: 50px !important;
    }
}
 
.wrapper .left{
    display: flex;
    justify-content: center;
    align-items: center;
}
@media (max-width: 576px) {
  .subpages .left {
    max-width: 100%;
    text-align: center;
    flex: 0 0 100%;
  }
  .subpages .right {
    max-width: 100%;
    text-align: center;
    flex: 0 0 100%;
  }
}
 
@media (max-width: 768px) {
  .subpages .wrapper-row {
    margin-bottom: 0 !important;
  }
  .subpages iframe {
    height: 300px !important;
  }
}
 
@media (max-width: 1024px) {
  .subpages .wrapper-row {
    margin-bottom: 0 !important;
  }
  .subpages iframe {
    height: 500px !important;
  }
}

.subpages .left {
    background-color: #fff;
    text-align: center;
    color: #4285F4;
    min-height: 380px;
    max-height: 380px;
}
 
.subpages .wrapper-row {
  margin-bottom: 50px;
}
 
.subpages h1 {
  font-size: 60px !important;
}
 
.subpages .right {
  padding: 0;
}

    .subpages .right img {
        min-height: 380px;
        max-height: 380px;
    }
 
.wrapper .right img {
  object-fit: cover;
}
.back-btn.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
 
.back-btn.container .share {
  display: flex;
  background-color: #f1f3f6;
  padding: 10px 20px;
  justify-content: space-between;
  align-items: center;
}
 
.back-btn.container .share p {
  margin-bottom: 0;
}
 
.back-btn.container .share ul {
  display: flex;
}
 
.back-btn.container .share ul li {
  margin: 0 7px;
}
 
.back-btn.container .share ul li i {
  font-size: 22px;
}

.bar{
    z-index: 1000000 !important;
}
.slide-item.right p
{
    margin-bottom:0!important;
}

.loading-container {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 10;
 
}

.pulse {
    border: 3px solid #999;
    height: 30px;
    width: 30px;
    position: absolute;
    left: -15px;
    top: -15px;
    -webkit-animation: pulsate 1s ease-out;
    -webkit-animation-iteration-count: infinite;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    border-radius: 30px;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0;
}

@-webkit-keyframes pulsate {
    0% {
        -webkit-transform: scale(0.1, 0.1);
        opacity: 0.0;
    }

    50% {
        opacity: 1.0;
    }

    100% {
        -webkit-transform: scale(1.2, 1.2);
        opacity: 0.0;
    }
}

.top-section-holder {
    float: left;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 998;
    transition: all 0.2s ease-in-out;
    background: #FFFFFF;
    padding: 10px;
}

    .top-section-holder.hide-nav {
        margin-top: -120px;
    }

.back-to-top.is-visible {
    right: 30px;
    opacity: 1;
}

.back-to-top {
    bottom: 30px;
    right: -100px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #0C2E2D;
    position: fixed;
    z-index: 200;
    transition: all 0.7s ease-in-out;
    overflow: hidden;
    opacity: 0;
}

    .back-to-top:hover:before {
        margin-top: -5px;
    }

    .back-to-top:before {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        background: url(/Apps/Core/Content/Images/back-top-white.png) no-repeat center;
        margin-top: -2px;
        background-size: 20px 10px;
        transition: all 0.2s ease-in-out;
    }

#sidebarCollapse{
    z-index: 999 !important;
}

.slide-caption{
    position: absolute;
    padding: 15px 40px;
    background: rgba(32, 34, 67, 0.7);
    left: 0;
    bottom: 100px;
}
.slide-caption h2{
    font-size: 70px;
    color: #fff;
}
.slide-caption span{
    color: #fff;
    display: block;
    font-size: 20px;
    font-weight: bold;
}

.slide-caption p{
    color: #4285F4;
    display: block;
font-size: 30px;
}

.slide-caption i{
    font-size: 70px;
    color: #fff;
}

@media (max-width: 1400px) and (min-width: 992px){
    .slide-caption{
        bottom: 100px !important;
    }
}

.slides-navigation{
    top: 40% !important;
}

.slides-navigation a{
    background-color: #4285F4;
    color: #fff;
    display: grid;
    place-content: center;
}
.slides-navigation i{
    font-size: 24px;
}

#dismiss{
    z-index: 1;
}

/* .slides-container li{
    opacity: 1 !important;
} */

@media (max-width: 576px){
    .slide-caption{
        padding: 15px !important;
        bottom: 100px !important;
    }
    .slide-caption h2{
        font-size: 40px;
    }
    .fancybox-wrap.fancybox-desktop.fancybox-type-iframe.fancybox-opened{
        width: 100% !important;
        left: 0 !important;
        top: 30% !important;
    }
    .fancybox-wrap.fancybox-desktop.fancybox-type-iframe.fancybox-opened iframe{
        width: 100% !important;
        height: 300px !important;
    }
    .fancybox-wrap.fancybox-desktop.fancybox-type-iframe.fancybox-opened .fancybox-inner{
        width: 100% !important;
        height: auto !important;
    }
}

@media (max-width: 1024px) and (min-width: 576px){
    .slide-caption{
        bottom: 100px !important;
    }
}
.btn-play {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  background-color: #5a7bd8;
  color: white;

  padding: 10px 18px;
  border: none;
  border-radius: 4px;

  font-size: 16px;
  font-weight: 500;
  cursor: pointer;

  transition: 0.3s ease;
}

/* icon size */
.btn-play i {
  font-size: 30px;
}

/* hover effect */
.btn-play:hover {
  background-color: #4969c2;
}