*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "Poppins", sans-serif;
}

:root{
	--primary-color: #039;
	--secondary-color: #093;
	--white: #fff;
	--black: #000;
}

img{
	max-width: 100%;
}

.fs-80 {
    font-size: calc(50px + (80 - 50) * ((100vw - 300px) / (1920 - 300)))
}

.fs-60 {
    font-size: calc(45px + (60 - 45) * ((100vw - 300px) / (1920 - 300)))
}

.fs-55 {
    font-size: calc(40px + (55 - 40) * ((100vw - 300px) / (1920 - 300)))
}

.fs-50 {
    font-size: calc(36px + (50 - 36) * ((100vw - 300px) / (1920 - 300)))
}
.fs-40 {
    font-size: calc(32px + (40 - 32) * ((100vw - 300px) / (1920 - 300)))
}
.fs-36 {
    font-size: calc(28px + (36 - 28) * ((100vw - 300px) / (1920 - 300)))
}

.fs-30 {
    font-size: calc(24px + (30 - 24) * ((100vw - 300px) / (1920 - 300)))
}

.fs-26 {
    font-size: calc(22px + (26 - 22) * ((100vw - 300px) / (1920 - 300)))
}

.fs-24 {
    font-size: calc(20px + (24 - 20) * ((100vw - 300px) / (1920 - 300)))
}

.fs-22 {
    font-size: calc(18px + (22 - 18) * ((100vw - 300px) / (1920 - 300)))
}

.fs-20 {
    font-size: calc(18px + (20 - 18) * ((100vw - 300px) / (1920 - 300)))
}

.fs-18 {
    font-size: calc(16px + (18 - 16) * ((100vw - 300px) / (1920 - 300)))
}

.fw-500{
	font-weight: 500;
}
.fw-600{
	font-weight: 600;
}
.fw-700{
	font-weight: 700;
}



.btns{
	color: var(--white);
	text-decoration: none;
	padding: 8px 30px;
	font-size: 18px;
	font-weight: 500;
	border-radius: 50px;
	margin-left: 20px;
	background-color: var(--primary-color);
	transition: 0.5s;
}
.btns:hover{
	background-color: var(--secondary-color);
	color: var(--white);
}

.top-section{
	position: relative;
	overflow: hidden;
	min-height: 80vh;
	background: url(../image/bg-shape/bg1.png);
	background-size: cover;
}

#bg {
	position: absolute !important;
    background: linear-gradient(134deg, #003399, #009933);
}

/* Navbar css */
.header{
	background-color: #fff;
	padding: 10px 0;
}
.logo{
	width: 250px;
}
.navbar-expand-lg .navbar-collapse{
	justify-content: end;
}
.nav-link.active{
	color: var(--primary-color) !important;
	font-size: 18px;
	font-weight: 500;
}
.nav-link{
	color: #000;
	margin: 0 10px;
	font-size: 18px;
	font-weight: 500;
}
.nav-link:hover{
	color: var(--primary-color);
}



/* Banner section  */

.banner{
	padding: 50px 0;
	color: var(--white);
}
.banner span{
	color: #0f5;
	font-weight: 600;
}
#bg {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
}

#bg canvas {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}


/* counter section  */
.counter {
    position: relative;
    padding: 0px 0 80px;
	margin-top: -30px;
}
.counter-div{
	background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 20px 45px 0 rgba(51, 77, 114, 0.15);
    padding: 40px 50px;
}
.counter .item {
    padding: 20px;
    transition: 0.5s;
	transform: translateY(-10px);
    box-shadow: 0 0 20px 5px #f5f5f5;
}
.counter .item:hover{
    transform: translateY(0px);
    box-shadow: 0 0 20px 5px #fff;
}
.counter .item p{
    margin: 0;
}
.counter .item i{
    font-size: 40px;
    color: var(--secondary-color);
}

.counter .number {
    color: var(--secondary-color);
    margin: 0;
}

/* about section  */
.about{
	position: relative;
	overflow: hidden;
	margin: auto;
	padding: 50px 0;
}
.about-text h2{
	margin-bottom: 25px;
}
.about-text p{
	text-align: justify;
}


.about-image {
	max-width: 500px;
	height: 350px;
	position: relative;
	cursor: pointer;
  }
  .about-image span {
	position: absolute;
	background: url(../image/about-image.png) no-repeat right/contain;
	inset: 0;
	transition: 0.6s ease-in-out;
  }
  .about-image span:nth-child(1) {
	clip-path: polygon(0 0, 50% 0, 50% 50%, 0 50%);
	transition-delay: 0;
  }
  .about-image span:nth-child(2) {
	clip-path: polygon(50% 0, 100% 0, 100% 50%, 50% 50%);
	transition-delay: 0.25s;
  }
  .about-image span:nth-child(3) {
	clip-path: polygon(0 50%, 50% 50%, 50% 100%, 0 100%);
	transition-delay: 0.5s;
  }
  .about-image span:nth-child(4) {
	clip-path: polygon(50% 50%, 100% 50%, 100% 100%, 50% 100%);
	transition-delay: 0.75s;
  }
  /* Hover Effects */
  .about-image:hover span:nth-child(1) {
	transform: translate(-40px, -60px) rotate(-15deg);
  }
  .about-image:hover span:nth-child(2) {
	transform: translate(40px, -100px) rotate(25deg);
  }
  .about-image:hover span:nth-child(3) {
	transform: translate(-40px, 80px) rotate(15deg);
  }
  .about-image:hover span:nth-child(4) {
	transform: translate(40px, 80px) rotate(-15deg);
  }
  


  /* services  */
