:root {
    --primary-color1: #05F4B7;
    --accent-color: #05F4B7;
}

.hero-automation{
	position: relative;
	min-height: 780px;
	align-content: center;
    background-image: url('../images/automation/hero-bg.jpg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	padding: 285px 0 170px;
}

.hero-automation::before{
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: linear-gradient(0deg, rgba(29, 29, 29, 0.00) 82.42%, rgba(29, 29, 29, 0.80) 100%), linear-gradient(270deg, rgba(29, 29, 29, 0.00) 42.26%, rgba(29, 29, 29, 0.80) 78.56%);
	width: 100%;
	height: 100%;
	z-index: 1;
}

.hero-automation .container{
	position: relative;
	z-index: 2;
}

.hero-content-automation .section-title .section-sub-title{
	background-color: var(--dark-divider-color);
	backdrop-filter: blur(50px);
	-webkit-backdrop-filter: blur(50px);
	border: none;
	padding: 12px 20px 12px 35px;
}

.hero-content-automation .section-title h1{
	font-size: 70px;
}

.hero-content-footer-automation{
	border-top: 1px solid var(--dark-divider-color);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px 40px;
	padding-top: 40px;
}

.hero-content-footer-automation .hero-contact-box-automation{
	max-width: 240px;
}

.hero-contact-box-automation{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px;
}

.hero-contact-box-automation .icon-box{
	position: relative;
	width: 50px;
	height: 50px;
	background: var(--accent-secondary-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}

.hero-contact-box-automation .icon-box::before{
	content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: var(--white-color);
    border-radius: 50%;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.hero-contact-box-automation:hover .icon-box::before{
	transform: scale(1);
}

.hero-contact-box-automation .icon-box img{
	position: relative;
    width: 100%;
    max-width: 24px;
    z-index: 1;
	transition: all 0.4s ease-in-out;
}

.hero-contact-box-automation:hover .icon-box img{
	filter: brightness(0) invert(0);
}

.hero-contact-box-content-automation{
	width: calc(100% - 65px);
}

.hero-contact-box-content-automation h2{
	font-size: 20px;
	line-height: 1.3em;
	color: var(--white-color);
}

.hero-contact-box-content-automation p{
	color: var(--white-color);
	margin: 5px 0 0;
}

.hero-contact-box-content-automation p a{
	color: inherit;
	transition: all 0.4s ease-in-out;
}

.hero-contact-box-content-automation p a:hover{
	color: var(--accent-secondary-color);
}

.our-approach{
	padding: 80px 0;
}

.approach-content{
	margin-right: 3.125vw;
}

.approach-item-list{
	display: flex;
	justify-content: space-between;
	align-items: end;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 20px;
	padding-top: 0px;
}

.approach-item{
	width: calc(25% - 10px);
	background: var(--dark-divider-color);
	border-radius: 20px;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 30px;
	padding: 20px;
	overflow: hidden;
}

.approach-item:before{
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 0;
	background: var(--accent-secondary-color);
	z-index: 0;
	transition: all 0.4s ease-in-out;
}

.approach-item:hover::before{
	top: auto;
    height: 100%;
}

.approach-item .icon-box{
	position: relative;
	height: 50px;
	width: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--accent-secondary-color);
	border-radius: 50%;
	z-index: 1;
	margin-top: 10px;
}

.approach-item .icon-box::before{
	content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--secondary-color);
    border-radius: 100px;
    transform: scale(0);
    width: 100%;
    height: 100%;
    transition: all 0.4s ease-in-out;
	z-index: 0;
}

.approach-item:hover .icon-box::before{
	transform: scale(1);
}

.approach-item .icon-box img{
	position: relative;
	width: 100%;
	max-width: 24px;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.approach-item:hover .icon-box img{
	filter: brightness(0) invert(0);
}

.approach-item-content{
	position: relative;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.approach-item-content h3,
.approach-item h3{
	color: var(--white-color);
	font-size: 22px;
	line-height: 1.4em;
}

.approach-item-content p{
	color: var(--white-color);
	margin: 15px 0 0;
}

.approach-item-content .text-highlighted{
	border-bottom: 6px solid var(--accent-color);
}

.approach-image{
	margin-top: 30px;
}

.approach-image figure{
	display: block;
	border-radius: 20px;
}

.approach-image img{
	width: 100%;
	aspect-ratio: 1 / 0.394;
	object-fit: cover;
	border-radius: 20px;
}

.the-problem-automation {
	padding: 60px 0;
}

.problem-item-slider-automation{
    position: relative;
	height: 100%;
}

.problem-img-slider-automation .swiper-wrapper{
	cursor: none;
	height: 100%;
}

.problem-img-slider-automation,
.problem-img-slider-automation .swiper-slide{
	height: 100%;
}

.problem-img-slider-automation .swiper-slide figure{
    display: block;
	height: 100%;
}

.problem-img-slider-automation .swiper-slide img{
    width: 100%;
	height: 100%;
    aspect-ratio: 1 / 0.957;
    object-fit: cover;
}

.problem-img-item-automation{
    position: absolute;
	right: 10px;
    bottom: 10px;
    max-width: 220px;
	background-color: var(--divider-color);
	border-radius: 4px;
	backdrop-filter: blur(30px);
	-webkit-backdrop-filter: blur(30px);
	padding: 10px;
	z-index: 1;
}

.problem-img-item-automation .swiper-slide figure{
	display: block;
}

.problem-img-item-automation .swiper-slide img{
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
}

.problem-img-item-automation .swiper-slide{
	cursor: none;
}

.problem-content-box-automation{
	height: 100%;
	align-content: center;
	padding-left: 5.208vw;
}

.problem-item-list-automation{
	display: flex;
	justify-content: start;
	flex-wrap: wrap;
	gap: 30px;
}

.problem-item-automation{
	position: relative;
	width: calc(33.33% - 20px);
	background-color: var(--dark-divider-color);
	backdrop-filter: blur(30px);
	-webkit-backdrop-filter: blur(30px);
	border-radius: 4px;
	padding: 30px;
	overflow: hidden;
}

.problem-item-automation::before{
	content: '';
    position: absolute;
    top: 0;
	right: 0;
	bottom: 0;
    left: auto;
    background: var(--accent-secondary-color);
    border-radius: 4px;
    width: 0;
    height: 100%;
    transition: all 0.4s ease-in-out;
}

.problem-item-automation:hover:before{
	width: 100%;
	left: 0;
}

.problem-item-automation .icon-box,
.problem-item-title-automation{
	position: relative;
	z-index: 1;
}

.problem-item-automation .icon-box{
	margin-bottom: 20px;
}

.problem-item-automation .icon-box img{
	width: 100%;
	max-width: 30px;
	transition: all 0.4s ease-in-out;
}

.problem-item-automation:hover .icon-box img{
	filter: brightness(0) invert(0);
}

.problem-item-title-automation h3{
	font-size: 20px;
	color: var(--white-color);
	transition: all 0.4s ease-in-out;
}

.problem-footer-box-automation{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px 40px;
	margin-top: 50px;
}

.problem-footer-contact-box-automation{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px;
}

.our-solutions-automation{
	padding: 80px 0;
	background: var(--white-color);
}

.solutions-content-automation p:last-child{
	margin: 0;
}

.solutions-item-list-automation{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 10px;
}

.solutions-item-automation{
	width: calc(33% - 3px);
	background-color: var(--secondary-color);
	border-radius: 4px;
	display: flex;
	align-items: start;
	flex-wrap: wrap;
	gap: 15px;
	padding: 30px 25px;
	transition: all 0.4s ease-in-out;
}

.solutions-item-automation:hover{
	background-color: var(--primary-color);
}

.solutions-item-automation .icon-box img{
	width: 30px;
	transition: all 0.4s ease-in-out;
}

.solutions-item-automation:hover .icon-box img{
	filter: brightness(0) invert(1);
}

.solutions-item-content-automation{
	width: calc(100% - 45px);
}

.solutions-item-content-automation h3{
	font-size: 20px;
	line-height: 1.4em;
	transition: all 0.4s ease-in-out;
}

.solutions-item-automation:hover .solutions-item-content-automation h3{
	color: var(--white-color);
}

.solutions-item-content-automation ul {
	list-style: none;
	padding: 0px;
	margin: 0px;
	margin-top: 15px;
}

.solutions-item-content-automation ul li {
	position: relative;
	line-height: 1.5em;
	padding-left: 25px;
	margin-bottom: 15px;
    color: var(--text-color);
}

.solutions-item-automation:hover .solutions-item-content-automation ul li {
    color: var(--white-color);
}

.solutions-item-content-automation ul li:last-child {
	margin-bottom: 0;
}

.solutions-item-content-automation ul li:before{
	content: '\f058';
	position: absolute;
	font-family: 'Font Awesome 7 Free';
	font-size: 18px;
	font-weight: 900;
	color: var(--accent-color);
	top: 0;
	left: 0;
}

.solutions-image-automation{
	margin-left: 15px;
}

.solutions-image-automation figure{
	display: block;
	border-radius: 4px;
}

.solutions-image-automation figure img{
	width: 100%;
	aspect-ratio: 1 / 0.893;
	object-fit: cover;
	border-radius: 4px;
}

.work-process{
	padding: 120px 0;
}

.work-process-item-list{
	display: flex;
	flex-wrap: wrap;
	gap: 60px 30px;
}

.work-process-item{
	width: calc(25% - 30px);
	display: flex;
	flex-direction: column;
	gap: 30px;
	text-align: center;
}

.work-process-item:nth-child(4n + 2),
.work-process-item:nth-child(4n + 4){
	flex-direction: column-reverse;
}

.work-process-item-image{
	max-width: 240px;
	background: var(--dark-divider-color);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border-radius: 25px;
	padding: 15px;
	margin: 0 auto;
}

.work-process-item-image figure{
	display: block;
	border-radius: 25px;
}

.work-process-item-image figure img{
	width: 100%;
	aspect-ratio: 1 / 0.5;
	object-fit: cover;
	border-radius: 25px;
}

.work-process-item-step{
	display: inline-block;
	background: var(--dark-divider-color);
	backdrop-filter: blur(30px);
	-webkit-backdrop-filter: blur(30px);
	border-radius: 40px;
	padding: 9px 20px;
	margin-bottom: 20px;
}

.work-process-item-step p{
	font-size: 14px;
	font-weight: 500;
	line-height: 1em;
	color: var(--white-color);
	margin: 0;
}

.work-process-item-content h3{
	font-size: 20px;
	color: var(--white-color);
}

.work-process-item-content p{
	color: var(--white-color);
	margin: 10px 0 0;
}

.work-process .section-footer-text{
	margin-top: 60px;
}

.our-testimonials-alt{
	background: var(--primary-color);
	padding: 120px 0;
}

.testimonial-cta-box-alt{
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 30px;
	height: 100%;
	background: var(--secondary-color);
	border-radius: 4px;
	padding: 30px;
}

.testimonial-cta-box-header-alt{
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 30px;
}

.testimonial-cta-box-header-alt h2{
	font-size: 50px;
	line-height: 1em;
}

.testimonial-cta-box-header-alt h2 sub{
	font-size: 20px;
	bottom: 0;
}

.testimonial-cta-box-header-alt p{
	margin: 10px 0 0;
}

.google-logo-alt{
	margin-bottom: 20px;
}

.google-logo-alt img{
	width: 100%;
	max-width: 155px;
	height: 50px;
}

.testimonial-cta-box-body-alt .satisfy-image figure img{
	max-width: 40px;
}

.testimonial-cta-box-body-alt .satisfy-image.add-more{
	width: 42px;
	height: 42px;
}

.testimonial-cta-box-body-alt .satisfy-image.add-more h3{
	font-size: 14px;
}

.testimonial-cta-client-content-alt{
	margin-top: 15px;
}

.testimonial-cta-client-content-alt p:last-child{
	margin: 0;
}

.testimonial-slider-alt,
.testimonial-slider-alt .swiper,
.testimonial-slider-alt .swiper .swiper-wrapper,
.testimonial-slider-alt .swiper .swiper-slide,
.testimonial-item-alt{
	height: 100%;
}

.testimonial-slider-alt .swiper-wrapper{
	cursor: none;
}

.testimonial-item-alt{
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 30px;
	min-height: 435px;
	background: var(--dark-divider-color);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border-radius: 4px;
	padding: 30px;
}

.testimonial-item-rating-alt i{
	font-size: 16px;
	color: var(--accent-secondary-color);
}

.testimonial-item-title-alt{
	margin-top: 30px;
}

.testimonial-item-title-alt h2{
	font-size: 20px;
	color: var(--white-color);
}

.testimonial-item-content-alt p{
	color: var(--white-color);
	margin: 0;
}

.testimonial-author-alt{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px;
	border-top: 1px solid var(--dark-divider-color);
	padding-top: 30px;
	margin-top: 30px;
}

.testimonial-author-image-alt figure{
	display: block;
	border-radius: 50%;
}

.testimonial-author-image-alt figure img{
	width: 100%;
	max-width: 60px;
	border-radius: 50%;
}

.testimonial-author-content-alt h2{
	font-size: 20px;
	color: var(--white-color);
}

.testimonial-author-content-alt p{
	color: var(--white-color);
	line-height: normal;
	margin: 5px 0 0;
}

.our-testimonials-alt .company-supports-slider-box-alt{
    margin-top: 60px;
}

.our-products-alt{
	padding: 120px 0;
	background: var(--secondary-color) url('../alien/section-bg-3.png') no-repeat;
	background-position: bottom -180px center;
	background-size: auto;
}

.product-box-alt{
	position: relative;
    min-height: 450px;
    height: calc(100% - 30px);
	align-content: end;
    padding: 40px;
    margin-bottom: 30px;
}

.product-box-image-alt{
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	height: 100%;
	width: 100%;
}

.product-box-image-alt a{
    display: block;
    height: 100%;
	border-radius: 4px;
    overflow: hidden;
    cursor: none;
}

.product-box-image-alt figure{
	position: relative;
    display: block;
    height: 100%;	
}

.product-box-image-alt figure::before{
	content: ' ';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, transparent 50%, rgba(13, 13, 13, 0.80) 100%);
	z-index: 1;
}

.product-box-image-alt figure img{
	width: 100%;
    height: 100%;
    object-fit: cover;
	border-radius: 4px;
    transition: all 0.6s ease-in-out;
}

.product-box-alt:hover .product-box-image-alt figure img{
	transform: scale(1.06);
}

.product-box-body-alt{
	position: relative;
	z-index: 1;
}

.product-box-body-alt .icon-box{
	position: relative;
	width: 60px;
	height: 60px;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: var(--accent-color);
	border-radius: 50%;
	margin-bottom: 40px;
}

.product-box-body-alt .icon-box::before{
	content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: var(--primary-color);
    border-radius: 50%;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.product-box-alt:hover .product-box-body-alt .icon-box::before{
	transform: scale(1);
}

.product-box-body-alt .icon-box img{
	position: relative;
    width: 100%;
    max-width: 30px;
    z-index: 1;
}

.product-box-content-alt h2{
	font-size: 20px;
	line-height: 1.4em;
	color: var(--white-color);
}

.product-box-content-alt h2 a{
	color: inherit;
}

.product-box-content-alt p{
	color: var(--white-color);
	margin: 10px 0 0;
}

.our-products{
	padding: 120px 0;
}

.product-box{
	background: var(--dark-divider-color);
	backdrop-filter: blur(50px);
	-webkit-backdrop-filter: blur(50px);
	border-radius: 4px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 40px;
	transition: all 0.4s ease-in-out;
}

.product-box:hover{
	transform: translateY(-5px);
}

.product-box .icon-box{
	margin-bottom: 50px;
}

.product-box .icon-box img{
	width: 100%;
	max-width: 80px;
}

.product-box-content h2{
	font-size: 20px;
	color: var(--white-color);
}

.product-box-content h2 a{
	color: inherit;
}

.product-box-content p{
	color: var(--white-color);
	margin: 10px 0 0;
}

.product-box-btn{
	border-top: 1px solid var(--dark-divider-color);
	padding-top: 30px;
	margin-top: 30px;
}

.our-products .company-supports-slider-box{
    margin-top: 90px;
}

.our-global-network-alt{
	position: relative;
	background-image: url("../alien/our-network-bg-image-alt.jpg");
	background-position: center center;
	padding: 120px 0 0;
}

.our-global-network-alt::before{
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--primary-color);
	opacity: 90%;
}

.our-global-network-alt .container{
	position: relative;
	z-index: 1;
}

.our-global-network-alt .section-row{
	margin-bottom: 0;
}

.our-global-network-alt .enquire-now-circle-alt{
	text-align: end;
}

.global-network-box-alt{
	display: flex;
	flex-wrap: wrap;
	align-items: end;
	gap: 30px;
	margin-top: 120px;
}

.global-presence-box-alt{
	position: relative;
	max-width: 525px;
	padding: 20px 20px 0;
	background-color: var(--bg-color);
	border-radius: 4px 4px 0 0;
}

.global-presence-box-alt::before,
.global-presence-box-alt::after{
	content: "";
	position: absolute;
	bottom: 0;
	left: -4px;
	width: 4px;
	height: 4px;
	background-color: var(--bg-color);
	mask: url("../alien/image-corner-bg-shape.svg");
	-webkit-mask: url("../alien/image-corner-bg-shape.svg");
	mask-repeat: no-repeat;
	mask-size: cover;
}

.global-presence-box-alt::after{
	right: -4px;
	left: auto;
	transform: rotate(-270deg);
}

.global-presence-body-alt{
	background: var(--white-color);
	border-radius: 4px;
	padding: 40px;
}

.global-presence-content-alt{
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 30px;
	margin-bottom: 30px;
}

.global-presence-content-alt h3{
	font-size: 20px;
}

.global-presence-content-alt p{
	margin: 10px 0 0;
}

.global-presence-image-alt figure{
	display: block;
	border-radius: 4px;
}

.global-presence-image-alt figure img{
	width: 100%;
	aspect-ratio: 1 / 0.47;
	object-fit: cover;
	border-radius: 4px;
}

.network-body-content-alt{
	width: calc(100% - 555px);
	padding-bottom: 80px;
}

.network-content-alt{
	max-width: 580px;
	margin-bottom: 30px;
}

.network-content-alt h3{
	font-size: 30px;
	color: var(--white-color);
}

.network-content-alt p{
	color: var(--white-color);
	margin: 10px 0 0;
}

.network-counter-list-alt{
	display: flex;
	flex-wrap: wrap;
	gap: 30px 3.125vw;
}

.network-counter-item-alt{
	position: relative;
	width: calc(33.33% - 2.083vw);
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
}

.network-counter-item-alt::before{
	content: "";
	position: absolute;
	top: 0;
	right: -1.563vw;
	bottom: 0;
	background: var(--dark-divider-color);
	width: 1px;
	height: 100%;
}

.network-counter-item-alt:nth-child(3n + 3)::before,
.network-counter-item-alt:last-child::before{
	display: none;
}

.network-counter-item-alt .icon-box img{
	width: 100%;
	max-width: 50px;
}

.network-counter-item-content-alt{
	width: calc(100% - 65px);
}

.network-counter-item-content-alt h2{
	font-size: 48px;
	color: var(--white-color);
	line-height: 1em;
}

.network-counter-item-content-alt p{
	color: var(--white-color);
	margin: 10px 0 0;
}

@media only screen and (max-width: 1440px){
	.problem-content-box-automation{
		padding-left: 3.472vw;
	}
}

@media only screen and (max-width: 1024px){
	.hero-automation::before{
		background: var(--primary-color);
        opacity: 60%;
	}
    .approach-content{
		margin: 0 0 30px;
	}

	.approach-item{
		min-height: auto;
		padding: 15px;
	}
    .problem-item-slider-automation,
	.problem-img-slider-automation,
	.problem-img-slider-automation .swiper-wrapper,
	.problem-img-slider-automation .swiper-slide,
	.problem-img-slider-automation .swiper-slide figure{
		height: auto;
	}

	.problem-img-slider-automation .swiper-slide img{
		height: auto;
		aspect-ratio: 1 / 0.67;
	}

	.problem-content-box-automation{
		padding-left: 15px;
		height: auto;
	}
    .solutions-content-box-automation{
		margin-bottom: 30px;
	}
	.solutions-image-automation{
		max-width: 740px;
		margin: 0 auto;
	}
    .work-process-item{
		width: calc(50% - 15px);
	}

	.work-process-item:nth-child(4n + 2),
	.work-process-item:nth-child(4n + 4){
		flex-direction: column;
	}
    .product-box-alt{
		padding: 30px;
	}
    .global-presence-box-alt{
		max-width: 380px;
	}

	.global-presence-body-alt{
		padding: 20px;
	}

	.network-body-content-alt{
		width: calc(100% - 410px);
		padding-bottom: 40px;
	}

	.network-counter-item-alt{
		text-align: center;
	}

	.network-counter-item-alt .icon-box{
		margin: 0 auto;
	}

	.network-counter-item-content-alt{
		width: 100%;
	}

	.network-counter-item-content-alt p{
		margin-top: 5px;
	}
}

@media only screen and (max-width: 991px){
	.hero-automation{
        padding: 150px 0 60px;
    }

	.hero-content-automation .section-title .section-sub-title{
		padding: 8px 14px 8px 29px;
	}

	.hero-content-automation .section-title .section-sub-title::before{
		left: 14px;
	}

	.hero-content-automation .section-title h1{
		font-size: 48px;
	}

	.hero-content-footer-automation{
		gap: 20px 30px;
		padding-top: 30px;
	}

	.hero-contact-box-automation .icon-box{
		width: 44px;
		height: 44px;
	}

	.hero-contact-box-automation .icon-box img{
		max-width: 22px;
	}

	.hero-contact-box-content-automation{
		width: calc(100% - 59px);
	}

	.hero-contact-box-content-automation h2{
		font-size: 18px;
	}
    .our-approach{
		padding: 60px 0;
	}

	.approach-item{
		padding: 15px;
		min-height: auto;
	}

	.approach-item-content h3{
		font-size: 20px;
	}

	.approach-image{
		margin-top: 40px;
	}
    .problem-content-box-automation{
		padding-left: 15px;
	}

	.problem-item-list-automation{
		gap: 20px;
	}

	.problem-item-automation{
		width: calc(33.33% - 13.33px);
		padding: 20px;
	}

	.problem-footer-box-automation{
		margin-top: 30px;
	}
    .our-solutions-automation{
		padding: 50px 0;
	}

	.solutions-item-list-automation{
		gap: 20px;
	}

	.solutions-item-automation{
		width: 100%;
		padding: 20px;
		gap: 10px;
	}

	.solutions-item-automation .icon-box img{
		max-width: 24px;
	}

	.solutions-item-content-automation{
		width: calc(100% - 34px);
	}
    .work-process{
		padding: 60px 0;
	}

	.work-process-item-list{
		gap: 40px 30px;
	}

	.work-process-item{
		gap: 20px;
	}

	.work-process-item-image{
		max-width: 200px;
		padding: 10px;
	}

	.work-process-item-step{
		padding: 7px 15px;
		margin-bottom: 15px;
	}

	.work-process .section-footer-text{
		margin-top: 40px;
	}
    .our-testimonials-alt{
		padding: 60px 0;
	}

	.testimonial-cta-box-alt{
		gap: 20px;
		padding: 20px;
	}

	.testimonial-cta-box-header-alt{
		padding-bottom: 20px;
	}

	.testimonial-cta-box-header-alt h2{
		font-size: 38px;
	}

	.testimonial-item-alt{
		min-height: auto;
		padding: 20px;
		gap: 20px;
	}

	.testimonial-item-title-alt{
		margin: 15px 0 0;
	}

	.testimonial-author-alt{
		padding-top: 20px;
		margin-top: 20px;
	}

	.testimonial-author-image-alt figure img{
		max-width: 50px;
	}

	.our-testimonials-alt .company-supports-slider-box-alt{
		margin-top: 40px;
	}
    .our-products-alt{
		background-size: 100% auto;
		padding: 60px 0px;
	}

	.product-box-alt{
		min-height: 400px;
	}

	.product-box-body-alt .icon-box{
		width: 50px;
		height: 50px;
		margin-bottom: 30px;
	}

	.product-box-body-alt .icon-box img{
		max-width: 24px;
	}
    .our-products{
		padding: 60px 0;
	}

	.product-box{
		padding: 30px;
	}

	.product-box .icon-box{
		margin-bottom: 30px;
	}

	.product-box .icon-box img{
		max-width: 60px;
	}

	.product-box-btn{
		margin-top: 20px;
		padding-top: 20px;
	}

	.our-products .company-supports-slider-box{
		margin-top: 30px;
	}
    .our-global-network-alt{
		padding: 60px 0;
	}

	.our-global-network-alt .enquire-now-circle-alt{
		display: none;
	}

	.global-network-box-alt{
		margin-top: 30px;
	}

	.global-presence-box-alt,
	.network-content-alt{
		max-width: 100%;
	}

	.global-presence-box-alt{
		padding: 20px;
		border-radius: 4px;
	}

	.global-presence-box-alt::before,
	.global-presence-box-alt::after{
		display: none;
	}

	.global-presence-content-alt{
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

	.global-presence-image-alt figure{
		max-width: 500px;
		margin: 0 auto;
	}

	.network-body-content-alt{
		width: 100%;
		padding-bottom: 0;
	}

	.network-content-alt h3{
		font-size: 26px;
	}

	.network-counter-item-content-alt h2{
		font-size: 38px;
	}
}

@media only screen and (max-width: 767px){
	.hero-content-automation .section-title h1{
		font-size: 28px;
	}

	.hero-content-footer-automation{
		gap: 20px;
	}

	.hero-contact-box-content-automation h2{
		font-size: 16px;
	}
    .approach-item{
		width: 100%;
		padding: 15px;
		gap: 20px;
	}

	.approach-item-content h3{
		font-size: 18px;
	}

	.approach-item-content p{
		margin-top: 10px;
	}

	.approach-image{
        margin-top: 30px;
    }

	.approach-image img{
		aspect-ratio: 1 / 0.5;
	}
    .problem-img-slider-automation .swiper-slide img{
		aspect-ratio: 1 / 0.8;
	}

	.problem-item-automation{
		width: calc(50% - 10px);
		padding: 15px;
	}

	.problem-item-title-automation h3{
		font-size: 18px;
	}

	.problem-footer-box-automation{
		gap: 20px;
	}
    .solutions-item-automation{
		width: 100%;
		justify-content: start;
		text-align: start;
	}

	.solutions-item-content-automation{
		width: 100%;
	}

	.solutions-item-content-automation h3{
		font-size: 18px;
	}
    .work-process-item-list{
        gap: 30px;
    }

	.work-process-item{
		width: 100%;
	}

	.work-process-item-content h3{
		font-size: 18px;
	}
    .testimonial-cta-box-alt{
		height: auto;
		margin-bottom: 30px;
	}

	.testimonial-cta-box-header-alt h2{
		font-size: 26px;
	}

	.testimonial-slider-alt,
	.testimonial-slider-alt .swiper,
	.testimonial-slider-alt .swiper .swiper-wrapper,
	.testimonial-slider-alt .swiper .swiper-slide,
	.testimonial-item-alt{
		height: auto;
	}

	.testimonial-item-alt{
		min-height: initial;
	}

	.testimonial-item-title-alt h2{
		font-size: 18px;
	}

	.testimonial-author-content-alt h2{
		font-size: 18px;
	}
    .product-box-alt{
		padding: 20px;
	}

	.product-box-body-alt .icon-box{
		margin-bottom: 20px;
	}

	.product-box-content-alt h2{
		font-size: 18px;
	}
    .product-box{
		padding: 20px;
	}

	.product-box .icon-box{
		margin-bottom: 20px;
	}

	.product-box-content h2{
		font-size: 18px;
	}

	.our-products .company-supports-slider-box{
		margin-top: 10px;
	}
    .global-presence-box-alt,
	.global-presence-body-alt{
		padding: 10px;
	}

	.global-presence-content-alt h3{
		font-size: 18px;
	}
	
	.network-content-alt h3{
		font-size: 22px;
	}

	.network-counter-list-alt{
		gap: 30px 20px;
	}

	.network-counter-item-alt{
		width: calc(50% - 10px);
	}

	.network-counter-item-alt::before{
		right: -10px;
	}
	
	.network-counter-item-alt:nth-child(3n - 3)::before{
		display: block;
	}
	
	.network-counter-item-alt:nth-child(2n - 2)::before,
	.network-counter-item-alt:last-child::before{
		display: none;
	}

	.network-counter-item-content-alt h2{
		font-size: 26px;
	}
}