@charset "UTF-8";

/*
Theme Name: AKL Child
Template: Akl
Author: Ejaz
Author URI: https://wordpress.org/
Requires at least: 5.3
Tested up to: 6.7
Requires PHP: 5.6
Version: 5.7
*/

html {
  scroll-behavior: smooth;
}
html,
body{
	font-family: "Open Sans", sans-serif;
	margin: 0;
	padding: 0;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a{
	text-decoration: none;
}
ul{
	list-style: none;
	padding: 0;
	margin: 0;
}
.container{
 max-width: 1240px;
 padding: 0 20px;
 margin: 0 auto;
}
header.entry-header.alignwide {
    display: none;
}
.awsm-job-specifications-container {
	 max-width: 1240px;
 padding: 0 20px;
 margin: 0 auto;
}
.awsm-job-form{
	 max-width: 1240px;
 padding: 0 20px;
 margin: 0 auto;
}
.job-entry-wrapper {
	padding: 45px 0;
}
.awsm-job-form-control{
	padding: 12px;
}
nav.navigation.post-navigation {
	 max-width: 1240px;
 padding: 0 20px;
 margin: 0 auto;
}

input#awsm-application-submit-btn {
    border: none;
    background: #28156E;
    color: #fff;
    padding: 12px 32px;
    font-weight: 600;
    font-size: 16px;
    border-radius: 6px;
} 
.awsm-job-head{
	display: none;
}
img{
  max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
 font-family: "Montserrat", sans-serif;
 margin: 0;
 color: #28156E;
}
p{
 color: #141414;
 margin: 0;
}

h2{
font-size: 40px;
}
h1.hero-title strong {
    font-weight: 900;
}

.gt_float_switcher .gt-selected .gt-current-lang {
	color: #141414 !important;
}

/******====Header CSS STart====**********/
.site-header {
    background: #28156e1a;
    position: absolute;
    width: 100%;
   z-index: 44;
}
.custom-logo-link img{
	width: 95px;
    height: auto;
    max-width: 100%;
}
.header-wrapper{
 	display: flex;
    align-items: center;
 	justify-content: space-between;
}
#primary-mobile-menu {
 display: none;
}
.menu-wrapper {
display: flex;
list-style: none;
position: relative;
}
.menu-wrapper li{
 padding: 10px 20px;
}

.hero-btn{

}
.menu-wrapper li a{ 
    font-family: "Open Sans", sans-serif;
    text-decoration: none;
    color: #fff;
    position: relative;
    text-transform: uppercase;
}
.menu-wrapper li a:after{ 
 content: '';
 position: absolute;
 left: 0;
 width: 0;
 height: 2px;
 background: #FDA922;
 bottom: -5px;
 transition: all ease .7s;
 }
 .menu-wrapper li a:hover:after{ 
  width: 100%;
 }
 .menu-wrapper li.current-menu-item a:after{
   width: 100%;
 }
/*Styling Hamburger Icon*/
.hamburger div{
    width: 30px;
    height:3px;
    background: #f2f5f7;
    margin: 5px;
    transition: all 0.3s ease;
}
.hamburger{
    display: none;
}
.sub-menu-toggle .icon-plus,
.sub-menu-toggle .icon-minus{
	display: none;
}
.sub-menu-toggle {
    background: transparent;
    outline: none;
    border: none;
}
.fa-caret-down {
    color: #fff;
    font-size: 20px;
    padding-left: 9px;
}

