
 @font-face {
    font-family: 'Material Icons';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/matrialicone.woff2') format('woff2');
    }

    .material-icons {
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
}


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;

}

::selection{
    background: #102e46;
    color: #fff;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 5px;
}
 
::-webkit-scrollbar-track {
    background-color: #ebebeb;
    -webkit-border-radius: 10px;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    -webkit-border-radius: 10px;
    border-radius: 10px;
    background: #329ec9; 
}

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: #fff;
    z-index: 9999999999999999999;
}

.bottom-top-rocket{
    display: block;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    position: fixed;
    bottom: 150px;
    right: -60px;
    box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
    background-color: #fff;
    visibility: hidden;
    transition: all 0.5s ease-in-out;
}


.bottom-top-rocket img{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 25px;
}

.bottom-top-rocket.show{
    right: 40px;
    transition: all 0.5s;
    visibility: visible;
}

.loading{
	position: absolute;
	top: 50%;
	left: 50%;
	height: 40px;
	width: 40px;
	transform: translate(-50%, -50%) rotate(45deg) translate3d(0, 0, 0);
	animation: animate 1.2s ease-in-out infinite;
}


@keyframes animate {
	0%,
	10%,
	100% {
		height: 40px;
		width: 40px;
	}
	65% {
		height: 70px;
		width: 70px;
	}
}

.loading span {
	position: absolute;
	display: block;
	width: 20px;
	height: 20px;
	animation: rotate 1.2s linear both infinite;
}

@keyframes rotate {
	0%,
	30% {
		transform: rotate(0);
	}
	65% {
		transform: rotate(-40deg);
	}
	100% {
		transform: rotate(-90deg);
	}
}

.navbar-brand img{
    width: 200px;
}

.loading span:nth-child(1) {
	top: 0;
	left: 0;
	background: #55d462;
}

.loading span:nth-child(2) {
	top: 0;
	right: 0;
	background: #8675e5;
}

.loading span:nth-child(3) {
	bottom: 0;
	left: 0;
	background: #d84c77;
}

.loading span:nth-child(4) {
	bottom: 0;
	right: 0;
	background: #fd9a3f;
}

header .navbar{
    padding: 20px 0;
}

header .navbar-collapse{
    margin-left: 125px;
}

header .navbar-collapse .menubar li{
    padding-left: 10px;
}

header .navbar-collapse .menubar li a{
    font-size: 16px;
    font-weight: 500;
    color: #000;
    transition: all 0.5s;
    position: relative;
}

header .navbar-collapse .menubar li a:after{
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    width: 0%;
    content: '.';
    color: transparent;
    background: #329ec9;
    height: 2px;
    display: block;
    transition: width 0.7s ease;
}

header .navbar-collapse .menubar li a:hover:after{
    width: calc(100% - 16px);
}

header .navbar-collapse .menubar li a:hover{
    color: #329ec9;
    font-weight: 600;
}

header .navbar-collapse .menubar .active a{
    font-weight: 600;
    color: #329ec9;
}

header .navbar-collapse .menubar .active a:after{
    width: calc(100% - 16px);
}

header .navbar-collapse .menubar  a i{
    line-height: 0;
    position: relative;
    top: 4px;
}

.navbar-r-btn a{
    border-radius: 50px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 400;
    padding: 10px 25px;
    overflow: hidden;
    position: relative;
    z-index: 9999;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    display: inline-block;
}

.navbar-r-btn a:after{
    position: absolute;
    content: " ";
    height: 100%;
    left: -39%;
    top: 0;
    transform: skew(50deg);
    transition-duration: 0.6s;
    transform-origin: top left;
    width: 0;
    background: #fff;
    z-index: -1;
}

.navbar-r-btn a:hover:after {
    height: 100%;
    width: 135%;
}

.navbar-r-btn a:hover{
    text-decoration: none;
    color: #222;
    font-weight: 600;
}

