*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    font-size: 16px;
    font-weight: normal;
    font-family: "Inria Serif", serif;
    line-height: 1.6;
}
h1, h2, h3, h4, h5, h6 {
    font-family: "Staatliches", sans-serif;
    line-height: 1.15;
}
h2{
    font-size: 80px;
}
h3{
    font-size: 32px;
}
h4{
    font-size: 20px;
}
a{
    text-decoration: none;
	transition: 0.3s;
}
img{
	max-width: 100%;
}

/*=============
 Header
===============*/

.site-header{
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
	z-index: 99;
}
.site-header .header-wrapper{
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1700px;
    margin: auto;
    padding: 0 10px;
}
.site-header .navigation{
    background-color: #1E1E1E;
    padding: 0 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
}
.site-header .navigation ul {
    display: flex;
    align-items: center;
    gap: 36px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.site-header .navigation ul li a{
    display: inline-block;
    color: #B5B5B5;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    padding: 12px 0;
}
.site-header .navigation ul li a:hover{
	color: #C9FE58;
}
.site-header .button-group{
	display: flex;
	align-items: center;
	gap: 20px;
}
.site-header .button-group .button{
	position: relative;
    color: #000;
    font-weight: bold;
    padding: 16px 23px;
    border-radius: 100px;
	overflow: hidden;
	border: 1px solid #C9FE58;
}
.site-header .button-group .button:hover{
	color: #fff;
}

.site-header .button-group .button:before,
.site-header .button-group .button:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  transition: 0.5s ease-in-out;
}
.site-header .button-group .button:before {
  right: -50px;
  border-right: 50px solid transparent;
  border-bottom: 80px solid #C9FE58;
  transform: translateX(-49%);
}
.site-header .button-group .button:after {
  left: -50px;
  border-left: 50px solid transparent;
  border-top: 80px solid #C9FE58;
  transform: translateX(49%);
}
.site-header .button-group .button:hover:before {
  transform: translateX(-100%);
}
.site-header .button-group .button:hover:after {
  transform: translateX(100%);
}

.site-header .button-group .button img{
	margin-left: 5px;
	transition: 0.5s;
}
.site-header .button-group .button:hover img{
	filter: brightness(0) invert(1);
}
.site-header .button-group .mobile-toggle{
	font-size: 20px;
	background-color: #C9FE58;
	height: 50px;
	width: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	cursor: pointer;
	display: none;
}

.mobile-menu{
	position: fixed;
	right: -300px;
	top: 0;
	width: 300px;
	height: 100%;
	z-index: 999;
	background-color: rgb(0, 0, 0);
	transition: 0.4s;
}
.mobile-menu.active{
    right: 0;
}
.overlay{
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
	z-index: 9;
}
.overlay.active{
    opacity: 1;
    visibility: visible;
}
.mobile-menu .menu-top{
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px 30px;
}
.mobile-menu .menu-top .logo{
	line-height: 1;
}
.mobile-menu .menu-top .logo a{
	display: inline-block;
}
.mobile-menu .menu-top .close-btn{
	cursor: pointer;
}
.mobile-menu .menu-top .close-btn i{
	color: #fff;
	font-size: 30px;
}

.mobile-menu .navigation{
	padding: 80px 30px 20px;
}
.mobile-menu .navigation ul li{
	margin-bottom: 10px;
}
.mobile-menu .navigation ul li a{
	color: #B5B5B5;
	font-size: 18px;
	font-weight: bold;
}
.mobile-menu .navigation ul li a:hover{
	color: #C9FE58;
}

@media only screen and (max-width: 1199px) {

	.site-header{
		top: 30px;
	}
	.site-header .navigation{
		display: none;
	}
	.site-header .button-group .mobile-toggle{
		display: flex;
	}
}

@media only screen and (max-width: 480px) {

	.site-header .button-group .button{
		display: none;
	}
}

/* Sticky Header */

.sticky-header{
	position: fixed;
	top: 0;
	left: 0;
	background-color: #1E1E1E;
	transform: translateY(-100%);
	padding: 10px 0;
	width: 100%;
	z-index: 99;
	transition: 0.8s;
}
.sticky-header.active{
	transform: translateY(0);
}
.sticky-header .header-wrapper{
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1700px;
    margin: auto;
    padding: 0 10px;
}
.sticky-header .navigation{
    background-color: #1E1E1E;
    padding: 0 40px;
}
.sticky-header .navigation ul {
    display: flex;
    align-items: center;
    gap: 36px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.sticky-header .navigation ul li a{
    display: inline-block;
    color: #B5B5B5;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    padding: 12px 0;
}
.sticky-header .navigation ul li a:hover{
	color: #C9FE58;
}
.sticky-header .button-group{
	display: flex;
	align-items: center;
	gap: 20px;
}

.sticky-header .button-group .button{
	position: relative;
    color: #000;
    font-weight: bold;
    padding: 16px 23px;
    border-radius: 100px;
	overflow: hidden;
	border: 1px solid #C9FE58;
}
.sticky-header .button-group .button:hover{
	color: #fff;
}

.sticky-header .button-group .button:before,
.sticky-header .button-group .button:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  transition: 0.5s ease-in-out;
}
.sticky-header .button-group .button:before {
  right: -50px;
  border-right: 50px solid transparent;
  border-bottom: 80px solid #C9FE58;
  transform: translateX(-49%);
}
.sticky-header .button-group .button:after {
  left: -50px;
  border-left: 50px solid transparent;
  border-top: 80px solid #C9FE58;
  transform: translateX(49%);
}
.sticky-header .button-group .button:hover:before {
  transform: translateX(-100%);
}
.sticky-header .button-group .button:hover:after {
  transform: translateX(100%);
}