.sub-menu {
   transform: scale(0);
    position: absolute;
    z-index: 2;
	transition: all ease .7s;
}
.menu-item:hover .sub-menu {
	transform: scale(1);
    top: 50px;
    background: #28156e3d;
    width: 255px;
    padding: 20px;
}
/*Stying for small screens*/
@media screen and (max-width: 800px){
  .site-header .container{
    padding: 0;
   }
   .menu-wrapper {
    padding-top: 30px;
    gap: 24px;
    align-items: center;
   }
    nav{
        position: fixed;
        z-index: 3;
        width: 100%;
    }
	nav.remove-fixed {
	 position: sticky;
	}
    .hamburger{
        display:block;
        position: absolute;
        cursor: pointer;
        right: 5%;
        top: 50%;
        transform: translate(-5%, -50%);
        z-index: 2;
        transition: all 0.7s ease;
    }
    .nav-links{
        position: fixed;
        background: #28156e;
        top: 75px;
        height: 100vh;
        width: 100%;
        flex-direction: column;
        clip-path: circle(50px at 90% -20%);
        -webkit-clip-path: circle(50px at 90% -10%);
        transition: all 1s ease-out;
        pointer-events: none;
    }
    .nav-links.open{
        clip-path: circle(1000px at 90% -10%);
        -webkit-clip-path: circle(1000px at 90% -10%);
        pointer-events: all;
    }
    .nav-links li{
		position: relative;
        opacity: 0;
    }
	.menu-item:hover .sub-menu {
		top: 12px; 
	}
    .nav-links li:nth-child(1){
        transition: all 0.5s ease 0.2s;
    }
    .nav-links li:nth-child(2){
        transition: all 0.5s ease 0.4s;
    }
    .nav-links li:nth-child(3){
        transition: all 0.5s ease 0.6s;
    }
    .nav-links li:nth-child(4){
        transition: all 0.5s ease 0.7s;
    }
    .nav-links li:nth-child(5){
        transition: all 0.5s ease 0.8s;
    }
    .nav-links li:nth-child(6){
        transition: all 0.5s ease 0.9s;
        margin: 0;
    }
    .nav-links li:nth-child(7){
        transition: all 0.5s ease 1s;
        margin: 0;
    }
    li.fade{
        opacity: 1;
    }
}
/*Animating Hamburger Icon on Click*/
.toggle .line1{
    transform: rotate(-45deg) translate(-5px,6px);
}
.toggle .line2{
    transition: all 0.7s ease;
    width:0;
}
.toggle .line3{
    transform: rotate(45deg) translate(-5px,-6px);
}



/*===Home Hero CSS==========*/
.hero-section {
        background-size: cover;
        background-position: center;
        position: relative;
       min-height: 660px; 
       padding-bottom: 100px;
    }
@media(min-width:1500px) {
	.hero-section {
	 min-height: 700px; 
	}
}
   .hero-section .container {
     width: 100%;
    }
    .hero-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: transparent;
        display: flex;
        align-items: center;
    }
    
    .hero-content {
        position: relative;
        z-index: 2;
        text-align: left;
        color: #fff;
        max-width: 750px; 
    }
    
    .hero-title {
        font-size: 48px;
        margin-bottom: 20px;
        color: #fff;
    }
    .hero-title span{
     color: #FDA922;
    }
    .hero-text {
        font-size: 1.25rem;
        margin-bottom: 30px;
        color: #fff;
    }
    
    .hero-buttons {
        display: flex;
        gap: 20px;
    }
    
    .hero-btn {
        padding: 10px 30px;
        text-decoration: none;
        font-weight: 600;
        font-size: 1.1rem;
        border-radius: 6px;
    }
    a.hero-btn:hover {
    box-shadow: 2px 3px 15px #958a8a;
    transition: all ease .7s;
   }
    .primary-btn {
        background-color: #FDA922;
        color: #28156E;
    }
    
    .secondary-btn {
        background-color: #fff;
        color: #28156E;
    }
    
    
  .counter-wrapper {
   background: #28156E;
    display: flex;
    justify-content: space-between;
    padding: 40px;
    border-radius: 6px;
    color: #fff;
    position: relative;
    margin-top: -90px;
    text-align: center;
  }  
   
 .counter-wrapper h3 {
     color: #fff;
    font-size: 35px;
        margin-bottom: 15px;
 }
