body{
    margin: 0;
	font-family: Avenir LT Std;
	background-color: #101010;
	overflow-x: hidden;
}
html{
	scroll-behavior: smooth;
}
*{
    box-sizing: border-box;
}
a,a:hover{
    text-decoration: none;
    transition: all ease-in-out 0.3s;
}
p *>{
    margin: 0;
}
textarea {
    resize: none;
}
p{
	color: #FFF;
	text-align: center;
	font-family: Avenir LT Std;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 24px; 
	margin: 0;
	text-transform: capitalize;
}
.wrapper{
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0px 16px;
}
header{
    position: fixed;
    top: 0;
    width: 100%;
    background-color: transparent;
	padding: 10px 0px;
	z-index: 9999;
}
.h1{
	font-family: Forum;
	font-size: 56px;
	text-align: center;
	font-weight: 400;
	line-height: 74px;
	margin: 0;
	background: linear-gradient(272deg, #3234B5 -10.27%, #55A2C5 94.54%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	margin: 0;
}
.h2{
	font-family: Forum;
	font-size: 48px;
	text-align: center;
	font-style: normal;
	font-weight: 400;
	line-height: 1.1;
	background: linear-gradient(272deg, #3234B5 -10.27%, #55A2C5 94.54%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	margin: 0;
}
.txt-medium{
	color: #FFF;
	font-family: Avenir LT Std;
	font-size: 24px;
	font-weight: 350;
	line-height: normal;
	margin: 0;
	text-transform: capitalize;
}
.p-small{
	color: #FFF;
	font-family: Avenir LT Std;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 24px;
	margin: 0;
	text-transform: capitalize;
}
.custom-btn{
	padding: 32px 56px;
	border-radius: 8px;
	border: 1px solid #3234B5;
	background: rgba(0, 0, 0, 0.69);
	box-shadow: 0px 13px 15px 0px rgba(85, 162, 197, 0.29);
	color: #FFF;
	text-align: center;
	font-family: Avenir LT Std;
	font-size: 32px;
	font-weight: 700;
	line-height: 24px;
	display: inline-block;
	text-transform: capitalize;
}
.custom-btn:hover{
	background: #3234b53d;
}
.navbar {
	align-items: center;
	display: flex;
	background-color: transparent;
	justify-content: space-between;
}
.navbar .logo img{
	height: auto;
	width: 100px;
	object-fit: cover;
}
.is-sticky .navbar .logo img{
	width: 60px;
}
.hamburger {
	background: transparent;
	border: none;
	cursor: pointer;
	display: none;
	outline: none;
	height: 30px;
	position: relative;
	width: 30px;
	z-index: 1000;
}
.hamburger-line {
	background: #fff;
	height: 3px;
	position: absolute;
	left: 0;
	transition: all 0.2s ease-out;
	width: 100%;
}
.hamburger:hover .hamburger-line {
	background: #fff;
}
.hamburger-line-top {
	top: 3px;
}
.menu-active .hamburger-line-top {
	top: 50%;
	transform: rotate(45deg) translatey(-50%);
}
.hamburger-line-middle {
	top: 50%;
	transform: translatey(-50%);
}
.menu-active .hamburger-line-middle {
	left: 50%;
	opacity: 0;
	width: 0;
}
.hamburger-line-bottom {
	bottom: 3px;
}
.menu-active .hamburger-line-bottom {
	bottom: 50%;
	transform: rotate(-45deg) translatey(50%);
}
.nav-menu {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
	transition: all 0.25s ease-in;
	gap: 24px;
}
.nav-menu .menu-item a {
	color: #FFF;
	font-family: Avenir LT Std;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 24px;
	opacity: 80%;
	text-transform: capitalize;
}
.nav-menu .menu-item a:hover,.nav-menu .menu-item a.active{
	opacity: 1;
}
header.is-sticky {
    position: fixed;
    background-color: #0000006b;
    backdrop-filter: blur(10px);
    animation: slideDown 0.35s ease-out;
}
@keyframes slideDown{
	0% {
		transform: translateY(-100%);
	}
	100% {
		transform: translateY(0);
	}
}
.home_banner,
.founder_speech,
.image_gallery .gallery_card,
.globel-sec{
    background-image: url('../img/banner.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 100vh;
	position: relative;
	z-index: 5;
	display: flex;
	justify-content: center;
	align-items: center;
}
.home_banner::after,
.founder_speech::after,
.image_gallery .gallery_card::after{
	position: absolute;
	content: '';
	height: 100%;
	width: 100%;
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.70) 0%, rgba(0, 0, 0, 0.70) 100%), linear-gradient(180deg, rgba(0, 0, 0, 0.60) 0%, rgba(0, 0, 0, 0.00) 45.44%);
	z-index: 0;
}
.gallery_card::after{
	background: radial-gradient(50% 50% at 50% 50%, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.60) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.60) 0%, rgba(0, 0, 0, 0.60) 100%);
}
.banner_title{
	z-index: 5;
	position: relative;
	padding-top: 15px;
	padding-bottom: 35px;
}
.banner_title p{
	margin: 0;
	padding-top: 10px;
}
.banner_title::before,.banner_title::after,.client_testimonial::after{
	position: absolute;
	content: '';
	background-image: url('../img/svg_line.svg');
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	top: 0;
	left: 0;
	right:0;
	margin: 0 auto;
	height: 14px;
	width: 100%;
	max-width: 290px;
}
.banner_title::after{
	bottom: 0;
	top: initial;
}
.banner-before.banner_title::before{
	display: none;
}
.scroll {
    text-align: center;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: 30px;
}
.home_banner .scroll img{
	transform: rotate(90deg);
    animation: mymove 2s infinite
}
@keyframes mymove{
	0% {
		transform: translateY(0px);
	}
	50% {
		transform: translateY(10px);
	}
	100% {
		transform: translateY(0px);
	}
}
.scroll a{
	color: #FFF;
	font-family: Avenir LT Std;
	font-size: 16px;
	font-weight: 750;
	line-height: 24px; 
	position:relative;
	z-index: 5;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.scroll img{
	height: 15px;
	width: 15px;
}
.founder_speech p{
	margin: 0 auto;
	width: 100%;
	max-width: 634px;
	padding-bottom: 20px;
}
.founder_speech .banner_title{
	text-align: center;
}
.founder_speech{
	background-image: url('../img/speech.png');
}
.founder_speech .banner_title::before{
	display: none;
}
.image_gallery .gallery_card{
	height: 50vh;
	width: 50%;
}
.image_gallery .wrapper{
	max-width: 100%;
	padding: 0;
}
.image_gallery .wrapper .gallery_img_card_block {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.image_gallery .gallery_img_card_block .gallery_card h2{
	color: white;
	font-size: 32px;
	font-family: Forum;
	font-weight: 400;
	line-height: 24px;
	text-align: center;
	margin: 0;
}
.image_gallery .gallery_img_card_block .banner_title {
    padding: 40px 0;
}
.image_gallery .gallery_img_card_block .border_bottom{
	border-bottom: 1px solid #ffffff;
}
.image_gallery .gallery_img_card_block .border_left{
	border-left: 1px solid #ffffff;
}
.client_testimonial,
.quality-sec{
	padding: 120px 0px;
}
.client_testimonial .banner_title .h2{
	margin: 0;
}
.client_testimonial .banner_title{
	padding-top: 0;
	padding-bottom: 30px;
}
.client_testimonial .banner_title::after,.quality-sec .banner_title::after,
.globel-sec .banner_title::after{
	background-image: url('../img/title-design.png');
}
.client_testimonial .carousel {
	width: 100%;
    max-width: 502px;
    margin: 0 auto;
	text-align: center;
	padding-top: 32px;
	position: relative;
}
.client_testimonial .carousel .slider-card p{
	margin: 0;
}
.client_testimonial .carousel .slider-card span,
.client_testimonial .carousel .slick-dots .dot{
	color: #FFF;
	text-align: center;
	font-family: Avenir LT Std;
	font-size: 14px;
	font-weight: 350;
	line-height: 24px;
}
.client_testimonial .carousel .slick-dots li.slick-active{
	border: 1px solid rgb(255 255 255 / 100%);
}
.client_testimonial .carousel .slick-dots li.slick-active .dot{
	opacity: 1;
}
.client_testimonial .carousel .slick-dots li{
	width: 24px;
	height: 24px;
	line-height: 24px;
	border: 1px solid rgb(255 255 255 / 20%);
}
.client_testimonial .carousel .slick-dots .dot{
	opacity: 0.2;
}
.client_testimonial .carousel .slick-list {
	padding-bottom: 38px;
}
.client_testimonial .carousel .former_clint{
	position: relative;
	padding-top: 15px;
	margin-top: 15px;
}
.client_testimonial .carousel .former_clint::before{
	position: absolute;
	content: '';
	width: 100px;
	height: 1px;
	background-color: rgb(255 255 255 / 20%);
	top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
}
.client_testimonial .carousel .slick-arrow::before{
	content:"\f105";
	opacity: 1;
	z-index: 9;
	font-size: 20px;
	font-family: FontAwesome;
	position: relative;
	background: linear-gradient(272deg, #3234B5 -10.27%, #55A2C5 94.54%);
	background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.client_testimonial .carousel .slick-arrow {
    height: 24px;
    width: 24px;
    border: 1px solid #4775bf;
    bottom: -28px;
    top: initial;
}
.client_testimonial .carousel .slick-next {
    right: 30%;
}
.client_testimonial .carousel .slick-prev::before{
	content:"\f104";
}
.client_testimonial .carousel .slick-prev {
    left: 30%;
}
.client_testimonial {
	padding-bottom: 140px;
	position: relative;
}
.client_testimonial::after{
	bottom: 60px;
	top: initial;
}
.quality-sec .banner_title p{
	width: 100%;
	max-width: 800px;
	margin: 0 auto;
	padding-top: 24px;
}
.quality-sec .banner_title{
	padding-top: 0px;
}
.quality-sec .quality_dtl {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 158px;
}
.quality-sec .quality_info .h2{
	text-align: right;
}
.quality-sec .quality_info p{
	text-align: right;
	margin: 24px 0px;
}
.quality-sec .quality_info hr {
    width: 188px;
    margin: 0 0 0 auto;
}
.quality-sec .quality_dtl .img_block img{
	width: 536px;
	height: auto;
	object-fit: cover;
}
.quality-sec .quality_images {
	padding-top: 90px;
    display: flex;
    flex-direction: column;
    row-gap: 130px;
	position: relative;
}
.quality-sec::after{
	position: absolute;
	content: '';
	height: 70%;
	width: 100%;
	background-image: url('../img/quality_vector.svg');
	background-repeat: no-repeat;
	background-size: contain;
    top: 30%;
	z-index: -1;
}
.quality-sec{
	position: relative;
}
.customer-sec,.sites,.contact{
	background-image: url('../img/customer-bg.png');
	background-repeat: no-repeat;
	background-size: cover;
	padding-top: 135px;
    padding-bottom: 300px;
}
.customer-sec .customer-title{
	width: 100%;
    position: relative;
}
.customer-sec .customer-title::before,.customer-sec .customer-title::after{
	position: absolute;
	content: '';
	background-image: url('../img/customer-design.png');
	background-repeat: no-repeat;
	background-size: contain;
	height: 70px;
	width: 325px;
    top: 30px;
    right: 50px;
}
.customer-sec .customer-title::after{
	transform: rotate(180deg);
	right: initial;
	left: 50px;
}
.customer-sec .customer-title p{
	margin-top: 10px;
	margin-bottom: 0;
}
.customer-sec .customer-logo-sec {
    padding-top: 50px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	row-gap: 30px;
	column-gap: 120px;
}
.customer-sec .customer-logo{
	width: 25%;
	text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.customer-sec .customer-logo img{
	transition: all ease-in-out 0.3s;
}
.customer-sec .customer-logo img:hover{
	transform: translateY(-10px);
}
.artist-sec .x-img{
	width: 100%;
	object-fit: cover;
	height: 100%;
}
.artist-sec{
	margin-top: -290px;
	position: relative;
}
.artist-sec .custom-btn{
	position: absolute;
	top: 50%;
    transform: translateY(-50px);
	left: 0;
    right: 0;
    margin: 0 auto;
    max-width: 310px;
	padding: 32px 0px;
}
.sites{
	background-image: url('../img/site-bg.png');
	margin-top: -450px;
	padding-bottom: 150px;
	padding-top: 350px;
}
.sites .card p{
	margin-top: 0;
	width: 100%;
	margin: 0 auto 16px auto;
}
.sites .card p:last-child{
	margin: 0;
}
.sites .site-card{
	display: flex;
	gap: 30px;
}
.sites .card{
	width: 33%;
	display: flex;
    flex-direction: column;
    align-items: center;
	transition: all ease-in-out 0.3s;
}
.sites .card:hover{
	transform: scale(1.1);
}
.sites .card .card-img img{
	width: 100%;
	height: 348px;
}
.sites .card p span{
	font-weight: 700;
}
.sites .h1{
	padding-bottom: 50px;
}
.contact .banner_title::after{
	display: none;
}
.contact .banner_title{
	padding-top: 0;
	padding-bottom: 60px;
}
.contact{
	background-image: url('../img/contact-bg.png');
	padding-top: 53px;
	padding-bottom: 150px;
}
.contact .contact-form .cusstom-form {
    display: flex;
    gap: 30px;
}
.contact .left,.contact .right {
    flex-direction: column;
    display: flex;
    width: 50%;
}
.contact .left input,.contact .right textarea{
	margin-bottom: 24px;
	border-radius: 8px;
	border: 1px solid #3234B5;
	background: linear-gradient(90deg, #1A1A1A -4.55%, #000 106.57%);
	padding: 16px;
	color: rgb(255 255 255 / 30%);
	font-family: Avenir LT Std;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 24px;
	text-transform: capitalize;
}
.contact .left input:last-child{
	margin: 0;
}
.contact .right textarea{
	margin: 0;
	height: 220px;
}
.contact .contact-form{
	text-align: center;
}
.contact .contact-form .submit{
	padding: 16px;
	background: linear-gradient(272deg, #3234B5 -10.27%, #55A2C5 94.54%);
	color: #000;
	text-align: center;
	font-family: Avenir LT Std;
	font-size: 16px;
	font-style: normal;
	font-weight: 750;
	line-height: 24px;
	border: 0;
	outline: 0;
	width: 236px;
	margin-top: 32px;
	cursor: pointer;
}
.footer .wrapper{
	display: flex;
	justify-content: space-between;
	padding: 22px 16px;
}
.footer .right-sec {
    display: flex;
    gap: 24px;
}
.footer .right-sec a:hover {
	transform: scale(1.2);
}
.sites.contact-page,.customer-sec.customer-page{
	margin-top: 00;
	background-image: none;
	padding: 190px 0px 100px 0px;
}
.sites.contact-page .h1 {
    padding-bottom: 0;
}
.sites.contact-page  .banner_title {
	padding-bottom: 20px;
	margin-bottom: 60px;
}
.service-banner {
    padding-top: 170px;
    padding-bottom: 100px;
}
.service-card .card {
    display: flex;
    flex-direction: column;
    gap: 16px;
	width: 23%;
	border: 1px solid rgba(255, 255, 255, 0.34);
	padding: 10px;
	transition: all ease-in-out 0.3s;
}
.service-card .cards{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	align-items: center;
	gap: 30px;
}
.service-card .card:hover{
	background-color: #FFF;
}
.service-card .card:hover p{
	color: #000;
}
.service-card{
	padding-bottom: 60px;
}
.sites.contact-page .card p{
	max-width: 100%;
}
.group-main {
    text-align: center;
	display: flex;
	justify-content: center;
}
.group-main-card {
    display: flex;
    flex-direction: column;
    gap: 32px;
	width: 48%;
}
.group-main-card .group-main-img img{
	object-fit: contain;
	width: 100%;
	height: 360px;
}
.group-main-card .grup-m-dtl h2{
	margin: 0;
	text-align: center;
	font-family: Forum;
	font-size: 64px;
	font-style: normal;
	font-weight: 400;
	line-height: 72px;
	background: linear-gradient(274deg, #A82221 -19.1%, #AAC93B 99.44%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	padding-bottom: 20px;
}
.group-main-card .technology-sec {
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 32px;
}
.group-main-card .group-tec {
    display: flex;
    justify-content: center;
    align-items: center;
}
.group-main-card .group-tec img{
	width: 40px;
	height: 40px;
	object-fit: contain;
}
.group-main-card .group-tec .txt-medium,
.group-main-card .group-tec .bold{
	font-weight: 700;
	opacity: 1;
	padding-bottom: 8px;
}
.group-main-card .group-tec p{
	opacity: 60%;
	text-align: left;
}
.group-main-card .group-tec .tec-dtl{
	border-left: 1px solid #fff;
	padding-left: 8px;
	margin-left: 16px; 
}
.group-main.grup-card{
	flex-wrap: wrap;
	gap: 30px;
	padding-top: 80px;
}
.group-main.grup-card .group-main-card{
	border: 1px solid #3234B5;
    background: #000;
	padding: 24px;
}
.group-main.grup-card .technology-sec{
	flex-direction: row;
}
.about-cards{
	display: flex;
}
.about-cards .about-card{
	background-repeat: no-repeat;
	background-size: cover;
	width: 33%;
	padding: 40px;
	display: flex;
    align-items: center;
    flex-direction: column;
    gap: 25px;
}
.about-cards .about-card img{
	width: 400px;
	height: auto;
	object-fit: contain;
}
.about-cards .about-card p{
	position: relative;
	letter-spacing: 7.2px;
	text-transform: uppercase;
	line-height: 74px;
}
.about-cards .about-card p::after,
.about-cards .about-card p::before{
	width: 30px;
	height: 1px;
	background-color: #fff;
	position: absolute;
	right: -35px;
    content: '';
    top: 36px;
}
.about-cards .about-card p::before{
	left: -40px;
}
.about-cards .about-card .p-small{
	letter-spacing: 0;
	line-height: 26px;
}
.about-cards .about-card p.p-small::before,
.about-cards .about-card p.p-small::after{
	display: none;
}
.globel-sec{
	background-image: url('../img/global-bg.png');
}
.sites.contact-page.about{
	padding-bottom: 0;
}
.globel-sec .global-dtl{
	text-align: center;
	padding-top: 32px;
	width: 100%;
    max-width: 663px;
    margin: 0 auto;
}
.globel-sec .global-dtl hr{
	margin-top: 15px;
	margin-bottom: 15px;
	width: 100px;
	background-color: #ffffff27;
}
.globel-sec .global-dtl img{
	margin: 0 auto 25px auto;
    text-align: center;
    width: 100%;
    height: 125px;
    object-fit: contain;
    border-radius: 50%;
}
.globel-sec .global-dtl span{
	color: #ffffff49;
	text-align: center;
	font-family: Avenir LT Std;
	font-size: 14px;
	font-style: normal;
	font-weight: 350;
	line-height: 24px;
	display: block;
}
.product-sec .product-dtl .txt-medium{
	font-family: Forum;
	font-size: 32px;
	padding-bottom: 20px;
	text-align: left;
}
.product-sec .product-dtl .p-small{
	opacity: 80%;
	text-align: left;
}
.product-sec .product-block{
	display: flex;
	column-gap: 30px;
	align-items: center;
	z-index: 2;
	position: relative;
}
.product-sec .product-block .product-img,
.product-sec .product-dtl{
	width: 50%;
}
.product-sec .product-block .product-img img{
	width: 100%;
	height: 335px;
}
.product-sec .product-block .product-img{
	position: relative;
}
.product-sec .product-block .product-img::after{
	background-image: url('../img/product.svg');
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	height: 314px;
	width: 314px;
	content: '';
	right: -180px;
	z-index: -1;
	transform: rotate(180deg);
}
.product-sec{
	overflow-x: hidden;
	padding-top: 50px;
	padding-bottom: 100px;
}
.product-sec .wrapper{
	display: flex;
	flex-direction: column;
	row-gap: 120px;
}
.product-sec .product-block.left .product-img::after{
	right: inherit;
	left: -300px;
	background-image: url('../img/product-svg-2.png');
}
.process-sec .banner_title{
	width: 100%;
	max-width: 827px;
	margin: 0 auto 80px auto;
}
.product-sec .product-block .product-img::before,
.product-sec .product-block.left .product-img::before{
	position: absolute;
    content: '01';
    color: #FFF;
    font-family: Forum;
    font-size: 106px;
    font-weight: 400;
    line-height: normal;
    mix-blend-mode: difference;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
}
.product-sec .product-block.left .product-img::before{
	right: inherit;
	left: -55px;
	content: '02';
}
.product-sec .product-block .product-img.three::before{
	content: '03';
}
.product-sec .product-block .product-img.four::before{
	content: '04';
}
.product-sec .product-block .product-img.five::before{
	content: '05';
}
.product-sec .product-block .product-img.six::before{
	content: '06';
}
.product-sec.number .product-img::before{
	display: none;
}
@media screen and (max-width: 1279px) {
	.nav-menu{
		gap: 15px;
	}
	.sites{
		margin-top: -340px;
	}
	header .logo img{
		height: 70px;
		width: 70px;
		object-fit: contain;
	}
	.h1{
		font-size: 46px;
		line-height: 56px;
	}
	.txt-medium{
		font-size: 20px;
	}
	.h2{
		font-size: 38px;
	}
	.client_testimonial{
		padding: 80px 0px;
		padding-bottom: 100px;
	}
	.client_testimonial::after {
		bottom: 10px;
	}
	.navbar .logo img{
		width: 80px;
	}
	.quality-sec .quality_images{
		row-gap: 60px;
	}
	.quality-sec .quality_dtl{
		gap: 50px;
	}
	.quality-sec .quality_dtl .img_block img{
		width: 436px;
	}
	.quality-sec{
		padding: 80px 0px;
	}
	.customer-sec{
		padding-top: 80px;
	}
	.customer-sec .customer-title::before, .customer-sec .customer-title::after{
		width: 250px;
	}
	.customer-sec .customer-title::after{
		top: 15px;
	}
	.customer-sec .customer-logo-sec{
		row-gap: 80px;
	}
	.artist-sec .custom-btn{
		max-width: 250px;
	}
	.custom-btn{
		font-size: 22px;
		padding: 20px;
	}
	.sites .site-card{
		gap: 10px;
	}
	.sites,.contact{
		padding-bottom: 80px;
	}
	.sites.contact-page,.customer-sec.customer-page{
		padding: 130px 0px 80px 0px;
	}
	.service-banner {
		padding-top: 170px;
		padding-bottom: 70px;
	}
	.service-card .card{
		width: 31.2%;
	}
	.service-card .cards{
		justify-content: center;
	}
	.group-main-card .grup-m-dtl h2{
		font-size: 50px;
		line-height: 60px;
		padding-top: 8px;
	}
	.group-main-card .group-tec .bold{
		font-size: 16px;
	}
	.about-cards .about-card img{
		width: 100%;
		height: auto;
	}
	.about-cards .about-card{
		padding: 25px;
	}
	.about-cards .about-card p{
		letter-spacing: 4.2px;
		line-height: 45px;
    	font-size: 16px;
	}
	.about-cards .about-card p::after, .about-cards .about-card p::before{
		top: 22px;
	}
	.product-sec .product-block .product-img::before, .product-sec .product-block.left .product-img::before{
		right: 0;
	}
	.product-sec .product-block.left .product-img::before{
		left: 0;
	}
}
@media screen and (max-width: 1023px) {
    .nav-menu .menu-item a {
		font-size: 18px;
	}
	.hamburger {
		display: inline-block;
	}
    .hamburgar-block {
		text-align: right;
	}
    .nav-menu {
		background-color: #101010;
		flex-direction: column;
		opacity: 0;
		position: absolute;
		top: 0px;
		right: 0;
		bottom: 0;
		height: 100vh;
		align-items: center;
		justify-content: center;
		left: 0;
		gap: 25px;
		transform: translatex(-100%);
		text-align: center;
	}
	.hamburgar-block {
		order: 2;
	}
	.menu-active .nav-menu {
		transform: translatex(0%);
		opacity: 1;
	}
	header .logo{
		order: 2;
	}
	.h1{
		font-size: 40px;
		line-height: 46px;
	}
	.txt-medium,p{
		font-size: 16px;
	}
	.h2{
		font-size: 32px;
	}
	.founder_speech p{
		padding-top: 32px;
		padding-bottom: 22px;
	}
	.founder_speech .banner_title  img{
		width: 75px;
		height: auto;
	}
	.image_gallery .gallery_img_card_block .gallery_card h2{
		font-size: 24px;
	}
	.client_testimonial{
		padding: 60px 0px;
		padding-bottom: 80px;
	}
	.quality-sec .quality_images{
		padding-top: 60px;
		row-gap: 50px;
	}
	.quality-sec .quality_dtl {
		gap: 30px;
	}
	.quality-sec .quality_info p{
		margin: 16px 0px;
	}
	.quality-sec .quality_dtl .img_block img {
		width: 300px;
	}
	.quality-sec{
		padding: 60px 0px;
	}
	.customer-sec {
		padding-top: 60px;
	}
	.customer-sec .customer-title::before, .customer-sec .customer-title::after {
		width: 180px;
		height: 40px;
		right: 0;
	}
	.customer-sec .customer-title::after{
		right: inherit;
		left: 0;
		top: 30px;
	}
	.customer-sec .customer-logo{
		width: 20%;
	}
	.customer-sec .customer-logo-sec {
		row-gap: 40px;
	}
	.artist-sec .custom-btn {
		max-width: 180px;
		padding: 20px 0px;
	}
	.custom-btn{
		font-size: 18px;
		padding: 18px;
	}
	.customer-sec{
		padding-bottom: 260px;
	}
	.sites {
		margin-top: -240px;
		padding-top: 200px;
	}
	.sites .card{
		width: 48%;
	}
	.sites .site-card{
		flex-wrap: wrap;
		justify-content: center;
		row-gap: 40px;
	}
	.sites .card p{
		margin: 0 auto 7px auto;
	}
	.sites,.contact{
		padding-bottom: 60px;
	}
	.sites.contact-page .banner_title{
		margin-bottom: 20px;
	}
	.service-card .card{
		width: 47%;
	}
	.service-banner {
		padding-top: 100px;
		padding-bottom: 50px;
	}
	.group-main-card{
		width: 47%;
	}
	.group-main.grup-card .group-main-card{
		padding: 18px;
	}
	.group-main-card .grup-m-dtl h2 {
		font-size: 40px;
		line-height: 50px;
	}
	.group-main.grup-card .technology-sec{
		flex-direction: column;
	}
	.about-cards {
		flex-wrap: wrap;
		justify-content: center;
		row-gap: 30px;
	}
	.about-cards .about-card{
		width: 48%;
	}
	.product-sec .product-block{
		column-gap: 20px;
	}
	.product-sec .wrapper{
		row-gap: 60px;
	}
	.product-sec{
		padding-bottom: 60px;
	}
	.process-sec .banner_title{
		margin: 0 auto 60px auto;
	}
	.product-sec .product-block .product-img::before, .product-sec .product-block.left .product-img::before {
		right: 0;
		font-size: 80px;
	}
}
@media screen and (max-width: 767px) {
	.h1{
		font-size: 30px;
		line-height: 36px;
		text-align: center;
	}
	.h2{
		font-size: 24px;
		line-height: 30px;
		text-align: center;
	}
	p,.quality-sec .quality_info .h2,.quality-sec .quality_info p{
		text-align: center;
	}
	.founder_speech p{
		padding: 20px 0;
	}
	.founder_speech .banner_title  img{
		width: 75px;
		height: auto;
	}
	.image_gallery .wrapper .gallery_img_card_block{
		flex-direction: column;
		gap: 1px;
	}
	.image_gallery{
		background-color: #ffffff;
	}
	.image_gallery .gallery_card{
		width: 100%;
	}
	.image_gallery .gallery_img_card_block .border_left,
	.image_gallery .gallery_img_card_block .border_bottom{
		border: 0;
	}
	.image_gallery .gallery_img_card_block .banner_title{
		padding: 30px 0;
	}
	.image_gallery .gallery_img_card_block .gallery_card h2{
		font-size: 20px;
	}
	.client_testimonial .carousel .slick-next {
		right: 20%;
	}
	.client_testimonial .carousel .slick-prev {
		left: 20%;
	}
	.client_testimonial{
		padding: 40px 0px;
		padding-bottom: 80px;
	}
	.navbar .logo img{
		width: 60px;
	}
	.quality-sec .quality_dtl{
		flex-direction: column;
	}
	.quality-sec .quality_dtl .img_block img {
		width: 100%;
	}
	.quality-sec .quality_info hr{
		margin: 0 auto;
		width: 150px;
	}
	.quality-sec .quality_dtl:nth-child(odd){
		flex-direction: column-reverse;
	}
	.quality-sec{
		padding: 40px 0px;
	}
	.quality-sec .quality_images{
		padding-top: 40px;
		row-gap: 30px;
	}
	.quality-sec::after{
		display: none;
	}
	.customer-sec .customer-logo{
		width: 15%;
	}
	.customer-sec .customer-logo-sec {
		row-gap: 20px;
	}
	.customer-sec .customer-title::before, .customer-sec .customer-title::after{
		display: none;
	}
	.customer-sec {
		padding-top: 40px;
	}
	.custom-btn{
		font-size: 16px;
		padding: 10px;
	}
	.artist-sec .custom-btn {
		max-width: 140px;
		padding: 10px 0px;
	}
	.artist-sec .custom-btn{
		top: 58%;
	}
	.sites{
		padding-bottom: 50px;
		margin-top: -120px;
    padding-top: 115px;
	}
	.sites .card,.contact .left, .contact .right{
		width: 100%;
	}
	.sites .h1,.contact .banner_title {
		padding-bottom: 20px;
	}
	.sites .site-card{
		row-gap: 20px;
	}
	.contact{
		padding-bottom: 50px;
	}
	.contact .contact-form .cusstom-form{
		flex-direction: column;
	}
	.contact .contact-form .submit{
		width: 185px;
	}
	.sites.contact-page,.customer-sec.customer-page {
		padding: 100px 0px 80px 0px;
	}
	.service-card .card,.group-main-card{
		width:100%;
	}
	.service-banner {
		padding-bottom: 20px;
	}
	.group-main.grup-card{
		padding-top: 50px;
	}
	.about-cards .about-card{
		width: 100%;
	}
	.about-cards{
		row-gap: 0;
	}
	.globel-sec .global-dtl img{
		height: 100px;
	}
	.product-sec .product-block{
		flex-direction: column-reverse;
	}
	.product-sec .product-block .product-img, .product-sec .product-dtl{
		width: 100%;
	}
	.product-sec .wrapper {
		row-gap: 30px;
	}
	.product-sec .product-block.left{
		flex-direction: column;
	}
	.product-sec .product-block .product-img{
		margin-bottom: 20px;
	}
	.product-sec {
		padding-bottom: 30px;
	}
	.process-sec .banner_title {
		margin: 0 auto 40px auto;
	}
	.footer .wrapper{
		flex-direction: column;
		align-items: center;
		gap: 15px;
	}
}

