/*
* Title: 3E Partners | HTML5 Template
* Version: 01,

===========================================
    
    All include section: 

    01. Google fonts
    02. Variable Color css
	03. Basic css
	04. Preloader css
	05. hamberger css
	06. header css
	07. home css
	08. partner css
	09. competitive cultures css
	10. how we work css
	11. know more css
	12. three es css
	13. testimonial css
	14. solution css
	15. skill css
	16. differnet css
	17. footer css
	18. back to top css

===========================================


*/

/*======================
   01. Google fonts
========================*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

/*======================
   02. Variable Color css
========================*/
:root {
	--body-bg: #FEFEFE;
	--body-color: #000000;
	--gradient-color01: #24488D;
	--gradient-color02: #1B8CCB;
}


/*======================
   03. Basic css
========================*/
html,
body,
div,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
strong,
i,
ol,
ul,
li,
form,
label,
footer,
header,
menu,
nav,
section {
	margin: 0;
	padding: 0;
}

body {
	line-height: 2.4rem;
	font-size: 1.6rem;
	font-weight: 400;
	background: var(--body-bg);
	color: var(--body-color);
	font-family: 'Poppins', sans-serif;
	overflow-x: hidden;
}

ol,
ul {
	list-style: none;
}

a:hover {
	text-decoration: none;
}

button:focus, input:focus, textarea:focus {
	outline: 0;
}

html {
    font-size: 62.5%; /*1 rem = 10px*/
}

.mt_10 {
	margin-top: 1rem;
}

.mt_15 {
	margin-top: 1.5rem;
}

.mt_30 {
	margin-top: 3rem;
}

.mt_40 {
	margin-top: 4rem;
}

.custom_btn {
	height: 5rem;
	padding: 0 2.6rem;
	border-radius: 5.5rem;
	background: -o-linear-gradient(343deg, var(--gradient-color01) -40.37%, var(--gradient-color02) 138.88%);
	background: linear-gradient(107deg, var(--gradient-color01) -40.37%, var(--gradient-color02) 138.88%);
	font-weight: 600;
	color: #ffffff;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-ms-flex-negative: 0;
	    flex-shrink: 0;
	-webkit-transition: .3s;
	-o-transition: .3s;
	transition: .3s;
}

.custom_btn:hover {
	background: -o-linear-gradient(343deg, var(--gradient-color02) -40.37%, var(--gradient-color01) 138.88%);
	background: linear-gradient(107deg, var(--gradient-color02) -40.37%, var(--gradient-color01) 138.88%);
	color: #ffffff;
}

.head_text {
	font-size: 4.8rem;
	line-height: 5.76rem;
	font-weight: 600;
}

.head_text span {
	color: var(--gradient-color02);
}

.head_text02 {
	font-size: 2.4rem;
	font-weight: 500;
	line-height: 3.36rem;
}

.opacity08 {
	opacity: 0.8;
}

.header_bottom {
	padding-bottom: 3rem;
}

.theme_bg {
	background: var(--gradient-color01);
}


/*======================
   04. Preloader css
========================*/
#preloader {
	position: fixed;
	background: #fff;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 99999;
	height: 100vh;
	width: 100vw;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}

.loader3 {
	width: 5rem;
	height: 5rem;
	display: inline-block;
	padding: 0;
	text-align: left;
}

.loader3 span {
	position: absolute;
	display: inline-block;
	width: 5rem;
	height: 5rem;
	border-radius: 100%;
	background: -o-linear-gradient(343deg, var(--gradient-color01) -40.37%, var(--gradient-color02) 138.88%);
	background: linear-gradient(107deg, var(--gradient-color01) -40.37%, var(--gradient-color02) 138.88%);
	-webkit-animation: loader3 1.0s linear infinite;
	animation: loader3 1.0s linear infinite;
}

.loader3 span:last-child {
	animation-delay: -0.9s;
	-webkit-animation-delay: -0.9s;
}