.sticky-header .button-group .button img{
	margin-left: 5px;
	transition: 0.5s;
}
.sticky-header .button-group .button:hover img{
	filter: brightness(0) invert(1);
}

.sticky-header .button-group .mobile-toggle{
	font-size: 20px;
	background-color: #C9FE58;
	height: 50px;
	width: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	cursor: pointer;
	display: none;
}

@media only screen and (max-width: 1199px) {

	.sticky-header .navigation{
		display: none;
	}
	.sticky-header .button-group .mobile-toggle{
		display: flex;
	}
}

@media only screen and (max-width: 480px) {

	.sticky-header .button-group .button{
		display: none;
	}
}

/*=============
 Hero Section
===============*/

#hero-section {
	position: relative;
    padding: 205px 0 0;
	background-image: url('../images/hero-bg.webp');
	overflow: hidden;
}
#hero-section .section-wrapper{
	padding: 0 10px;
}
#hero-section .content {
	position: relative;
    text-align: center;
}
#hero-section .content .title {
    color: #fff;
    font-size: 120px;
    font-weight: normal;
    line-height: 1.15;
    max-width: 1200px;
    margin: 0 auto 20px;
    text-align: center;
    -webkit-text-stroke: 1px #C9FE58;
}
#hero-section .content .title .line-inner{
	overflow: hidden;
}
#hero-section .content .screenshots{
	position: relative;
	margin-left: 50px;
	margin-bottom: -2px;
}
#hero-section .content .screenshots .img1 img{
	margin-bottom: -9px;
}
#hero-section .content .screenshots .small-image{
	position: absolute;
	bottom: -7px;
	display: flex;
	justify-content: center;
	gap: 143px;
	width: 100%;
}
#hero-section .shapes .shape1{
	position: absolute;
	top: 323px;
	right: 164px;
	animation: rotate 10s linear infinite;
}
#hero-section .shapes .shape2{
	position: absolute;
	bottom: 107px;
	right: 234px;
	animation: floatY 3s ease-in-out infinite;
}
#hero-section .shapes .shape3{
	position: absolute;
	top: 430px;
	left: 145px;
	transform: rotate(-26deg);
}
#hero-section .shapes .shape3 .icons{
	display: flex;
	gap: 10px;
	background-color: rgba(255, 255, 255, 0.08);
	border: 1px dashed rgba(255, 255, 255, 0.16);
	border-radius: 80px;
	padding: 6px;
}
#hero-section .shapes .shape3 .icons .icon{
	height: 60px;
	width: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 50%;
}
#hero-section .shapes .shape4{
	position: absolute;
	bottom: 120px;
	left: 121px;
	transform: rotate(-30deg);
}
#hero-section .shapes .shape4 .client-satisfaction{
	display: inline-flex;
	align-items: center;
	gap: 20px;
	background-color: rgba(255, 255, 255, 0.08);
	border: 1px dashed rgba(255, 255, 255, 0.16);
	border-radius: 80px;
	padding: 13px 20px;
}
#hero-section .shapes .shape4 .client-satisfaction .icon{
	line-height: 1;
}
#hero-section .shapes .shape4 .client-satisfaction .number{
	color: #fff;
	font-size: 60px;
	font-weight: normal;
}
#hero-section .shapes .shape4 .client-satisfaction .text{
	color: #B5B5B5;
	font-size: 16px;
	line-height: 1.625;
}
#hero-section .demo-number{
	position: absolute;
	bottom: 442px;
	left: 458px;
}
#hero-section .demo-number h3{
	color: #C9FE58;
	font-size: 60px;
	font-family: "Inria Serif", serif;
	font-weight: bold;
	margin-bottom: 8px;
}
#hero-section .demo-number p{
	color: #fff;
	font-size: 30px;
	font-weight: bold;
}

@keyframes rotate {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}
@keyframes floatY {
	0% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-30px);
	}
	100% {
		transform: translateY(0);
	}
}

@media only screen and (max-width: 1699px) {

	#hero-section .shapes{
		display: none;
	}
	#hero-section .demo-number{
		display: none;
	}
}