.counter-wrapper p{
 color: #fff;
 }
 .counter-wrapper .column {
	 width: 24%;
	 padding: 0 15px;
	 border-right: 1px solid #fff;
  }  
  .counter-wrapper .column:last-child{
   border-right: none;
  }  
  .image-with-text-sec {
    padding: 60px 0;
  }
  .home-image-text-wrapper{
   display: flex;
   justify-content: space-between;
   align-items: center;
	  gap: 38px;
  }
  
  .home-image-text-wrapper .image-colum {
    width: 45%;
  }
  .home-image-text-wrapper .content-colum{
   width: 53%;
  }
  .content-colum h2{
    margin-bottom: 30px;
  }
  .home-image-text-wrapper .image-colum img {
     border-radius: 20px;
    }
  .option-list-wrap {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    gap: 25px;
    margin-top: 35px;
  }
  .option-list-wrap li {
    width: 48%; 
    color: #28156E;
  }
 .option-list-wrap li span {
    background: #FD7E14;
    padding: 5px;
    border-radius: 35px;
    display: inline-block;
    width: 28px;
    height: 28px;
    text-align: center;
    color: #fff;
    font-weight: 700;
    line-height: 20px;
    margin-right: 12px;
}

.services-heading-wrap {
    display: flex;
    justify-content: space-between;
        margin-bottom: 30px;
}
.services-heading h2{
margin-bottom: 20px;
}
.services-heading p{
 color: #28156E;
}
.view-all {
width: 230px;	
}
.view-all a{
    color: #28156E;
    font-weight: 600;
    font-size: 20px;
    text-decoration: none;
}
.services-sec{
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding: 60px 0;
    background-color: #f5f5f5a1;
    background-blend-mode: color;
}
.services-card-wrapper{
    display: flex;
    justify-content: space-between;
    gap: 20px;
}
.services-card{
 width: 32%;
    background: #fff;
    border-radius: 12px;
}
.services-card-img img{
 height: 208px;
}
.services-card-img img {
    height: 208px;
    width: 100%;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
}
.services-card-content {
  padding: 10px;
}
.services-card-content h3 {
margin: 10px 0;
 color: #28156E;
}
.services-card-content p{
  margin: 0;
}



.project-wrapper {
    padding: 60px 0;
}
.project-wrapper {
 display: flex;
   gap: 20px;
}
.project-column-left {
width: 45%;
}
.project-column-right {
width:  54%;
}

.project-card-wrapper {
    position: relative;
    margin-left: -75px;
    padding-top: 50px;
}
.project-card-wrapper .slick-track {
    padding-top: 35px;
}
.project-card .project-content-card {
    background: #28156E;
    padding: 0 35px 35px 35px;
    margin: 0px 8px;
    text-align: center;
	min-height: 300px;
}
.project-card.slick-center .project-content-card {
background: #FDA922;
}
.project-column-left img {
    height: 550px;
    object-fit: cover;
}
.project-card h3 {
 color: #fff;
 margin: 15px 0;
}
.project-card p {
font-weight: 400;
font-size: 16px;
line-height: 26px;
 color: #fff;
 }
.project-content-card span {
    display: inline-block;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #FDA922;
   margin-top: -25px;
}
 .project-card.slick-center .project-content-card span {
 background: #28156E;
}

.project-card-wrapper .slick-prev,
.project-card-wrapper .slick-next {
    top: 105%;
    z-index: 333;
}
.project-card-wrapper .slick-prev {
  left: 32%;
}
.project-card-wrapper .slick-next {
    right: 32%;
 }
.project-card-wrapper .slick-prev:before,
.project-card-wrapper .slick-next:before {
    font-size: 15px;
    color: #28156e;
}

.project-card-wrapper .slick-dots li.slick-active button:before {
  color: #28156e;
}


.our-partner-sec {
 background: #F7F7F8;
 padding: 40px 0;
}
.our-partner-sec h2{
text-align: center;
margin-bottom: 40px;
}
.product-icon-lsit-wrap .slick-track{
display: flex;
    align-items: center;
}
.product-icon-list img {
    width: 120px;
    margin: 0 auto;
}