@keyframes loader3 {
  	0% {
    	-webkit-transform: scale(0, 0);
    	        transform: scale(0, 0);
    	opacity: 0.8;
  	}
  	100% {
    	-webkit-transform: scale(1, 1);
    	        transform: scale(1, 1);
    	opacity: 0;
  	}
}

@-webkit-keyframes loader3 {
  	0% {
    	-webkit-transform: scale(0, 0);
    	opacity: 0.8;
  	}
  	100% {
    	-webkit-transform: scale(1, 1);
    	opacity: 0;
  	}
}

/*======================
   05. hamberger css
========================*/
.hamburger_menu {
    cursor: pointer;
    position: fixed;
    right: 2rem;
    display: none;
    z-index: 999;
    top: 3rem;
}

.hamburger_menu span {
	background: var(--body-color);
	width: 3rem;
	height: 0.3rem;
	display: block;
	margin: 0.5rem 0;
	-webkit-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.hamburger_menu:hover .line_top {
	-webkit-transform: translateY(-100%);
	-ms-transform: translateY(-100%);
	transform: translateY(-100%);
}

.hamburger_menu:hover .line_bottom {
	-webkit-transform: translateY(100%);
	-ms-transform: translateY(100%);
	transform: translateY(100%);
}

.hamburger_menu .line_top.current {
	-webkit-transform: translateY(200%) rotate(135deg);
	-ms-transform: translateY(200%) rotate(135deg);
	transform: translateY(200%) rotate(135deg);
}

.hamburger_menu .line_center.current {
	opacity: 0;
}

.hamburger_menu .line_bottom.current {
	-webkit-transform: translateY(-325%) rotate(-135deg);
	-ms-transform: translateY(-325%) rotate(-135deg);
	transform: translateY(-325%) rotate(-135deg);
}

/*======================
   06. header css
========================*/
header {
	position: fixed;
	height: 9rem;
	z-index: 1000;
	width: 100%;
	-webkit-transition: .3s;
	-o-transition: .3s;
	transition: .3s;
	background: #ffffff;
	top: 0;
	left: 0;
	right: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}

header.sticky {
    -webkit-box-shadow: 0 0.8rem 2rem 0 rgba(0, 0, 0, .1);
            box-shadow: 0 0.8rem 2rem 0 rgba(0, 0, 0, .1);
    height: 7.5rem;
}

header.sticky .hamburger_menu {
    top: 2.6rem !important;
}

header .logo img {
    width: 21.7rem;
}

header nav {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}

header nav ul {
	padding-right: 2rem;
}

header nav li {
    display: inline-block;
}

header nav li:hover > a {
	 color: var(--gradient-color01);
}

header nav li a {
    text-transform: capitalize;
    color: var(--body-color);
    padding: 0 1rem;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    font-weight: 500;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(23, 23, 23, 0.62);
    z-index: 999;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    visibility: hidden;
    opacity: 0;
}

.overlay_add {
    visibility: visible;
    opacity: 1;
}

/*======================
   07. home css
========================*/
.home_wrapper {
	margin-top: 9rem;
	height: 81rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	overflow: hidden;
	position: relative;
}

.home_wrapper .home_shape01 {
    bottom: 5.6rem;
    left: 0;
    width: 6.4rem;
    z-index: 2;
}

.home_wrapper .home_shape02 {
    left: 56%;
    top: 20%;
    z-index: 2;
}

.home_wrapper .home_img01 {
    right: -2rem;
    top: 0;
    bottom: 0;
    width: 74.9rem;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.home_wrapper .home_img02,
.home_wrapper .home_img03 {
	display: none;
}

.home_wrapper .container {
	position: relative;
	z-index: 3;
}

.home_wrapper h1 {
	font-size: 7.2rem;
	line-height: 7.92rem;
	font-weight: 700;
	background: linear-gradient(135deg, #24488D 0%, #1B8CCB 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-shadow: 0 4px 8px rgba(36, 72, 141, 0.1);
	margin-bottom: 2rem;
}

.home_wrapper h1 span {
	background: linear-gradient(135deg, #1B8CCB 0%, #24488D 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	font-weight: 800;
	position: relative;
}

.home_wrapper h1 span::after {
	content: '';
	position: absolute;
	bottom: -0.5rem;
	left: 0;
	width: 100%;
	height: 0.3rem;
	background: linear-gradient(90deg, #1B8CCB 0%, #24488D 100%);
	border-radius: 0.15rem;
	opacity: 0.6;
}

.home_wrapper p {
	font-size: 1.8rem;
	line-height: 2.8rem;
	color: #555;
	font-weight: 400;
	max-width: 60rem;
	margin-bottom: 3rem;
}

/*======================
   08. partner css
========================*/
.partner_wrapper {
	padding: 6rem 0;
	background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
	position: relative;
	overflow: hidden;
}

.partner_wrapper::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23e9ecef" opacity="0.3"/><circle cx="75" cy="75" r="1" fill="%23e9ecef" opacity="0.3"/><circle cx="50" cy="10" r="0.5" fill="%23e9ecef" opacity="0.2"/><circle cx="10" cy="60" r="0.5" fill="%23e9ecef" opacity="0.2"/><circle cx="90" cy="40" r="0.5" fill="%23e9ecef" opacity="0.2"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
	pointer-events: none;
}

.partner_wrapper .partner_slider .owl-stage {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-transition-timing-function: linear !important;
	     -o-transition-timing-function: linear !important;
	        transition-timing-function: linear !important;
}

.partner_wrapper img {
	width: 19.4rem !important;
	height: 6.2rem;
	-o-object-fit: contain;
	   object-fit: contain;
	filter: grayscale(100%) opacity(0.7);
	transition: all 0.3s ease;
	padding: 1rem;
	border-radius: 0.8rem;
}

.partner_wrapper img:hover {
	filter: grayscale(0%) opacity(1);
	transform: translateY(-0.2rem);
	box-shadow: 0 4px 12px rgba(36, 72, 141, 0.1);
}

/*==============================
   09. competitive cultures css
================================*/
.competitive_culture_wrapper {
	padding: 16rem 0 15.5rem 0;
}

.competitive_culture_wrapper .competitive_cultures_shape01 {
    right: 2%;
    bottom: 14%;
    width: 11.8rem;
}

.competitive_culture_wrapper .competitive_cultures_shape02 {
    left: 4%;
    top: 15%;
    width: 11.2rem;
}

.competitive_culture_wrapper .container02 {
    max-width: 98rem !important;
}

.competitive_culture_wrapper .competitive_culture_item {
	padding: 2rem;
	border-radius: 1rem;
	border: 0.1rem solid rgba(0, 0, 0, 0.10);
	background: var(--body-bg);
	-webkit-transition: .3s;
	-o-transition: .3s;
	transition: .3s;
}

.competitive_culture_wrapper .competitive_culture_item:hover {
	background: -o-linear-gradient(343deg, var(--gradient-color01) -40.37%, var(--gradient-color02) 138.88%);
	background: linear-gradient(107deg, var(--gradient-color01) -40.37%, var(--gradient-color02) 138.88%);
}

.competitive_culture_wrapper .competitive_culture_item span {
	border-radius: 50%;
	background: rgba(27, 140, 203, 0.10);
	width: 6.4rem;
	height: 6.4rem;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-ms-flex-negative: 0;
	    flex-shrink: 0;
	margin-right: 2.4rem;
	-webkit-transition: .3s;
	-o-transition: .3s;
	transition: .3s;
}

.competitive_culture_wrapper .competitive_culture_item:hover span {
	background: rgba(254, 254, 254, 0.10);
}

.competitive_culture_wrapper .competitive_culture_item:hover span svg path {
	fill: var(--body-bg);
}

.competitive_culture_wrapper .competitive_culture_item h3 {
	-webkit-transition: .3s;
	-o-transition: .3s;
	transition: .3s;
}

.competitive_culture_wrapper .competitive_culture_item p {
	-webkit-transition: .3s;
	-o-transition: .3s;
	transition: .3s;
}

.competitive_culture_wrapper .competitive_culture_item:hover h3,
.competitive_culture_wrapper .competitive_culture_item:hover p {
	color: var(--body-bg);
}

/*==============================
   10. how we work css
================================*/
.how_work_wrapper {
	padding: 9rem 0 0 0;
}

.how_work_wrapper::before {
	content: "";
	position: absolute;
	bottom: -0.3rem;
	left: 0;
	right: 0;
	width: 100%;
	height: 9.6rem;
	background: var(--body-bg);
}

.how_work_wrapper .we_work_img_shape02 {
    left: 0;
    top: 53%;
}

.how_work_wrapper .how_work_head {
    margin-top: 11rem;
}

.how_work_wrapper .how_work_head .head_text {
	color: var(--body-bg) !important;
}

.how_work_wrapper .how_work_head p {
	color: var(--body-bg) !important;
}

.how_work_wrapper .custom_btn {
	background: var(--body-bg) !important;
	color: var(--body-color) !important;
}

.how_work_wrapper .custom_btn:hover {
	background: -o-linear-gradient(343deg, var(--gradient-color02) -40.37%, var(--gradient-color01) 138.88%) !important;
	background: linear-gradient(107deg, var(--gradient-color02) -40.37%, var(--gradient-color01) 138.88%) !important;
	color: #FDFDFD !important;
}

.how_work_wrapper .we_work_main_img {
    z-index: 1;
}

.how_work_wrapper .we_work_main_img .we_work_img_shape {
    right: -3rem;
    top: 2rem;
    z-index: -1;
}

.how_work_wrapper .we_work_main_img .we_work_img_shape {
    right: 1rem;
    top: 2rem;
    z-index: -1;
    width: 19.5rem;
}

.how_work_wrapper .how_work_wrap {
    margin-top: -10.6rem;
    z-index: 1;
}

.how_work_wrapper .how_work_wrap .how_work_slider {
    width: auto;
}

.how_work_wrapper .how_work_wrap .how_work_item {
	padding: 2.4rem 2.4rem 3.2rem 2.4rem;	
	border-radius: 1rem;
	border: 0.1rem solid rgba(0, 0, 0, 0.10);
	background: var(--body-bg);
	height: 100%;
	-webkit-transition: .3s;
	-o-transition: .3s;
	transition: .3s;
}

.how_work_wrapper .how_work_wrap .how_work_item:hover {
	-webkit-box-shadow: 0.5rem 1.5rem 3.1rem 0 rgba(0, 0, 0, 0.10);
	        box-shadow: 0.5rem 1.5rem 3.1rem 0 rgba(0, 0, 0, 0.10);
}

.how_work_wrapper .how_work_wrap .how_work_item span {
	border-radius: 50%;
	background: var(--gradient-color02);
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	width: 9.3rem;
	height: 9.3rem;
	-ms-flex-negative: 0;
	    flex-shrink: 0;
}

.how_work_wrapper .how_work_wrap .how_work_item span img {
	width: 4rem !important;
}

.how_work_wrapper .how_work_wrap .how_work_slider .how_work_item_none {
	display: none;
}

/*==============================
   11. know more css
================================*/
.know_more_wrapper {
	padding: 16rem 0;
}

.know_more_wrapper .know_more_shape03 {
    bottom: 15rem;
    left: 0;
    width: 34.3289rem;
    z-index: -1;
}

.know_more_wrapper .know_more_shape01 {
    width: 11.83rem;
    z-index: 1;
    left: -3rem;
    bottom: -3rem;
}

.know_more_wrapper .know_more_shape02 {
    right: -3rem;
    top: -4rem;
    width: 19.42rem;
    z-index: -1;
}

.know_more_wrapper .video_box {
	margin-left: 4.5rem;
}

.know_more_wrapper .video_box .video_img {
	border-radius: 2.4rem;
}

.know_more_wrapper .video_box .video_play {
    width: 6rem;
    height: 6rem;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    border-radius: 50%;
    background: var(--body-bg);
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    color: var(--body-color);
    font-size: 2rem;
}

.know_more_wrapper .video_box .video_play::before, .know_more_wrapper .video_box .video_play::after {
    content: "";
    position: absolute;
    display: block;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: 50%;
    background-color: #ffffff;
    -webkit-animation: ripple-1 2s infinite ease-in-out;
            animation: ripple-1 2s infinite ease-in-out;
    z-index: -1;
}

.know_more_wrapper .video_box .video_play::after {
    background: #ffffff;
    -webkit-animation: ripple 2s infinite ease-in-out;
            animation: ripple 2s infinite ease-in-out;
    -webkit-animation-delay: 0.5s;
            animation-delay: 0.5s;
}

@-webkit-keyframes ripple {
    0% {
        -webkit-transform: scale(1);
                transform: scale(1);
        opacity: 1;
    }
    100% {
        -webkit-transform: scale(1.5);
                transform: scale(1.5);
        opacity: 0;
    }
}

@keyframes ripple {
    0% {
        -webkit-transform: scale(1);
                transform: scale(1);
        opacity: 1;
    }
    100% {
        -webkit-transform: scale(1.5);
                transform: scale(1.5);
        opacity: 0;
    }
}

/*=================
   12. three es css
===================*/
.three_es_wrapper {
	padding: 9rem 0;
	background: rgba(27, 140, 203, 0.20);
}

.three_es_wrapper .three_es_shape01 {
    top: 24.9%;
    left: 2.5%;
    width: 15.6rem;
}

.three_es_wrapper .three_es_shape02 {
    right: 13rem;
    top: 3rem;
    width: 11.9rem;
}

.three_es_wrapper .three_es_shape03 {
    right: 0;
    bottom: -8%;
    width: 5.7rem;
}

.three_es_wrapper .three_es_item {
    max-width: 34rem;
    width: 100%;
    padding: 2rem;
    border-radius: 1rem;
    background: -o-linear-gradient(343deg, var(--gradient-color01) -40.37%, var(--gradient-color02) 138.88%);
    background: linear-gradient(107deg, var(--gradient-color01) -40.37%, var(--gradient-color02) 138.88%);
    height: 32.8rem;
    margin-top: 3rem;
}

.three_es_wrapper .three_es_item .three_es_sub .head_text02 {
	color: var(--body-bg) !important;
}

.three_es_wrapper .three_es_item .three_es_sub {
	max-width: 18.3rem;
}

.three_es_wrapper .three_es_item .three_es_sub p {
	color: var(--body-bg);
}

.three_es_wrapper .three_es_item .three_es_img01 {
    bottom: 0;
    right: -2rem;
    height: 26rem;
}

.three_es_wrapper .three_es_item .three_es_img02 {
    bottom: 0;
    right: -2.5rem;
    height: 26rem;
}

.three_es_wrapper .three_es_item .three_es_img03 {
    bottom: 0;
    right: -4rem;
    height: 26rem;
}

/*====================
   13. testimonial css
======================*/
.testimonial_wraper {
	padding: 14rem 0;
}

.testimonial_wraper .testimonial_shape01 {
    width: 15.5rem;
    left: 38%;
    top: 17%;
}

.testimonial_wraper .testimonial_shape02 {
    width: 16.42rem;
    bottom: -8%;
    left: 0;
}

.testimonial_wraper .testimonial_shape03 {
    right: 0;
    bottom: 8%;
    width: 34.3rem;
}

.testimonial_wraper .testimonial_slider01 img {
    width: 40.4rem !important;
}

.testimonial_wraper .testimonial_text {
	max-width: 55.7rem;
	margin-left: 14rem;
}

.testimonial_wraper .testimonial_text .opacity08 {
	display: block;
	margin-top: 0.5rem;
}

/*====================
   14. solution css
======================*/
.solution_wrapper {
    padding-bottom: 16rem;
}

.solution_wrapper .solution_shape {
    width: 15.6rem;
    right: -7rem;
    bottom: 8rem;
}

.solution_wrapper .header_bottom {
    padding-bottom: 3.6rem;
}

.solution_wrapper .custom_row {
    margin-left: 1.2rem;
    margin-right: 1.2rem;
}

.solution_wrapper .custom_padd {
    padding-right: 1.2rem;
    padding-left: 1.2rem;
}

.solution_wrapper .mt_24 {
	margin-top: 2.4rem;
}

.solution_wrapper .solution_item {
	border-radius: 1rem;
	border: 0.1rem solid rgba(0, 0, 0, 0.10);
	background: var(--body-bg);
	padding: 2.4rem;
	height: 100%;
	-webkit-transition: .3s;
	-o-transition: .3s;
	transition: .3s;
}

.solution_wrapper .solution_item:hover {
	-webkit-box-shadow: 0.5rem 1.5rem 3.1rem 0 rgba(0, 0, 0, 0.10);
	        box-shadow: 0.5rem 1.5rem 3.1rem 0 rgba(0, 0, 0, 0.10);
}

.solution_wrapper .solution_item .solution_icon {
	width: 9.3rem;	
	height: 9.3rem;
	border-radius: 50%;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-ms-flex-negative: 0;
	    flex-shrink: 0;
	background: var(--gradient-color02);
}

.solution_wrapper .solution_item .solution_icon img {
	width: 4rem;
}

.solution_wrapper .solution_item .check_icon {
    margin: 0.5rem 0.4rem 0 0;
    width: 2rem !important;
}

.solution_wrapper .solution_item p {
	margin-top: 0.5rem;
}

.solution_wrapper .solution_item p .font600 {
	font-weight: 600;
}

/*==============
   15. skill css
================*/
.skill_wrapper .skill_shape01 {
    top: 0;
    left: 0;
    width: 13.8rem;
}

.skill_wrapper .skill_shape02 {
    right: 2%;
    bottom: 6%;
    width: 15.3rem;
}

.skill_wrapper .head_text {
	color: var(--body-bg) !important;
	margin: 9rem 0 3rem 0;
}

.skill_wrapper .circular_box {
    margin: 3rem 6rem 10rem 0;
}

.skill_wrapper .circular_box .radial-progress {
    max-width: 15.6rem;
    padding: 0;
}

.skill_wrapper .circular_box .radial-progress circle {
    stroke-width: 0.5rem;
}

.skill_wrapper .circular_box .radial-progress text {
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--body-bg) !important;
}

.skill_wrapper .circular_box .head_text02 {
	color: var(--body-bg) !important;
	margin-top: 2rem;
}

/*==================
   16. differnet css
====================*/
.different_wrapper {
	padding: 16rem 0;
}

.different_wrapper .different_shape01 {
    top: 9%;
    left: 2%;
    width: 15.7rem;
}

.different_wrapper .different_shape02 {
    bottom: 0;
    right: -7rem;
    width: 19.4rem;
}

.different_wrapper .different_shape03 {
    top: 3%;
    left: 5%;
    width: 72%;
}

.different_wrapper .different_item {
	margin-top: 3rem;
}

.different_wrapper .different_item span {
	width: 9.3rem;
	height: 9.3rem;
	border-radius: 50%;
	background: #E8F3F9;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-ms-flex-negative: 0;
	    flex-shrink: 0;
	font-size: 3.2rem;
	line-height: 4.16rem;
	font-weight: 600;
	color: var(--gradient-color01);
}

.different_wrapper .different_item h3 {
	margin-top: 2.5rem;
}

/*==================
   17. footer css
====================*/
footer {
	background: var(--body-color);
}

footer::before {
    content: "";
    position: absolute;
    top: -0.2rem;
    left: 0;
    width: 100%;
    height: 19.2rem;
    background: var(--body-bg);
}

footer .newsletter_wrap {
	max-width: 102.5rem;
	width: 100%;
	padding: 6.6rem 11.5rem 6.6rem 11.5rem;
	border-radius: 2.4rem;
	background: var(--body-bg);
	text-align: center;
	-webkit-box-shadow: 0 0.4rem 4rem 0 rgba(0, 0, 0, 0.10);
	        box-shadow: 0 0.4rem 4rem 0 rgba(0, 0, 0, 0.10);
	margin-left: auto;
	margin-right: auto;
	position: relative;
	z-index: 1;
}

footer .newsletter_wrap .email_box {
	width: 41.5rem;
	height: 5.6rem;
	border-radius: 5.2rem;
	border: 0.1rem solid var(--body-color);
	background: var(--body-bg);
	position: relative;
	margin-left: auto;
	margin-right: auto;
}

footer .newsletter_wrap .email_box input {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: transparent;
	border: transparent;
	padding-left: 2.4rem;
	color: var(--body-color);
	opacity: 0.6;
	font-size: 1.6rem;
}

footer .newsletter_wrap .email_box input::-webkit-input-placeholder {
	color: var(--body-color);
	opacity: 0.6;
}

footer .newsletter_wrap .email_box input::-moz-placeholder {
	color: var(--body-color);
	opacity: 0.6;
}

footer .newsletter_wrap .email_box input:-ms-input-placeholder {
	color: var(--body-color);
	opacity: 0.6;
}

footer .newsletter_wrap .email_box input::-ms-input-placeholder {
	color: var(--body-color);
	opacity: 0.6;
}

footer .newsletter_wrap .email_box input::placeholder {
	color: var(--body-color);
	opacity: 0.6;
}

footer .newsletter_wrap .email_box button {
    position: absolute;
    border: transparent;
    height: 4.4rem;
    right: 0.6rem;
    font-weight: 400;
    top: 0.5rem;
}

.mt_70 {
	margin-top: 7rem;
}

footer .footer_wrap .footer_item .footer_logo img {
	width: 21.7rem;
}

footer .footer_wrap .footer_item p,
footer .footer_wrap .footer_item a {
	color: var(--body-bg);	
}

footer .footer_wrap .footer_social a {
	width: 3.2rem;
	height: 3.2rem;
	background: rgba(254, 254, 254, 0.16);
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-ms-flex-negative: 0;
	    flex-shrink: 0;
	border-radius: 50%;
	margin: 2.4rem 1.2rem 0 0;
}

footer .footer_wrap .footer_social a svg path {
	-webkit-transition: .3s;
	-o-transition: .3s;
	transition: .3s;
}

footer .footer_wrap .footer_social a:hover svg path {
	fill: var(--gradient-color01);
}

footer .footer_wrap .footer_item h3 {
	font-size: 1.6rem;
	font-weight: 600;
	color: var(--body-bg);
}

footer .footer_wrap .footer_item ul li a:hover {
	text-decoration: underline;
}

footer .copyright_text {
    border-top: 0.1rem solid rgba(254, 254, 254, 0.12);
    padding: 2.4rem 0;
    margin-top: 3rem;
}

footer .copyright_text p {
	color: var(--body-bg);
}

footer .copyright_text p a {
	color: var(--body-bg);
}

footer .copyright_text p a:hover {
	text-decoration: underline;
	color: #ffffff;
}

/*======================
   18. back to top css
========================*/
.back-to-top {
	font-size: 2.4rem;
	width: 4.5rem;
	height: 4.5rem;
	line-height: 4.5rem;
	text-align: center;
	display: none;
	position: fixed;
	bottom: 3rem;
	right: 2rem;
	z-index: 999999999999;
	border-radius: 50%;
	background: -o-linear-gradient(343deg, var(--gradient-color01) -40.37%, var(--gradient-color02) 138.88%);
	background: linear-gradient(107deg, var(--gradient-color01) -40.37%, var(--gradient-color02) 138.88%);
}

.back-to-top i {
	color: #ffffff;
}