@media only screen and (max-width: 991px) {

	#hero-section .content .title{
		font-size: 90px;
	}
	#hero-section .shapes{
		display: none;
	}
	#hero-section .demo-number{
		display: none;
	}
}

@media only screen and (max-width: 767px) {

	#hero-section {
		padding: 171px 0 0;
	}
	#hero-section .content .title{
		font-size: 56px;
	}
	#hero-section .content .screenshots{
		margin: 0;
	}
	#hero-section .content .screenshots .img1 img{
		width: 100%;
	}
	#hero-section .content .screenshots .small-image{
		display: none;
	}
	#hero-section .shapes {
		display: none;
	}
}

/*=============
 Demo Section
===============*/

#demo-section{
    padding: 120px 0 120px;
    background-color: #F4F7FF;
}
#demo-section .section-wrapper{
    max-width: 1700px;
    margin: auto;
    padding: 0 10px;
}
#demo-section .section-title{
	position: relative;
    max-width: 880px;
    margin: auto;
    text-align: center;
}
#demo-section .section-title .subtitle{
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	margin-bottom: 50px;
}
#demo-section .section-title .subtitle .icon{
	height: 40px;
	width: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #AEFE3A;
	border-radius: 50%;
}
#demo-section .section-title .subtitle h3{
    color: #5D5D5D;
    font-family: "Inria Serif", serif;
}
#demo-section .section-title .title{
	font-weight: normal;
	margin-bottom: 60px;
}
#demo-section .section-title .title span{
	color: #72C100;
}
#demo-section .section-title .person{
	position: absolute;
	top: 150px;
	left: -250px;
}
#demo-section .section-title .person .circle{
	height: 140px;
	width: 140px;
	background-color: #AEFE3A;
	border-radius: 50%;
	border: 13px solid #fff;
}
#demo-section .section-title .person img{
	position: absolute;
	height: 180px;
	width: 130px;
	bottom: 30px;
	left: 10px;
	mix-blend-mode: darken;
}
#demo-section .features{
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	column-gap: 60px;
	row-gap: 20px;
	margin-bottom: 80px;
}
#demo-section .features li{
	display: flex;
	align-items: center;
	gap: 12px;
	color: #5D5D5D;
	font-size: 24px;
}
#demo-section .demo-list{
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
}
#demo-section .demo-list .demo-item{
	width: calc(33.333333% - 16px);
	background-color: #fff;
	border-radius: 8px;
	padding: 32px;
}
#demo-section .demo-list .demo-item .image{
	position: relative;
	background-color: #F4F7FF;
	border-radius: 8px;
	padding: 31px 36px 37px;
	line-height: 1;
	margin-bottom: 32px;
	overflow: hidden;
}
#demo-section .demo-list .demo-item .image img{
	border-radius: 8px;
	box-shadow: 0 0 1px rgba(0, 0, 0, 0.25);
	width: 100%;
}
#demo-section .demo-list .demo-item .image .btn-group{
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
	background-color: rgba(0, 0, 0, 0.7);
	border-radius: 8px;
	transform: scale(0);
	opacity: 0;
	transform-origin: top right;
	transition: 0.5s;
}
#demo-section .demo-list .demo-item:hover .image .btn-group{
	transform: scale(1);
	opacity: 1;
}
#demo-section .demo-list .demo-item .image .btn-group a{
	color: #000;
	font-size: 20px;
	background-color: #fff;
	padding: 9px 24px;
	border-radius: 30px;
}
#demo-section .demo-list .demo-item .image .btn-group a:hover{
	background-color: #D3FF74;
}
#demo-section .demo-list .demo-item .content{
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
}
#demo-section .demo-list .demo-item .content .name{
	font-family: "Inria Serif", serif;
}
#demo-section .demo-list .demo-item .content .category{
	margin: 0;
	padding: 0;
	list-style: none;
}
#demo-section .demo-list .demo-item .content .category li{
	color: #fff;
	font-size: 20px;
	background-color: #007DFF;
	padding: 1px 24px;
	border-radius: 30px;
}
#demo-section .demo-list .demo-item:nth-child(3n + 1) .content .category li{
	background-color: #D93927;
}
#demo-section .demo-list .demo-item:nth-child(even) .content .category li{
	color: #000;
	background-color: #D3FF74;
}

@media only screen and (max-width: 1399px) {

	#demo-section .section-title .person{
		display: none;
	}
}

@media only screen and (max-width: 991px) {

	#demo-section .section-title .subtitle h3{
		font-size: 28px;
	}
	#demo-section .section-title .title{
		font-size: 60px;
	}
	#demo-section .features{
		flex-wrap: wrap;
		row-gap: 20px;
	}
	#demo-section .demo-list .demo-item{
		width: calc(50% - 12px);
		padding: 24px;
	}
	#demo-section .demo-list .demo-item .image{
		padding: 20px;
	}
	#demo-section .demo-list .demo-item .content .name{
		font-size: 24px;
	}
}