.our-office-sec { 
  padding: 40px 0;
}
.our-office-wrap {
    display: flex;
	flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.office-heading .fas {
	margin-bottom: 15px;
    font-size: 36px;
    color: #28156E;
}
.our-office {
    border: 1px solid #FDA922;
    padding: 40px 20px;
    border-radius: 12px;
	width: 32%;
    min-height: 256px;
}
.office-heading{
	text-align: center;
	border: none;
}
.our-office h3 {
    font-size: 32px;
    margin-bottom: 15px;
}
.our-office h6 {
	font-weight: 400;
    font-size: 22px;
    margin-bottom: 10px;
}

.our-office p {
    padding-right: 40px;
}
.contact-sec {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding-top: 60px;
	margin-bottom: -290px;
}
.contact-form-wrap{
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 30px;
  background: #f5f5f5eb;
      border-radius: 12px;
	z-index: 22;
    position: relative;
}
.contact-form-wrap h2{
 text-transform: uppercase;
 text-align: center;
 margin-bottom: 40px;
}
.contact-sec label {
 text-transform: uppercase;
 font-size: 16px;
 color: #7A7A7A;
 display: block;
}
.contact-sec input {
border: none;
border-bottom: 1px solid #7A7A7A;
margin-bottom: 40px;
background: transparent;
	border-radius: 0;
}
.name-email-wrap {
    display: flex;
    justify-content: space-between;
}
.name-email-wrap div{
 width: 45%;
 }
 .name-email-wrap div input{
   width: 100%;
 }
.contact-sec input:focus-visible {
 outline: none;
 
}

.contact-sec textarea {
border: none;
border-bottom: 1px solid #7A7A7A;
margin-bottom: 25px;
width: 100%;
background: transparent;
border-radius: 0;
}
.submit-btn-wrap {
 text-align: right;
}

.submit-btn-wrap input {
    border: none;
    background: #28156E;
    color: #fff;
    padding: 12px 32px;
    font-weight: 600;
    font-size: 16px;
    border-radius: 6px;
}
.submit-btn-wrap .wpcf7-spinner {
    display: none;
}
.site-footer {
	background-image: url('https://aklinternational.com/wp-content/uploads/2024/12/Background.png');
	background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
	padding-top: 120px;
    
}
.home .site-footer {
padding-top: 300px;	
}
.site-footer .site-logo img {
	max-width: 100px; 
}
.ft-address ul {
	list-style: none;
	padding: 0;
}
.ft-address ul li {
	margin-bottom: 30px;
	display: flex;
    align-items: flex-start;
	    color: #28156E;
}
.ft-address ul li a{ 
	font-size: 18px;
	text-decoration: none;
	gap: 20px;
	display: flex;
    align-items: center;
	    color: #28156E;
}
.ft-address ul li a img { 
	width: 24px;
}
.ft-address ul li span { 
	margin-right: 24px;
}

h2.widget-title {
    font-size: 20px;
    text-transform: uppercase;
	    margin-bottom: 25px;
}

.ft-wrapper {
    display: flex;
	justify-content: space-between;
	    margin-top: 25px;
}
#menu-footer-menu li a{
	font-size: 16px;
	color: #28156E;
	margin-bottom: 20px;
	text-decoration: none;
	display: inline-block;
}
.ft-social-wrap {
	display: flex;
	gap: 12px;
}
.ft-column {
    width: 32%;
    gap: 20px;
}
.ft-menu.ft-column {
    display: flex;
    justify-content: center;
}

.newsletter-wrap {
    max-width: 275px;
	margin-left: auto;
}

.newsletter-form{
	position: relative;
}
.newsletter-form input {
    background: transparent;
    border: none;
    border-bottom: 1px solid #28156E;
    color: #28156E;
    width: 100%;
	padding: 12px 0;
}
.newsletter-form input:focus-visible {
 outline: none;
}
.newsletter-form .wpcf7-submit {
	position: absolute;
    right: 0px;
    top: 0px;
    width: 45px;
    display: block;
    background: #28156E;
    color: #fff;
	z-index: 33;
}

.copy-right {
	margin-top: 30px;
	text-align: center;
	padding: 30px 0 20px;
	border-top: 1px solid #28156E;
}
.copy-right p {
	font-size: 14px;
	color: #28156E;
}

.copy-right p a {
    font-size: 12px;
    text-decoration: none;
    padding-top: 10px;
    display: block;
    color: #28156E;
}

