*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}
:root{
    --primary-font: 46px;
    --secondary-font: 26px;
    --body-font: 16px;
    --heading:22px;
    --pera-max: 18px;
}

body{
    --primary-color: #8B9887;
    --secondary-color: #E3E254;
    --body-text:#3C3C3B;
    --bg-color: #D8E0D3;
    --secondary-dark-yellow: #B8BE6D;
    --primary-dark-green: #6E766B;
    --primary-dark: #535651;
    --white-color:#ffffff;
    --black-color:#000000;
    
    font-size: var(--body-font);
    font-family: 'Sofia Pro';
    font-weight: 400;
    line-height: 1.6em; 
    color: var(--body-text);
    overflow-x: hidden;
}


h1,h2,h3,h4,h5,h6,a{
    font-family: 'Co Headline';
}
h1{
    font-size: 48px;
    font-weight: 700;
    line-height: 1.3em;

}
/* .fr h1{
    font-size: 48px;
} */
h2{
    font-size: var(--primary-font);
    font-weight: 700;
    line-height: 1.3em;
    margin-bottom: 20px;
    color: var(--primary-color);
}
h3{
    font-size: var(--secondary-font);
    font-weight: 700;
    line-height: 1.3em;

}
a{
    font-size: var(--body-font);
    font-weight: 700;
    line-height: 1.3em;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration:none;
}
section{
    overflow: hidden;
}
.sub_title{
    font-size: var(--heading);
    font-weight: 700;
    line-height: 1.3em;
    letter-spacing: 0.02em;
    text-align: center;
    width: 100%;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--secondary-color);
}
.in_dark{
    color: var(--secondary-color);
    border-bottom: 3px solid var(--white-color);
}
.pera_max{
    font-size: var(--pera-max);
    font-weight: 400;
    line-height: 1.4em;
}
ul{
    padding-left:0px;
    list-style: none;
}
img{
    max-width: 100%;
}
.container{
    max-width: 1280px;
    width: 100%;
    margin: auto;
}
body[data-aos-duration="400"] [data-aos] {
    transition-duration: 1s !important;
}
/* ----------header css---------- */
.main_header{
    padding: 10px 20px;
    background-color:var(--bg-color) ;
    transition: all ease-in-out 0.5s;
    top: -120px;
}
.sticky_header{
    position: sticky;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 99999;
    box-shadow: 0 10px 20px 0 #0000001a;
}
.main_header .header_container{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.main_header .main_logo img{
    max-width: 180px;
    width: 100%;
    display: block;
}
.main_header nav ul{
    display: flex;
    align-items: center;
    gap:25px;
}
.main_header nav ul a{
    color: var(--body-text);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
.main_header nav ul a:hover,.main_header nav ul li.active>a{
    color: var(--primary-color);
}
.main_header nav li{
    position: relative;
    padding: 20px 0;
    z-index: 99999;
}
.main_header nav ul .has_sub_menu li{
    padding: 10px ;
}
.main_header nav ul .has_sub_menu i{
    display: inline-block;
    margin-top: 5px;
    transition: all ease-in-out 0.4s;
}
.main_header nav ul .has_sub_menu:hover i{
   transform: rotateX(180deg);
}
.main_header .sub_menu{
    visibility: hidden;
    position: absolute;
    top: 150%;
    left: 0;
    flex-direction: column;
    align-items:start;
    gap: 0;
    width: 400px;
    padding: 10px 0 15px;
    opacity: 0;
    background-color: var(--primary-color);
    transition: all ease-in-out 0.4s;
}
.main_header nav ul li.has_sub_menu:hover .sub_menu{
    visibility: visible;
    top: 100%;
    opacity: 1;
}
.main_header nav ul .sub_menu a{
    font-weight: 400;
    /* text-wrap: nowrap; */
    text-transform: capitalize;
    color: var(--white-color);
    transition: all ease-in-out 0.4s;
}
.main_header nav ul .sub_menu li:hover a,.main_header nav ul .sub_menu li.active>a{
    color: var(--black-color);
}
.media_icon{
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    z-index: 9;
}
.media_icon a{
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    border-radius: 5px;
    color: var(--white-color);
    position: relative;
    transition: all ease-in-out 0.4s !important;
}
.media_icon a:hover{
    background-color: var(--secondary-color);
    color: var(--body-text);
}
.media_icon a:after{
    content: "";
    width: 100%;
    height: 100%;
    background-color: var(--secondary-color);
    box-shadow: 2px 2px 0 0 var(--body-text);
    border-radius: 5px;
    position: absolute;
    top: 2px;
    left: 2px;
    z-index: -1;
    transition: all ease-in-out 0.4s !important;
}
.media_icon a:hover:after{
    background-color: var(--body-text);
    box-shadow: 0px 0px 0 0 var(--body-text);
}
.main_header .hamburger_bar{
    display: none;
    margin-left: 10px;
    font-size: 24px;
}

/* ----------index page css---------- */
.herospace_banner{
    padding: 0 20px;
    background-color: var(--bg-color);
    overflow: hidden;
    position: relative;
}
/* .herospace_banner:after {
    content: "";
    width: 48%;
    height: 100%;
    background-image: url(../image/main-bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.8;
    position: absolute;
    top: 0;
    right: 0;
} */
.herospace_banner .banner_container{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap:50px;
}
.herospace_banner .banner_left{
    width: 50%;
    padding: 100px 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.banner_btn{
    display: flex;
    align-items: center;
    gap: 60px;
}
.main_btn{
    color: var(--body-text);
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all ease-in-out 0.4s !important;
}
.main_btn:hover{
    transform: translateX(5px);
}
.main_btn span{ 
    display: inline-block;
    background-color: var(--secondary-color);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 2px 2px 0 0 var(--body-text);
    border: 1px solid transparent;
    transition: all ease-in-out 0.4s !important;
}
.main_btn:hover span{
    transform: rotate(45deg) ;
    box-shadow: 0px 0px 0 0 var(--body-text);
    border: 1px solid var(--body-text);
}
.herospace_banner .banner_right{
    width: 47%;
    text-align: center;
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
}
.herospace_banner .banner_right img{ 
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.banner_right .hero_img_slider,.banner_right .hero_img_slider .slick-track,.banner_right .hero_img_slider .slick-list{
    height: 100%;
    margin: 0 !important;
}
.banner_right .hero_img_slider .slick-dots{
    bottom: 20px;
    text-align: right;
    padding-right: 10px;
}
.slick-dots li button{
    outline: 1px solid #00000000 !important;
    border-radius: 50%;
}
.slick-dots li button:before{
    opacity: 1 !important;
    color: var(--white-color) !important; 
    font-size: 8px !important;
    line-height: 22px !important;
}
.slick-dots li.slick-active button{
    outline: 1px solid var(--black-color) !important;
    background: var(--secondary-color) !important;
}
.slick-dots li.slick-active button:before {
    opacity: 1 !important;
    color: var(--black-color) !important;
}
.hero_img_slider .slick-dots li{
    margin: 0 3px;
}



.about_section{
    padding: 100px 20px;
}
.about_section .about_container{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}
.about_head{
    text-align: center;
    max-width: 810px;
}
.about_boxs{
    display: flex;
    align-items: stretch;
    gap: 40px;
}
.about_boxs div{
    padding: 30px;
    background-color: var(--bg-color);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    cursor: pointer;
    transition: all ease-in-out 0.4s !important;
}
.about_boxs div:hover{
    box-shadow: 5px 5px 10px #00000033;
}
.value_box{
    gap: 30px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
}
.value_box div{
    flex-direction: row;
}
.value_box div h3{
    width: 30%;
}
.about_boxs ul {
    list-style: none;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: calc(70% - 20px);
}
.about_boxs li{
    display: flex;
    gap: 15px;
}
.about_boxs li span {
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--black-color);
    background-color: var(--secondary-color);
    box-shadow: 2px 2px 0 0 var(--black-color);
    border-radius: 50%;
    font-size: 14px;
}
.about_boxs li p{
    width: calc(100% - 40px)
}


.clients_section{
    padding: 100px 20px;
    background-image: url(../image/clients-bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}
.clients_section:after {
    content: "";
    width: 100%;
    height: 100%;
    background-color: var(--body-text);
    opacity: 0.9;
    position: absolute;
    top: 0;
    left: 0;
}
.clients_section .clients_container{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 9;
}
.clients_head{
    text-align: center;
    max-width: 550px;
    color: var(--white-color);
}
.clients_head h2{
    color: var(--white-color);
}
.clients_tab_container{
    display: flex;
    gap: 30px;
    width: 100%;
}
.clients_tab_list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.clients_tab_btn {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 15px ;
    background: var(--bg-color);
    font-family: 'Co Headline';
    font-size: var(--pera-max);
    font-weight: 400;
    line-height: 1.4em;
    text-wrap: nowrap;
    cursor: pointer;
    border-radius: 10px;
    color: var(--black-color);
    transition: all ease-in-out 0.4s ;
    height: 100%;
}
.clients_tab_btn.active,.clients_tab_btn:hover {
    background: var(--secondary-color);
}
.clients_tab_btn span{
    width: 40px;
    height: 40px;
    display: inline-block;
}
.clients_tab_btn img {
    display: block;
    width: 100%;
}
.clients_tabs_content{
    display: flex;
}
.clients_content {
    display: none;
}
.clients_content.active {
    display: flex;
    gap: 30px;
    align-items: stretch;
}
.clients_tab_img{
    width: 52%;
    overflow: hidden;
    border-radius: 10px;
}
.clients_tab_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: all ease-in-out 0.8s;
    margin: auto;
}
.clients_tab_img:hover img{
    transform: scale(1.05);
}
.clients_tab_details{
    color: var(--white-color);
    width: 48%;
}
.clients_tab_details ul {
    list-style: none;
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.clients_tab_details li{
    display: flex;
    gap: 15px;
}
.clients_tab_details li span {
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--black-color);
    background-color: var(--secondary-color);
    box-shadow: 2px 2px 0 0 var(--black-color);
    border-radius: 50%;
    font-size: 16px;
}
.clients_tab_details li p{
    width: calc(100% - 40px)
}
.clients_tab_details .main_btn {
    color: var(--white-color);
}


.why_us_section{
    padding: 100px 20px;
}
.why_us_section .why_us_container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 9;
}
.why_us_content{
    display: flex;
    gap: 50px;
}
.why_us_head{
    width: 45%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.why_us_boxs{
    width: 55%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.why_us_boxs>div{
    padding: 20px;
    background-color: var(--bg-color);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    cursor: pointer;
    transition: all ease-in-out 0.4s !important;
}
.why_us_boxs>div:hover {
    box-shadow: 5px 5px 10px #00000033;
}
.why_us_boxs h3{
    font-size: var(--heading);
}
.why_us_boxs img{
    display: none;
}

/* ----------footer css---------- */
.main_footer{
    padding: 0 20px 50px;
}
.footer_content{
    padding: 50px;
    background-image: url(../image/footer-img.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    gap: 50px;
    overflow: hidden;
}
.footer_content:after {
    content: "";
    width: 100%;
    height: 100%;
    background-color: var(--body-text);
    opacity: 0.8;
    position: absolute;
    top: 0;
    left: 0;
}
.footer_top {
    position: relative;
    z-index: 9;
    display: flex;
    gap: 80px;
    justify-content: space-between;
    color: var(--white-color) ;
}
.footer_top>div{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.footer_top .main_logo img {
    max-width: 210px;
    width: 100%;
}
.footer_top h3{
    font-size: var(--heading);
    padding-bottom: 15px;
    position: relative;
}
.footer_top h3:after{
    content: "";
    width: 70px;
    height: 3px;
    background-color: var(--secondary-color);
    position: absolute;
    bottom: 0;
    left: 0;
    border-radius: 5px;
}
.footer_top ul{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.footer_links li{
    display: flex;
    gap: 10px;
    align-items: center;
}
.footer_links li::before{
    content: "";
    width: 12px;
    height: 12px;
    background-color: var(--primary-color);
    display: inline-block;
    margin-top: 5px;
}
.footer_links a{
    font-size: var(--pera-max);
    font-weight: 400;
    line-height: 1.4em;
    text-transform: unset;
    color: var(--white-color);
    text-wrap: nowrap;
    letter-spacing: 0em;
    transition: all ease-in-out 0.4s !important;
}
.footer_links a:hover{
    color: var(--secondary-color);
}
.footer_contact ul div {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    border-radius: 5px;
    color: var(--white-color);
    position: relative;
    transition: all ease-in-out 0.4s !important;
}
.footer_contact ul div:after {
    content: "";
    width: 100%;
    height: 100%;
    background-color: var(--secondary-color);
    box-shadow: 2px 2px 0 0 var(--body-text);
    border-radius: 5px;
    position: absolute;
    top: 2px;
    left: 2px;
    z-index: -1;
    transition: all ease-in-out 0.4s !important;
}
.footer_contact ul li:hover div {
    background-color: var(--secondary-color);
    color: var(--body-text);
}
.footer_contact ul li:hover div:after {
    background-color: var(--body-text);
    box-shadow: 0px 0px 0 0 var(--body-text);
}
.footer_contact ul li{
    display: flex;
    gap: 15px;
    align-items: center;
}
.footer_contact ul li a{
    font-size: var(--body-font);
    font-family: 'Sofia Pro';
    font-weight: 400;
    line-height: 1.6em;
    color: var(--white-color);
    text-transform: unset;
    width: calc(100% - 40px);
}
.footer_contact ul li:hover a{
    color: var(--secondary-color);
}
.footer_contact ul li p {
    max-width: calc(100% - 55px);
}
.footer_bottom {
    padding: 25px;
    background-color: var(--bg-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 9;
    border-radius: 15px;
}
.licence_rbq{
    font-size: var(--heading);
    font-weight: 700;
    line-height: 1.3em;
    text-transform: capitalize;
}


/* ----------services page css---------- */
.service_banner {
    padding: 80px 20px 280px;
    background-color: var(--bg-color);
    overflow: hidden;
}
.service_banner_container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    text-align: center;
}
.service_banner .banner_content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.service_banner .banner_content p{
    font-family: 'Co Headline';
    font-size: var(--pera-max);
    font-weight: 400;
    line-height: 1.4em;
}
.service_tagline img{
    display: block;
    width: 900px;
    border-radius: 20px;
    margin: auto;
    margin-top: -200px;
}

.service_tagline{
    padding: 0px 20px;
    text-align: center;
    overflow: unset !important;
}
.service_tagline h3{
    padding: 40px 40px 0;
}


.achievements_section{
    padding: 100px 20px;
}
.achievements_container{
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.achievements_head{
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 200px;
}
.before_after_slider{
    margin: 0 -15px;
}
.comparison_container{
    margin:0 15px;
    height: 350px;
    overflow: hidden;
    border-radius: 10px;
}
.comparison_content{
    position:relative;
    width:100%;
    padding-top:350px;
    overflow:hidden;
    border-radius:10px;
    user-select:none;
    touch-action:none;
}
.comparison_container img{
    width: 100%;
    height:100%; 
    object-fit:cover;
    object-position: left;
    border-radius: 10px;
    transition: all ease-in-out 0.6s;
}
.comparison_container img:hover{
    transform: scale(1.2);
}
.project_info{
    text-align:center; 
    margin-top:18px;
}
.project_title{
    margin-bottom:10px;
}
.slider_btn{
    display: flex;
    gap: 20px;
}
.slider_btn .slick-prev,.slider_btn .slick-next {
  position: static;
  background: var(--bg-color);
  color: var(--body-text) !important;
  border-radius: 50%;
  box-shadow: 2px 2px 0 0 var(--body-text);
  width: 35px;
  height: 35px;
  cursor: pointer;
  transform: translate(0, 0);
    display: flex;
    align-items: center;
    justify-content: center;
}
.slider_btn .slick-prev::before,.slider_btn .slick-next:before{
    content: url(../image/angle-arrow.svg);
    opacity: 1;
    width: 25px;
}
.slider_btn .slick-prev::before{
    transform: rotate(180deg);
}


.services_section{
    padding: 100px 20px;
    background-image: url(../image/service-bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}
.services_section:after {
    content: "";
    width: 100%;
    height: 100%;
    background-color: var(--body-text);
    opacity: 0.9;
    position: absolute;
    top: 0;
    left: 0;
}
.services_section .services_container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 9;
}
.services_head {
    color: var(--white-color);
    grid-column: 1 / span 2;
}
.services_head h2 {
    color: var(--white-color);
}
.service_tab_container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 30px;
}
.service_box{
    padding: 20px;
    background-color: var(--bg-color);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    cursor: pointer;
    transition: all ease-in-out 0.4s !important;
}
.service_box:hover {
    box-shadow: 5px 5px 0px 0px var(--black-color);
}
.service_box h3{
    font-size: var(--heading);
}

.commitment_section{
    padding: 100px 20px;
}
.commitment_section .commitment_container{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}
.commitment_head{
    text-align: center;
    max-width: 1020px;
}
.commitment_boxs{
    display: flex;
    align-items: stretch;
    padding: 20px 0px;
    border-top: 1px solid var(--primary-color);
    border-bottom: 1px solid var(--primary-color);
}
.commitment_boxs div{
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    border-right: 1px solid var(--primary-color);
}
.commitment_boxs div:first-child {
    padding-right: 30px;
}
.commitment_boxs div:nth-child(2) {
    padding:0 30px;
}
.commitment_boxs div:last-child {
    padding-left: 30px;
    border: none;
}
.income_commitment_boxs div:nth-child(3){
    padding:0 30px;
}



.process_section{
    padding: 100px 20px ;
    background-color: var(--bg-color);
    overflow: hidden;
}
.process_section .process_container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
    z-index: 9;
}
.light_bg{
    border-bottom: 3px solid var(--primary-color);
}
.process_content{
    display: flex;
    gap: 50px;
    align-items: center;
}
.process_head{
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
}
.process_head h2{
    color: var(--body-text);
}
.process_head img,.process_boxs img{
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}
.process_boxs{
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 40px;
    /* padding-bottom: 100px; */
}
.process_boxs img{
    display: none;
}
.process_box_content{
    background-color: var(--bg-color);
    border-radius: 10px;
    display: flex;
    width: 100%;
    cursor: pointer;
    transition: all ease-in-out 0.4s !important;
}
.process_box_content span{
    font-family: 'Co Headline';
    font-weight: 700;
    font-size: 36px;
    line-height: 1.3em;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 70px;
    height: 70px;
    color: var(--body-text);
    opacity: 0.4;
    background-color: var(--primary-color);
    border-radius: 50%;
    padding-bottom: 10px;
    margin-top: 5px;
    transition: all ease-in-out 0.4s;

}
.process_box_content:hover span{
    opacity:0.7;
}
.process_box_content>div{
    background-color: var(--bg-color);
    border-radius: 10px;
    width: calc(100% - 70px);
    display: flex;
    flex-direction: column;
    gap: 10px;
    cursor: pointer;
    transition: all ease-in-out 0.4s !important;
}
.process_boxs h3{
    font-size: var(--heading);
    padding: 0 0 10px 20px;
    border-bottom: 1px solid #8b988766;
    width: 100%;
    position: relative;
    transition: all ease-in-out 0.4s;
    overflow: hidden;
}
.process_box_content:hover h3{
    border-bottom: 1px solid var(--primary-color);
}
.process_boxs h3:after{
    content: "";
    width: 20px;
    height: 2px;
    background-color: var(--primary-color);
    border-radius: 5px;
    position: absolute;
    bottom: 0px;
    left:-20px;
    z-index: 1;
    transition: all ease-in-out 1s !important;
}
.process_box_content:hover h3:after{
    left:100%;
}
.process_boxs p{
    padding-left:20px;
}


.project_section{
    padding: 100px 20px;
}
.project_section .project_container{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}
.project_head{
    text-align: center;
    max-width: 1020px;
}
.project_form{
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.form_grid{
    display: flex;
    flex-wrap: wrap;
    row-gap: 40px;
    margin: 0 -20px;
}
.form_grid>div{
    padding: 0 20px;
    width: 50%;
}
.form_grid .form_col_3 {
    width: 33.33%;
}
.form_grid input,.form_grid textarea,.form_grid select {
    width: 100%;
    padding: 10px 20px;
    border: none;
    border-bottom: 1px solid var(--primary-color);
    border-radius: 10px;
    font-size: var(--body-font);
    font-family: 'Sofia Pro';
    font-weight: 400;
    line-height: 1.6em;
    color: var(--body-text);
    outline: 0;
}
.form_grid input::placeholder,.form_grid textarea::placeholder{
    font-size: var(--body-font);
    font-family: 'Sofia Pro';
    font-weight: 400;
    line-height: 1.6em;
    color: var(--body-text);
}
.form_grid input:focus,.form_grid textarea:focus{
    border:none;
    border-bottom: 1px solid var(--primary-color);
    outline: 0;
}
.form_grid .form_col_12{
    width: 100%;
}
.checkbox {
    display: flex;
    gap: 15px;
}
input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin: 2px 0;
    display: inline-block;
}
.submit_btn{
    text-align: center;
}
button[type="submit"]{
    color: var(--body-text);
    transition: all ease-in-out 0.4s !important;
    font-family: 'Co Headline';
    font-size: var(--body-font);
    font-weight: 700;
    line-height: 1.3em;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    padding: 10px 30px 15px;
    background-color: var(--bg-color);
    border: none;
    border-radius: 10px;
    position: relative;
}
button[type="submit"]:hover{
    background-color: var(--secondary-color);
}
button[type="submit"] span{ 
    display: inline-block;
    background-color: var(--secondary-color);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 2px 2px 0 0 var(--body-text);
    border: 1px solid transparent;
    transition: all ease-in-out 0.4s !important;
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%) rotate(0deg) ;
}
button[type="submit"]:hover span{
    transform:translateY(-50%) rotate(45deg) ;
    box-shadow: 0px 0px 0 0 var(--body-text);
    border: 1px solid var(--body-text);
}




/* ----------Responsiveness---------- */


@media only screen and (max-width:1280px) and ( min-width:1025px){ 
    :root{
        --primary-font: 42px;
        --secondary-font: 26px;
        --body-font: 16px;
        --heading:22px;
        --pera-max: 18px;

    }
    .container {
        max-width: 1024px;
    }
    a {
        letter-spacing: 0em;
    }
    h1 {
        font-size: 46px;
    } 
    .main_header .main_logo img {
        max-width: 130px;
    }
    .main_header nav ul {
        gap: 20px;
    }
    .media_icon a {
        width: 30px;
        height: 30px;
    }
    .main_header nav ul a{
        font-size: 14px;
    }
    .herospace_banner .banner_left {
        width: 54%;
        padding: 80px 0;
    }
    .herospace_banner:after {
        width: 42%;
    }
    .herospace_banner .banner_right {
        width: 43%;
    }
    .about_section {
        padding: 80px 20px;
    }
    .about_boxs {
        gap: 30px;
    }
    .value_box div h3 {
        width: 35%;
    }
    .clients_section .container {
        max-width: 100%;
    }
    .clients_section {
        padding: 80px 20px;
    }
    .why_us_section {
        padding: 80px 20px;
    }
    .why_us_boxs>div {
        padding: 15px 20px;
        gap: 15px;
    }
    .main_footer {
        padding: 0 20px 40px;
    }
    .main_footer .container {
        max-width: 100%;
    }
    .footer_contact ul div{
        width: 35px;
        height: 35px;
    }
    .footer_top {
        gap: 50px;
    }

    .service_banner {
        padding: 60px 20px 260px;
    }
    .service_tagline img{
        width: 800px;
    }
    .achievements_section {
        padding: 80px 20px;
    }
    .services_section{
        padding: 80px 20px;
    }
    .services_section .container {
        max-width: 100%;
    }
    .commitment_section {
        padding: 80px 20px;
    }
    .process_section {
        padding: 80px 20px ;
    }
    /* .process_boxs {
        padding-bottom: 80px;
    } */
    .project_section {
        padding: 80px 20px;
    }
}
@media only screen and (max-width:1060px){
    .main_header .hamburger_bar {
        display: block;
    }
    .main_header .main_menu{
        position: fixed;
        top: 0;
        width: 400px;
        right: -100%;
        background-color: var(--bg-color);
        height: 100vh;
        visibility: hidden;
        transition: all ease-in-out 1s;
    }
    .main_header .main_menu.mobile_menu{
        visibility: visible;
        right: 0;
        z-index: 99999;
        box-shadow: -5px 0 20px 0 #0000001a;
    }
    .main_header nav ul {
        gap: 0;
        flex-direction: column;
        align-items: start;
        padding: 20px;
    }
    .main_header nav li {
        padding: 10px 0;
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }
    .main_header .sub_menu{
        position: static;
        width: 100%;
        display: none;
        padding: 0;
        background-color: transparent;
    }
    .main_header nav ul .sub_menu a{
        color: var(--body-text);
    }
    .main_header .mobile_sub_menu{
        display: flex;
    }
    .main_header nav ul li.has_sub_menu:hover .sub_menu {
        display: flex;
    }
    .media_icon a {
        width: 35px;
        height: 35px;
    }
    .footer_contact ul div{
        width: 35px;
        height: 35px;
    }
}
@media only screen and (max-width:1024px) and ( min-width:992px){ 
    :root{
        --primary-font: 36px;
        --secondary-font: 24px;
        --body-font: 16px;
        --heading:22px;
        --pera-max: 18px;

    }
    .container {
        max-width: 100%;
    }
    h1 {
        font-size: 42px;
    } 
    .main_header .main_logo img {
        max-width: 150px;
    }
    .herospace_banner .banner_left {
        width: 53%;
        padding: 60px 0;
    }
    .herospace_banner:after{
        width: 40%;
    }
    .banner_btn {
        flex-wrap: wrap;
        gap: 20px 40px;
    }
    .herospace_banner .banner_right {
        width: 45%;
    }
    .about_section {
        padding: 60px 20px;
    }
    .about_section .about_container {
        gap: 30px;
    }
    .about_boxs {
        gap: 30px;
    }
    .value_box div h3 {
        width: 40%;
    }
    .clients_section {
        padding: 60px 20px;
    }
    .clients_section .clients_container{
        gap: 30px;
    }
    .clients_tab_list {
        min-width: 325px;
    }
    .clients_tab_btn{
        text-wrap: unset;
    }
    .why_us_section {
        padding: 60px 20px;
    }
    .why_us_section .why_us_container{
        gap: 30px;
    }
    .why_us_boxs>div {
        padding: 15px 20px;
        gap: 15px;
    }
    .main_footer {
        padding: 0 20px 30px;
    }
    .footer_content{
        padding: 40px;
    }
    .footer_top {
        gap: 30px;
    }
    .service_banner {
        padding: 50px 20px 200px;
    }
    .service_banner_container {
        gap: 40px;
    }
    .service_tagline img{
        width: 700px;
        margin-top: -150px;
    }
    .service_tagline h3 {
        padding: 30px 30px 0;
    }
    .achievements_section {
        padding: 60px 20px;
    }
    .achievements_container {
        gap: 30px;
    }
    .comparison_content {
        padding-top: 300px;
    }
    .services_section{
        padding: 60px 20px;
    }
    .services_section .container {
        max-width: 100%;
    }
    .services_section .services_container {
        gap: 30px;
    }
    .commitment_section {
        padding: 60px 20px;
    }
    .commitment_section .commitment_container {
        gap: 30px;
    }
    .commitment_boxs div:first-child {
        padding-right: 20px;
    }
    .commitment_boxs div:nth-child(2) {
        padding: 0 20px;
    }
    .commitment_boxs div:last-child {
        padding-left: 20px;
    }
    .income_commitment_boxs div:nth-child(3) {
        padding: 0 20px;
    }
    .process_section {
        padding: 60px 20px ;
    }
    .process_boxs {
        /* padding-bottom: 60px; */
        gap: 30px;
    }
    .process_box_content span {
        font-size: 30px;
        width: 60px;
        height: 60px;
    }
    .process_head img {
        max-height: 400px;
    }
    .project_section {
        padding: 60px 20px;
    }
}
@media only screen and (max-width:991px) and ( min-width:768px){ 
    :root{
        --primary-font: 32px;
        --secondary-font: 24px;
        --body-font: 16px;
        --heading:22px;
        --pera-max: 18px;

    }
    .container {
        max-width: 100%;
    }
    h1 {
        font-size: 38px;
    } 
    .main_header .main_logo img {
        max-width: 150px;
    }
    .herospace_banner .banner_container{
        gap: 20px;
        flex-direction: column-reverse;
        padding: 0 0 60px;
    }
    .herospace_banner:after{
        width: 100%;
    }
    /* .herospace_banner:before {
        content: "";
        width: 100%;
        height: 100%;
        background-color: var(--body-text);
        opacity: 0.8;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1;
    } */
    /* .herospace_banner h1 {
        color: var(--bg-color);
    } */
    .banner_btn {
        align-items: start;
    }
    /* .banner_btn a{
        color: var(--white-color);
    } */
    .herospace_banner .banner_left {
        width: 100%;
        padding:  0;
        gap: 20px;
        text-align: center;
        align-items: center;
        /* color: var(--white-color); */
    }
    .herospace_banner .banner_right {
        width: 100%;
        position: static;
    }
    .banner_right .hero_img_slider{
        height: 500px;
    }
    .about_section {
        padding: 60px 20px;
    }
    .about_section .about_container {
        gap: 30px;
    }
    .about_boxs {
        gap: 30px;
    }
    .about_boxs div{
        padding: 20px;
    }  
    .value_box div{
        flex-direction: column;
    }
    .about_boxs h3,.about_boxs ul{
        width: 100%;
    }
    .clients_section {
        padding: 60px 20px;
    }
    .clients_section .clients_container{
        gap: 30px;
    }
    .clients_tab_container {
        flex-direction: column;
    }
    .clients_tab_list {
        flex-direction: row;
        gap: 30px;
        overflow-x: auto;
        padding-bottom: 10px;
    }
    .why_us_section {
        padding: 60px 20px;
    }
    .why_us_section .why_us_container{
        gap: 30px;
    }
    .why_us_content {
        gap: 30px;
        flex-direction: column;
    }
    .why_us_head,.why_us_boxs{
        width: 100%;
        align-items: center;
    }
    .why_us_boxs>div {
        padding: 15px 20px;
        gap: 15px;
    }
    .why_us_head img{
        display: none;
    }
    .why_us_boxs img{
        display: block;
        max-width: 500px;
    }
    .main_footer {
        padding: 0 20px 20px;
    }
    .footer_content{
        padding: 40px;
    }
    .footer_top {
        gap: 30px;
        flex-wrap: wrap;
    }
    .footer_links{
        width: 45%;
    }
    .footer_contact{
        width: 50%;
    }
    .footer_bottom{
        flex-direction: column;
        gap: 10px;
    }

    .service_banner {
        padding: 50px 20px 200px;
    }
    .service_banner_container {
        gap: 40px;
    }
    .service_tagline img {
        width: 650px;
        margin-top: -150px;
    }
    .service_tagline h3 {
        padding: 30px 30px 0;
    }
    .achievements_section {
        padding: 60px 20px;
    }
    .achievements_container {
        gap: 30px;
    }
    .achievements_head {
        gap: 50px;
    }
    .services_section{
        padding: 60px 20px;
    }
    .services_section .container {
        max-width: 100%;
    }
    .services_section .services_container {
        gap: 30px;
    }
    .service_tab_container {
        grid-template-columns: repeat(2, 1fr);
    }
    .services_head {
        grid-column: 1 / span 1;
    }
    .service_row .services_head{
        grid-column: 1 / span 2;
    }
    .commitment_section {
        padding: 60px 20px;
    }
    .commitment_section .commitment_container {
        gap: 30px;
    }
    .commitment_boxs div:first-child {
        padding-right: 20px;
    }
    .commitment_boxs div:nth-child(2) {
        padding: 0 20px;
    }
    .commitment_boxs div:last-child {
        padding-left: 20px;
    }
    .commitment_boxs.income_commitment_boxs{
        flex-wrap: wrap;
    }
    .income_commitment_boxs>div{
        width: 50%;
    }
    .income_commitment_boxs div:nth-child(2) {
        padding: 0 0 20px 20px;
        border-right: none;
    }
    .income_commitment_boxs div:nth-child(3) {
        padding: 20px 20px 0 0;
        border-top: 1px solid var(--primary-color);
    }
    .income_commitment_boxs div:last-child {
        padding: 20px 0 0 20px;
        border-top: 1px solid var(--primary-color);
    }
    .process_section {
        padding: 60px 20px ;
    }
    .process_content {
        flex-direction: column;
        gap: 30px;
    }
    .process_head{
        width: 100%;
    }
    .process_head img{
        display: none;
    }
    .process_boxs {
        width: 100%;
        padding-bottom: 0;
        gap: 30px;
    }
    .process_boxs img{
        display: block;
    }
    .process_box_content span {
        font-size: 30px;
        width: 60px;
        height: 60px;
    }
    .process_boxs img {
        width: auto;
        margin: auto;
        max-height: 400px;
        object-fit: contain;
    }
    .project_section {
        padding: 60px 20px;
    }
    .project_form {
        gap: 30px;
    }
    .form_grid {
        row-gap: 30px;
        margin: 0 -15px;
    }
    .form_grid>div {
        padding: 0px 15px;
        width: 50%;
    }
}
@media only screen and (max-width:767px) { 
    :root{
        --primary-font: 28px;
        --secondary-font: 22px;
        --body-font: 16px;
        --heading:20px;
        --pera-max: 18px;

    }
    .container {
        max-width: 100%;
    }
    h1 {
        font-size: 32px;
    } 
    .main_header .main_menu {
        width: 100%;
        max-width: 300px;
    }
    .main_header .main_logo img {
        max-width: 150px;
    }
    .herospace_banner .banner_container{
        gap: 20px;
        flex-direction: column-reverse;
        padding:0 0 50px;
    }
    .herospace_banner:after{
        width: 100%;
    }
    /* .herospace_banner:before {
        content: "";
        width: 100%;
        height: 100%;
        background-color: var(--body-text);
        opacity: 0.8;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1;
    }
    .herospace_banner h1 {
        color: var(--bg-color);
    }
    .banner_btn a{
        color: var(--white-color);
    } */
    .banner_btn {
        flex-direction: column;
        gap: 20px;
    }
    .herospace_banner .banner_left {
        width: 100%;
        padding:  0;
        gap: 20px;
        text-align: center;
        align-items: center;
        /* color: var(--white-color); */
    }
    
    .herospace_banner .banner_right {
        width: 100%;
        position: static;
    }
    .banner_right .hero_img_slider{
        height: 350px;
    }
    .about_section {
        padding: 50px 20px;
    }
    .about_section .about_container {
        gap: 30px;
    }
    .about_boxs {
        gap: 30px;
        flex-direction: column;
    }
    .value_box {
        grid-template-columns: repeat(1, 1fr);
    }
    .value_box div {
        flex-direction: column;
    }
    .about_boxs h3,.about_boxs ul{
        width: 100%;
    }
    .about_boxs div{
        padding: 20px;
    }
    .clients_section {
        padding: 50px 20px;
    }
    .clients_section .clients_container{
        gap: 30px;
    }
    .clients_tab_container {
        flex-direction: column;
    }
    .clients_tab_list {
        flex-direction: row;
        gap: 30px;
        overflow-x: auto;
        padding-bottom: 10px;
    }
    .clients_tab_btn{
        padding: 15px;
    }
    .clients_tab_btn span {
        width: 35px;
        height: 35px;
    }
    .clients_content.active {
        flex-direction: column-reverse;
    }
    .clients_tab_img,.clients_tab_details{
        width: auto;
        max-width: 100%;
        /* text-align: center; */
    }
    .clients_content.active {
        align-items: start;
    }
    .clients_tab_details ul {
        /* max-width: 275px; */
        text-align: left;
        /* margin: 20px auto; */ 
        /* align-items: center; */
    }
    .clients_tab_img img{
        max-width: 350px;
        margin: 0;
    }
    /* .main_btn {
        justify-content: center;
    } */
    .why_us_section {
        padding: 50px 20px;
    }
    .why_us_section .why_us_container{
        gap: 30px;
    }
    .why_us_content {
        gap: 30px;
        flex-direction: column;
        width: 100%;
    }
    .why_us_head,.why_us_boxs{
        width: 100%;
        align-items: center;
    }
    .why_us_head{
        text-align: center;
    }
    .why_us_boxs>div {
        padding: 15px 20px;
        gap: 15px;
    }
    .why_us_head img{
        display: none;
    }
    .why_us_boxs img{
        display: block;
        max-width: 350px;
        width: 100%;
    }
    .main_footer {
        padding: 0 20px 20px;
    }
    .footer_content{
        padding: 20px;
        gap: 40px;
        border-radius: 20px;
    }
    .footer_top {
        gap: 30px;
        flex-wrap: wrap;
    }
    .footer_top .main_logo img {
        max-width: 160px;
    }
    .footer_contact ul div{
        width: 35px;
        height: 35px;
    }
    .footer_contact ul li a {
        font-size: var(--body-font);
        font-family: 'Sofia Pro';
        font-weight: 400;
        line-height: 1.6em;
        color: var(--white-color);
        text-transform: unset;
        word-break: break-word;
        width: calc(100% - 40px);
    }
    .footer_bottom{
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .service_banner {
        padding: 40px 20px 160px;
    }
    .service_banner_container {
        gap: 30px;
    }
    .service_tagline img {
        width: 100%;
        margin-top: -120px;
    }
    .service_tagline h3 {
        padding: 30px 0 0 ;
    }
    .achievements_section {
        padding: 50px 20px;
    }
    .achievements_container {
        gap: 30px;
        text-align: center;
        position: relative;
        padding-bottom: 60px;
    }
    .slider_btn {
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translatex(-50%);
    }
    .comparison_content {
        padding-top: 300px;
    }
    .achievements_head {
        gap: 20px;
        flex-direction: column;
    }
    .services_section{
        padding: 50px 20px;
    }
    .services_section .container {
        max-width: 100%;
    }
    .services_section .services_container {
        gap: 30px;
    }
    .service_tab_container {
        grid-template-columns: repeat(1, 1fr);
    }
    .services_head {
        grid-column: 1 / span 1;
        text-align: center;
    }
    .commitment_section {
        padding: 50px 20px;
    }
    .commitment_section .commitment_container {
        gap: 30px;
    }
    .commitment_boxs {
        flex-direction: column;
        text-align: center;
    }
    .commitment_boxs div{
        border: none;
        border-bottom: 1px solid var(--primary-color);
    }
    .commitment_boxs div:first-child {
        padding: 0 0 20px 0;
    }
    .commitment_boxs div:nth-child(2) {
        padding: 20px 0 ;
    }
    .commitment_boxs div:last-child {
        padding: 20px 0 0 0;
        border: none;
    }
    .income_commitment_boxs div:nth-child(3) {
        padding: 20px 0;
    }
    .process_section {
        padding: 50px 20px ;
    }
    .process_section .process_container {
        gap: 30px;
    }
    .process_content {
        flex-direction: column;
        gap: 30px;
    }
    .process_head{
        width: 100%;
        text-align: center;
    }
    .process_head img{
        display: none;
    }
    .process_boxs {
        width: 100%;
        padding-bottom: 0;
        gap: 30px;
    }
    .process_boxs img{
        display: block;
    }
    .process_box_content span {
        font-size: 22px;
        width: 40px;
        height: 40px;
        padding-bottom: 8px;
        margin-top: 12px;
    }
    .process_box_content>div {
        width: calc(100% - 40px);
    }
    .process_boxs img {
        width: auto;
        margin: auto;
        max-height: 350px;
        object-fit: contain;
    }
    .project_section {
        padding: 50px 20px;
    }
    .project_form {
        gap: 30px;
    }
    .form_grid {
        row-gap: 30px;
        margin: 0 -15px;
    }
    .form_grid>div {
        padding: 0px 15px;
    }
    .form_grid .form_col_3 {
        width: 100%;
    } 
    .form_grid>div {
        width: 100%;
    }
}
@media only screen and (max-width:575px){
    .media_icon {
        gap: 10px;
    }
    .main_header .media_icon a {
        display: none;
    }
    .banner_btn a{
        font-size: 15px;
    }
    .clients_tab_details li {
        gap: 10px;
    }
    .process_boxs h3 {
        font-size: 18px;
        padding: 0 0 10px 15px;
    }
    .process_boxs p {
        padding-left: 15px;
    }
    .form_grid .form_col_3 {
        width: 100%;
    }
    .form_grid>div{
        width: 100%;
    }
    button[type="submit"] {
        letter-spacing: 0;
        padding: 10px 25px 13px;
    }
}