@media only screen and (max-width: 767px) {

	#demo-section{
		padding: 80px 0 80px;
	}
	#demo-section .section-title .subtitle h3{
		font-size: 22px;
	}
	#demo-section .section-title .title{
		font-size: 46px;
	}
	#demo-section .features{
		display: block;
	}
	#demo-section .demo-list .demo-item{
		width: 100%;
		padding: 16px;
	}
	#demo-section .demo-list .demo-item .image .btn-group a{
		font-size: 16px;
		padding: 10px 20px;
	}
	#demo-section .demo-list .demo-item .content .name{
		font-size: 20px;
	}
	#demo-section .demo-list .demo-item .content .category li{
		font-size: 16px;
		padding: 3px 20px;
	}
}

/*=============
 Card Section
===============*/

#feature-card {
	position: relative;
	padding: 80px 0;
	background-image: url('../images/feature-card-bg.jpg');
	overflow: hidden;
}
#feature-card .section-wrapper {
	max-width: 1677px;
	margin: auto;
	padding: 0 10px;
}
#feature-card .card-wrapper {
	position: relative;
	display: flex;
	border-radius: 16px;
	background-color: rgba(255, 255, 255, 0.2);
	gap: 2px;
	padding: 2px;
	z-index: 2;
}
#feature-card .card-wrapper .card-item {
	background-image: url(../images/card-bg.jpg);
	padding: 10px;
	border-radius: 32px;
	width: 20%;
}
#feature-card .card-wrapper .card-item:nth-child(1) .content{
	background: url('../images/card1-bg.jpg');
	background-size: cover;
	height: 100%;
	border-radius: 32px;
	padding: 15px 10px 38px 12px;
}
#feature-card .card-wrapper .card-item:nth-child(1) .content .body{
	display: flex;
	gap: 16px;
}
#feature-card .card-wrapper .card-item:nth-child(1) .content .body .img{
	margin-top: 10px;
}
#feature-card .card-wrapper .card-item:nth-child(1) .content .body .img img{
	width: 103px;
	border-radius: 4px;
}
#feature-card .card-wrapper .card-item:nth-child(1) .content .body .text{
	text-align: right;
}
#feature-card .card-wrapper .card-item:nth-child(1) .content .body .text img{
	margin: 15px 10px 60px 0;
	animation: swingRotate 5s ease-in-out infinite;
}
@keyframes swingRotate{
	0%{
		transform: rotate(-45deg);
	}
	50%{
		transform: rotate(45deg);
	}
	100%{
		transform: rotate(-45deg);
	}
}
#feature-card .card-wrapper .card-item:nth-child(1) .content .body .text h3{
	color: #fff;
	font-size: 34px;
	font-weight: normal;
}
#feature-card .card-wrapper .card-item:nth-child(2) .content{
	background: linear-gradient(225deg,rgba(23, 23, 23, 0) 0%, rgba(53, 27, 30, 1) 49%, rgba(217, 57, 39, 1) 100%);
	height: 100%;
	border-radius: 32px;
	padding: 48px 0 48px;
}
#feature-card .card-wrapper .card-item:nth-child(2) .meter {
	position: relative;
	width: 223px;
	height: 223px;
	margin: auto;
}
#feature-card .card-wrapper .card-item:nth-child(2) .dial {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	background: conic-gradient(#88CE02 0% 50%, #ccc 50% 100%);
	background: url('../images/dial.png');
	background-repeat: no-repeat;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}
#feature-card .card-wrapper .card-item:nth-child(2) .needle {
	position: absolute;
	bottom: 50%;
	left: 50%;
	width: 4px;
	height: 50%;
	background: #D3FF74;
	transform-origin: bottom center;
	transform: rotate(-90deg);
	transition: transform 1s ease-in-out;
	z-index: 2;
	clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}