/*=====Project Page CSS START======  */

.sub-page-hero-sec {
	display: flex;
    align-items: center;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	background-color: #28156e85;
    background-blend-mode: color;
	min-height: 400px;
}
.project-sec {
	padding: 60px 0;
}
.project-sec h2{
	margin-bottom: 30px;
}
.sub-page-hero-sec .container{
	width: 100%;
}



.main-project-card-wrapper {
    display: flex;
    flex-wrap: wrap;
	gap: 24px;
}

.main-project-card-wrapper .project-card {
	cursor: pointer;
	width: 32%;
    border: 0px solid aqua;
    position: relative;
    height: 12rem;
    overflow: hidden;
    border-radius: 0.5rem;
    flex: 1;
     min-width: 32%;
	max-width: 32%; 
    box-shadow: 0 0 1rem rgba(0, 0, 0, 0.5);
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
}
.main-project-card-wrapper .project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0) linear-gradient(to bottom, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.7) 80%);
    z-index: 0;
}

.project-card__text-wrapper {
    position: absolute;
    bottom: 0rem;
    padding: 1rem;
    color: white;
    /* background-color: rgba(0, 0, 0, 0.4); */
    transition: background-color 1.5s ease;
}

.project-card__title {
    transition: color 1s ease;
    margin-bottom: .5rem;
}
.project-card__post-date {
    font-size: .7rem;
    margin-bottom: .5rem;
    color: #CCC;
}

.project-card__details-wrapper {
    max-height: 0;
    opacity: 0;
    transition: max-height 1.5s ease, opacity 1s ease;
}
p.project-card__excerpt {
	font-size: 14px;
    font-weight: 300;
}
.project-card__image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 3s ease;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    position: relative;
    z-index: -1;
}
@media (min-width:900px) {
    .main-project-card-wrapper .project-card {
        height: 20rem;
    }
	.main-project-card-wrapper .project-card:hover .project-card__text-wrapper {
		background-color: rgba(0, 0, 0, 0.6);
	}
	.project-card:hover .news-card__title {
        color: orange;
    }
	.main-project-card-wrapper .project-card:hover .project-card__image {
        transform: scale(1.2);
        z-index: -1;
    }
	.main-project-card-wrapper .project-card:hover .project-card__details-wrapper {
        max-height: 20rem;
        opacity: 1;
    }
} 

.page-id-10 .project-cta-sec {
 padding-top: 60px;
	padding-bottom: 30px;
}
.project-cta a{
  display: inline-block
}
.project-cta-sec p {
    margin: 20px 0;
}
.footer-top-sec {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-blend-mode: color;
	min-height: 400px;
    margin-bottom: -160px
}
/*======ABout PAge CSS STart========== */
.our-team-sec {
	padding: 60px 0;
}
.our-team-sec h2 {
    margin-bottom: 30px;
}
.testimotionals-wrapper {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
}
.testimotionals {
	width: 32%;
  
}


