/*************** Import Css **************/
/*@import "common.css";
@import "fonts.css";*/
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
/*font-family: "Roboto", sans-serif;*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
/*font-family: "Montserrat", sans-serif;*/

/*****remove gap******/
.remove-top-gap {
    padding-top: 0 !important;
}
.remove-bottom-gap {
    padding-bottom: 0 !important;
}
/****header-area*****/
.header-main {
    padding: 40px 0;
    position: relative;
    z-index: 99;
    background-color: #fff;
}
.header-logo img {
    width: 189px;
}
.header-wrap {
    padding: 0 70px;
}
.header-menu ul {
    display: flex;
    align-items: center;
    justify-content: end;
    padding: 0;
    margin: 0;
    list-style: none;
}
.header-menu > ul > li {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    line-height: 24px;
    color: #14203B;
    font-weight: 500;
    padding-left: 55px;
    text-transform: uppercase;
}
.header-menu > ul > li > a {
    color: #14203B;
    position: relative;
}
.header-menu > ul > li > a::after {
    content: "";
    height: 1px;
    width: 0;
    background-color: #14203B;
    position: absolute;
    left: -40px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
	display:none;
}
.header-menu > ul > li > a:hover {
    color: #8B8679;
}
.header-menu > ul > li > a:hover::after {
    width: 30px;
}
.header-menu > ul > li:last-child > a::before {
    content: "";
    height: calc(100% + 60px);
    width: 1px;
    background-color: #DED5C8;
    position: absolute;
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
	display:none;
}
.header-menu .current-menu-item a::after {
    width: 30px;
}
.header-area.fixed_header .header-blank {
    display:block;
}
.header-area.fixed_header .header-main {
    position: fixed;
    top: -100%;
    left: 0px;
    width: 100%;
    padding: 30px 0;
    box-shadow: 0px 5px 15px 0px rgba(0,0,0,0.1);
    -webkit-box-shadow: 0px 5px 15px 0px rgba(0,0,0,0.1);
}
.header-area.fixed_header.stky .header-main {
    top: 0px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.header-blank {
    height: 128px;
    display: none;
}
.menu-bar {
    position: relative;
    max-width: 26px;
    width: 100%;
    margin-left: auto;
    cursor: pointer;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.menu-bar div, .menu-bar::after, .menu-bar::before {
    display: block;
    background-color: #8B8679;
    content: '';
    height: 2px;
    margin: 5px 0 5px auto;
    width: 26px;
    border-radius: 20px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.menu-bar.active  div {
    transform: scale(0);
}
.menu-bar.active:before {
    transform: translateY(6px) rotate(135deg);
}
.menu-bar.active:after {
    transform: translateY(-8px) rotate(-135deg);
}
/*******banner-area***********/
.banner-area {
    min-height: 720px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 0;
    background-position: top right;
}
.banner-content-wrapper{
	max-width:845px;
}
.banner-content h1 strong {
    display: block;
}
.banner-content h1 {
    margin-bottom:20px;
}
.banner-content p{
	font-size:24px;
	line-height:150%;
	font-family: "Roboto", sans-serif;
	color:#FFFFFF;
	margin-bottom: 35px;
}
.banner-content .common-button {
    background-color: transparent;
}
/*.banner-content .common-button:hover {
    background-color: #000;
    border-color: #000;
}*/
/***partner-area*****/
.partner-area {
    /*padding: 100px 0 45px;*/
	padding:25px 0px;
}
.partner-slider .swiper-wrapper {
    transition-timing-function: linear !important;
    align-items: center;
}
.each-partner {
    text-align: center;
}
.partner-content{
	padding:0px 50px;
}
.partner-content p{
	font-family: "Roboto", sans-serif;
	font-weight:400;
	font-size:24px;
	line-height:28px;
	color:#222222;
}
.partner-area .service-heading {
    padding-top: 60px;
}
/****service-area*******/
.service-area {
    padding: 45px 0 95px;
    overflow-x: clip;
    position: relative;
}
.service-heading {
    padding-bottom: 50px;
    padding-top: 46px;
}
.service-heading h3 {
    margin-bottom: 8px;
}
.each-service {
    background-color: #FBF9F9;
	perspective: 1000px;
    height: 100%;
}
.each-service-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}
.each-service:hover .each-service-inner {
    transform: rotateY(180deg);
}
.each-service-back{
	transform: rotateY(180deg);
	position:absolute;
	top:0px;
	left:0px;
	width:100%;
	height:100%;
	background:#FBF9F9;
	-webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.each-service-front{
	-webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.each-service-text {
    padding: 78px 30px;
    /*display: flex;*/
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
    height: 100%;
}
.each-service-text h4, .each-service-back h4{
	font-size:32px;
	line-height:36px;
	margin:0px;
	font-weight:700;
	text-align:center
}
.each-service-back h4{
	margin-bottom:80px;
}
.each-service-back{
	padding: 78px 55px;
}
.each-service-back ul{
	margin:0px;
	padding:0px;
	list-style:none;
}
.each-service-back ul li{
	font-size:24px;
	line-height:36px;
	color:#000000;
	font-weight:400;
}
.each-service-back ul li:before{
	width:6px;
	height:6px;
	background:#000;
	border-radius:100%;
	display:inline-block;
	content:'';
	vertical-align: middle;
    margin-right: 12px;
}
.each-service-img {
    /*height: 350px;*/
}
.each-service-img img {
    height: 100%;
    object-fit: cover;
    object-position: top;
}
.service-slider {
    position: absolute;
    right: 0;
    width: 86.5%;
    top: 0;
    padding-top: 123px;
}
.service-slider-control {
    position: relative;
    right: 7%;
	top: 60px;
}
.service-slider-control .swiper-button-next {
    right: 0;
}
.service-slider-control .swiper-button-prev {
    right: 50px;
    left: auto;
}
/****about-us-area*****/
.about-us-area {
    overflow: hidden;
    padding: 25px 0;
}
.about-us-wrap {
    margin: 0 -5px;
}
.about-each {
    border: 5px solid #fff;
}
.about-us-left {
    height: 100%;
}
.about-us-left img {
    height: 100%;
    object-fit: cover;
    object-position: top;
}
.each-about-small-img {
    height: 100%;
}
.each-about-small-img img {
    height: 100%;
    object-fit: cover;
    object-position: top;
}
.each-about-small-text {
    height: 100%;
}
.flip-card {
    background-color: transparent;
    perspective: 1000px;
    height: 100%;
}
.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}
.flip-card .flip-card-inner {
    transform: rotateY(180deg);
}
.flip-card-front, .flip-card-back {
    /* position: absolute; */
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    padding: 45px;
}
.flip-card-front {
    background-color: #8B8679;
    display: flex;
    flex-direction: column;
    justify-content: end;
    position: absolute;
}
.flip-card-back {
    background-color: #8B8679;  
    transform: rotateY(180deg);
}
.each-about-small-text .txt-btn {
    color: #fff;
    font-size: 28px;
    line-height: 36px;
    font-weight: 700;
    text-transform: none;
    display: block;
}
.each-about-small-text .txt-btn::after {
    height: 35px;
    width: 35px;
    background-image: url(../images/service-arrow.svg);
    background-size: 35px;
    right: 0;
}
.flip-card-back h4 {
    color: #fff;
    font-weight: 700;
	font-size:40px;
    margin-bottom: 25px;
}
.flip-card-back p {
    color: #fff;
	line-height: 150%;
}
.flip-card-back ul {
    padding-left: 25px;
}
.flip-card-back li {
    color: #fff;
    font-size: 16px;
    line-height: 20px;
}
.about-left-part-text{
	background-color: #8B8679;
    height: 100%;
    border: 5px solid #fff;
	display:flex;
	justify-content:center;
	align-items:center;
	padding:30px 173px;
}
.about-left-content h4{
	color: #fff;
    font-weight: 700;
    margin-bottom: 30px;
	font-size:40px;
}
.about-left-content h6{
	color: #fff;
    font-weight: 700;
    margin-bottom: 20px;
	font-size:24px;
}
.about-left-content ul li{
	color:#fff;
	font-size:16px;
	line-height:150%;
}
.about-left-content ul li:not(:last-child){
	margin-bottom:10px;
}
/******expertise-area*******/
.expertise-area {
    padding: 95px 0;
    display: none;
}
.expertise-heading {
    max-width: 600px;
    width: 100%;
    margin-bottom: 75px;
}
.expertise-main .row {
    margin: 0 -17px;
}
.expertise-main .col-lg-4 {
    padding: 0 17px;
}
.each-expertise {
    padding: 86px 105px 50px;
    background-color: #FBF9F9;
    min-height: 500px;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
    row-gap: 30px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.each-expertise::after {
    content: "";
    height: 74%;
    width: 1px;
    background-color: #DED5C8;
    position: absolute;
    left: 54px;
    top: 0;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.each-expertise:hover {
    box-shadow: 0px 10px 15px -3px rgba(0,0,0,0.1);
    -webkit-box-shadow: 0px 10px 15px -3px rgba(0,0,0,0.1);
}
.expertise-main .col-lg-4:nth-child(even) .each-expertise::after {
    height: 60%;
}
.each-expertise:hover::after {
    height: 100% !important;
}
/****founder-area****/
.founder-area{
	padding:15px 0px 25px;
}
.founder-area .swiper-slide{
    height: auto;
}
.each-founder-area {
    min-height: 800px;
    height: 100%;
    padding: 100px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-position: top right;
}
.each-founder-area::after {
    content: '';
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(270deg, rgba(5, 0, 0, 0) 17.06%, #000000 100%);
}
.founder-content {
    max-width: 855px;
    width: 100%;
    position: relative;
    z-index: 1;
}
.founder-content h5 {
    display: none;
}
.founder-content h2 {
    color: #fff;
    font-size: 96px;
    line-height: normal;
    font-weight: 600;
    margin-bottom: 34px;
}
.founder-content p {
    color: #fff;
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 30px;
}
.founder-content .common-button {
    /*margin-top: 20px;*/
}
/****contact-area****/
.contact-area {
    /*padding: 200px 0 95px;*/
	padding:25px 0px;
}
.contact-map iframe {
    height: 576px;
    width: 100%;
    display: block;
}
.contact-info {
    background-color: #8C8879;
    padding: 30px;
    display: flex;
    /*align-items: center;*/
    justify-content: center;
    height: 100%;
    column-gap: 20px;
	flex-direction:column;
}
.contact-info h2 {
    color: #fff;
    width: 45%;
}
.contact-info h4 {
    color: #fff;
    margin-bottom: 13px;
}
.contact-info p {
    color: #fff;
    margin-bottom: 8px;
}
.contact-info p a {
    color: #fff;
}
.contact-info p a:hover {
    color: #14203B;
}
/*****form-area****/
.form-area {
    /*padding-bottom: 95px;*/
	padding:50px 0px
}
.form-wrap {
    /*margin-top: -400px;*/
}
.form-main {
    max-width: 788px;
    width: 100%;
    margin: 0 auto;
    background-color: #fff;
    box-shadow: 0px 4px 100px rgba(0, 0, 0, 0.08);
    -webkit-box-shadow: 0px 4px 100px rgba(0, 0, 0, 0.08);
    border-radius: 15px;
    padding: 60px 98px;
    position: relative;
    z-index: 1;
}
.form-main h3 {
    text-align: center;
    font-weight: 700;
    margin-bottom: 40px;
	color:#8C8879;
	font-size:40px;
}
.form-main label {
	font-family: "Roboto", sans-serif;
    color: #000;
    font-size: 16px;
    line-height: 25px;
    font-weight: 400;
    margin-bottom: 2px;
}
.form-main p {
    margin-bottom: 0;
}
.form-styl {
    resize: none;
    border: 0;
    border-bottom: 2px solid rgba(0, 0, 0, 0.3);
	font-family: "Roboto", sans-serif;
    color: #000;
    font-size: 12px;
    font-weight: 300;
    line-height: 25px;
    padding: 14px 0;
    border-radius: 0;
    background-color:#fff;
}
.form-styl:placeholder {
	color: rgba(0, 0, 0, 0.3);
}
.form-styl:-ms-input-placeholder {
	color: rgba(0, 0, 0, 0.3);
}
.form-styl::placeholder {
	color: rgba(0, 0, 0, 0.3);
}
.form-styl:focus {
    box-shadow: none;
    -webkit-box-shadow: none;
    border-bottom: 2px solid rgba(0, 0, 0, 1);
    color: #000;
    background-color: #fff;
}
textarea.form-styl {
    min-height: 43px;
    height: 43px;
}
textarea.form-styl::-webkit-scrollbar {
    display: none;
}
.form-main .common-button {
    margin-top: 10px;
    max-width: 200px;
}
.wpcf7-spinner {
    position: absolute !important;
}
.wpcf7-not-valid-tip {
    margin-top: 8px;
}
.form-group {
    margin-bottom: 20px;
}
/***newsletter-area******/
.newsletter-area {
    padding: 40px 0 25px;
    background-color: #F3F2F2;
}
.newsletter-wrap {
    max-width: 1141px;
    width: 100%;
    margin: 0 auto;
}
.newsletter-form {
    max-width: 486px;
    width: 100%;
    margin-left: auto;
}
.newsletter-heading h4 { 
    font-size: 24px;
    margin-bottom: 9px;
}
.newsletter-heading p {
    color: rgba(0, 0, 0, 0.3);
    margin-bottom: 0;
}
.newsletter-form p {
    color: rgba(0, 0, 0, 0.3);
    margin-bottom: 0;
    text-align: right;
}
.newsletter-form-main .form-styl {
    padding: 17px 100px 17px 28px;
    border-radius: 12px;
    border: 0;
    height: 60px;
}
.newsletter-form-main .form-styl:focus {
    border: 0;
}
.newsletter-form-main {
    position: relative;
    /* margin-bottom: 27px; */
}
.newsletter-form-main .common-button {
    position: absolute;
    top: 30px;
    transform: translateY(-50%);
    right: 11px;
    padding: 8px 22px;
}
/*****footer-area*****/
.footer-area {
    /*padding-top: 180px;*/
	padding-top:100px;
    background-color: #111111;
}
.footer-top {
    padding: 0 0px 0px;
}
.footer-info {
    /*display: flex;*/
    column-gap: 60px;
    max-width: 860px;
    width: 100%;
    /*margin-top: 50px;*/
	text-align:center;
	margin-left:auto;
	margin-right:auto;
}
.footer-info p {
    color: #B7B8BE;
    line-height: 28px;
    margin-bottom: 50px;
}
.footer-logo {
    max-width: 420px;
	width:100%;
	margin:0px auto 80px;
}
.footer-logo img{
	width:100%;
}
.footer-brief {
    /*width: calc(100% - 185px);*/
}
.footer-menu ul {
    padding: 0;
    margin: 0;
    list-style: none;
	display:flex;
	justify-content:center;
	gap: 4.5vw;
}
.footer-menu li {
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    line-height: 28px;
    font-weight: 300;
    color: #B7B8BE;
    margin-bottom: 15px;
}
.footer-menu li:last-child {
    margin-bottom: 0;
}
.footer-menu li a {
	color: #B7B8BE;
	font-family: "Roboto", sans-serif;
	font-size: 24px;
	font-style: normal;
	font-weight: 300;
	line-height: normal;
	text-transform: uppercase;
}
.footer-menu li a:hover {
    color: #8B8679;
}
.footer-credit {
    position: relative;
    padding: 0px 0 22px 0px;
}
.footer-credit::after {
    content: "";
    height: 1px;
	width:100vw;
	margin-left:-50vw;
	left:50%;
    background-color: rgba(255,255,255,0.2);
    position: absolute;
    bottom: 0;
}
.footer-credit p {
	color: #B7B8BE;
	font-family: "Roboto", sans-serif;
	font-size: 16px;
	font-style: normal;
	font-weight: 300;
	line-height: 150%; /* 24px */
	text-align:center;
	margin-bottom:0px;
}
.partner-area .swiper-container{
	margin-bottom:50px
}
.footer-menu{
	margin-bottom:80px
}
.footer-social{
	/*position:absolute;
	top:0px;
	right:145px;*/
}
.footer-social ul{
	list-style:none;
	padding:0px;
	margin:0px;
}
.footer-social ul li a{
	font-size:25px;
	color:#fff;
	opacity:1;
	transition:all 0.5s;
	-webkit-transition:all 0.5s;
}
.footer-social ul li a:hover{
	opacity:0.5;
	transition:all 0.5s;
	-webkit-transition:all 0.5s;
}
.footer-bottom{
	padding:19px 0px;
}
.footer-bottom p{
	color: #686A6D;
	text-align: center;
	font-family: Arial;
	font-size: 13.87px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	margin-bottom:0px;
}
.form-area-content h2{
    font-weight: 700;
    margin-bottom: 13px;
    color: #FFFFFF;
    font-size: 40px;
}
.form-area-content > p{
	color: #FFFFFF;
	margin-bottom:35px;
}
.form-area-content h4{
	font-weight: 700;
    margin-bottom: 20px;
    color: #FFFFFF;
    font-size: 24px;
}
.form-area-content a{
	color: #FFFFFF;
}
.form-area-content{
	padding-left:100px;
}
.partner-heading{
	padding-bottom:30px;
}
.partner-heading h2{
	font-size:40px;
	color:#8C8879;
	margin:0px;
}
.header-right-area {
	gap:65px;
}
.header-right-area .footer-social ul li a {
    color: #8B8679;
}
li a.active {
    color: #8B8679 !important;
}