#feature-card .card-wrapper .card-item:nth-child(2) .content .title{
	color: #fff;
	font-weight: normal;
	text-align: center;
	margin: -85px 0 85px;
}
#feature-card .card-wrapper .card-item:nth-child(2) .content .title-2{
	position: relative;
	color: #fff;
	font-weight: normal;
	text-align: center;
	max-width: 80%;
	margin: auto;
}
#feature-card .card-wrapper .card-item:nth-child(2) .content .title-2 img{
	width: auto;
}
#feature-card .card-wrapper .card-item:nth-child(3) .content{
	background: linear-gradient(to bottom, #C9FE58, #D4ADF2);
	height: 100%;
	border-radius: 32px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
#feature-card .card-wrapper .card-item:nth-child(3) .content .header{
	padding: 34px 20px 20px;
}
#feature-card .card-wrapper .card-item:nth-child(3) .content .header img{
	width: auto;
	animation: rotate 5s linear infinite;
}
#feature-card .card-wrapper .card-item:nth-child(3) .content .gsap-logo {
	height: 328px;
	border-radius: 32px;
	mix-blend-mode: overlay;
}
#feature-card .card-wrapper .card-item:nth-child(3) h2{
	position: relative;
	display: inline-block;
	font-size: 36px;
	font-weight: normal;
	margin-top: 10px;
}
#feature-card .card-wrapper .card-item:nth-child(3) h2 img{
	position: absolute;
	right: -35px;
	top: -10px;
}
#feature-card .card-wrapper .card-item:nth-child(4) .content{
	background: url('../images/card4-bg.jpg');
	background-size: cover;
	height: 100%;
	border-radius: 32px;
	padding: 40px 10px 40px 10px;
}
#feature-card .card-wrapper .card-item:nth-child(4) .content .header{
	position: relative;
	line-height: 1;
	text-align: center;
}
#feature-card .card-wrapper .card-item:nth-child(4) .content .header img{
	position: absolute;
	bottom: -50px;
	left: 10px;
	right: 0;
	margin: auto;
}
#feature-card .card-wrapper .card-item:nth-child(4) .content .icon{
	margin-top: 90px;
	padding-right: 60px;
	text-align: right;
}
#feature-card .card-wrapper .card-item:nth-child(4) .content .icon img{
	animation: moveTopRight 2s ease-in-out infinite alternate;
}
#feature-card .card-wrapper .card-item:nth-child(4) .content h3{
	font-size: 36px;
	font-weight: normal;
	text-align: center;
	line-height: 1.333333;
	margin-top: 20px;
}
@keyframes moveTopRight{
	0%{
		transform: translate(0,0);
	}
	100%{
		transform: translate(40px,-40px);
	}
}
#feature-card .card-wrapper .card-item:nth-child(5) .content{
	background-image: url(../images/card5-bg.jpg);
	background-size: cover;
	border-radius: 32px;
	height: 100%;
	padding: 32px 32px 45px;
	display: flex;
    flex-direction: column;
    justify-content: space-between;
}

#feature-card .card-wrapper .card-item:nth-child(5) .content .header .circle{
	position: relative;
	height: 216px;
	width: 216px;
	margin: auto;
}
#feature-card .card-wrapper .card-item:nth-child(5) .content .header .circle .img1{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	animation: rotate 15s linear infinite;
}
#feature-card .card-wrapper .card-item:nth-child(5) .content .header .circle .img2{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
#feature-card .card-wrapper .card-item:nth-child(5) h2{
	color: #fff;
	font-size: 36px;
	font-weight: normal;
	margin-top: 10px;
}
#feature-card .animation-line{
	position: absolute;
	top: 20px;
	left: 0;
}

@media only screen and (max-width: 1399px) {

	#feature-card .card-wrapper{
		flex-wrap: wrap;
	}
	#feature-card .card-wrapper .card-item{
		width: calc(25% - 2px);
	}
}

@media only screen and (max-width: 1199px) {

	#feature-card .card-wrapper{
		flex-wrap: wrap;
	}
	#feature-card .card-wrapper .card-item{
		width: calc(33.333333% - 2px);
	}
}
@media only screen and (max-width: 991px) {

	#feature-card .card-wrapper{
		flex-wrap: wrap;
	}
	#feature-card .card-wrapper .card-item{
		width: calc(50% - 1px);
	}
}
@media only screen and (max-width: 767px) {

	#feature-card .section-wrapper{
		text-align: center;
	}
	#feature-card .card-wrapper .card-item{
		width: 100%;
	}
	#feature-card .card-wrapper .card-item:nth-child(1) .content .body .text h3{
		font-size: 30px;
	}
}

/*===============
 Used Technology
=================*/

#used-technology{
	position: relative;
	padding: 120px 0;
	overflow: hidden;
	transform: translateZ(0);
}
#used-technology .shape-video{
	position: absolute;
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 1;
	overflow: hidden;
}

#used-technology .shape-video video{
	height: 100%;
	width: 100%;
	object-fit: cover;
}
#used-technology .shape-video img{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
}
#used-technology .video-overlay{
	position: absolute;
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
	background-color: rgba(0, 0, 0, 0.9);
	z-index: 2;
}
#used-technology .overlay-image{
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 3;
}
#used-technology .overlay-image img{
	height: 100%;
	width: 100%;
	object-fit: cover;
}

#used-technology .section-title{
	position: absolute;
	top: 48%;
	left: 50%;
	z-index: 9;
	text-align: center;
	transform: translate(-50%, -50%);
}
#used-technology .section-title .title{
	color: #fff;
	font-size: 60px;
	font-weight: normal;
}

#used-technology .section-wrapper{
	position: relative;
	max-width: 1700px;
	margin: auto;
	padding: 0 10px;
	z-index: 3;
}
#used-technology .technology-list{
	position: relative;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	row-gap: 80px;
	z-index: 2;
}
#used-technology .technology-list .item{
	width: 16.666666%;
	text-align: center;
}
#used-technology .technology-list .item .name{
	color: #7D7D7D;
	font-size: 34px;
	font-weight: normal;
	font-family: "Inria Serif", serif;
}