.testimotionals .card {
	cursor: pointer;
	position:relative;
	overflow:hidden;
	margin:0 auto;
	background: #28156e;
	padding:20px;
	box-sizing:border-box;
	text-align:center;
	box-shadow:0 10px 40px rgba(0,0,0,.5)
}
.testimotionals .card .layer {
  z-index:1;
  position:absolute;
  top:calc(100% - 2px);
  height:100%;
  width:100%;
  left:0;
  background:linear-gradient(to left , #fda922, tomato);
  transition:0.5s;
  
}

.testimotionals .card .content {
  z-index:2; 
  position:relative;
}

.testimotionals .card:hover  .layer{
  top:0;
}

.testimotionals .card .content p {
  font-size:14px;
  line-height:24px;
  color:#fff;
  
}
.testimotionals .card .content .image {
  width:200px;
  height:200px;
  margin: 25px auto;
  border-radius:50%;
  overflow:hidden;
  border: 4px solid white;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
  
}

.testimotionals .card .content .details h3 {
font-size:18px;
color:white;
}
.testimotionals .card .content .details h4 {
	font-size:14px;
	color:purple;
	transition:0.5s;
	color: #fff;
}
.testimotionals .card:hover .content .details h3 h4 {
  color:white;
  position:relative
}

.who-we-are-sec{
	background: #F7F7F8;
}

.who-we-are-wrapper .image-colum {
    width: 18%;
}
.who-we-are-wrapper .content-colum {
    width: 78%;
}
.section-heading {
	margin-bottom: 40px;
}

.our-offer-items-wrap {
	display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.our-offer-items  {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
}
.we-offer-area .our-offer-carousel .owl-dots .owl-dot.active span {
  background: #00a01d none repeat scroll 0 0;
  border-color: #00a01d;
}

.we-offer-area .item {
  background: #ffffff none repeat scroll 0 0;
  border-left: 2px solid #FDA922;
    border-right: 2px solid #FDA922;
  -moz-box-shadow: 0 0 10px #cccccc;
  -webkit-box-shadow: 0 0 10px #cccccc;
  -o-box-shadow: 0 0 10px #cccccc;
  box-shadow: 0 0 10px #cccccc;
  overflow: hidden;
  padding: 30px;
  position: relative;
  z-index: 1;
  width: 32%;
}

.we-offer-area .option-list-wrap li{
	width: 100%;
}


.we-offer-area .item i {
  color: #00a01d;
  display: inline-block;
  font-size: 60px;
  margin-bottom: 20px;
}

.we-offer-area .item h4 {
  font-weight: 600;
  text-transform: capitalize;
}

.we-offer-area .item p {
  margin: 0;
}
.comapny-detal-wrap{
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}
.company-list-wrap {
	display: flex;
	gap: 40px;
}

.company-list-wrap li {
    font-weight: 600;
    margin-bottom: 25px;
	 color: #141414;
	display: flex;
}
.company-list-wrap li strong {
    width: 215px;
}
.company-list-wrap li span {
    font-weight: 400;
}
.investment-logo img {
    width: 235px;
    margin-bottom: 15px;
}
.qr-code img {
    width: 145px;
} 
/*=========Services PAge CSS Start================  */
.sub-hero-content p{
	color: #fff;
}
.mian-services-area .mian-services-wrapper {
	padding: 60px 0;
}
.mian-services-area .mian-services-wrapper:nth-child(even) {
	    background: #F7F7F8;
	
}
.mian-services-area .mian-services-wrapper:nth-child(even) .home-image-text-wrapper{
 flex-direction: row-reverse;	
}

#our-services {
    background: #F7F7F8;
    padding: 60px 0;
}
.our-services-wrapper{
display: flex; 
	justify-content: space-between;
}
/* OUR SEERVICES LEFT SIDE */

#our-services .desc {
    width: 45%;
}

#our-services h2{
	    margin-bottom: 30px;
}

#our-services .desc .text {
    color: #BABABA;
}

/* OUR SERVICES RIGHT SIDE */

#our-services .services {
	width: 50%;
	display: flex;
	justify-content: space-around;
}
.mian-services-wrapper ul li{
	position: relative;
	    padding-left: 32px;
}
.mian-services-wrapper ul li:before {
	font-family: Font Awesome\ 5 Free;
    font-size: 24px;
    content: "\f058";
    position: absolute;
    left: 0px;
    height: 6px;
    z-index: 1;
    width: 20px;
    color: #fda922;
}
#our-services a {
	text-decoration: none;
}
{
    font-family: Font Awesome\ 5 Free;
    font-size: 20px;
}
#our-services .services .column {
    transform: rotate(45deg);
    transition: transform 0.3s ease;
}

#our-services .services .column .service {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 130px;
    height: 130px;
    background:  #fda922;
    transition: all 0.1s ease;
    margin-bottom: 12px;
}

#our-services .services .column .service:hover {
    background: #28156e;
    color: #fff;
}

#our-services .services .column .service:hover .service-icon {
    color: #fff;
}