.navbar-r-btn a:first-child{
    background-image: linear-gradient(-152deg, #4e7ea5 0%, #4e7ea5 25%, #329ec9 100%);
    margin-right:10px;
    border: 1px solid #329ec9;
}

.navbar-r-btn a:first-child:hover{
    border: 1px solid #329ec9;
}

.navbar-r-btn a:last-child{
    background-color: #102e46;
    border: 1px solid #102e46;
}

.navbar-r-btn a:first-child:hover{
    border: 1px solid #102e46;
}


.header-bg-img{
    background: url(../image/header-bg-img.png) repeat 0 0;
    background-size: cover;
    background-position: bottom;
    width: 100%;
    padding: 150px 0 200px;
}

.navbar-fixed-top {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 999;
}

.navbar-fixed-top.scrolled .navbar{
    padding: 10px 0;
}

.navbar-fixed-top.scrolled .navbar .navbar-brand img{
    width: 200px;
}

.navbar-fixed-top.scrolled .navbar .navbar-r-btn a{
    padding: 10px 25px;
    margin-top: 10px;
}

.navbar-fixed-top.scrolled {
    /* background-image: linear-gradient(83.49deg, #e9ccf1 0%, #a2d9f2 55%, #d0def3 100%); */
    background-color: #fff;
    box-shadow: rgb(0 0 0 / 24%) 0px 3px 8px;
    animation: slideInDown 0.65s cubic-bezier(0.23, 1, 0.32, 1);
}

@keyframes slideInDown{
    0% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        -ms-transform: translateY(-2000px);
        transform: translateY(-2000px);
    }
    100% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

.c-company-content span{
    background:#fff;
    padding: 16px 32px;
    border-radius: 50px;
    display: inline-block;
    color: #329ec9;
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 25px;
}

.c-company-content span img{
    padding-right: 16px;
}

.c-company-content h1{
    font-size: 60px;
    font-weight: bold;
    line-height: 65px;
    color: #000;
    padding-bottom: 10px;
}

.c-company-content p{
    font-size: 20px;
    font-weight: 400;
    color: #222;
    padding-bottom: 25px;
    line-height: 35px;
}

.c-company-content .navbar-r-btn a{
    padding: 15px 40px;
    display: inline-block;
    z-index: 99;
}


.header-shape-animation .shape:nth-child(1){
    position: absolute;
    top: 140px;
    left: 25%;
    width: 25px;
    height: 25px;
    border: 8px solid #fff;
    animation: rotation 2s infinite linear;
    opacity: 0.5;
}

.header-shape-animation .shape:nth-child(2){
    position: absolute;
    top: 50%;
    left: 2%;
    width: 25px;
    height: 25px;
    background: #fff;
    border: 8px solid #fff;
    animation: rotation 2s infinite linear;
    opacity: 0.5;
}

.header-shape-animation .shape:nth-child(3){
    position: absolute;
    bottom: 11%;
    left: 35%;
    border-bottom: 25px solid #fff;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    animation: rotation 2s infinite linear;
    opacity: 0.5;
}

@keyframes rotation {
    from {
            -webkit-transform: rotate(0deg);
    }
    to {
            -webkit-transform: rotate(359deg);
    }
}

.tech-icon img{
    position: absolute;
    width: 100%;
    max-width: 60px;
}

.tech-icon img:nth-child(1){
    top: 0;
    left: -20%;
}

.tech-icon img:nth-child(2){
    top: 33%;
    left: 0;
}

.tech-icon img:nth-child(3){
    bottom: -85px;
    left: 0;
}

.tech-icon img:nth-child(4){
    bottom: -60px;
    left: 60%;
}

.tech-icon img:nth-child(5){
    right: -20%;
    bottom: 50%;
}

.who-we-are-section{
    position: relative;
    padding-bottom: 170px;
    overflow: hidden;
}

/* .who-we-are-section:before{
    position: absolute;
    content: " ";
    top: -70px;
    right: 0;
    width: 500px;
    height: 500px;
    background: url(../image/line-shape.png) no-repeat;
} */

.who-we-are-section::after{
    position: absolute;
    content: " ";
    left: -50px;
    top: 140px;
    width: 721px;
    height: 721px;
    background-color: #dbf6fd;
    opacity: 0.5;
    border-radius: 50%;
    z-index: -1;
}

.company-fetures-box{
    width: 289px;
    height: 293px;
    border-radius: 15px;
    box-shadow: 0 3px 16px 16px rgba(163, 227, 243, 0.17);
    border: 10px solid #fff;
    padding: 30px;
    display: block;
    margin: 0 auto;
    text-align: center;
    transition: all 0.5s;
}

.company-fetures-box:hover{
    background-image: linear-gradient(-152deg, #4e7ea5 0%, #4e7ea5 25%, #329ec9 100%);
}

.company-fetures-box:hover span, .company-fetures-box:hover p{
    color: #fff;
}

.company-fetures-box span{
    color: #329ec9;
    display: block;
    margin: 20px 0 10px;
    font-weight: 600;
    font-size: 17px;
}

.company-fetures-box p{
    margin:0;
    color: #000;
    font-size: 15px;
}

.fetutres-right-side-box{
    text-align: center;
    width: 289px;
    height: 293px;
    border-radius: 15px;
    background-color: #ffffff;
    box-shadow: 0 3px 16px 16px rgba(163, 227, 243, 0.17);
    border: 10px solid #dfffe0;
    padding: 30px;
}

.fetutres-right-side-box:hover{
    background-image: linear-gradient(-152deg, #4e7ea5 0%, #4e7ea5 25%, #329ec9 100%);
}

.fetutres-right-side-box:hover span, .fetutres-right-side-box:hover p{
    color: #fff;
}

.fetutres-right-side-box span{
    color: #329ec9;
    display: block;
    margin: 20px 0 10px;
    font-weight: 600;
    font-size: 17px;
}

.fetutres-right-side-box p{
    margin:0;
    color: #000;
    font-size: 15px;
}

.third-box{
    border: 10px solid #fcf3ff;
}

.who-we-are-content .navbar-r-btn  a{
    padding: 15px 50px;
    display: inline-block;
    z-index: 99;
}

.who-we-are-content h2{
    position: relative;
    font-size: 45px;
    font-weight: 600;
    line-height: 74px;
    margin-bottom: 20px;
}

.who-we-are-content h2:before{
    position: absolute;
    content: " ";
    bottom: 0;
    left: 0;
    border-bottom: 4px solid #329ec9;
    width: 75px;
}

.who-we-are-content h2:after{
    position: absolute;
    content: " ";
    bottom: 0;
    left: 80px;
    border-bottom: 4px solid #329ec9;
    width: 10px;
}

.who-we-are-content p{
    font-size: 15px;
    line-height: 39px;
    color: #000;
    margin-bottom: 30px;
    max-width: 630px;
}

.dot-pulse .dot1{
    position: absolute;
    display: block;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: #329ec9;
    right: 10%;
    top: 35%;
    z-index: 8;
    bottom: -10%;
    animation: pulse 1s ease infinite;
}

.dot-pulse .dot2{
    position: absolute;
    display: block;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #bae8f4;
    right: 20%;
    top: 70px;
    z-index: 8;
    bottom: -10%;
    animation: pulse 1s ease infinite;
}

.dot-pulse .dot3{
    position: absolute;
    display: block;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background-color: #bae8f4;
    right: 20%;
    top: 90%;
    z-index: 8;
    bottom: -10%;
    animation: pulse 1s ease infinite;
}

@keyframes pulse{
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    50% {
        -webkit-transform: scale(1.15);
        transform: scale(1.15);
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

.call-today{
    position: relative;
    overflow: hidden;
    padding-bottom: 50px;
}

.call-today:before{
    position: absolute;
    content: '';
    top: 0;
    right: -120px;
    width: 831px;
    height: 831px;
    background-color: #f6dbfe;
    border-radius: 50%;
    opacity: 0.4;
}

.who-we-are-out-side{
    padding-top: 70px;
}

.call-dot-pulse .dot1{
    position: absolute;
    display: block;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background-color: #f6dbfe;
    left: 20%;
    top: 90%;
    z-index: 8;
    bottom: -10%;
    animation: pulse 1s ease infinite;
}

.call-dot-pulse .dot2{
    position: absolute;
    display: block;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background-color: #f6dbfe;
    left: 25%;
    top: 1%;
    z-index: 8;
    bottom: -10%;
    animation: pulse 1s ease infinite;
}

.call-dot-pulse .dot3{
    position: absolute;
    display: block;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: #f6dbfe;
    left: -30px;
    top: 50%;
    z-index: 8;
    bottom: -10%;
}

.call-dot-pulse .dot4{
    position: absolute;
    display: block;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #f6dbfe;
    left: 3%;
    top: 60%;
    z-index: 8;
    bottom: -10%;
}

.service-section{
    position: relative;
    margin-top: 0px;
}

.service-section::before{
    position: absolute;
    content: " ";
    top: 0;
    left: 0;
    width: 100%;
    min-height: 520px;
    background: url(../image/service-bg-img.png) no-repeat;
    background-position: top;
    background-size: cover;
    z-index: -1;
}

.section-label{
    text-align: center; 
}

.section-label-top-padd{
    padding-top: 150px;
}

.section-label h2{
    position: relative;
    font-size: 45px;
    font-weight: 600;
    line-height: 45px;
    display: inline-flex;
    padding-bottom: 12px;
    margin-bottom: 0;
}

.section-label h2:before{
    position: absolute;
    content: " ";
    bottom: 0;
    left: 48%;
    transform: translateX(-50%);
    border-bottom: 4px solid #329ec9;
    width: 75px;
}

.section-label h2:after{
    position: absolute;
    content: " ";
    bottom: 0;
    left: 50%;
    transform: translateX(350%);
    border-bottom: 4px solid #329ec9;
    width: 10px;
}

.services-fetures{
    margin-top:100px;
}

.services-box{
    box-shadow: 0 3px 16px 16px rgba(163, 227, 243, 0.17);
    border-radius: 20px;
    background-color: #ffffff;
    padding:40px 20px;
    transition: all 0.5s ease-in;
    text-align: center;
    min-height: 490px;
}

.services-box:hover{
    margin-top: -15px;
    -webkit-transition: .5s all ease;
    transition: .5s all ease;
}

.services-box  img{
    width: 100%;
    max-width: 70px;
}

.services-box span{
    color: #329ec9;
    display: block;
    margin: 20px 0 10px;
    font-weight: 600;
    font-size: 20px;
} 

.services-box p {
    margin: 0;
    color: #000;
    font-size: 15px;
    line-height: 30px;
    max-width: 370px;
    display: block;
    margin: 0 auto;
}

.ps-top-side{
    margin-top: 100px;
}

.poblem-solution-section{
    padding: 150px 0 20px;
    position: relative;
    overflow: hidden;
}

.problem-box{
    box-shadow: 0 0 25px 7px rgba(232, 232, 232, 0.42);
    border-radius: 20px;
    background-color: #ffffff;
    text-align: center;
    padding: 50px 45px;
}

.problem-box span{
    color: #329ec9;
    display: block;
    margin: 0 0 10px;
    font-weight: 600;
    font-size: 30px;
}

.problem-box p{
    color: #000;
    font-size: 16px;
    line-height: 30px;
}

.ps-img{
    width: 400px;
    height: 400px;
    box-shadow: 0 0 25px 7px rgba(163, 227, 243, 0.42);
    border: 10px solid #ffffff;
    background-color: #e4ecff;
    border-radius: 50%;
    display: block;
    margin: 0 auto;
    position: relative;
}

.ps-img img{
    width: 100%;
    max-width: 250px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.hexa-ani{
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
}

.left-patterns{
    position: absolute;
    top: 15%;
    left: 100px;
}

.left-patterns img{
    width: 100px;
    opacity: 0.4;
    animation: mover 1s infinite alternate;
}

@keyframes mover{
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    100% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }
}

.our-achivement{
    position: relative;
}

.our-achivement:before{
    position: absolute;
    content: " ";
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: url(../image/achivement-bg.png) no-repeat;
    background-size: cover;
    background-position: center;
    width: 925px;
    height: 100%;
}

.our-achivement{
    margin-top: 0px;
}

.achiment-row{
    padding-top: 70px;
}

.achivment-content-outeride{
    text-align: center;
    position: relative;
    display: block;
    width: 100%;
    padding: 50px 20px;
    background-color: transparent;
    margin: 0;
    border-bottom: 5px solid transparent;
    -webkit-transition: .5s all ease;
    transition: .5s all ease;
}

/* .achivment-content-outeride:hover{
    background:transparent linear-gradient(179deg,#fffFFF00 0,#ebe8ff 100%) 0 0 no-repeat padding-box;
    margin-top: -15px;
    border-color: #da66ff;
    -webkit-transition: .5s all ease;
    transition: .5s all ease;
} */

.achivment-content-outeride span{
    display: block;
    margin: 10px 0 0;
    font-size: 40px;
    color: #329ec9;
    font-weight: 600;
}

.achivment-content-outeride p{
    font-size: 20px;
    font-weight: 500;
    color: #1f3445;
}

.achivment-content-outeride img{
    min-height: 142px;
}

.project span{
    color: #86de8a;
}

.a-user span{
    color: #db8ebe;
}

.a-client span{
    color: #4f5cd3;
}

.dot-left-animation{
    position: absolute;
    top: -40px;
    left: 0;
}

.dot-left-animation::after{
    position: absolute;
    content: " ";
    top: 0;
    right: -20px;
    width: 50px;
    height: 50px;
    border: 4px solid #d5d2d2;
    border-radius: 50%;
    animation: jump 1.2s ease-in-out infinite;
}

@keyframes jump{
    0%   { transform: translateY(0); }
    50%  { transform: translateY(-20px); }
    100% { transform: translateY(0); }
}

.how-we-work-row-section{
    padding-top: 150px;
}

.how-we-work-outer-section{
    position: relative;
    overflow: hidden;
    padding-bottom: 150px;
}

.how-we-work-outer-section::before{
    position: absolute;
    content: " ";
    bottom: 0;
    right: -130px;
    width: 721px;
    height: 722px;
    border-radius: 50%;
    background-color: #e8fbeb;
    opacity: 0.7;
}

.how-we-work-outer-section::after{
    position: absolute;
    content: " ";
    top: 0;
    left: -120px;
    width: 302px;
    height: 302px;
    border: 50px solid #fffae3;
    border-radius: 50%;
    z-index: -1;
}

.how-work-fetures-point{
    padding-bottom: 40px;
}

.how-work-fetures-point-content{
    padding: 30px 40px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border-radius: 15px;
    background-color: #ffffff;
    border-left: 12px solid #f2d232;
    transition: all 0.5s ease-in-out;
    width: 615px;
    min-height: 149px;
}

.how-work-fetures-point-content:hover{
    background-color: #ffe565;
}

.counter-count{
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.technology-content{
    width: 213px;
    display: block;
    margin:0 auto;
    box-shadow: 0 3px 16px 16px rgba(163, 227, 243, 0.15);
    background-color: #ffffff;
    padding: 25px;
    text-align: center;
}

.technology-content img{
    width: 100%;
    max-width: 50px;
}

.technology-content span{
    display: block;
    font-size: 20px;
    color: #222;
    font-weight: 600;
    margin-top:20px;
}

.technology-outer-side{
    margin-top: 80px;
}


.footer-top-outer-side{
    background-color: #102e46;
}

.business-bg-color{
    background-color: #102e46;
    padding: 96px 0 0;
    margin-top: 85px;
    position: relative;
}

.business-online{
    text-align: center;
}

.business-online h2{
    color: #fff;
    text-align: center;
    font-size: 42px;
    font-weight: 500;
    line-height: 81px;
    margin-bottom: 25px;
}

.business-online{
    padding-bottom: 80px;
}

.business-online a{
    border-radius: 50px;
    color: #000000;
    background-color: #fff;
    font-size: 18px;
    font-weight: 400;
    padding: 15px 50px;
    overflow: hidden;
    position: relative;
    z-index: 9999;
    box-shadow: rgb(100 100 111 / 20%) 0px 7px 29px 0px;
    display: inline-block;
    z-index: 9;
}

.business-online a:last-child{
    margin-left: 10px;
}

.business-online a:hover{
    text-decoration: none;
}

.footer-bg-side{
    background: url(../image/footer-bg-img.png) no-repeat;
    background-size:cover;
    background-position:top;
}

.footer-content{
    padding: 200px 0 50px;
}

.copyright-bg-color{
    background-color: #102e46;
    padding: 10px 0;
}

.copyright-cloudus{
    color: #fff;
    font-size: 13px;
}

.about-company-info p{
    margin-top: 30px;
    font-weight: 500;
    line-height: 30px;
    font-size: 15px;
    max-width: 330px;
}

.footer-social-media ul{
    justify-content: flex-end;
}

.footer-social-media ul li a{
    padding: 0 30px 0 0;
    font-size: 20px;
    color: #fff;
}

.footer-social-media ul li:last-child a{
    padding-right: 0;
}

.link-section h5{ 
    font-size: 24px;
    color: #000101;
    font-weight: 600;
    line-height: 30px;
    position: relative;
    padding-bottom: 14px;
    margin-bottom: 30px;
}

.link-section h5:before{
    position: absolute;
    content: " ";
    bottom: 0;
    left: 0;
    border-bottom: 4px solid #329ec9;
    width: 75px;
}

.link-section h5:after{
    position: absolute;
    content: " ";
    bottom: 0;
    left: 80px;
    border-bottom: 4px solid #329ec9;
    width: 10px;
}

.link-section ul{
    list-style: none;
}

.link-section ul li{
    margin-top: 15px;
}

.link-section ul li a{
    color: #000000;
    font-weight: 500;
}

.get-touch{
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.multi-text{
    align-items: unset;
}

.multi-text i{
    margin-top: 5px;
}

.get-touch i{
    font-size: 22px;
    margin-right: 15px;
}

.get-touch a{
    color: #000101;
    font-size: 16px;
    font-weight: 500;
    line-height: 30px;
}

.get-touch a:hover{
    text-decoration: none;
}

.animation-tech-img{
    position: absolute;
    top: 0;
    left: 0;
    animation: rotation 2s infinite linear;
}

.tech-section{
    position: relative;
    padding-top: 0;
}

.desktop-view-icon{
    display: flex;
    width: 100%;
}

.body-off{
    overflow: hidden;
}

.navbar-toggler:focus{
    outline: none;
    border: none;
}

.navbar-brand{
    z-index: 999999999999;
}

.tech-section .technology-outer-side .row .col{
    margin-bottom: 30px;
    max-width: 250px;
}

.l-shape{
    position: absolute;
    right: 0;
    top: 0;
}

.l-shape span:first-child{
    /* clip-path: polygon(25% 33%, 100% 36%, 100% 100%, 0% 100%); */
    width: 200px;
    height: 150px;
    background-color: red;
}

.big-cir-1-right {
    position: absolute;
    top: 1%;
    right: -100px;
    animation: round1 20s linear infinite;
}

.big-cir-2-right {
    position: absolute;
    top: 1%;
    right: -100px;
    animation: round2 19s linear infinite;
}

.big-cir-3-right {
    position: absolute;
    top: 1%;
    right: -100px;
    animation: round1 18s linear infinite;
}

@keyframes round1{
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
    
}

@keyframes round2{
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
    100% {
        -webkit-transform: rotate(-360deg);
        transform: rotate(-360deg);
    }
}

.fixed-btn{
    position: fixed;
    bottom: 0;
    background-color: #102e46;
    width: 100%;
    left: 0;
    padding: 10px 15px;
    z-index: 99999999;
    display: flex;
    align-items: center;
    justify-self: center;
}

.fixed-btn a{
    border-radius: 50px;
    color: #000000;
    background-color: #fff;
    font-size: 14px;
    font-weight: 400;
    padding: 5px 20px;
    overflow: hidden;
    position: relative;
    left: 50%;
    transform: translateX(-100%);
    z-index: 9999;
    box-shadow: rgb(100 100 111 / 20%) 0px 7px 29px 0px;
    display: flex;
    align-items: center;
    justify-self: center;
}

.fixed-btn a:hover{
    text-decoration: none;
}

.fixed-btn a:last-child{
    margin-left: 28px;
}

.fixed-btn{
    display: none;
}

.fixed-btn a i{
    display: inline-block;
    vertical-align: middle;
    margin-left: 10px;
    font-size: 14px;
}

.who-patterns{
    position: relative;
}

.who-patterns img{
    position: absolute;
}

.who-patterns img:first-child{
    position: absolute;
    left: 50%;
    width: 90px;
    transform: rotate(100deg);
}

.who-patterns img:last-child{
    width: 30px;
    position: absolute;
    right: 50px;
}

/* ---faq Panel--- */

.faq-with-softwere{
    margin: 80px 0;
}

.accordion h2 a{
    display: block;
    text-align: left;
    padding:0;
    color: #000;
    padding: 20px 30px;
}

.accordion h2 a:hover{
    text-decoration: none;
    color: #000;
}
  
.accordion h2 a:after{
    content: "";
    position: relative;
    top: 1px;
    display: inline-block;
    font-style: normal;
    font-family: FontAwesome;
    font-weight: 900;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;  
    transition: transform .25s linear;
    -webkit-transition: -webkit-transform .25s linear;
    float: right;
    font-size: 20px;
}

.accordion h2 a[aria-expanded="true"]:after {
    content: "❯";
    font-weight: 900;
    -webkit-transform: rotate(180deg);
    transform: rotate(270deg);
}

.accordion h2 a[aria-expanded="false"]:after {
    content: "❯";
    font-weight: 900;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);

}

.accordion h2{
    background-color: #fff;
    border-top-right-radius: 30px;
    border-bottom-left-radius: 30px;
    /* box-shadow: 0px 0px 4px rgb(0 0 0 / 25%); */
    box-shadow: 0 0px 20px 10px rgb(163 227 243 / 17%);
}

.accordion h2 a.collapsed{
    margin-bottom: 50px;
}

.accordion .collapse p{
    font-size: 14px;
    color: #222;
    line-height: 30px;
}

.accordion .collapse{
    font-size: 14px !important;
    color: #222 !important;
    line-height: 30px !important ;
} 

.why-choose-point h3{
    font-size: 18px;
    font-weight: 700;
}

.contact-us-footer-section iframe{
    min-height: 500px;
    position: relative;
    top: 135px;
}

.contact-content p{
    max-width: 599px;
}

.contact-detail-section{
    /* background: url(../image/contact-bg-img.png) no-repeat; */
    background-size: cover;
    padding: 50px 0 70px;
}

.contact-us-form{
    box-shadow: 0 3px 16px 16px rgb(163 227 243 / 17%);
    border-radius: 20px;
    background-color: #ffffff;
    padding: 40px 40px;
    max-width: 600px;
}

.contact-us-form h2{
    color: #000;
    font-weight: 700;
    margin-bottom: 5px;
}

.contact-us-form span{
    color: #222;
    font-size: 12px;
    margin-bottom: 30px;
    display: block;
}

.contact-form input, .contact-form textarea{
    padding: 25px 20px;
    border: 1px solid #DDDDDD;
    background-color: #F9F9F9;
}

.contact-form textarea{
    resize: none;
}

.contact-form input:focus, .contact-form textarea:focus{
    outline: none;
    box-shadow: none;
    border: 1px solid #5d5d5d;
}

.contact-form .form-group{
    margin-bottom: 30px;
}

.c-btn{
    text-align: center;
    margin-top: 55px;
    margin-bottom: 30px;
}

.c-btn button{
    background-color: #102e46;
    border: 1px solid #102e46;
    border-radius: 50px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 400;
    padding: 12px 40px;
    overflow: hidden;
    position: relative;
    z-index: 9999;
    box-shadow: rgb(100 100 111 / 20%) 0px 7px 29px 0px;
    display: inline-block;
}

.c-btn button:after {
    position: absolute;
    content: " ";
    height: 100%;
    left: -35%;
    top: 0;
    transform: skew(50deg);
    transition-duration: 0.6s;
    transform-origin: top left;
    width: 0;
    background: #fff;
    z-index: -1;
}

.c-btn button:hover:after {
    height: 100%;
    width: 135%;
}

.c-btn button:hover {
    text-decoration: none;
    color: #222;
    font-weight: 600;
}

.c-btn button:focus{
    outline: none;
}

.contact-touch-label{
    margin-bottom: 40px;
}

.contact-get-touch{
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.multi-text-add{
    align-items: flex-start;
}

.multi-text-add p, .contact-get-touch a{
    margin-left: 20px;
    color: #222;
}

/*.custom-container-fluid{
    padding-left: 230px;
}*/

.custom-map-col{
    padding-left: 0;
}

.map iframe{
    height: 100%;
    min-height: 700px;
}

.contact-carousel-r-img img{
    width: 100%;
}

.about-us-header{
    padding: 200px 0;
    margin-bottom: 60px;
}

.welcome-cloudus span{
    display: block;
    width: 100%;
    text-align: center;
    color: #3DDE85;
    font-weight: 500;
    margin-top: 15px;
    font-size: 20px;
    margin-bottom: 15px;
}

.welcome-cloudus p{
    color: #000;
    letter-spacing: 1px;
    font-weight: 400;
}

.about-welcome{
    position: relative;
    overflow: hidden;
    padding-bottom: 25px;
}

.about-welcome .welcome-cloudus h2{
    margin-bottom: 25px;
}

.about-cross{
    position: absolute;
    top: 0;
    right: 10%;
    animation-name: rotateme;
    animation-duration: 10s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

@keyframes rotateme{
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(1turn);
    }
}

.about-two-features{
    display: flex;
    max-width: 1000px;
    justify-content: center;
    align-items: center;
}

.how-work-fetures-point-content{
    text-align: left;
    padding: 15px 25px;
}

.how-work-fetures-point-content span{
    margin:0;
    margin-bottom: 10px;
    text-align: left;
}

.how-work-fetures-point-content p{
    font-size: 14px;
}

.about-main-section{
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.about-fetures-column{
    position: relative;
    margin-top: 50px;
    overflow: hidden;
}

.about-fetures-column::before {
    position: absolute;
    content: " ";
    top: 0;
    left: 0;
    width: 100%;
    min-height: 480px;
    background: url(../image/service-bg-img.png) no-repeat;
    background-position: top;
    background-size: cover;
    z-index: -1;
}

.abbout-col-inner-side{
    padding-top: 200px;
}

.box-content{
    background-color: #fff;
    border-radius: 40px;
    box-shadow: rgb(100 100 111 / 20%) 0px 7px 29px 0px;
    padding: 30px 50px 50px;
}

.about-f-content p{
    margin-bottom: 0;
}

.about-f-content h2{
    font-size: 35px;
}

.about-features-img img{
    display: block;
    margin:0 auto;
}

.col-mar-top{
    margin-top: 100px;
}

.welcome-cloudus img{
    display: block;
    margin:0 auto;
    max-width: 1200px;
    margin-top: 50px;
}

.welcome-cloudus a{
    border-radius: 50px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 400;
    overflow: hidden;
    position: relative;
    z-index: 9999;
    box-shadow: rgb(100 100 111 / 20%) 0px 7px 29px 0px;
    display: inline-block;
    background-color: #102e46;
    border: 1px solid #102e46;
    padding: 15px 40px;
    margin-top: 40px;
}

.welcome-cloudus a:after {
    position: absolute;
    content: " ";
    height: 100%;
    left: -35%;
    top: 0;
    transform: skew(50deg);
    transition-duration: 0.6s;
    transform-origin: top left;
    width: 0;
    background: #fff;
    z-index: -1;
}

.welcome-cloudus a:hover{
    text-decoration: none;
    color: #222;
    font-weight: 600;
}

.welcome-cloudus a:hover:after {
    height: 100%;
    width: 135%;
}

.about-footer{
    margin-top: 90px;
} 

.long-txt-label h2:after{
    transform: translateX(273%);
}

.business-expert-point{
    margin-bottom: 30px;
    max-width: 503px;
}

.business-expert-point p{
    margin-bottom: 10px;
    line-height: 24px;
}

.business-expert-point span{
    color: #329EC9;
    font-weight: 500;
    display: block;
    margin-bottom: 10px;
}

.history-company h3{
    color: #3DDE85;
    font-weight: 600;
} 

.about-expert-business{
    padding-bottom: 80px;
}

.about-expert-business .who-we-are-out-side{
    padding-top: 130px;
}

.about-expert-business::after{
    top: 300px;
}

.r-shape-welcome img{
    position: absolute;
}

.r-shape-welcome img:nth-child(1){
    top: 0;
    left: -45px;
}

.r-shape-welcome img:nth-child(2){
    top: 50px;
    left: -45px;
}

.r-shape-welcome img:nth-child(3){
    top: 450px;
    right: -15px;
}


.r-shape-welcome img:nth-child(4){
    top: 550px;
    right: -15px;
}

.s-shape-section img{
    position: absolute;
}

.s-shape-section img:nth-child(1){
    top: 50%;
    left: -45px;
    display: none;
}

.s-shape-section img:nth-child(2){
    top: 80%;
    left: -45px;
}

.s-shape-section img:nth-child(3){
    top: 80%;
    right: -15px;
}


.s-shape-section img:nth-child(4){
    top: 550px;
    right: -15px;
}

.proficient-team{
    position: relative;
}

.circle-shape-img-section img{
    position: absolute;
}

.circle-shape-img-section img:nth-child(1){
    top: 10%;
    left: 0;
    max-width: 200px;
    opacity: 0.3;
}

.circle-shape-img-section img:nth-child(2){
    top: 50%;
    right: 0;
    max-width: 200px;
    opacity: 0.3;
}

.circle-shape-img-section img:nth-child(3){
    top: 50px;
    right: 100px;
    animation-name: rotateme;
    animation-duration: 10s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}


.histry-shape-img img {
    position: absolute;
}

.histry-shape-img img:nth-child(1) {
    top: 450px;
    right: -15px;
}

.histry-shape-img img:nth-child(2) {
    top: 550px;
    right: -15px;
}

  
  .custom-dropdowan{
    visibility: hidden;
    opacity: 0;
    position: absolute;
    padding: 20px 0;
    transform: translateY(70px);
    top: 100%;
    left: 0;
    width: auto;
    background-color: #fff;
    box-shadow: 0px 10px 10px 3px rgba(0, 0, 0, 0.3);
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
    /* border-top: 2px solid #329ec9; */
    z-index: 111;
    transition: 0.5s all;
  }

  /* .navbar-dropdown:hover .custom-dropdowan {
    visibility: visible;
    opacity: 1;
    transform: translateY(20px);
  } */

  .dropdown:hover .custom-dropdowan{
    visibility: visible;
    opacity: 1;
    transform: translateY(20px);
    transition: all 0.5s ease;
  }

  .navbar-dropdown .custom-dropdowan a:after{
    display: none !important;
  } 


  /* .custom-dropdowan{
      display: flex;
  } */

  .custom-dropdowan span{
      position: relative;
      top: -3px;
      left: 0px;
      font-size: 16px;
      color: #444444;
  }

  .custom-dropdowan a{
    padding: 10px 50px 0 15px;
  }

  .custom-dropdowan a i{
      color: #329ec9;
  }

  .custom-dropdowan a:after{
      display: none !important;
  }

  .career-label h2{
    margin-bottom: 30px;
  }

  .main-position-box{
    background-color: #fff;
    border-radius: 15px;
    box-shadow: rgb(100 100 111 / 20%) 0px 7px 29px 0px;
    overflow: hidden;
    margin-bottom: 30px;
  }

  .position-box-label{
    padding: 30px 30px 10px;
  }

  .feature-header{
      display: flex;
  }

  .feature-header li {
    font-size: 14px;
    margin: 5px 0 0;
    font-weight: 400;
    letter-spacing: .5px;
    float: left;
    padding-right: 12px;
    margin-right: 12px;
    border-right: 1px solid #e6eff6;
    line-height: 1;
    color: #8599ab;
    list-style: none;
}

.feature-header li>i {
    font-size: 14px;
    margin-right: 3px;
}

.feature-header li:last-child {
    padding-right: 0;
    margin-right: 0;
    border-right: 0 solid #eee;
}

.featured-job-bottom {
    border-top: 1px solid #dcd8d8;
    margin: 0 -25px 0;
    padding: 15px 25px 0;
}

.position-box-label h4{
    margin-bottom: 15px;
}

.fetures-job-box{
    padding: 25px 30px;
    position: relative;
}

.fetures-job-box::before{
    position: absolute;
    content: " ";
    bottom: 0;
    right: 0;
    width: 206px;
    height: 106px;
    background: url(../image/box-s-2.png) no-repeat;
    background-size: cover;
}

.fetures-reuirement{
    margin-bottom: 15px;
}

.fetures-reuirement h5{
    font-size: 18px;
    font-weight: 600;
    color: #414558;
}

.fetures-reuirement p {
    color: #747474;
    display: flex;
    align-items: baseline;
}

.fetures-reuirement p i{
    margin-right:10px;
    color: #4e7ea5;
    font-size: 14px;
} 

.fetures-reuirement ul li{
    list-style: none;
    display: flex;
    align-items: baseline;
}

.fetures-reuirement ul li i{
    margin-right:10px;
    color: #4e7ea5;
    font-size: 14px;
}

.apply-btn a{
    border-radius: 50px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 400;
    padding: 10px 25px;
    overflow: hidden;
    position: relative;
    z-index: 9999;
    box-shadow: rgb(100 100 111 / 20%) 0px 7px 29px 0px;
    display: inline-block;
    background-color: #102e46;
    border: 1px solid #102e46;
    z-index: 99;
}

.apply-btn a:hover{
    text-decoration: none;
    background-color: #102e46 !important;
}

.apply-btn a:focus{
    box-shadow: none !important;
    outline: none !important;
    background-color: #102e46 !important;
}

.carrer-job-section{
    padding-bottom: 25px;
    margin-top: 50px;
}

.career-label{
    padding-top: 50px;
}


/* ----Gallery img---------- */

.gallery-carousel{
    padding: 250px 0;
}

.gallery{
	margin:0 0 5px 0;
}

#gallery{
    -webkit-column-count:4;
    -moz-column-count:4;
    column-count:4;
    
    -webkit-column-gap:20px;
    -moz-column-gap:20px;
    column-gap:20px;
}

#gallery img,#gallery video {
    width:100%;
    height:auto;
    margin: 4% auto;
    box-shadow: 5px 0px 10px #989898;
    cursor: pointer;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}
  .modal-img,.model-vid{
    width:100%;
    height:auto;
}

.gallery-section{
   background: url(../image/contact-bg-img.png) no-repeat;
   background-size: cover;
   background-position:center;
   width: 100%;
   height: 100%;
   position: relative;
}

.content {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: auto;
    overflow: hidden;
  }
  
  .content .content-overlay {
    background: rgba(0,0,0,0.7);
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    -webkit-transition: all 0.4s ease-in-out 0s;
    -moz-transition: all 0.4s ease-in-out 0s;
    transition: all 0.4s ease-in-out 0s;
  }
  
  .content:hover .content-overlay{
    opacity: 1;
    z-index: 9;
  }
  
  .content-image{
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: all 0.5s ease;

  }
  
  .content-details{
    position: absolute;
    text-align: center;
    padding-left: 1em;
    padding-right: 1em;
    width: 100%;
    top: 50%;
    left: 50%;
    opacity: 0;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
  }
  
  .content:hover .content-details{
    top: 50%;
    left: 50%;
    opacity: 1;
    z-index: 99;
  }

  .content:hover .content-image{
    transform: scale(1.3);
  }

  .fadeIn-top{
    top: 20%;
  }

  .content-details .content-icon i{
      color: #fff;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      font-size: 30px;
      font-weight: 500;
  }

  .event-celebrate{
      margin-top: 50px;
  }

  .lightbox{
      left: 50% !important;
      transform: translate(-50%,-50%);
  }

  .gallery .owl-nav{
    margin-top: 30px;
  }

  .gallery .owl-nav button{
    width: 30px;
    height: 30px;
    border-radius: 50px !important;
    background-image: linear-gradient(-152deg, #4e7ea5 0%, #4e7ea5 25%, #329ec9 100%) !important;
    position: relative;
  }

  .gallery .owl-nav button:focus{   
    outline: none;
  }

  .gallery .owl-nav button i{
      color: #fff;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
  }

  .service-f-pad-top{
      padding-top: 75px;
  }

  .navbar-r-btn a:last-child i{
      margin-left: 10px;
  } 

  .whatsapp-icon-navbar{
      background-image: none !important;
      box-shadow: none !important;
      border: none !important;
      padding: 0 !important;
      margin-right: 25px !important;
  }

.whatsapp-icon-navbar img{
    width: 50px;
    height: 50px;
}

.whatsapp-icon-navbar:hover:after{
    width: auto !important;
}

.navbar-r-btn a i{
    display: inline-block;
    vertical-align: middle;
    line-height: 0;
}

.business-btn a i{
    display: inline-block;
    vertical-align: middle;
    margin-left: 10px;
} 

#body-overlay {
    width: 100vw;
    height: 100vh;
    transform: translateX(-100%);
    position: fixed;
    z-index: 3;
    top: 0;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.5);
    z-index: 99999;
  }
  
  .real-menu {
    position: fixed;
    top: 0;
    right: -570px;
    z-index: 4;
    width: 550px;
    height: 100%;
    padding: 50px 25px 40px;
    box-shadow: 0 6px 12px rgba(107, 82, 82, 0.3);
    background-color: white;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    transition: ease 0.5s all;
    z-index: 9999999999;
    overflow-y: auto;
  }

  body.menu-open{
      overflow: hidden;
  }
  
  body.menu-open #body-overlay {
    transform: translateX(0);
  }
  body.menu-open .real-menu {
    right: 0;
  }

  .bootstrap-select .dropdown-toggle:focus, .bootstrap-select>select.mobile-device:focus+.dropdown-toggle{
      outline: none;
  }

  select:focus{
      outline: none;
  }

  .form-row{
      margin-bottom: 30px;
  }

  .bootstrap-select>.dropdown-toggle{
      padding: 15px;
  }

  .bootstrap-select>.dropdown-toggle{
    border: 1px solid #DDDDDD;
    background-color: #F9F9F9;
    font-size: 15px;
    color: #495057 !important;
  }

  .dropdown-toggle::after {
    display: inline-block;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    border-top: 0.5em solid;
    border-right: .5em solid transparent;
    border-bottom: 0;
    border-left: .5em solid transparent;
}

.close-side-menu{
    position: absolute;
    top: 0px;
    right: 25px;
    font-size: 2.5rem;
    font-weight: 500;
    opacity: 1;
    border: none;
    background: none;
}

.close-side-menu span{
    font-weight: 100;
}

.close-side-menu:focus{
    outline: none;
}

.real-menu .welcome-cloudus{
    padding-top:0;
    padding-bottom: 25px;
}

.real-menu .welcome-cloudus h2{
    font-size: 25px;
    line-height: 25px;
}

.real-menu .welcome-cloudus p{
    max-width: 450px;
    display: block;
    margin: 0 auto;
    font-size: 14px;
    padding-top: 10px;
}

.contact-pt{
    text-align: center;
}

.contact-pt i{
    font-size: 30px;
    margin-bottom: 10px;
    color: #329ec9;
}

.contact-pt a{
    display: block;
    font-size: 16px;
}

.contact-pt a{
    color: #495057;
    font-size: 14px;
}

.contact-pt a:hover{
    text-decoration: none;
}

.conatct-detail-in-quote{
    margin-top: 30px;
}

.real-menu .contact-form .c-btn{
    margin-top: 30px;
    margin-bottom: 0px;
}

.real-menu .contact-form .form-group {
    margin-bottom: 20px;
}

.real-menu .contact-form .form-row {
    margin-bottom: 20px;
}

.conatct-detail-in-quote .col-sm-6{
    margin-bottom: 30px;
}

.conatct-detail-in-quote .col-sm-6:nth-child(3),.conatct-detail-in-quote .col-sm-6:nth-child(4){
    margin-bottom: 0px;
}

/* .side-conatct-f-col{
    max-width: 200px !important;
} */

 .accordian-faq-section{
     margin-top: 55px;
     margin-bottom: 70px;
 }

  
.faq_accordion{
display: block;
position: relative;
width: 100%;
}

.accordion__item {
display: block;
width: 100%;
margin-bottom: 30px;
}
.accordion__item:last-child {
margin-bottom: 0;
}

.accordion__title {
display: block;
position: relative;
height: 40px;
line-height: 40px;
padding: 0px 50px 0 20px;
font-size: 16px;
font-weight: 500;
color: #333;
border-bottom: 1px solid #eee;
overflow: hidden;
transition: background-color 0.2s;
}
.accordion__title:hover {
background-color: #fafafa;
color: #333;
text-decoration: none;
}
.accordion__title.active {
background: #edfbfe;
}
.accordion__title.active .x7 {
transform: rotate(-90deg);
}
.accordion__title.active .x7 .btop {
width: 50%;
top: 3.5px;
transform: translateY(-50%) rotate(-45deg);
transform-origin: 50% 50%;
}
.accordion__title.active .x7 .bmid {
opacity: 0;
}
.accordion__title.active .x7 .bbot {
width: 50%;
bottom: 3.5px;
transform: translateY(50%) rotate(45deg);
transform-origin: 50% 50%;
}  
.accordion__content {
display: none;
position: relative;
overflow: hidden;
border: 1px solid #eee;
border-top: none;
line-height: 30px;
padding: 25px;
background-color: #fff;
font-size: 15px;
}

.bmenu {
width: 26px;
height: 16px;
display: block;
position: absolute;
right: 15px;
top: 12px;
}

.btop, .bmid, .bbot {
right: 0;
width: 100%;
height: 2px;
position: absolute;
background-color: #333;
border-radius: 1px;
}

.btop {
width: 40%;
}

.bmid {
width: 60%;
}

.bbot {
width: 80%;
}

.x7 {
transition: transform 0.3s ease-out;
transform-origin: 60% 75%;
}
.x7 .btop {
top: 0;
transition: width 0.3s, transform 0.3s, top 0s;
transition-timing-function: ease-out;
}
.x7 .bmid {
top: calc(50% - 1px);
transform-origin: 100% 50%;
transition: opacity 0.1s;
transition-timing-function: ease-out;
}
.x7 .bbot {
bottom: 0;
transition: width 0.3s, transform 0.3s, bottom 0s;
transition-timing-function: ease-out;
}

.softwere-point{
    padding-left: 20px;
}

/* .modal-backdrop{
    z-index: 9999;
} */

.career-form{
z-index: 99999;
}

.career-form .modal-body{
padding: 55px 30px;
}

.career-form .c-btn{
margin-top: 35px;
margin-bottom: 0px;
} 

.career-form .welcome-cloudus h2{
    font-size: 25px;
    line-height: 25px;
}

.career-form .welcome-cloudus{
    margin-bottom: 25px;
}

.career-form .modal-body .cl-btn{
    position: absolute;
    top: 15px;
    right: 20px;
}

.career-form .modal-body .cl-btn:focus{
    outline: none;
}

.career-form .modal-body .cl-btn span{
font-size: 40px;
font-weight: 100;
}

.bootstrap-select .dropdown-menu li a span.text {
font-size: 14px;
}

.bootstrap-select .dropdown-toggle:focus, .bootstrap-select>select.mobile-device:focus+.dropdown-toggle{
    outline: none !important;
    box-shadow: none;
}

#myFile{
    height: auto;
    padding: 10px 20px;
}

.bootstrap-select .dropdown-menu{
    z-index: 99999;
}

.z-ind-c{
    z-index: 9999;
}

.carrer-carousel-section{
    padding: 250px 0 200px;
}

.carrer-carousel-section .c-company-content h2{
    color: #329ec9;
    font-weight: 700;
    font-size: 40px;
    margin-bottom: 25px;
}

.index-carousel h1{
    font-size: 42px;
}

.index-ho-work{
    width: auto;
    min-height: auto;
}

.RS-position{
    min-height: 377px;
}

.form-group label{
    font-size: 14px;
    color: red;
    font-weight: 600;
}

.we-pro-it{
    font-size: 30px !important;
    font-weight: 600 !important;
    margin-bottom: 35px !important;
}

.fancybox-container{
	z-index: 99999;
}

.fancybox-container{
    z-index: 999999999 !important;
}

div a img{
    width: 200px;
}




.all-job-position{background: #EA1212;border-radius: 0px 0px 10px 10px;padding: 5px 15px;color: #fff;position: fixed;top: 50%;left: -33px;transform: rotate(270deg);display: block;z-index: 100000;font-weight: 600;font-size: 15px;}
.all-job-position:hover{text-decoration: none;color: #fff;}
.section-label-blog-padd{padding-top: 115px;}
.blog-section-data .our-blog-section-data{background: #FFFFFF;box-shadow: 0px 0px 19px rgba(163, 227, 243, 0.25);border-radius: 5px;margin-bottom: 15px;}
.our-blog-section-img{width: 100%;height: auto;}
.our-blog-section-img img{width: 100%;height: 100%;object-fit: contain;}
.our-blog-section-contain{padding: 20px 18px;}
.blog-date-selected{display: flex;align-items: center;gap: 8px;margin-bottom: 13px;}
.blog-date-selected .blog-date-icon{width: 20px;}
.blog-date-selected .blog-date-icon img{width: 100%;height: 100%;}
.our-blog-section-contain .blog-date-selected p{margin-bottom: 0px;font-family: 'Poppins';font-style: normal;font-weight: 400;font-size: 16px;}
.our-blog-section-contain h2{font-family: 'Poppins';margin-bottom: 10px;color: #212529; font-style: normal;font-weight: 600;font-size: 16px;line-height: 24px;}
.our-blog-section-contain p{font-family: 'Poppins';font-style: normal;font-weight: 400;font-size: 16px;margin-bottom: 20px;color: #000000;line-height:29px}
.our-blog-section-contain .blog-read-btn{color: #319CC8;display: flex;align-items: center;gap: 13px; font-family: 'Poppins';font-style: normal;font-weight: 500;font-size: 16px;line-height: 25px;text-decoration: none;}
.our-blog-section-contain .blog-read-btn img{width: 8px !important;}
.blog-section-data{margin-top: 65px;}
.main-blog-read-show:hover{text-decoration: none;}
.all-show-blog-btn{width: 100%;margin-top: 30px;}
.all-show-blog-btn .navbar-r-btn {text-align: center;}
.navbar-r-btn .blog-know-btn:last-child {border: 1px solid #fff;}
.blog-section-data .owl-carousel .owl-nav button i{color: #D4D4D4;font-size: 35px;}
.blog-section-data .owl-carousel .owl-nav button i:hover{color: #6AC5EB;}
.blog-section-data .owl-carousel .owl-nav.disabled{display: block !important;}
.blog-section-data .owl-carousel .owl-nav .owl-prev:hover{background: unset;color: #000;}
.blog-section-data .owl-carousel .owl-nav .owl-next:hover{background: unset;color: #000;}
.blog-section-data .owl-carousel .owl-nav .owl-prev{position: absolute;left: -20px;top: 51%;transform: translateY(-50%);outline: unset;}
.blog-section-data .owl-carousel .owl-nav .owl-next{position: absolute;right: -20px;top: 51%;transform: translateY(-50%);outline: unset;}
.all-show-blog {text-align: center;width: 100%;margin-top: 40px;}
.all-show-blog a{background: linear-gradient(270.26deg, #4E7EA5 -2.42%, #4E7EA5 48.14%, #329EC9 100.86%);text-decoration: none; font-family: 'Poppins';font-style: normal;font-weight: 400;font-size: 18px;color: #FFFFFF;border-radius: 50px;padding: 16px 45px;}
.all-blog-section .our-blog-section-data{margin-bottom: 90px;}
.blog-business-bg{margin-top: 10px;}
.blog-title-main h1{font-size: 58px;line-height: 90px;}
.all-blog-section .section-label-blog-padd{padding-top: 0px;}
.blog-section-data .owl-carousel button.owl-prev.disabled {display: none !important;}



.case-studies-section .case-studies-tab-btn .nav-tabs{justify-content: center;margin: 50px 0px 0px;border-bottom: 0px;}
.case-studies-section .case-studies-tab-btn .nav-tabs button{background: unset;outline: unset;padding: 10px 30px 10px 0px;border: unset;font-weight: 500;font-size: 18px;color: #949494;border-bottom: 2px solid #EAEAEA;}
.case-studies-section .case-studies-tab-btn .nav-tabs button.active {color: #339ECA;border-bottom: 2px solid #339ECA;}
.case-studies-section .case-studies-tab-btn .nav-tabs button.web-app-tab-btn{padding: 10px 0px 10px 30px;}

.fancybox-caption.fancybox-caption--separate .fancybox-caption__body{display: none;}


.singal-blog-header{position: sticky;}
.header-section {background-image: url('../image/blog-section-main-bg.png');background-position: center center;background-repeat: no-repeat;background-size: 100% 100%;background-attachment: fixed;padding: 220px 0px;width: 100%;}
.header-text {margin-right: auto;margin-left: auto;}
.bold-text {display: block;width: 100%;max-width: 84%;margin-right: auto;margin-left: auto;color: #fff;font-size: 43px;line-height: 56px;font-weight: 600;text-align: center;}
.blog-section {margin-top: 120px;}
.header-container{max-width: 1204px;}
.blog-main-div {margin-right: 15px;margin-bottom: 120px;margin-left: 15px;padding-bottom: 60px;box-shadow: 0 10px 30px 0 #ccc;}
._1-img.img {width: 100%;}
.accordian-main-div {margin-top: 0px;border-style: solid;border-width: 2px;border-color: #6ac5eb;border-radius: 15px;background-color: #e4eff5;}
.blog-contant-main-div {padding-right: 30px;padding-left: 30px;}
.accordian-heading {display: flex;padding: 10px 30px;justify-content: space-between;align-items: center;cursor: pointer;}
.table-of-contant {font-size: 22px;line-height: 30px;font-weight: 600;}
.accordian-icon {width: 38px;max-width: none;padding: 3px 5px 5px;border-style: solid;border-width: 2px;border-color: #6ac5eb;border-radius: 5px;background-color: #ececec;cursor: pointer;}
.img {width: 100%;}
.accordian-contant-div {padding: 5px 30px;}
.table-contant-h2 {display: flex;margin-top: 10px;margin-bottom: 10px;color: #319cc8;font-size: 16px;line-height: 23px;font-weight: 600;}
.link {color: #319cc8;cursor: pointer;}
.list {list-style-type: none;}
.list.table-link-list {padding-left: 60px;}
.table-same-link {display: flex;color: #319cc8;font-size: 14px;line-height: 23px;cursor: pointer;}
.link-2 {color: #319cc8;cursor: pointer;}
.contant-div {margin-top: 20px;}
.contant-text {margin-top: 0px;margin-bottom: 0px;padding-top: 0px;padding-bottom: 0px;font-size: 14px;line-height: 1.8rem;}
.contant-text.text-padding {padding-bottom: 12px;}
.introduction-div-block {margin-top: 20px;margin-bottom: 20px;}
.h2-heading {margin-bottom: 20px;color: #000;font-size: 20px;line-height: 38px;font-weight: 600;}
.h4-heading {margin-top: 15px;margin-bottom: 15px;color: #000;font-size: 16px;line-height: 25px;font-weight: 600;}
.factors-div-block {margin-bottom: 20px;}
.bold-text-2 {font-weight: 600;}
.image-div {margin-top: 20px;margin-bottom: 20px;}
.methods-div {margin-bottom: 20px;}
.common-div {margin-bottom: 20px;}
.block-posted-div {display: flex;margin-top: 40px;margin-bottom: 40px;justify-content: space-between;flex-flow: wrap;gap: 10px;}
.posted-link {line-height: 26px;font-size: 14px;}
.date-item {padding-left: 30px;list-style: none; background-image: url('../image/blog-calender.png');background-position: 0% 50%;background-size: 21px;background-repeat: no-repeat;font-size: 14px;line-height: 26px;}
.date-list {margin-bottom: 0px;}
.blog-1-img{width: 100%;}
.blog-1-img img{width: 100%;}
.w-container {
    margin-left: auto;
    margin-right: auto;
    max-width: 940px;
}

.carousel-indicators [data-bs-target] {
    position: relative;
    width: 60px;
    height: 6px;
    border: none;
    border-radius: 24px;
}
  
  .carousel-indicators [data-bs-target] li {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #7952b3;
    border-radius: inherit;
}
/* .favorite-modal .modal-content .carousel-control-prev, .favorite-modal .modal-content .carousel-control-next {top: 49%;bottom: 49%;display: initial;} */
.carousel-item {width: 100%;height: 100%;padding: 0px 115px 40px;}
.carousel-item img {width: 100%;height: 100%;object-fit: contain;}
.favorite-modal .modal-header{justify-content: end;border: 0px;position: absolute;right: 0;z-index: 9999;top: 0;}
.favorite-modal .modal-dialog{position: initial;}
.favorite-modal .modal-header .modal-close-btn:focus{outline: unset;}
.modal-close-btn{background: unset;border: unset;cursor: pointer;}
.modal-close-btn span {display: block;font-size: 35px;color: #fff;color: #fff;opacity: 0.5;}
.modal-close-btn span:hover {opacity: 1;}
.carousel-indicators li{width: 10px;height: 10px;border-top: 0px;border-bottom: 0px;border-radius: 10px;}
.case-web-section-contain .carousel-item {padding: 0px 20px;}
.case-web-section-contain .carousel-control-prev{left: -40px;}
.case-web-section-contain .carousel-control-next{right: -40px;}
.case-web-section-contain .carousel-indicators{bottom: -40px;}

.mobile-app-case-section{margin-top: 70px;}
.mobile-app-case-description-center{align-items: center;}
.mobile-app-description-img-section{background: #CCE9F5;border-radius: 30px;width: 100%;padding: 70px 0px 30px;}
.modal-content {background-color: unset !important;border: unset !important; position: initial;}
/* .mobile-app-description-img-section .mobile-app-img-carousel {} */
.mobile-app-description-img-section .mobile-app-img-carousel .owl-item{transform: scale(0.9);}
.mobile-app-description-img-section .mobile-app-img-carousel .owl-item.active.center{transform: scale(1);}
.mobile-app-description-img-section .mobile-app-img-carousel .owl-dots{outline: unset;position: absolute;top: -5%;left: 50%;transform: translate(-50%, -50%);width: 100%;}
.mobile-app-description-img-section .mobile-app-img-carousel .owl-dots .owl-dot span{width: 65px;height: 2px;margin: 0px 7px;background: #E6F2FF;}
.mobile-app-description-img-section .mobile-app-img-carousel .owl-dots .owl-dot.active span{background: #FFFFFF;}
.mobile-app-description-img-section .mobile-app-img-carousel button:focus{outline: 0px !important;}
.mobile-app-description-img-section .web-app-development-carousel .owl-dots{top: -12% !important;} 

.mobile-app-case-section .mobile-app-case-carousel .owl-nav button.owl-prev{position: absolute;left: -20px;top: 50%;transform: translateY(-50%);outline: unset;color: #D4D4D4;}
.mobile-app-case-section .mobile-app-case-carousel .owl-nav button.owl-next{position: absolute;right: -20px;top: 50%;transform: translateY(-50%);outline: unset;color: #D4D4D4;}
.mobile-app-case-section .mobile-app-case-carousel .owl-nav button:hover{background: unset;color: #6AC5EB;}
.mobile-app-case-section .mobile-app-case-carousel .owl-nav button i:hover{color: #6AC5EB;}
.mobile-app-case-section .mobile-app-case-carousel .owl-nav button i{color: #D4D4D4;font-size: 35px;}

.mobile-app-description-img-section .mobile-app-img-carousel .owl-nav button.owl-prev{position: absolute;left: -40px;top: 50%;transform: translate(-50%, -50%);background: rgba(125, 125, 125, 0.4);border-radius: 5px;width: 30px;height: 30px;}
.mobile-app-description-img-section .mobile-app-img-carousel .owl-nav button i{color: #fff;}
.mobile-app-description-img-section .mobile-app-img-carousel .owl-nav button.owl-next{position: absolute;right: -70px;top: 50%;transform: translate(-50%, -50%);background: rgba(125, 125, 125, 0.4);border-radius: 5px;width: 30px;height: 30px;}
.mobile-app-description-img-section .mobile-app-img-carousel .owl-nav button i{color: #fff;}
.mobile-app-case-description-data{margin-left: 0px;}
.mobile-app-case-description-data p{color: #fff;line-height: 30px;text-align: justify; font-size: 18px;font-weight: 400;width: 100%;}
.mobile-app-description-btn{display: flex;align-items: center;gap: 15px;justify-content: center;}
.mobile-app-description-btn a img{width: 50px;}
.mobile-app-case-description-data p:nth-child(2){text-align: center;}
.mobile-app-description-btn .mobile-app-description-link{
    -webkit-animation: mobile-app-description-link 1s linear 0s infinite alternate;
    -moz-animation: mobile-app-description-link 1s linear 0s infinite alternate;
    -ms-animation: mobile-app-description-link 1s linear 0s infinite alternate;
    -o-animation: mobile-app-description-link 1s linear 0s infinite alternate;
    animation: mobile-app-description-link 1s linear 0s infinite alternate;} 
    
    @keyframes mobile-app-description-link {
        0% {
          -moz-transform: scale(1);
          -o-transform: scale(1);
          -ms-transform: scale(1);
          -webkit-transform: scale(1);
          transform: scale(1);
        }
        100% {
          -moz-transform: scale(1.2);
          -o-transform: scale(1.2);
          -ms-transform: scale(1.2);
          -webkit-transform: scale(1.2);
          transform: scale(1.2);
        }
    } 
   
    /* .mobile-app-case-img{width: 100%;height: 600px;}
    .mobile-app-case-img img{width: 100%;
        height: 100%;
        object-fit: contain;} */
   
    @media screen and (max-width: 1600px){
        .carousel-item{padding: 0px 120px 40px;}
    }
    @media screen and (min-width: 1440px){
        .bold-text {max-width: 87%;font-size: 57px;line-height: 82px;}.header-container{max-width: 1323px;margin: auto;}
    }
    
    @media screen and (max-width: 1199px){
        .mobile-app-case-description-data p{font-size: 16px;}
        .carousel-item{padding: 0px 50px 40px;}
        .case-web-section-contain .carousel-item{padding: 0px 5px;}
    }
    @media screen and (max-width: 991px) {
        .bold-text {font-size: 31px;line-height: 50px;}
        .blog-section {margin-top: 65px;}
        .table-of-contant {font-size: 20px;line-height: 20px;}
        .accordian-icon {width: 30px;padding: 2px 4px 4px;}
        .table-contant-h2 {font-size: 14px;line-height: 23px;}
        .table-same-link {font-size: 14px;line-height: 25px;}
        .date-item {background-position: 0% 50%;background-size: 19px;}
        .mobile-app-case-description-data{margin-left: 0px;margin-top: 0px;margin-bottom: 50px;}
        .carousel-item {padding: 0px 110px 50px;}
        .case-web-section-contain .carousel-item{padding: 0px 20px 50px;}
        .case-web-section-contain .carousel-indicators{bottom: 0;}
        .blog-section-data .owl-carousel .owl-nav button i, .mobile-app-case-section .mobile-app-case-carousel .owl-nav button i{font-size: 25px;}
        .favorite-modal .modal-dialog{display: block;}
    }
      
    @media screen and (max-width: 767px) {
        .bold-text {font-size: 32px;line-height: 45px;}
        .blog-section {margin-top: 55px;}
        .table-of-contant {font-size: 18px;}
        .table-contant-h2 {font-size: 13px;line-height: 17px;}
        .table-same-link {font-size: 12px;line-height: 22px;}
        .h2-heading {line-height: 28px;}
        .block-posted-div {font-size: 12px;}
        .date-item {background-position: 0% 50%;background-size: 19px;font-size: 14px;}
        .list.table-link-list{padding-left: 40px;}
        .mobile-app-description-img-section .mobile-app-img-carousel .owl-nav button.owl-next{right: -50px;}
        .mobile-app-description-img-section .mobile-app-img-carousel .owl-nav button.owl-prev{left: -20px;}
        .blog-section-data .owl-carousel .owl-nav .owl-prev, .mobile-app-case-section .mobile-app-case-carousel .owl-nav button.owl-prev{left: -10px;}
        .blog-section-data .owl-carousel .owl-nav .owl-next, .mobile-app-case-section .mobile-app-case-carousel .owl-nav button.owl-next{right: -10px;}
    }
      
    @media screen and (max-width: 479px) {
        .bold-text {font-size: 25px;line-height: 35px;}
        .blog-section {margin-top: 40px;margin-bottom: 20px;}
        .blog-contant-main-div {padding-right: 15px;padding-left: 15px;}
        .accordian-heading {padding: 5px 10px;}
        .table-of-contant {font-size: 16px;}
        .accordian-icon {width: 26px;border-style: none;border-width: 0px;border-color: rgba(106, 197, 235, 0);background-color:#e4eff5;}
        .date-item {padding-left: 24px;background-position: 0% 50%;background-size: 16px;font-size: 14px;}
        .accordian-contant-div {padding: 5px 15px;}
        .table-contant-h2 {display: flex;}
        .list.table-link-list {padding-left: 25px;}
        .table-same-link {display: flex;align-items: flex-start;line-height: 20px;}
        .contant-text.text-padding {padding-bottom: 15px;}
        .h2-heading {margin-bottom: 10px;font-size: 18px;}
        .h4-heading {margin-top: 7px;margin-bottom: 7px;}
        .image-div {margin-top: 10px;margin-bottom: 10px;}
        .bold-text-3 {font-size: 18px;}
        .posted-link {font-size: 14px;}
        .block-posted-div{margin-top: 30px;margin-bottom: 30px;}
        .mobile-app-case-description-data p{font-size: 14px;}
        .mobile-app-description-img-section .mobile-app-img-carousel .owl-dots{top: -12%;}
        .mobile-app-description-img-section .mobile-app-img-carousel .owl-dots .owl-dot span{width: 30px;}
        .blog-section-data .owl-carousel .owl-nav button i{font-size: 22px;}
        .carousel-item {padding: 0px 80px 50px;}
    }
    @media screen and (max-width: 425px){
        .carousel-item {padding: 0px 70px 50px;}
        .case-web-section-contain .carousel-item {padding: 0px 0px 50px;}
    }
    @media screen and (max-width: 375px){
        .carousel-item {padding: 0px 40px 50px;}
    }