@media only screen and (max-width: 1399px) {

	#used-technology .technology-list .item{
		width: 20%;
	}
}

@media only screen and (max-width: 1199px) {

	#used-technology .technology-list .item{
		width: 25%;
	}
}

@media only screen and (max-width: 991px) {

	#used-technology .technology-list .item{
		width: 33.33333%;
	}
}

@media only screen and (max-width: 767px) {

	#used-technology{
		padding: 80px 0;
	}
	#used-technology .shape-video{
		display: none;
	}
	#used-technology .overlay-image{
		display: none;
	}
	#used-technology .section-title{
		display: none;
	}
	#used-technology .technology-list .item{
		width: 50%;
	}
}
@media only screen and (max-width: 580px) {

	#used-technology .technology-list .item{
		width: 100%;
	}
}

/*=============
 Testimonial
===============*/

#testimonial {
	padding: 120px 0 120px;
}
#testimonial .section-wrapper {
	max-width: 1700px;
	margin: auto;
	padding: 0 10px;
}
#testimonial .section-title {
	text-align: center;
	margin-bottom: 60px;
}
#testimonial .section-title .subtitle {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	margin-bottom: 25px;
}
#testimonial .section-title .subtitle h3 {
	color: #5D5D5D;
	font-family: "Inria Serif", serif;
}
#testimonial .section-title .subtitle .icon {
	height: 40px;
	width: 40px;
	background-color: #AEFE3A;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}
#testimonial .section-title .title{
	color: #D4D4D4;
	font-weight: normal;
}
#testimonial .testimonial-grid{
	display: flex;
	gap: 24px;
	height: 1092px;
	overflow: hidden;
}
#testimonial .testimonial-grid .testi-column{
	width: 25%;
}
#testimonial .testimonial-grid .testi-column.column-1 .item-wrapper,
#testimonial .testimonial-grid .testi-column.column-3 .item-wrapper{
	animation: marquee-up 20s infinite linear;
}
#testimonial .testimonial-grid .testi-column.column-2 .item-wrapper,
#testimonial .testimonial-grid .testi-column.column-4 .item-wrapper{
	animation: marquee-up 20s infinite linear reverse;
}
#testimonial .testimonial-grid .testi-item{
	border: 1px solid #F0F0F0;
	border-radius: 20px;
	padding: 32px;
	margin-bottom: 24px;
}
#testimonial .testimonial-grid .testi-item .star-rating{
	margin-bottom: 13px;
}
#testimonial .testimonial-grid .testi-item .star-rating i{
	color: #FF8A37;
}
#testimonial .testimonial-grid .testi-item .title{
	font-size: 28px;
	font-weight: bold;
	font-family: "Inria Serif", serif;
	margin-bottom: 20px;
}
#testimonial .testimonial-grid .testi-item .quote{
	color: #969696;
	font-size: 20px;
	margin-bottom: 23px;
}
#testimonial .testimonial-grid .testi-item .reviewer{
	display: flex;
	align-items: center;
	gap: 16px;
}
#testimonial .testimonial-grid .testi-item .reviewer .image{
	line-height: 1;
}
#testimonial .testimonial-grid .testi-item .reviewer .name{
	font-size: 24px;
	font-weight: bold;
	font-family: "Inria Serif", serif;
}
#testimonial .avg-rating{
	text-align: center;
	margin-top: 60px;
}
#testimonial .avg-rating .rating-title{
	font-size: 18px;
	font-weight: normal;
	font-family: "Kalam", cursive;
	margin-bottom: 5px;
}
#testimonial .avg-rating .rating-box{
	display: inline-flex;
	gap: 14px;
	align-items: center;
	background: linear-gradient(to bottom, #fff, #D3FF74);
	padding: 30px 15px 27px 27px;
	border-radius: 16px;
}
#testimonial .avg-rating .rating-box .rating{
	font-size: 50px;
	font-weight: normal;
	line-height: 0.8;
}
#testimonial .avg-rating .rating-box .total-review{
	font-size: 20px;
	line-height: 1.3;
}

@keyframes marquee-up {
	0% {
		transform: translateY(0);
	}
	100% {
		transform: translateY(-100%);
	}
}

@media only screen and (max-width: 991px) {

	#testimonial .testimonial-grid{
		flex-wrap: wrap;
	}
	#testimonial .testimonial-grid .testi-column{
		width: calc(50% - 12px);
	}
}

@media only screen and (max-width: 767px) {

	#testimonial {
		padding: 80px 0 80px;
	}
	#testimonial .section-title .subtitle h3{
		font-size: 22px;
	}
	#testimonial .section-title .title{
		font-size: 46px;
	}
	#testimonial .testimonial-grid{
		flex-wrap: wrap;
	}
	#testimonial .testimonial-grid .testi-column{
		width: 100%;
	}
	#testimonial .testimonial-grid .testi-column.column-1 .item-wrapper,
	#testimonial .testimonial-grid .testi-column.column-3 .item-wrapper{
		animation: none;
	}
	#testimonial .testimonial-grid .testi-column.column-2 .item-wrapper,
	#testimonial .testimonial-grid .testi-column.column-4 .item-wrapper{
		animation: none;
	}
}