#our-services .services .column .service .service-desc {
    transform: rotate(-45deg);
    text-align: center;
    text-transform: uppercase;
    font-size: 10px;
    font-weight: bold;
    transition: transform 0.3s ease;
	color: #28156E;
}
p.service-txt {
	font-size: 14px;
	color: #28156E;
}
#our-services .services .column .service .service-desc .service-icon  {
    font-size: 20px;
    margin-bottom: 5px;
    color: #28156E;
}
#our-services .services .column .service:hover p.service-txt {
    color: #fff;
}

#our-services .services .column .service img {
    width: 25px;
}
#our-services .services .column .service:hover img {
    filter: brightness(100);
}
/* end of our services section */

/* media query */

@media all and (max-width: 967px) {
    #our-services {
        padding-top: 60px;
    }
    
    #our-services .desc {
        width: 100%;
        float: none;
        margin-bottom: 30px;
    }
    
    #our-services .services {
        width: 100%;
    }
    
    #our-services .services .column {
        transform: rotate(0deg);
        margin-right: 10px;
    }
    
    #our-services .services .column .service .service-desc {
        transform: rotate(0deg);
    }
	#our-services .services .column {
	        width: 33%;
	}
	#our-services .services .column .service{
		width: 100%;
	}
}
/*============Team CSS============  */
.core-team-sec {
	padding: 60px 0;
	background: #F7F7F8;
}
.core-team-sec .container {
	max-width: 1000px;
}
.core-team-card-wrapper {
    display: flex;
	flex-wrap: wrap;
    gap: 18px;
}
.core-team-sec h2 {
	margin-bottom: 40px;
}
.core-team-sec .card {
	 background-color: #fff;
	 width: 32%;
	 overflow: hidden;
	 border-radius: 1em;
	cursor: pointer;
}
.core-team-sec .card {
  position: relative;
}

.core-team-sec .card:before {
  content: "";
  position: absolute;
  transition: 300ms;
  top: -80px;
  left: -100%;
  right: -100%;
  margin: auto;
  height: 410px;
  width: 400px;
  background: var(--card-image); /* Use the dynamically set image here */
  border-radius: 50%;
  background-position: center;
  background-size: cover;
  --bs-clr: rgba(53, 22, 163, 0.507);
  box-shadow: inset -1em -0.5em 0 var(--bs-clr);
}


.core-team-sec .bottom {
	 margin-top: calc(400px + -80px);
	 padding: 1em;
	 position: relative;
	 z-index: 2;
}
.core-team-sec .profession-wrapper {
	 display: flex;
	 align-items: center;
	 justify-content: space-between;
}
.core-team-sec .profession {
	 font-size: 0.8em;
	 margin-top: 0.5em;
}
.core-team-sec .card:hover:before {
	 height: 100%;
	 top: 0;
	 border-radius: 0;
	 --bs-clr: rgba(53, 22, 163, 0);
	 opacity: 0.6;
}
.core-team-sec .btn {
	 height: 2em;
	 width: 2em;
	 border: 2px solid #9797e9;
	 box-sizing: content-box;
	 padding: 0.5em;
	 border-radius: 50%;
	 transition: 200ms;
	 cursor: pointer;
}
.core-team-sec .btn svg {
	 transform: translateX(-50%);
	 transition: 200ms;
}
.core-team-sec .btn:hover {
	 background: #9797e9;
	 fill: #fff;
}
.core-team-sec .btn:hover svg {
	 transform: none;
}
 .profile-detail {
    position: absolute;
	background: #ffffffdb;
    position: absolute;
    padding: 15px;
	 transform: scale(0);
	 transition: all ease .7s;
}
.core-team-sec .card:hover .profile-detail {
	transform: scale(1);
    width: 100%;
    height: 100%;
    top: 0;
}
.profile-detail p{
	text-align: justify;
}
 #service-3-ceos-message .image-colum {
	width: 30%;
}
 #service-3-ceos-message .content-colum{
	width: 68%;
}
 #service-3-ceos-message img{
    width: 330px;
}
 #service-3-ceos-message .option-list-wrap {
	display: none;
}
/* =========Contact US Css========= */
.contact-page-from-wrapper{
	margin: 0;
	padding: 60px 0;
}
.contact-sec-heading {
    max-width: 900px;
    margin: 0 auto;
    margin-bottom: 40px;
}
.contact-sec-heading h2 {
    margin-bottom: 20px;
}
.contact-form-wrap h4 {
	margin-bottom: 40px;
}
/*=====Responsive CSS START======  */

