@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&family=Montserrat:ital,wght@0,100..900;1,100..900&family=PT+Sans:ital,wght@0,400;0,700;1,400;1,700&family=Sora:wght@100..800&display=swap');

*{
    margin: 0;
    padding: 0;
}
:root{
    --primary-color: #0060D7;
    --dark-primary-color: #3A84DF;
    --secondary-colr: #19539A;
    --heading2-color: #F0F7FF;
    --text1-color: #CACAFF;
    --text2-color: #202020;
    --text3-color: #1C1818;
    --para-color: #C8C8C8;
    --small-heading: #575757;
    --text4-color: #A8A5E0;
    --black: #000;
    --background-color: #060608;
    --white-color: #fff;
    --border-color: #;
    --shadow-color: #;
}
::-webkit-scrollbar {
    width: 12px;
}
::-webkit-scrollbar-track {
    background: #cacdd1;
}
::-webkit-scrollbar-thumb {
    height: 10%;
    background-color: #969696;
}
html {
    scroll-behavior: smooth;
}
li{
    list-style: none;
}
a{
    text-decoration: none;
}
.container{
    width: 100%;
    max-width: 1200px;
    padding: 15px 15px;
    overflow: hidden;
    margin: 0 auto;
}
body{
    background-color: var(--white-color);
    font-family: "PT Sans", sans-serif;
    font-family: "Montserrat", sans-serif;
    font-family: "Manrope", sans-serif;
    font-family: "Sora", sans-serif;
}
/* header_start */
.responsive-bar{
    display: none;
}
.header{
    width: 100%;
    position: sticky;
    top: 0;
    left: 0;
    box-sizing: border-box;
    transition: 1s;
    background-color: var(--white-color);
    z-index: 1000;
}
nav{
    padding: 10px 0;
}
nav .logo{
    width: 50%;
}
.logo_img{
    max-width: 25%;
}
.logo_img img{
    width: 100%;
    transition: .5s;
}
nav.black .logo img{
    height: 60px;
}
nav > ul{
    width: 62%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
    margin-right: 0;
    padding: 0;
}
nav li{
    cursor: pointer;
}
nav li a:hover, li .active{
    background: #A606D1;
    background: linear-gradient(to right, #A606D1 0%, #E41D31 50%, #FF9000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
nav li a, .contact_btn a{
    font-size: 14px;
    font-family: "PT Sans", sans-serif;
    font-weight: 700;
    color: var(--text2-color);
    letter-spacing: 1px;
    transition: .5s;   
}
.button span{
    font-size: 14px;
    font-weight: 800;
}
.menu{
    top: 24px;
    right: 5%;
}
.responsive_btn, .responsive_bar, .bar_btn{
    width: 26px;
    height: 3px;
    background-color: var(--text2-color);
    margin: 5px 0;
    transition: 0.4s;
}
.change .responsive_btn {
    transform: translate(0, 8px) rotate(-45deg);
}
.change .responsive_bar {
    opacity: 0;
}
.change .bar_btn {
    transform: translate(0, -8px) rotate(45deg);
}
a:hover {
    text-decoration: none;
}
.button{
    background: linear-gradient(45deg, #a606d1, #e41d31, #ff9000);
    animation: GradientBackground 15s ease-in-out infinite;
    position: relative;
    outline: none;
    border: none;
    border-radius: 50px;
    padding: 10px 20px;
    z-index: 10;
    display: flex;

}
.button::before{
    content: '';
    position: absolute;
    height: 91%;
    width: 97%;
    border-width: 2px;
    inset: 0;
    margin: auto;
    background: #fff;
    border-radius: 50px;
    z-index: -1;
}
.button span{
    font-size: 14px;
    letter-spacing: 1px;
    font-family: "PT Sans", sans-serif;
    font-weight: 700;
    background: linear-gradient(45deg, #a606d1, #e41d31, #ff9000);
    background-size: 1000% 1000%;
    animation: GradientBackground 15s ease-in-out infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
/* header_end */

/* banner_start */
.banner {
    width: 100%;
    height: 100%; 
}
.arrow a{
    animation: drop-in 1.5s ease 200ms;
}
@keyframes drop-in {
    from {
     opacity: 0;
     transform: translateY(-300px);
    }
    to {
     opacity: 1;
     transform: translate(0px);
    }
}
.slider-banner {
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	position: relative;
	height: 94vh;
	width: 100%;
}

.slider-banner h1 {
	color: #fff;
	font-size: 100px;
	letter-spacing: 5px;
	position: relative;
	z-index: 100;
	text-align: center;
}

.overlay-banner{
    background-color: #000;
    opacity: 0.2;
    position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 0;
}

.circle-banner{
    width: 110vh;
    height: 110vh;
    position: relative;
    border: 4vw solid #45459f57;
    border-radius: 50%;
    margin: -65px auto 0;
}

.slide-image:nth-child(2) .circle-banner{
    border-color: #a8e9ff1f;
}

.circle-inside{
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: #030d2dad;
    border-radius: 50%;
    padding: 15% 1vw;
}

.circle-banner:nth-child(2) .circle-inside{
    background-color: #01121894;
    padding: 17% 1.5vw;
}

.banner-content, .transfor-business{
    max-width: 11em;
    text-align: center;
    margin: 0 auto;
    border: 1px solid #FF7685;
    padding: 10px 22px;
}

.transfor-business{
    max-width: 13.95em;
}

.banner-content .fa-award, .transfor-business .fa-award{
    color: #0097E3;
}

.banner-content span, .transfor-business span{
    font-size: 15px;
    letter-spacing: 0.4px;
    font-family: "PT Sans", sans-serif;
    font-weight: 700;
    padding-left: 8px;
    color: #0097E3;
}

.circle-content h2{
    font-size: 48px;
    line-height: 58px;
    font-family: "PT Sans", sans-serif;
    font-weight: 700;
    color: #f1f3ff;
    margin-top: 20px;
    padding: 0 24px;
}

.circle-content h2:nth-child(2){
    padding: 0 32px;
}

.circle-content p, .circle-content .mobile-para{
    display: block;
    font-size: 18px;
    line-height: 28px;
    font-family: "PT Sans", sans-serif;
    font-weight: 400;
    color: #989aa5;
    padding: 0 15px 24px;
}

.circle-content .mobile-para{
    display: none;
}

.circle-banner:nth-child(2) p{
    width: 90%;
    margin: 0 auto;
}

.circle-banner .circle-content a{
    font-size: 17px;
    font-family: "PT Sans", sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--white-color);
    background: linear-gradient(to right, #A606D1 10%, #E41D31 60%, #FF9000 100%);
    padding: 13px 0 13px 30px;
    border-radius: 36px;
    z-index: 1;
}

.circle-content a span{
    width: 56px;
    height: 56px;
    display: inline-block;
    border-radius: 50%;
    background-color: #fff;
    color: #000;
    padding: 17px 20px;
}

.circle-content{
    text-align: center;
}

.circle-content .fa-arrow-right{
    font-size: 20px;
}

.slide-image {
    background: url(../images/bg-1.png) no-repeat center;
	background-size: cover;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	height: auto;
	width: 100%;
    transition: 1s;
}

.slide-image.active {
	animation: grow 4s linear forwards;
	opacity: 1;
}

.controls-container {
	position: absolute;
	top: 50%;
	right: 10px;
	display: flex;
	flex-direction: column;
	transform: translateY(-50%);
	z-index: 2;
}

.control {
	background-color: #fff;
	cursor: pointer;
	opacity: 0.5;
	margin: 6px;
	height: 40px;
	width: 5px;
	transition: opacity 0.3s, background-color 0.3s, transform 0.3s;
}

.control.active, .control:hover {
	background-color: #fff;
	opacity: 1;
	transform: scale(1.2);
}
/* banner_end */

/* client_start */
.client{
    background-color: #fff;
    padding: 36px 0;
}
.client_top{
    padding-bottom: 25px;
}
.client_top h2{
    font-size: 22px;
    font-family: "PT Sans", sans-serif;
    font-weight: 700;
    color: var(--text2-color);
}

.client_top h2 span{
    color: #3A84DF;
}

.uk-slider-container-offset{
    padding-top: 36px;
}


.uk-dotnav>*>*{
    width: 11px;
    height: 11px;
    border-color: #fff;
}

.uk-dotnav>.uk-active>*, .uk-dotnav>*>:hover{
    background-color: #fff;
}

.image-slider{
    width: 100%;
    display: grid;
    place-items: center;
    position: relative;
    height: 160px;
    margin: auto;
    overflow: hidden;
    margin-bottom: 36px;
}
.image-track{
    display: flex;
    width: calc(350px * 15);
    animation: scroll 10s linear infinite;
}

.image-track:hover{
    animation-play-state: paused;
}

.client_top .line_img{
    max-width: 100px;
    margin-top: -20px;
}

.slides{
    width: 207px;
    height: 57px;
    display: flex;
    align-items: center;
    padding: 15px 40px;
    perspective: 100px;
}
.slides img{
    width: 100%;
    transition: 0.4s;
}



.journey-content .accoPOS {
    padding: 5% 0;
    font-size: 16px !important;
}
.uk-card-body {
    padding: 20px 30px 10px;
}
@keyframes scroll{
    0%{
        transform: translateX(0);
    }
    100%{
        transform: translateX(calc(-200px*5));
    }
}
.slides img:hover{
    transform: translateZ(20px);
}
.brand-1{
    width: 250px;
}
.brand-3{
    width: 300px;
}
/* client_end */

/* story_start */
.story{
    background-color: #090d18;
}
.story_top{
    width: 64%;
    padding-bottom: 80px;
    margin: 0 auto;
}
.story_top h2{
    font-size: 50px;
    line-height: 70px;
    font-family: "PT Sans", sans-serif;
    font-weight: 400;
    color: var(--heading2-color);
    padding-top: 60px;
}
.story_top h2:nth-child(1){
    display: block;
}
.story_top h2:nth-child(2){
    display: none;
}
.story_top h3{
    font-size: 30px;
}
.story_content h4{
    font-size: 30px;
    font-family: "PT Sans", sans-serif;
    font-weight: 700;
    color: var(--heading2-color);
    margin-top: 0;
}
.story_content h4 span{
    color: var(--dark-primary-color);
}
.story_content p{
    width: 100%;
    font-size: 18px;
    line-height: 30px;
    font-family: "PT Sans", sans-serif;
    font-weight: 400;
    color: #8b96b5;
    padding-bottom: 24px;
}
.story_content .line_img{
    max-width: 92px;
    margin-top: -1px;
}
.about_img {
    width: 480px;
    margin-left: 0;
}
img.about-image {
    width: 100%;
}
.about-icons{
    width: 92%;
    grid-template-columns: repeat(4, 1fr);
    margin-left: -3rem;
    overflow: hidden;
}
.about-details{
    background-image: linear-gradient(black 33%, rgba(75, 75, 75, 1) 0%);
    background-position: right;
    background-size: 1px 8px;
    background-repeat: repeat-y;
}
.about-details:nth-child(4){
    background-image: none;
}
.about-details h2{
    font-size: 34px;
    font-family: "Montserrat", sans-serif;
    font-weight: 300;
    color: #0097e3;
    margin: 0;
}
.about-details img{
    max-width: 32px;
}
.about-details h5{
    font-size: 14px;
    font-family: "PT Sans", sans-serif;
    font-weight: 400;
    letter-spacing: 1.5px;
    color: #e6ecff;
    padding-top: 2px;
}
.about-details:nth-child(1) h5{
    margin-top: 6px;
    margin-bottom: 0;
}
.uk-grid{
    margin-left: 0;
}
.uk-grid>*{
    padding-left: 28px;
}
/* story_end */

/* journey_start */
.journey{
    background-color: #090d18;
    padding-top: 160px;
}
.journey_top h2{
    font-size: 36px;
    font-family: "PT Sans", sans-serif;
    font-weight: 700;
    color: var(--heading2-color);
}
.journey_top h2 span{
    color: var(--dark-primary-color);
}
.journey_top .line_img{
    width: 73px;
    height: 26px;
}
.uk-card.uk-card-default{
    background-color: #1b1f2a;
    height: 400px;
}
@media only screen and (min-width: 410px) and (max-width: 500px){
    .uk-card.uk-card-default{
        height: 300px;
    }
}
.uk-child-width-1-2\@s>* {
    width: 33.333333%;
}

.uk-card.uk-card-default:nth-child(4) .uk-card-body {
    padding: 16px 31px 10px;
}
.uk-slider-items {
    padding-top: 32px;
}
.uk-width-3-4 {
    width: 99%;
}
.uk-card-media-top h2{
    font-size: 50px;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    padding-top: 43px;
}
.uk-card-media-top .started{
    color: #7EDB4E;
}
.uk-card-media-top .oneYear{
    color: #7EDB4E;
}
.uk-card-media-top .journey-year{
    color: #FD66C3;
}
.uk-card-media-top .current-year{
    color: #FF6F61;
}
.uk-card-media-top .started{
    color: #55A0FF;
}
.uk-card-media-top .accopack{
    color: #A8DADC;
}
.uk-card-media-top .first-android{
    color: #E63946;
}
.uk-card-media-top .call-management{
    color: #FC9E23;
}
.journey-content .started-company{
    color: #00FF85;
}
.uk-card-media-top .accoPOS-heading{
    color: #55A0FF;
}
.uk-card-media-top .web-app{
    color: #7789FF;
}
.uk-card-media-top .website{
    color: #CAA81D;
}
.uk-card-media-top .cum-inventory{
    color: #7EDB4E;
}
.uk-card-media-top .started::after, .uk-card-media-top .oneYear::after, .uk-card-media-top .journey-year::after, .uk-card-media-top .current-year::after, 
.uk-card-media-top .accopack::after, .uk-card-media-top .first-android::after, .uk-card-media-top .call-management::after,.uk-card-media-top .accoPOS-heading::after,
.uk-card-media-top .web-app::after, .uk-card-media-top .website::after, .uk-card-media-top .cum-inventory::after{
    content: "";
    width: 32px;
    height: 2px;
    background-color: #55A0FF;
    display: block;
    position: relative;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
}
.uk-card-media-top .oneYear::after{
    background-color: #7EDB4E;
}
.uk-card-media-top .journey-year::after{
    background-color: #FD66C3;
}
.uk-card-media-top .current-year::after{
    background-color: #FF6F61;
}
.uk-card-media-top .accopack::after{
    background-color: #A8DADC;
}
.uk-card-media-top .first-android::after{
    background-color: #E63946;
}
.uk-card-media-top .call-management::after{
    background-color: #FC9E23;
}
.uk-card-media-top .web-app::after{
    background-color: #7789FF;
}
.uk-card-media-top .website::after{
    background-color: #CAA81D;
}
.uk-card-media-top .cum-inventory::after{
    background-color: #7EDB4E;
}
.journey-content h4{
    font-size: 20px;
    font-family: "Sora", sans-serif;
    font-weight: 500;
    background: linear-gradient(170deg, #a606d1, #e41d31, #ff9000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.journey-content p{
    font-size: 17px !important;
    line-height: 27px;
    font-family: "Sora", sans-serif;
    font-weight: 200;
    color: #fbfbfb;
    font-family: "PT Sans", sans-serif !important;
    font-weight: 400 !important;
    padding: 27% 0;
}

.journey-content{
    font-size: 11px;
    line-height: 20px;
}
.journey-para{
    font-size: 18px !important;
    line-height: 24px;
    font-family: "PT Sans", sans-serif !important;
    font-weight: 200 !important;
    padding-bottom: 15px;
}
.journey-text:nth-child(1){
    display: block;
}
.application{
    /* border-bottom: 1px solid linear-gradient(125deg, #3f4659, #8796bf1a); */
    border-bottom: 1.5px solid #3f465957;
}
button#myBtn, button#btnText{
    display: none;
}
#more, #mores{
    display: none;
}
@media only screen and (max-width: 790px){
    .journey-text:nth-child(2){
        display: block;
        color: var(--white-color) !important;
    }
    button#myBtn, button#btnText {
        background-color: #ccc;
        color: black;
        padding: 6px 14px;
        cursor: pointer;
        margin: 0 auto 8px;
    }
}
.uk-card-body {
    padding: 20px 30px 10px;
}
.journey-content .event-management {
    padding: 5% 0;
}
.journey-content .application {
    padding: 10% 0 8%;
}
.journey-content .event-management {
    padding: 2% 0;
}
.journey-content .accoPOS {
    padding: 3% 0;
    font-size: 16px !important;
}
.accoPOS-para {
    padding: 4px 15px;
}
.journey-content .application {
    padding: 10% 0 8%;
}
.journey-content .accoPOS {
    padding: 5% 0 !important;
    font-size: 16px !important;
}
.journey-content .ecommerce {
    padding: 4% 0;
}
.journey-content .application {
    padding: 10% 0 6%;
}
.journey-content .application-para{
    padding: 12% 0;
}
.journey-content .started-company {
    font-size: 22px !important;
    padding: 16% 0 10%;
}
.journey-content .inventory-webapp {
    font-size: 17px !important;
    line-height: 34px;
    padding: 1% 0;
}
.card-frame{
    position: absolute;
    bottom: -20%;
    left: 24%;
}
/* journey_end */

/* whatWeDo_start */
.whatweDo{
    padding: 64px 0;
}
.whatWeDo-top h2{
    font-size: 40px;
    font-family: "PT Sans", sans-serif;
    font-weight: 700;
    color: var(--black);
}
.whatweDo h2 span{
    color: #3498db;
}
.whatWeDo-top{
    padding-bottom: 53px;
}
.whatWeDo-top p{
    width: 68%;
    font-size: 20px;
    line-height: 30px;
    font-family: "PT Sans", sans-serif;
    font-weight: 400;
    margin: 0 auto;
}
.line-img{
    width: 100px;
    height: auto;
    padding-bottom: 16px;
}
.whatWeDo-Card{
    width: 100%;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 10px;
    overflow: hidden;
}
.card-details{
    background-color: #E4E5E9;
    border: 6px solid #fff;
    box-shadow: -3px -2px 30px -10px rgba(0,0,0,0.57);
    -webkit-box-shadow: 0 0px 12px 0px rgba(160, 160, 201, 0.25);
    -moz-box-shadow: -3px -2px 30px -10px rgba(0,0,0,0.57);
    padding: 38px 16px;
}
.card-details .card-img{
    max-width: 175px;
    padding-bottom: 10px;
    margin: 0 auto;
}
.card-details:nth-child(2) .card-img{
    max-width: 180px;
}
.card-details:nth-child(3) .card-img{
    max-width: 186px;
}
.card-details:nth-child(4) .card-img{
    max-width: 210px;
    padding-bottom: 10px;
}
.card-details:nth-child(5) .card-img{
    max-width: 150px;
}
.card-details:nth-child(6) .card-img{
    max-width: 150px;
}
.card-details:nth-child(8){
    background: url(../images/card-bg.png) no-repeat center;
    background-size: cover;
}
.card-details:nth-child(8) .card-img{
    max-width: 70px;
    padding-top: 140px;
    padding-bottom: 16px;
}
.card-details:nth-child(8) p{
    position: relative;
}
.card-details:nth-child(8) p::after{
    content: "";
    display: block;
    width: 52px;
    height: 3px;
    position: absolute;
    bottom: 0;
    left: 43%;
    transform: translateX(50%);
    background-color: #EF0000;
}
.card-details h2{
    font-size: 20px;
    line-height: 26px;
    font-family: "PT Sans", sans-serif;
    font-weight: 700;
    padding-bottom: 10px;
}
.card-details:nth-child(8) h2{
    font-size: 40px;
    padding-bottom: 14px;
}
.card-details p{
    font-size: 16px;
    line-height: 26px;
    font-family: "PT Sans", sans-serif;
    font-weight: 400;
    padding-bottom: 20px;
}
.card-details:nth-child(1) p{
    padding-bottom: 46px;
}
.card-details:nth-child(3) p{
    padding-bottom: 23px;
}
.card-details:nth-child(4) p{
    padding-bottom: 45px;
}
.card-details:nth-child(5) p{
    padding-bottom: 18px;
}
.card-details:nth-child(6) p{
    padding-bottom: 65px;
}
.card-details:nth-child(8) p{
    font-size: 24px;
}
.card-btn{
    max-width: 42%;
    background: linear-gradient(45deg, #a606d1, #e41d31, #ff9000);
    animation: GradientBackground 15s ease-in-out infinite;
    position: relative;
    outline: none;
    border: none;
    border-radius: 50px;
    padding: 12px;
    z-index: 10;
    display: flex;
    flex: 1;
}
.card-btn::before {
    content: '';
    position: absolute;
    height: 91%;
    width: 97%;
    border-width: 2px;
    cursor: pointer;
    inset: 0;
    margin: auto;
    background: #E4E5E9;
    border-radius: 50px;
    z-index: -1;
}
.card-btn a {
    width: 100%;
    font-size: 14px;
    letter-spacing: 1px;
    font-family: "PT Sans", sans-serif;
    font-weight: 700;
    background: linear-gradient(45deg, #a606d1, #e41d31, #ff9000);
    background-size: 1000% 1000%;
    animation: GradientBackground 15s ease-in-out infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
@keyframes GradientBackground {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
.card-details.last-grid {
    width: 203%;
}
.card-details:nth-child(2) p{
    padding-bottom: 21px;
}
/* Modal Styles */
.custom-modal, .account-billing, .expense-track, .design-development, .app-development, .hr-management, .logistics{
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 100000;
}
.custom-modal.custom-open, .account-billing.custom-open, .expense-track.custom-open, .design-development.custom-open, 
.app-development.custom-open, .hr-management.custom-open, .logistics.custom-open{
    display: flex;
}
.modal-content {
    width: 610px;
    height: 96vh;
    position: relative;
    background: white;
    overflow-y: scroll;
    overflow-x: hidden;
    border-radius: 0;
    padding: 0 18px 20px;
    margin-top: 16px;
}
.custom-modal::before, .account-billing::before, .expense-track::before, .design-development::before, 
.app-development::before, .hr-management::before, .logistics::before{
    content: "";
    width: 6px;
    height: 300px;
    display: block;
    position: absolute;
    bottom: 24%;
    left: 26%;
    background: linear-gradient(#A606D1, #E41D31, #FF9000);
    z-index: 1;
}
.custom-modal::after, .account-billing::after, .expense-track::after, .design-development::after, 
.app-development::after, .hr-management::after, .logistics::after{
    content: "";
    width: 9px;
    height: 300px;
    display: none;
    position: absolute;
    top: 8%;
    right: 26.2%;
    transform: translateX(50%);
    background: linear-gradient(#FF9000, #E41D31, #A606D1);
    z-index: 1;
}
.popUp-bg{
    width: 70vw;
    position: relative;
    bottom: 0;
    left: -30%;
    margin-bottom: -200px;
}
.logistics-bg, .hrManagement-bg{
    width: 15vw;
    bottom: -20px;
    left: 35%;
}
.logistics-bg{
    bottom: 0;
    left: 32%;
}
.hrManagement-bg{
    bottom: 0;
}
.bg-image{
    width: 100%;
}
body.modal-open {
    overflow: hidden;
}
button.close-btn {
    width: 28px;
    background: none;
    border: none;
    margin: 18px auto;
    left: 66.8%;
    top: 1%;
    transform: translateX(50%);
    position: fixed;
}
.close-button{
	position: fixed;
	transition: transform .25s, opacity .25s;
	opacity: .7;
	cursor: pointer;
	font-size: 4em;
	font-family: serif;
	line-height: 1;
}
.close-button::before{
	content: "\d7";
}
.close-button:hover{
	opacity: 1;
	transform: rotate(90deg);
}
.custom-modal a, .account-billing a, .expense-track a, .design-development a, 
.app-development a, .hr-management a, .logistics a{
    max-width: 12%;
    font-size: 13px;
    letter-spacing: 2px;
    text-decoration: none;
    top: 0.5%;
    left: 0;
    right: 0;
    font-family: "PT Sans", sans-serif;
    font-weight: 400;
    position: absolute;
    background: linear-gradient(#090d18, #090d18) padding-box, linear-gradient(to right, #A606D1, #E41D31, #FF9000) border-box;
    border: 2px solid transparent;
    color: #f5f5f5;
    z-index: 1;
    padding: 10px 20px 12px;
    margin: 0 auto;
}
.modal-content h2{
    font-size: 26px;
    font-family: "PT Sans", sans-serif;
    font-weight: 700;
    margin-top: 50px !important;
}
.modal-content .popUp-line{
    width: 130px;
    height: auto;
    margin: 0 auto;
}
.popUp-details{
    padding-top: 30px;
}
.modal-para:nth-child(5) .popUp-details{
    margin-bottom: -20px;
}
.product-image{
    width: 20px;
    height: auto;
    margin-right: 8px;
}
.product-image.icon-1{
    width: 23px;
}
.product-image.icon-2, .product-image.icon-3{
    width: 21px;
}
.product-image.icon-5{
    width: 22px;
}
.product-image.icon-6, .product-image.icon-7{
    width: 23px;
}
.product-image.icon-9{
    width: 24px;
}
.product-image.icon-10, .product-image.icon-11{
    width: 24px;
}
.product-image.icon-13{
    width: 22px;
}
.product-image.icon-14{
    width: 21px;
}
.product-image.icon-15{
    width: 29px;
}
.product-image.icon-16{
    width: 26px;
}
.product-image.icon-25, .product-image.icon-26, .product-image.icon-28{
    width: 24px;
}
.popUp-content, .accountBilling-content, .expenseTrack-content, .webDevelopment-content, 
.appDevelopment-content, .hrManagement-content, .logistics-content{
    padding-bottom: 14px;
}
.popUp-content h4, .accountBilling-content h4, .expenseTrack-content h4, .webDevelopment-content h4, 
.appDevelopment-content h4, .hrManagement-content h4, .logistics-content h4{
    font-size: 17px;
    font-family: "PT Sans", sans-serif;
    font-weight: 700;
    color: #2323B6;
    padding-left: 0px;
}
.accountBilling-content h4{
    color: #078232;
}
.expenseTrack-content h4{
    color: #FF7A00;
}
.webDevelopment-content h4{
    color: #FE0074;
}
.appDevelopment-content h4{
    color: #005FA0;
}
.hrManagement-content h4{
    color: #FF000A;
}
.logistics-content h4{
    color: #5E01A0;
}
.popUp-para li{
    font-size: 1.1em;
    line-height: 23px;
    font-family: "PT Sans", sans-serif;
    font-weight: 400;
    list-style: disc;
    color: #0F0C02;
}
.inventory-list{
    padding-bottom: 0;
}
.accountBilling-list{
    padding-bottom: 8px;
}
.popUp-para ul{
    padding-left: 48px;
    margin-bottom: 4px;
}
.popUp-list{
    width: 88%;
    padding-bottom: 16px;
}
/* whatWeDo_end */

/* testimonial_start */
.testimonial{
    background-color: #F2F2F2;
    padding-bottom: 100px;
    margin-top: 90px;
}
.testimonial_top h2{
    font-size: 40px;
    line-height: 30px;
    font-weight: 400;
    font-family: "PT Sans", sans-serif;
    font-weight: 600;
    color: var(--text2-color);
    padding-top: 60px;
    padding-bottom: 6px;
}
.testimonial_top h2 span{
    color: var(--primary-color);
}
.testimonial_top .line_img {
    max-width: 10%;
}
.uk-light .uk-slidenav,  .uk-light .uk-slidenav:hover{
    color: rgba(198, 67, 67, 0.7);
}
.uk-panel{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.testBrand1{
    display: block;
    max-width: 200px;
    margin-left: -26px;
}
.testBrand2{
    display: none;
}
.testimonial-content{
    width: 60%;
}
.testimonial-image{
    width: 63%;
    margin: 0 auto;
}
.testimonial-content h2{
    max-width: 90%;
    font-size: 56px;
    line-height: 58px;
    font-family: "PT Sans", sans-serif;
    font-weight: 400;
    color: var(--black);
    margin-top: -20px;
    padding-bottom: 10px;
}
.testimonial-content p{
    max-width: 84%;
    font-size: 20px;
    line-height: 30px;
    font-family: "PT Sans", sans-serif;
    font-weight: 400;
    color: #404040;
}
.testimonial-content p::after{
    content: "";
    width: 69px;
    height: 5px;
    display: block;
    position: relative;
    top: 34px;
    background-color: #EF0000;
}
.testimonial-para {
    display: block;
}
.mobile-testimonial{
    display: none;
}
.reviewers-detail{
    padding-top: 30px;
}
.reviewers-detail h4, .reviewers-detail h5{
    font-size: 24px;
    font-family: "PT Sans", sans-serif;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 1px;
}
.reviewers-detail h5{
    font-size: 16px;
    font-weight: 400;
}
.testimonial-img{
    max-width: 380px;
    height: auto;
}
/* testimonial_end */
/* form_start */
.form{
    width: 70%;
    padding: 120px 0 90px;
    margin: 0 auto;
}

.form_details{
    width: 45%;
}

:focus-visible {
    outline: none;
}

.form-container{
    padding: 25px 40px 10px 40px;
  }
  .form-container .form-heading{
    text-align: center;
    font-size: 41px;
    font-weight: 600;
    font-family: "PT Sans", sans-serif;
    background: -webkit-linear-gradient(right, #A606D1 0%, #E41D31 50%, #FF9000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .form-container form{
    padding: 30px 0 0 0;
  }
  .form-container form .form-row{
    width: 80%;
    display: flex;
    margin: 32px 0;
    justify-content: center;
    margin: 0 auto;
  }
  form .form-row .input-data{
    width: 100%;
    height: 40px;
    margin: 26px 20px;
    position: relative;
  }
  form .form-row .textarea{
    height: 70px;
  }
  .input-data input,
  .textarea textarea{
    display: block;
    width: 100%;
    height: 100%;
    border: none;
    font-size: 17px;
    border-bottom: 2px solid #19539abf;
  }
  .input-data input:focus ~ label, .textarea textarea:focus ~ label,
  .input-data input:valid ~ label, .textarea textarea:valid ~ label{
    transform: translateY(-20px);
    font-size: 14px;
    color: #3498db;
  }
  .textarea textarea{
    resize: none;
    padding-top: 10px;
  }
  .input-data label{
    position: absolute;
    pointer-events: none;
    bottom: 10px;
    font-size: 16px;
    transition: all 0.3s ease;
  }
  .textarea label{
    width: 100%;
    bottom: 40px;
    background: #fff;
  }
  .input-data .underline{
    position: absolute;
    bottom: 0;
    height: 2px;
    width: 100%;
  }
  .input-data .underline:before{
    position: absolute;
    content: "";
    height: 2px;
    width: 100%;
    background: #19539a;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
  }
  .input-data input:focus ~ .underline:before,
  .input-data input:valid ~ .underline:before,
  .textarea textarea:focus ~ .underline:before,
  .textarea textarea:valid ~ .underline:before{
    transform: scale(1);
  }
  .submit-btn .input-data{
    overflow: hidden;
    height: 45px!important;
    width: 25%!important;
  }
  .submit-btn .input-data{
    font-size: 18px;
    align-items: center;
    appearance: none;
    background: -webkit-linear-gradient(right, #A606D1 0%, #E41D31 50%, #FF9000 100%);
    border-radius: 4px;
    border-width: 0;
    box-sizing: border-box;
    cursor: pointer;
    display: inline-flex;
    font-family: "PT Sans", sans-serif;
    height: 48px;
    justify-content: center;
    line-height: 1;
    list-style: none;
    overflow: hidden;
    padding-left: 16px;
    padding-right: 16px;
    position: relative;
    text-align: left;
    text-decoration: none;
    transition: box-shadow .15s,transform .15s;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    white-space: nowrap;
    will-change: box-shadow,transform;
}

.submit-btn .input-data:focus {
  box-shadow: #D6D6E7 0 0 0 1.5px inset, rgba(45, 35, 66, 0.4) 0 2px 4px, rgba(45, 35, 66, 0.3) 0 7px 13px -3px, #D6D6E7 0 -3px 0 inset;
}

.submit-btn .input-data:hover {
  box-shadow: rgb(166 6 209 / 17%) 0 4px 8px, rgb(228 29 49 / 34%) 0 7px 13px -3px, #ff900059 0 2px 4px inset;
  transform: translateY(-2px);
}

.submit-btn .input-data active {
  box-shadow: #D6D6E7 0 3px 7px inset;
  transform: translateY(2px);
}
  .submit-btn .input-data:hover .inner{
    left: 0;
  }
  .submit-btn .input-data input{
    font-size: 17px;
    font-weight: 500;
    background: none;
    border: none;
    color: #fff;
    letter-spacing: 1px;
    cursor: pointer;
    position: relative;
    z-index: 2;
  }
  @media (max-width: 700px) {
    form {
        width: 100%;
        margin: 0 auto;
    }
    .form-container .text{
      font-size: 30px;
    }
    .form-container form{
      padding: 10px 0 0 0;
    }
    .form-container form .form-row{
      display: block;
      margin: 0 auto;
    }
    form .form-row .input-data{
      margin: 35px 0!important;
    }
    .form-container form .form-row {
        width: 100%;
    }
    .submit-btn .input-data{
      width: 48%!important;
    }
    .form-container {
        padding: 25px 20px 10px 20px;
    }
    .form-row.submit-btn {
        text-align: center;
    }
  }
.started-content{
    width: 100%;
}
.shuttle-img{
    width: 50px;
    height: 50px;
    margin-bottom: 6px;
}
.started-content h2, .started-content p, .started-content h4{
    font-size: 48px;
    font-family: "PT Sans", sans-serif;
    font-weight: 400;
    color: var(--black);
}
.started-content p{
    font-size: 18px;
    line-height: 26px;
    padding: 10px 0 5px 0;
    color: var(--black);
}
.started-content h4{
    font-size: 24px;
    background: #A606D1;
    background: linear-gradient(to right, #E41D31 36%, #A606D1 50%, #FF9000 67%);
    z-index: 1;
    display: block;
    position: sticky;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding-bottom: 35px;
}
.start-btn:link, .start-btn:visited, .home-button:link, .home-button:visited{
    text-transform: uppercase;
    text-decoration: none;
    padding: 15px 40px;
    border-radius: 100px;
    transition: all 0.2s;
    position: absolute;
}
.home-button:link, .home-button:visited{
    position: relative;
}
.start-btn:hover, .home-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.start-btn:active, .home-button:active {
    transform: translateY(-1px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}
.start-btn, .home-button{
    background: linear-gradient(to right, #A606D1 10%, #E41D31 60%, #FF9000 100%);
	color: #777;
}
.start-btn::after, .home-button::after {
    content: "";
    height: 100%;
    width: 100%;
    border-radius: 100px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: all 0.4s;
}
.btn-white::after {
    background: linear-gradient(to right, #A606D1 10%, #E41D31 60%, #FF9000 100%);
}
.start-btn:hover::after, .home-button::after {
    transform: scaleX(1.4) scaleY(1.6);
    opacity: 0;
}
.btn-animated {
    animation: moveInBottom 5s ease-out;
    animation-fill-mode: backwards;
}
@keyframes moveInBottom {
    0% {
        opacity: 0;
        transform: translateY(30px);
   }
    100% {
        opacity: 1;
        transform: translateY(0px);
   }
}
.started-content a{
    font-size: 15px;
    font-family: "PT Sans", sans-serif;
    font-weight: 600;
    letter-spacing: 1.4px;
    text-decoration: none;
    color: var(--white-color);
    background: linear-gradient(to right, #A606D1 10%, #E41D31 60%, #FF9000 100%);
    padding: 14px 30px;
    border-radius: 36px;
    z-index: 1;
}
/* .started-btn a:hover{
    box-shadow: 4.0px 8.0px 8.0px rgb(0 0 0 / 18%);
} */
.chain-img{
    width: 490px;
    height: 350px;
    margin: 0 auto;
    margin-right: -140px;
    margin-bottom: -194px;
    margin-top: -100px;
}
/* form_end */

/* footer_start */
footer{
    background: url("../images/footer-bg.svg") no-repeat center;
    background-size: cover;
}

.footer_logo{
    width: 36%;
    border-right: 1px dashed var(--small-heading);
}

.footer_content{
    width: 64%;
}

.footer_details:nth-child(1){
    padding-left: 2vw;
}

.footer_details:nth-child(1){
    border-right: 1px dashed var(--small-heading);
}

.footer_details:nth-child(2){
    width: 50%;
    padding-left: 40px;
}

.footer_img{
    width: 40%;
}

.footer_logo p{
    width: 94%;
    font-size: 16px;
    line-height: 26px;
    font-family: "PT Sans", sans-serif;
    font-weight: 500;
}

.linear-wipe {
    text-align: center;
    background: linear-gradient(to right, #A606D1 20%, #E41D31 40%, #FF9000 60%);
    background-size: 150% auto;
    color: #000;
    background-clip: text;
    text-fill-color: transparent;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 4s linear infinite;
  }

  @keyframes shine {
    to {
      background-position: 150% center;
    }
  }

footer h4{
    font-size: 22px;
    font-family: "PT Sans", sans-serif;
    font-weight: 500;
    color: var(--dark-primary-color);
}
.footer_details:nth-child(1) h4 {
    padding-left: 0;
}
footer h4::after{
    content: "";
    width: 32px;
    height: 2px;
    background-image: linear-gradient(to right top, #a606d1, #E41D31, #FF9000);
    display: block;
    position: relative;
    bottom: -8px;
}
footer a, footer p, footer i{
    color: var(--text4-color);
}
footer i{
    font-size: 22px;
}
footer li{
    list-style: disc;
    color: var(--text4-color);
}
footer li a{
    font-size: 18px;
    font-family: "PT Sans", sans-serif;
    font-weight: 400;
}
footer a:hover{
    color: var(--white-color);
}

.address_contact p, .address_contact a{
    font-size: 16px;
    line-height: 26px;
    font-family: "PT Sans", sans-serif;
    font-weight: 400;
}
.copyrights{
    padding: 20px 0;
    border-top: 0.2px solid #bababa1c;
}
.copyrights p{
    font-size: 14px;

    font-family: "PT Sans", sans-serif;
    font-weight: 400;
    color: #a1a1a1;
}
/* footer_end */

/* arrow_start */
.arrow a{
    position: fixed;
    background-color: #3a84df;
    bottom: 6%;
    right: 1.4%;
    padding: 10px 14px;
    cursor: pointer;
}
.arrow:hover a{
    background-color: #19539a;
}
.arrow i{
    font-size: 26px;
}

#whatsapp .whatsapp{
    font-size: 30px;
    font-family: "PT Sans", sans-serif;
    font-weight: 700;
    color: #fff;
    bottom: 70px;
    left: 16px;
    bottom: 6%;
    width: 50px;
    height: 50px;
    line-height: 50px;
    position: fixed;
    display: block;
    background-color: #25d366;
    text-align: center;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
    border-radius: 50px;
    border-right: none;
    z-index: 9999;
    transform: all .5s ease;
    position: fixed;
    animation: drop-in 1.5s ease 200ms;
}

#whatsapp .whatsapp::before{
    content: "";
    position: absolute;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    z-index: -1;
    left: 50%;
    top: 50%;
    display: block;
    transform: translateX(-50%) translateY(-50%);
    -webkit-animation: pulse-border 1500ms ease-out infinite;
    animation: pulse-border 1500ms ease-out infinite;
}

#whatsapp .whatsapp:focus{
    border: none;
    outline: none;
}

@keyframes pulse-border{
    0%{
        transform: translateX(-50%) translateY(-50%) translateZ(0)  scale(1);
        opacity: 1;
    }
    100%{
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}
/* arrow_end */

 /* form-details_start */
form{
    /* background-color: #090d18; */
    overflow: hidden;
}
.form-details{
    grid-template-columns: 80% 30%;
    overflow: hidden;
    margin-left: -5%;
}
.form-banner{
    width: 1000px;
    height: 590px;
    right: -10%;
    position: relative;
    overflow: hidden;
}
.form-banner img{
    animation: expand 1.5s ease-in-out backwards;
}
.form-para{
    width: 38%;
    text-align: left;
    height: auto;
    background-color: #fff;
    position: fixed;
    top: -59%;
    right: 27%;
    transform: translate(50%, 50%);
    box-shadow: 0 0 24px #c3c3c33b;
    border: 1px solid #D3D3D3;
    overflow: hidden;
    padding: 50px 0 70px;
}
.inner-details{
    width: 72%;
    overflow: hidden;
    margin: 0 auto;
}
.form-logo{
    width: 27%;
    padding: 11px 0 10px 0;
    margin: 0 auto;
    margin-left: 15%;
}
.formInner-bg{
    width: 200px;
    position: absolute;
    right: -22px;
    top: -2.84%;
}
.form-para h4{
    font-size: 32px;
    font-family: "Sora", sans-serif;
    font-weight: 700;
    padding-bottom: 6px;
    margin: 0;
    animation: slideUp 1.2s ease-in backwards 0.7s;
    height: auto;
    transform: translateY(0);
    overflow: hidden;
}
@keyframes slideUp {
    0% {
      transform: translateY(-40px);
    }
    100% {
      transform: translateY(0);
    }
  }
.form-para h5{
    font-size: 13px;
    /* line-height: 26px; */
    font-family: "Sora", sans-serif;
    font-weight: 400;
    padding-bottom: 20px;
    height: auto;
    animation: slideupPara 1.2s ease-in backwards 0.7s;
    transform: translateY(0);
    margin: 0;
}
@keyframes slideupPara {
    0% {
      transform: translateY(-80px);
    }
    100% {
      transform: translateY(0);
    }
  }
.form-para input, .form-para textarea{
    width: 350px;
    height: 40px;
    font-family: "Sora", sans-serif;
    font-weight: 400;
    background-color: #f8f8f8;
    border: 1px solid #e4e4e4;
    color: #000;
    border-radius: 60px;
    padding-left: 20px;
    margin-bottom: 16px;
}
.form-para textarea{
    height: 140px;
    border-radius: 16px;
    padding-top: 20px;
}
::placeholder{
    color: #c8c8c8;
}
.form-image{
    width: 100%;
    height: 100%;
    position: absolute;
}
form button{
    width: 100%;
    padding: 14px;
    margin: 0 auto;
    color: var(--white-color);
    background: linear-gradient(to right, #A606D1 10%, #E41D31 60%, #FF9000 100%);
    border-radius: 36px;
    border: 0;
    margin-top: 8px;
}
form button{
    font-size: 15px;
    font-family: "PT Sans", sans-serif;
    font-weight: 600;
    letter-spacing: 1.4px;
    color: #fff;
    text-decoration: none;
}
form button:hover{
    color: #fff;
}
@keyframes slideIn {
    0% {
      transform: translateX(-500px);
      top: 0%;
    }
    100% {
      transform: translateX(250px);
      top: 0%;
    }
  }
  @keyframes expand {
    0% {
      transform: translateX(-1400px);
    }
    100% {
      transform: translateX(0px);
    }
  }
/* form-details_end */

/* thankYou_start */
.thankyou{
    max-width: 80%;
    height: 40vh;
    text-align: center;
    margin: 10.8% auto;
}
.thankyou-image{
    width: 250px;
    height: auto;
}
.thankyou h2, .thankyou .mobile-heading{
    font-size: 36px;
    font-family: "Sora", sans-serif;
    font-weight: 600;
    color: #141414;
    padding-bottom: 10px;
} 

.thankyou .mobile-heading{
    display: none;
}
.thankyou h4{
    font-size: 18px;
    font-family: "Sora", sans-serif;
    font-weight: 400;
    color: #252525;
    padding-bottom: 40px;
}
.home-btn{
    width: 50%;
    margin: 20px auto 0;
}
.home-btn a{
    font-size: 15px;
    font-family: "PT Sans", sans-serif;
    font-weight: 600;
    letter-spacing: 1.4px;
    text-decoration: none;
    color: var(--white-color);
    background: linear-gradient(to right, #A606D1 0, #E41D31 35%, #FF9000 100%);
    padding: 12px 40px;
    border-radius: 36px;
}
/* thankYou_end */