/*=============
 Page Builder
===============*/

#page-builder {
	background-image: url('../images/page-builder-bg.jpg');
	padding: 120px 0 120px;
}
#page-builder .section-wrapper{
	max-width: 1700px;
	margin: auto;
	padding: 0 10px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
#page-builder .left-column{
	width: 31%;
}
#page-builder .section-title .subtitle{
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 47px;
}
#page-builder .section-title .subtitle .icon{
	height: 40px;
	width: 40px;
	background-color: #AEFE3A;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}
#page-builder .section-title .subtitle h3{
	color: #8B8B8B;
	font-family: "Inria Serif", serif;
}
#page-builder .section-title .title{
	color: #fff;
	font-weight: normal;
	margin-bottom: 31px;
}
#page-builder .section-title .description{
	color: #9D9D9D;
	font-size: 20px;
	margin-bottom: 60px;
}
#page-builder .features{
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	row-gap: 21px;
}
#page-builder .features li{
	color: #fff;
	font-size: 20px;
	width: 50%;
	display: flex;
	align-items: center;
	gap: 16px;
}
#page-builder .right-column{
	width: 69%;
	text-align: right;
}
#page-builder .right-column .image{
	position: relative;
	display: inline-block;
	padding: 0 88px 65px 113px;
}
#page-builder .right-column .image .main-img{
	width: 100%;
}
#page-builder .right-column .image .widgets{
	position: absolute;
	max-width: 223px;
	bottom: 0;
	left: 0;
	width: 100%;
}
#page-builder .right-column .image .widgets img{
	height: 100%;
	width: 100%;
	border-radius: 8px;
}
#page-builder .right-column .image .edit-section{
	position: absolute;
	right: 0;
	bottom: 0;
}

@media only screen and (max-width: 1585px) {

	#page-builder .left-column{
		width: 42%;
	}
	#page-builder .right-column{
		width: 58%;
	}
}

@media only screen and (max-width: 1199px) {

	#page-builder .left-column{
		width: 100%;
	}
	#page-builder .right-column{
		width: 100%;
	}
	#page-builder .right-column .image{
		margin-top: 40px;
	}
}
@media only screen and (max-width: 767px) {

	#page-builder{
		padding: 80px 0 80px;
	}
	#page-builder .section-title .subtitle h3{
		font-size: 22px;
	}
	#page-builder .section-title .title{
		font-size: 46px;
	}
	#page-builder .section-title .title img{
		height: 33px;
	}
	#page-builder .features li{
		width: 100%;
	}
	#page-builder .right-column .image{
		padding: 0;
		text-align: center;
		margin-top: 40px;
	}
	#page-builder .right-column .image .widgets{
		position: static;
		display: inline-block;
	}
	#page-builder .right-column .image .edit-section{
		position: static;
	}
}

/*=================
 Responsive Device
===================*/

#responsive-device {
	position: relative;
	padding: 135px 0 91px;
	background-image: url('../images/responsive-device-bg.jpg');
	background-repeat: no-repeat;
	background-size: cover;
}
#responsive-device .section-wrapper{
	max-width: 1700px;
	margin: auto;
	padding: 0 10px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
#responsive-device .left-column{
	width: 45%;
}
#responsive-device .section-title .title{
	font-weight: normal;
	margin-bottom: 91px;
}
#responsive-device .left-column .image{
	display: flex;
	align-items: end;
}
#responsive-device .left-column .image .pen{
	margin-left: 50px;
	animation: floatY 3s ease-in-out infinite;
}
#responsive-device .right-column{
	width: 55%;
}
#responsive-device .right-column .button{
	position: absolute;
	top: 140px;
	right: 80px;
	display: inline-block;
	color: #fff;
	background-color: #000;
	padding: 14px 24px;
	border-radius: 50px;
	transform: rotate(30deg);
}
#responsive-device .right-column .image{
	position: absolute;
	right: 0;
	bottom: 49px;
	overflow: hidden;
}

@media only screen and (max-width: 1699px) {

	#responsive-device .right-column .image{
		position: static;
	}
}

@media only screen and (max-width: 1199px) {

	#responsive-device .left-column{
		width: 100%;
	}
	#responsive-device .right-column{
		display: none;
	}
}
@media only screen and (max-width: 767px) {

	#responsive-device {
		padding: 80px 0 80px;
	}
	#responsive-device .left-column {
		width: 100%;
	}
	#responsive-device .right-column {
		width: 100%;
	}
	#responsive-device .section-title .title {
		font-size: 46px;
	}
	#responsive-device .section-title .title img {
		height: 33px;
	}
	#responsive-device .right-column .image {
		display: none;
	}
	#responsive-device .right-column .button {
		position: static;
		transform: rotate(0);
		margin-top: 30px;
	}
	#responsive-device .left-column .image .pen {
		display: none;
	}
}