@media(max-width: 1440px) {
	.option-list-wrap li{
		width: 46%;
	}
	h2 {
    font-size: 38px;
   }
	.counter-wrapper h3 {
		font-size: 30px; 
	}
	.main-project-card-wrapper {
    gap: 19px;
  }
	.our-services-wrapper {
		flex-wrap: wrap;
	}
	#our-services .desc {
      width: 100%;
	 margin-bottom: 25px;
   }
	#our-services .services{
		width: 100%;
	}
	
}


@media(max-width: 1024px) {
	.counter-wrapper {
		padding: 30px 20px;
		    margin-top: -60px;
	}
	.home-image-text-wrapper{
		flex-wrap: wrap;
	}
	.home-image-text-wrapper .image-colum {
    width: 100%;
	}
		.home-image-text-wrapper .content-colum {
		width: 100%;
	}
	.our-office{
     width: 41%;
	}
	.project-column-left img {
		height: 400px; 
	}
    .main-project-card-wrapper {
        gap: 14px;
    }
	.main-project-card-wrapper .project-card {
		width: 49%;
		min-width: 49%;
		max-width: 49%; 
	}
	.core-team-card-wrapper {
	  gap: 14px;
	}
}

@media(max-width: 767px) {
	.custom-logo-link img {
	   width: 70px;
		 padding-left: 10px;
	 }
	    h2 {
        font-size: 28px;
    }
   .hero-title {
     font-size: 34px;
	}
	.services-heading-wrap{
		flex-wrap: wrap;
	}
	.services-card-wrapper {
		flex-wrap: wrap;
	}
	.services-card {
		width: 100%; 
	}
	.counter-wrapper,
	.project-wrapper,
	.our-office-wrap {
		flex-wrap: wrap;
	}
	.counter-wrapper .column{
		 width: 100%;
		border-right: none;
		border-bottom: 1px solid #fff;
		padding: 12px 0;
		margin-bottom: 12px;
	}
	.project-column-left,
	.project-column-right,
	.our-office  {
       width: 100%;
    }
	.project-column-left img {
		height: unset; 
	}
	.project-card-wrapper {
      margin-left: 0; 
	}
	.option-list-wrap li {
        width: 100%;
    }
	.ft-wrapper {
		flex-wrap: wrap;
	}
	.ft-column {
     width: 100%;
   }
	.ft-menu.ft-column {
	justify-content: flex-start;
	}
	.menu-footer-menu-container {
	  position: initial;
	}
	.newsletter-wrap {
    max-width: 275px;
    margin-left: 0;
   }
	.site-footer .site-logo img {
       max-width: 70px;
    }
	.main-project-card-wrapper .project-card {
		width: 100%;
		min-width: 100%;
		max-width: 100%; 
	}
	.core-team-card-wrapper {
        gap: 15px;
    }
	.core-team-sec .card {
		width: 48%;
	}
	.comapny-detal-wrap {
		flex-wrap: wrap;
	}
	.main-project-card-wrapper .project-card{
		height: 18rem;
	}
	.main-project-card-wrapper .project-card:hover .project-card__details-wrapper{
		    opacity: 1;
    max-height: 160px;
	}
	 #service-3-ceos-message .image-colum {
	width: 100%;
		 text-align: center;
   }
   #service-3-ceos-message .content-colum{
	width: 100%;
  } 
	#service-3-ceos-message img {
		width: 275px;
	}
}

@media(max-width: 575px)  {
	#our-services .services {
		flex-wrap: wrap;
	}
    #our-services .services .column {
        width: 100%;
    }
	.core-team-sec .card {
		    width: 100%;
	}
	.company-list-wrap li {
		flex-wrap: wrap;
	}
	.company-list-wrap li strong{
		width: 100%;
	}
}