.services{
    position: relative;
    padding: 80px 0;
}

.service-div{
    margin: 15px auto;
    width: 100%;
    background: linear-gradient(45deg,#039 10%,transparent 10%,transparent 50%,#039 50%,#039 60%,transparent 60%,transparent 50%);
    background-size: 15px 15px;
    border-radius: 5px;
    padding: 5px;
    box-shadow: 0 0 0 2px #fff, 0 0 0 5px #039;
    transition: 0.5s;
}
.service-div:hover{
    animation: animate 0.5s linear infinite;
}
@keyframes animate{
    0%{
        background-position: 0;
    }
    100%{
        background-position: 15px;
    }
}
.service-wrap{
    background-color: #fff;
    height: 100%;
    width: 100%;
    border-radius: 5px;
    padding: 20px;
}
.service-wrap div{
	color: var(--primary-color);
}
.service-wrap img{
    margin: 10px 0;
}


/* Why Choose Us  */
.features{
	position: relative;
	background-color: var(--primary-color);
	color: var(--white);
	padding: 80px 0;
}
.single-feature{
	text-align: center;
	margin: 100px 0 20px;
	background-color: #f6f6f6;
	position: relative;
	color: #000;
	padding: 0 20px 20px;
	border-radius: 10px;
	transition: 0.5s;
	z-index: 1;
}
.single-feature::before {
    position: absolute;
    width: 100%;
    height: 0;
    content: "";
    background-color: #194db5;
    border-radius: 8px;
    bottom: 0;
    left: 0;
    transition: 0.5s;
    z-index: -1;
}
.single-feature:hover{
	color: #fff;
}
.single-feature:hover::before{
	height: 100%;
}
.feature-icon{
	position: relative;
	top: -60px;
	padding: 10px;
	border-radius: 50%;
	box-shadow: 0px 8px 40px 0px #3f5d6533;
	background-color: #fff;
	display: inline-block;
}
.feature-icon img{
	width: 100px;
}
.feature-text{
	margin-top: -40px;
}

/* business-steps  */
.business-steps{
	position: relative;
	padding: 80px 0;
}

/* Paltform Section */
.platform {
    padding-bottom: 100px;
    padding-top: 50px;
}

.single-platform {
    background: #fff;
    box-shadow: 0px 0px 38px 0px rgba(0, 0, 0, .08);
    padding: 30px 20px;
    position: relative;
    overflow: hidden;
    margin-top: 30px;
    border-radius: 4px;
	transition: 0.5s;
	z-index: 2;
}
.single-platform::before{
	position: absolute;
    width: 100%;
    height: 0;
    content: "";
    background-color: #194db5;
    border-radius: 8px;
    bottom: 0;
    right: 0;
    transition: 0.5s;
    z-index: -1;
}
.single-platform:hover{
	color: #fff;
	transform: translateY(-10px);
}
.single-platform:hover::before{
	height: 100%;
}


.single-platform-head {
    margin-bottom: 25px;
}

.process2-img-1 {
    width: 50px;
    height: 50px;
    opacity: 0.3;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.process2-content h3 {
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 10px;
}


/* Footer section  */
.footer{
    position: relative;
    background-image: url(../image/bg-shape/foot-bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 50px 0;
    color: #fff;
}
.foot-logo img{
    margin-bottom: 20px;
    max-width: 100%;
}

.social-icons span a{
    text-decoration: none;
    padding: 5px;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.social-icons span{
    display: inline-block;
    margin: 0 5px;
    border-radius: 5px;
    background-color: #fff;
}
.social-icons span a i{
    font-size: 24px;
    color: var(--primary-color);
}

.foot-link ul{
    padding: 0;
}
.foot-link ul li{
    list-style: none;
    margin: 10px 0;
}
.foot-link ul li a{
    position: relative;
    text-decoration: none;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
}
.foot-link ul li a::before{
    position: absolute;
    content: "";
    background-color: #fff;
    width: 0;
    height: 1px;
    bottom: 0;
    left: 0;
    transition: 0.5s;
}
.foot-link ul li a:hover::before{
    width: 100%;
}
@media screen and (min-width: 992px) {
    .left-padding{
        padding-left: 80px;
    }
}

.bottom-foot{
    position: relative;
    padding: 15px;
    background-color: #001032;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
}
.bottom-foot a{
    text-decoration: none;
    color: #fff;
    font-weight: 600;
}

@media screen and (max-width: 575px) {
    .logo {
        width: 120px;
    }
    .btns {
        padding: 6px 22px;
        font-size: 16px;
        margin-left: 5px;
    }
}