/*============
 Inner Pages
==============*/

#inner-pages {
	padding: 83px 0 60px;
	background-color: #F4F1EA;
}
#inner-pages .section-wrapper{
	max-width: 1700px;
	margin: auto;
	padding: 0 10px;
}
#inner-pages .section-header{
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 90px;
}
#inner-pages .section-title{
	width: 65%;
}
#inner-pages .section-header .text{
	width: 35%;
}
#inner-pages .section-header .text .emoji{
	display: flex;
	align-items: center;
	gap: 9px;
	margin-bottom: 15px;
}
#inner-pages .section-header .text .emoji picture{
	line-height: 1;
}
#inner-pages .section-header .text .emoji h2{
	color: #000;
	font-size: 90px;
	font-weight: normal;
	font-family: "Smooch", cursive;
}
#inner-pages .section-header .text p{
	color: #8B8B8B;
	font-size: 20px;
}
#inner-pages .section-title .subtitle{
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 44px;
}
#inner-pages .section-title .subtitle .icon{
	height: 40px;
	width: 40px;
	background-color: #AEFE3A;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}
#inner-pages .section-title .subtitle h3{
	color: #8B8B8B;
	font-family: "Inria Serif", serif;
}
#inner-pages .section-title .title{
	color: #000;
	font-weight: normal;
}

#inner-pages .image-wrapper{
	display: flex;
	gap: 20px;
	overflow: hidden;
}
#inner-pages .page-list1 .image-wrapper .image{
	display: flex;
	gap: 20px;
	flex-shrink: 0;
	animation: marquee-left 20s infinite linear;
}
#inner-pages .image-wrapper .image .item{
	flex-shrink: 0;
}
#inner-pages .image-wrapper .image img{
	border-radius: 8px;
}
#inner-pages .page-list2 .image-wrapper .image {
	display: flex;
	gap: 20px;
	animation: marquee-left 25s infinite linear reverse;
	flex-shrink: 0;
}

#inner-pages .section-footer-text{
	font-size: 28px;
	font-family: "Kalam", cursive;
	text-align: center;
	margin-top: 62px;
	font-weight: normal;
}

@keyframes marquee-left {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-100%);
	}
}

@media only screen and (max-width: 991px) {

	#inner-pages .section-title{
		width: 100%;
	}
	#inner-pages .section-header .text{
		width: 100%;
	}
}
@media only screen and (max-width: 767px) {

	#inner-pages .section-title{
		width: 100%;
	}
	#inner-pages .section-title .subtitle h3{
		font-size: 22px;
	}
	#inner-pages .section-title .title{
		font-size: 46px;
	}
	#inner-pages .section-header .text{
		width: 100%;
	}
}

/*============
 Footer
==============*/

#site-footer {
	position: relative;
	padding: 140px 0 90px;
	background-image: url('../images/footer-bg.jpg');
	background-repeat: no-repeat;
	background-size: cover;
}
#site-footer .footer-content{
	max-width: 670px;
	margin: auto;
	padding: 0 10px;
	text-align: center;
}
#site-footer .footer-content .title{
	color: #fff;
	font-weight: normal;
	margin-bottom: 30px;
}
#site-footer .footer-content .description{
	color: #9D9D9D;
	font-size: 20px;
	margin-bottom: 90px;
}
#site-footer .footer-content .button{
	display: inline-block;
	color: #000;
	font-size: 20px;
	font-weight: bold;
	background-color: #D3FF74;
	padding: 15px 40px;
	border-radius: 50px;
	margin-bottom: 60px;
}
#site-footer .footer-content .button:hover{
	background-color: #fff;
}
#site-footer .footer-content .button img{
	margin-left: 10px;
}
#site-footer .footer-content .copyright-text{
	color: #fff;
	font-size: 20px;
}
#site-footer .footer-content .copyright-text span{
	font-size: 26px;
	font-weight: bold;
}
#site-footer .footer-image img{
	border-radius: 8px;
}
#site-footer .footer-image .image1{
	position: absolute;
	top: 177px;
	left: 0;
}
#site-footer .footer-image .image2{
	position: absolute;
	left: 251px;
	bottom: 0;
}
#site-footer .footer-image .image3{
	position: absolute;
	right: 189px;
	bottom: 0;
}
#site-footer .footer-image .image4{
	position: absolute;
	top: 80px;
	right: 0;
}

@media only screen and (max-width: 1600px) {

	#site-footer .footer-image{
		display: none;
	}
}

@media only screen and (max-width: 767px) {

	#site-footer{
		padding: 80px 0 40px;
	}
	#site-footer .footer-content .title{
		font-size: 46px;
	}
	#site-footer .footer-image{
		display: none;
	}
}