/* Table of Contents
----------------------------------

/*------------------------------ Global CSS ------------------------------*/
/*      
0- Global CSS       
1- Heading CSS    
2- Button CSS   
3- Logo Area CSS 
4- Header Area CSS 
5- Footer Area CSS
6- Scroll-Top Area CSS
7- Dark Form CSS
8- Light Form CSS
9- Swiper Pagination CSS
10- Swiper Navigation CSS
*/

/*------------------------------ All Sections CSS ------------------------------*/
/*
1- Home Slider
2- About
3- Services
4- Why Choose Us
5- Process
6- Calculator
7- Counter
8- Projects
9- Pricing
10- Get Quote
11- FAQs
12- Team
13- Testimonials
14- Blogs
15- Contact
16- Clients Slider
*/


/*--------------------- Global CSS (Start) ---------------------*/

/*----- 0- Global CSS -----*/
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap');

:root{
    --main-color: #22B24C; /* vert principal Mistral Éco Entretien */
    --secondary-color: #0073B8; /* bleu professionnel */
    --black: #000; 
    --white: #fff;
    --light-grey: #E6E6E6;
    --grey: #666; 
    --border-radius-1: 0.5rem;
    --border-radius-2: 1rem;
    --border-radius-3: 50%;  
    --border-radius-4: 40% 60% 55% 45% / 60% 40% 55% 45%;
    --border-radius-5: 12px 5px 12px 5px;
    --custom-border: 0.5rem solid var(--main-color);
    --box-shadow: 0.5rem 0.5rem 1rem rgba(0, 0, 0, 0.1);
    --text-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2);
}


*{
    font-family: 'Roboto', sans-serif;
    margin:0;
    padding: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    outline:none;
    border:none;
    text-transform: capitalize;
    text-decoration: none;
}

*:not(.project-item){
    -webkit-transition: all 0.2s linear;
            transition: all 0.2s linear;
}

*::-moz-selection{
    color: var(--white);
    background-color: var(--main-color);
}

*::selection{
    color: var(--white);
    background-color: var(--main-color);
}

html{
    font-size: 62.6%;
    overflow-x:hidden;
    scroll-padding-top: 6rem;
    scroll-behavior: smooth;
}

html::-webkit-scrollbar{
    width: 0.8rem;
}

html::-webkit-scrollbar-track{
    background: var(--secondary-color);
}

html::-webkit-scrollbar-thumb{
    background: var(--main-color);
    border-radius: 0.5rem;
}

body{
    background: #f2f3f8;
    overflow-x: hidden;
}

section{
    padding: 3rem 5%;
}

p{
    font-size: 1.6rem;
    line-height: 1.6;
    color: var(--grey);
}

img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}

/*----- 1- Heading CSS -----*/
.heading h2{
    color: var(--secondary-color);
    text-align: center;
    font-size: 4.5rem;
    font-weight: bold;
    text-shadow: var(--text-shadow);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.heading span{
    color: var(--main-color);
}

.heading.linear-bg h2{
    color: var(--white);
}

.heading.sideheading h2 {
    text-align: left;
}

/*----- 2- Button CSS -----*/
.btn {
    position: relative;
    display: inline-block;
    font-size: 1.8rem;
    color: var(--secondary-color);
    background-color: transparent;
    border: 0.2rem solid var(--secondary-color);
    padding: 0.7rem 2rem;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    overflow: hidden;
    z-index: 1;
}

.btn:after {
    position: absolute;
    content: " ";
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-transform: scale(.1);
            transform: scale(.1);
}

.btn:hover:after {
    background: var(--secondary-color);
    -webkit-transform: scale(1);
            transform: scale(1);
}

.btn:hover{
    color: var(--white);
    cursor: pointer;
}

/*----- 3- Logo Area CSS -----*/
.logo{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1rem;
}

.logo img{
    width: auto;
    height: 5rem;
}

.logo h3{
    font-size: 3rem;
    font-weight: 600;
    color: var(--secondary-color);
    line-height: 1.4;
    text-transform: uppercase;
}

.logo p{
    font-size: 1.5rem;
    line-height: 1;
}

/*----- 4- Header Area CSS -----*/
.header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.header .header-1{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1rem;
    background-color: var(--secondary-color);
    padding: 0.5rem 5%;
}

.header.sticky .header-1{
    display: none;
}

.header .header-contacts{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 3rem;
    list-style-type: none;
}

.header .header-contacts li{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; 
    gap: 1rem;
    font-size: 1.4rem;
}

.header .header-contacts i{
    color: var(--white);
}

.header .header-contacts span{
    text-transform: none;
    color: var(--white);
}

.header .social-contacts{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    gap: 1rem;
    list-style-type: none;
}

.header .social-contacts li a{
    height: 3rem;
    width: 3rem;
    font-size: 1.6rem;
    color: var(--white);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.header .social-contacts li a:hover{
    color: var(--main-color);
}

.header .header-2{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 7rem;
    padding: 0rem 5%;
    gap: 2rem;
    background: var(--white);
}

.header.sticky .header-2{
    border-bottom: 0.2rem solid var(--main-color);
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
}

.header #menu-btn{
    cursor: pointer;
    display: none;
}

.header .navbar{
    list-style-type: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 100%;
    gap: 1.5rem;
}

.header .container{
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 2rem;
}

.header .navbar a{
    display: inline-block;
    font-size: 1.8rem; 
    font-weight: 500;
    color: var(--secondary-color);
    cursor: pointer;
}

.header .navbar a:hover,
.header .navbar a.active{
    color: var(--main-color);
}

.header .icon-container{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center; 
    align-items: center;
    gap: 1rem;
}

.header .icon-container .icon{
    font-size: 2rem;
    color: var(--secondary-color);
    cursor: pointer;
}

.header .icon-container .icon:hover{ 
    color: var(--main-color);
}

/*----- 5- Footer Area CSS -----*/
.footer{
    background: var(--black);
}

.footer .box-container{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(25rem, 1fr))[auto-fit];
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 3rem;
    padding: 2rem 5%;
}

.footer-item h2{ 
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 600;
    letter-spacing: 0.2rem;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    position: relative;
}

.footer-item h2:before{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 10rem;
    height: 2px;
    content: "";
    background-color: var(--main-color); 
    -webkit-transform: translateX(0%); 
            transform: translateX(0%);
}

.footer-item > p{
    padding-top: 0.5rem;
    font-size: 1.6rem;
} 

.footer-item p{
    color: var(--white); 
    line-height: 1.5;
    font-weight: 500;
}

.footer-item .logo h3{
    color: var(--white);
}

.footer-item .connect{
    padding-top: 1rem;
}

.footer-item .connect p{
    margin-bottom: 0.5rem !important;
}

.footer-item .connect i{
    font-size: 1.6rem;
    color: var(--main-color);
    height: 3rem;
    width: 3rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.footer-item .connect p span{
    font-size: 1.6rem;
}

.footer-item .social{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer-item .social a{
    height: 4rem;
    width: 4rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: var(--main-color);
    border: 0.2rem solid var(--main-color);
    border-radius: var(--border-radius-3);
}

.footer-item .social a i{
    color: var(--white);
    font-size: 1.7rem;
}

.footer-item .social a:hover{
    background-color: transparent;
}

.footer-item .social a:hover i{
    color: var(--main-color);
}

.footer-item .gmail{
    text-transform: none;
}

.footer-item .dark-form .alert {
    display: block;
    font-size: 1.7rem;
    color: var(--main-color);
    padding-top: 1rem;
}

.footer-item .dark-form .btn{
    background-color: var(--main-color);
    border-radius: var(--border-radius-1);
    border-width: 0.15rem;
    padding: 1.2rem 2rem;
}

.footer-item .info p{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-item .info a,
.footer-item .info span{ 
    font-size: 1.8rem;
    color: var(--white);
}

.footer-item .links p:hover a{
    color: var(--main-color);
}

.footer-item .links p i{
    color: var(--main-color);
    font-size: 1.5rem;
}

.footer-item:last-child p{
    padding-top: 0rem;
    padding-bottom: 2rem;
    line-height: 1.6;
}

.footer-item .input-field{
    margin-bottom: 1rem;
}

.footer .content{
    text-align: center;
    padding: 2rem 0;
    background-color: var(--main-color);
}

.footer .content p{
    font-size: 2rem;
    color: var(--white);
}

/*----- 6- Scroll-Top Area CSS -----*/
.scroll-top{
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    height: 5rem;
    width: 5rem;
    font-size: 3rem;
    font-weight: lighter;
    background: var(--white);
    color: var(--secondary-color);
    border: 0.2rem solid var(--secondary-color);
    border-radius: 50%;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
    z-index: 999;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.scroll-top:hover{
    background: var(--secondary-color);
    color:var(--white);
}

/*----- 7- Dark Form CSS -----*/
.dark-form input:-webkit-autofill,
.dark-form input:-webkit-autofill:hover,
.dark-form input:-webkit-autofill:focus,
.dark-form input:-webkit-autofill:active {
    -webkit-text-fill-color: var(--white);
    -webkit-transition: background-color 5000s ease-in-out 0s;
            transition: background-color 5000s ease-in-out 0s;
}

.dark-form .input-box{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.dark-form .input-field{
    -webkit-box-flex: 1;
        -ms-flex: 1 1 20rem;
            flex: 1 1 20rem; 
    border: 0.15rem solid var(--white);
    padding: 1.5rem;
    border-radius: var(--border-radius-1);
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1rem;
}

.dark-form .input-field:hover{
    border-color: var(--main-color);
}

.dark-form .input-field label {
    color: var(--main-color);
    font-size: 1.6rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.dark-form .box{
    width: 100%;
    font-size: 1.6rem;
    color: var(--white);
    background-color: transparent;
    text-transform: none;
}

.dark-form .box::-webkit-input-placeholder{
    text-transform: capitalize;
    color: var(--white);
}

.dark-form .box::-moz-placeholder{
    text-transform: capitalize;
    color: var(--white);
}

.dark-form .box:-ms-input-placeholder{
    text-transform: capitalize;
    color: var(--white);
}

.dark-form .box::placeholder{
    text-transform: capitalize;
    color: var(--white);
}

.dark-form textarea{
    height: 10rem;
    resize: none;
}

.dark-form .text-area {
    -webkit-box-align: start;
    -ms-flex-align: start;
    -ms-grid-row-align: flex-start;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.dark-form .checkbox-label {
    color: var(--white);
    position: relative;
    padding-left: 2.5rem;
    cursor: pointer;
    font-size: 1.8rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.dark-form .checkbox-label input{
    position: absolute;
    opacity: 0;
    z-index: -1;
}

.dark-form .checkbox-indicator{
    position: absolute;
    top: 0.2rem;
    left: 0;
    height: 1.6rem;
    width: 1.6rem;
    background: transparent;
    outline: 0.15rem solid var(--white);
    border-radius: 0.2rem;
}

.dark-form .checkbox-label input:checked ~ 
.checkbox-indicator {
    background: var(--main-color);
    outline-color: var(--main-color);
}

.dark-form .checkbox-indicator:after {
    content: '';
    position: absolute;
    left: 0.5rem;
    top: 0.2rem;
    width: 0.3rem;
    height: 0.8rem;
    border: solid var(--light-grey);
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    display: none;
}

.dark-form .checkbox-label input:checked ~ 
.checkbox-indicator:after {
    display: initial;
}

.dark-form .extra-services{
    padding-top: 1rem;
    padding-bottom: 2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 1.5rem;
}

.dark-form .select option{
    color: var(--grey);
}

.dark-form .select{
    -webkit-box-flex: 1;
        -ms-flex: 1 1 20rem;
            flex: 1 1 20rem;
    border: 0.15rem solid var(--white);
    border-radius: var(--border-radius-1);
    width: 100%;
}

.dark-form .select-container{
    height: 100%;
    min-width: 100%;
    position: relative;
}

.dark-form .select-box{
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    width: 100%;
    color: var(--white);
    background-color: transparent;
    padding: 1.5rem;
    font-size: 1.6rem;
    padding-left: 4.5rem;
}

.dark-form .select-container label{
    position: absolute;
    height: 100%;
    top: 0;
    left: 1.5rem;
    color: var(--main-color);
    font-size: 1.6rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.dark-form .select-container .icon-container{
    width: 4rem;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;

}

.dark-form .select-container .icon-container i{
    font-size: 1.6rem;
    color: var(--white);
}

.dark-form ::-webkit-calendar-picker-indicator {
    -webkit-filter: invert(1);
            filter: invert(1);
}

/*----- 8- Light Form CSS -----*/
.light-form input:-webkit-autofill,
.light-form input:-webkit-autofill:hover,
.light-form input:-webkit-autofill:focus,
.light-form input:-webkit-autofill:active {
    -webkit-text-fill-color: var(--secondary-color);
    -webkit-transition: background-color 5000s ease-in-out 0s;
            transition: background-color 5000s ease-in-out 0s;
}

.light-form .input-field,
.light-form .select{
    border-color: rgba(0, 0, 0, 0.2);
}

.light-form .box{
    color: var(--secondary-color);
}

.light-form .select-box{
    color: var(--grey);
}

.light-form .box::-webkit-input-placeholder{
    color: var(--grey);
}

.light-form .box::-moz-placeholder{
    color: var(--grey);
}

.light-form .box:-ms-input-placeholder{
    color: var(--grey);
}

.light-form .box::placeholder{
    color: var(--grey);
}

.light-form .select-container .icon-container i{
    color: var(--secondary-color);
}

.light-form .checkbox-label{
    color: var(--secondary-color);
}

.light-form .checkbox-indicator{
    outline-color: rgba(0, 0, 0, 0.5);
}

/*----- 9- Swiper Pagination CSS -----*/
.swiper-pagination-bullet{
    height: 1rem;
    width: 3rem;
    border-radius: 50rem;
    background: var(--white);
    opacity: 0.7;
}

.swiper-pagination-bullet-active{
    width: 6rem;
    background-color: var(--main-color);
    opacity: 0.9;
}

/*----- 10- Swiper Navigation CSS -----*/
.swiper-button-next,
.swiper-button-prev{
    background-color: rgba(255, 255, 255, 0.4);
    font-size: 1rem;
    height: 6rem;
    width: 6rem;
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
}

.swiper-button-next{
    right: 0;
}

.swiper-button-prev{
    left: 0;
}

.swiper-button-next::after,
.swiper-button-prev::after{
    font-size: 2rem;
    font-weight: bold;
    color: var(--white);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center; 
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
  
.swiper-button-next:hover,
.swiper-button-prev:hover{
    background-color: var(--main-color);
}

/*------------------------------ Global CSS (End) ------------------------------*/



/*------------------------------ All Sections CSS (Start) ------------------------------*/

/*----- 1- Home-Slider -----*/
.home{ 
    padding: 0;
    position: relative;
}

.home-slider{ 
    position: relative; 
    overflow: hidden;
}

.home-slider .swiper-button-next,
.home-slider .swiper-button-prev{
    opacity: 0;
}

.home-slider:hover .swiper-button-next,
.home-slider:hover .swiper-button-prev{
    opacity: 1;
}

.home-item{
    height: 70rem;
}

.home-item .content{ 
    padding: 10rem 5%;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: -webkit-linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.6));
    background:         linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.6));
}

.home-item .content .text{
    padding-top: 10rem;
    width: 80rem;
}

.home-item .content h5{
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    color: var(--main-color);
}

.home-item .content h3{
    font-size: 5.6rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--white);
    letter-spacing: 0.1rem;
    line-height: 1.15;
}

.home-item .content p{
    color: var(--white);
    font-size: 2rem;
    font-weight: 400;
    padding-bottom: 2.5rem;
    line-height: 1.5;
}

.home-item .content .text .btn{
    border-color: var(--white);
    color: var(--white);
}

/*----- 2- About -----*/
.about .box-container{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 3rem;
    padding-top: 2rem;
}

.about .image{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 42rem;
        flex: 1 1 42rem;
}

.about .image img{
    height: 45rem;
    border-radius: var(--border-radius-5);
    overflow: hidden;
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
}

.about .content{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 42rem;
        flex: 1 1 42rem;
}

.about .content p{
    padding-bottom: 1rem;
}

.about .about-features{
    padding-top: 0.5rem;
    padding-bottom: 1.5rem;
}

.about .about-features li{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1rem;
    padding-bottom: 1rem;
    font-size: 1.6rem;
}

.about .about-features .icon{
    color: var(--main-color);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.about .about-features span{
    -webkit-box-flex: 1;
        -ms-flex: 1 1 30rem;
            flex: 1 1 30rem;
    color: var(--grey);
}

/*----- 3- Services -----*/
.section-slider{
    overflow: hidden;
    padding: 0.5rem;
}

.service-item{
    background-color: var(--white);
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    border-bottom: var(--custom-border);
    border-radius: var(--border-radius-5);
    text-align: center;
    padding: 1rem;
}

.service-item img{
    height: 20rem;
    border-radius: var(--border-radius-5);
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
}

.service-item h3{
    margin-top: 2rem;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--secondary-color);
}

.service-item p{
    margin: 1rem 0;
}

/*----- 4- Why Choose Us -----*/
.why-us{
    padding: 4rem 5%;
    margin: 1rem 0;
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6)), url("../../assets/images/Background/WhyUs.jpg");
    background:         linear-gradient(180deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6)), url("../../assets/images/Background/WhyUs.jpg");
    background-position: center;
    background-size: cover;
}

.why-us .box-container{
    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;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 4rem;
}

.why-us .image{
    -webkit-box-flex: 1;
        -ms-flex: 1 1 40rem;
            flex: 1 1 40rem;
}

.why-us .image img{
    margin-top: 3rem;
    height: 25rem;
    border-radius: var(--border-radius-5);
}

.why-us .image p{
    color: var(--white);
}

.why-us .why-features{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 45rem;
        flex: 1 1 45rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 2rem;
}

.why-us .why-features .points{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 22rem;
        flex: 1 1 22rem;
}

.why-us .why-features .points:first-child{
    margin-top: 4rem;
}

.why-us .why-features .point{
    margin-bottom: 2rem;
    background-color: var(--white);
    border-radius: var(--border-radius-5);
    border-bottom: var(--custom-border);
    padding: 3rem 2.5rem;
}

.why-us .why-features .point:last-child{
    margin-bottom: 0;
}

.why-us .why-features i{
    font-size: 4rem;
    color: transparent;
    -webkit-text-stroke: 0.2rem var(--white);
    background-color: var(--main-color);
    height: 7rem;
    width: 7rem;
    border-radius: var(--border-radius-4);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.why-us .why-features h3 {
    font-size: 2.5rem;
    padding-top: 1.5rem;
    padding-bottom: 1rem;
    color: var(--secondary-color);
}

/*----- 5- Process -----*/
.process .box-container{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(25rem, 1fr))[auto-fit];
        grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 1rem;
}

.process-item{
    border-radius: var(--border-radius-5);
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    border-bottom: var(--custom-border);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 2rem;
    padding-bottom: 3rem;
    padding-top: 7rem;
    background-color: var(--white);
    text-align: center;
    position: relative;
}

.process-item i{
    height: 8rem;
    width: 8rem;
    font-size: 4rem;
    color: var(--white);
    background-color: var(--main-color);
    border-radius: var(--border-radius-4);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0 auto;
    margin-bottom: 1.5rem;
}

.process-item h6{
    position: absolute;
    top: 2rem;
    right: 2rem;
    color: #02010100;
    font-size: 6rem;
    font-weight: 900;
    -webkit-text-stroke-width: 0.2rem;
    stroke-width: 0.2rem;
    -webkit-text-stroke-color: var(--main-color);
    stroke: var(--main-color);
    margin-bottom: 1rem;
    line-height: 1;
}

.process-item h3{
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--secondary-color);
    padding-bottom: 0.5rem;
}

/*----- 6- Calculator -----*/
.cost-calculator .box-container{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;  
    -ms-flex-wrap: wrap-reverse;  
        flex-wrap: wrap-reverse;
    gap: 4rem;
    padding: 4rem;
    border-left: var(--custom-border);
    background-color: var(--white);
    border-radius: var(--border-radius-5);
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
}

.cost-calculator form{
    -webkit-box-flex: 1;
        -ms-flex: 1 1 50rem;
            flex: 1 1 50rem;
}

.cost-calculator .cost-total{
    background-color: var(--main-color);
    border: 0.4rem solid var(--main-color);
    border-radius: 5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    overflow: hidden;
    margin-top: 1rem;
}

.cost-calculator .cost-total h5{
    font-size: 2rem;
    color: var(--white);
    padding: 1rem 2rem;
}

.cost-calculator .cost-total span{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 1rem 2rem;
    font-size: 2rem;
    color: var(--white);
    width: 13rem;
    min-height: 100%;
    border-radius: 5rem;
    background-color: var(--secondary-color);
}

.cost-calculator .image{
    height: 40rem;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 35rem;
        flex: 1 1 35rem;
    border-radius: var(--border-radius-4);
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    overflow: hidden;
}

/*----- 7- Counter -----*/
.counting{
    width: 100%;
    padding: 2rem 5%;
    margin: 1rem 0;
    min-height: 15rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 3rem;
    background: -webkit-linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.8)), url("../images/Counter/Counter.jpg");
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.8)), url("../images/Background/Counter.jpg");
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}

.counting .box{
    -webkit-box-flex: 1;
    -ms-flex:1 1 25rem;
        flex:1 1 25rem;
    text-align: center;
    padding: 2rem;
}

.counting .box i{
    color: transparent;
    -webkit-text-stroke: 0.15rem var(--white);
    background-color: var(--secondary-color);
    border: 0.4rem solid var(--white);
    border-radius: var(--border-radius-4);
    font-size: 4rem;
    height: 9rem;
    width: 9rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0 auto;
    margin-bottom: 1rem;
}

.counting .box .count{
    color: var(--white);
    font-size: 4rem;
    padding-bottom: 0.5rem;
}

.counting .box h3{
    color: var(--white);
    font-size: 2rem;
    font-weight: 400;
}

/*----- 8- Projects -----*/
.projects .controls{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    list-style-type: none;
    gap: 1rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.projects .controls .button{
    cursor: pointer;
}

.projects .controls .button.active{
    cursor: pointer;
    background-color: var(--secondary-color);
    color: var(--white);
}

.project-item:hover img{
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
}

.project-item{
    width: 33.3%;
    padding: 0.8rem;
}

.project-content{
    border-radius: var(--border-radius-5);
    height: 30rem;
    position: relative;
    overflow: hidden;
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
}

.project-item .content{
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    top: 0rem;
    left: 0rem;
    transform-origin: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    outline: 0.1rem solid var(--white);
    outline-offset: -2rem;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    -webkit-transform: scale(0);
            transform: scale(0);
}

.project-item .text{
    width: 100%;
    text-align: center;
    padding: 2.5rem;
}

.project-item .text p{
    color:  var(--main-color);
    opacity: 0;
    font-size: 3rem;
    font-weight: 500;
    padding-bottom: 1rem;
}

.project-item a{
    height: 5.5rem;
    width: 5.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0 auto;
    color: var(--white);
    background-color: var(--secondary-color);
    border: 0.2rem solid var(--white);
    border-radius: var(--border-radius-4);
    opacity: 0;
    font-size: 2rem;
}

.project-item a:hover{
    background-color: var(--main-color);
}

.project-item:hover .content{
    -webkit-transform: scale(1);
            transform: scale(1);
}

.project-item:hover p{
    opacity: 1;
    -webkit-transition-delay: 0.3s;
            transition-delay: 0.3s;
}

.project-item:hover a{
    opacity: 1;
    -webkit-transition-delay: 0.3s;
            transition-delay: 0.3s;
}

/*----- 9- Pricing -----*/
.pricing .box-container{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(32rem, 1fr))[auto-fit];
        grid-template-columns: repeat(auto-fit, minmax(32rem, 1fr));
    gap: 1rem;
}

.pricing .plan-item{ 
    background-color: var(--white);
    text-align: center;
    padding: 1.5rem;
    padding-bottom: 2rem;
    border-bottom: var(--custom-border);
    border-radius: var(--border-radius-5);
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
}

.pricing .plan-item .intro{
    border-radius: var(--border-radius-5);
    background-color: var(--secondary-color);
    padding: 2rem;
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
}

.pricing .plan-item .icon{
    height: 7rem;
    width: 7rem;
    font-size: 3rem;
    color: transparent;
    -webkit-text-stroke: 0.15rem var(--white);
    background-color: var(--main-color);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    z-index: 1;
    border-radius: var(--border-radius-4);
    margin: 0 auto;
    margin-bottom: 1rem;
}

.pricing .plan-item h3{
    color: var(--white);
    font-size: 3rem;
    font-weight: 500;
    line-height: 1.3;
}

.pricing .plan-item p{
    color: var(--main-color);
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 1;
}

.pricing .plan-item .price{
    color: var(--white);
    font-size: 5rem;
    font-weight: 500;
    line-height: 1;
    padding-top: 1.5rem;
}

.pricing .plan-item ul{ 
    padding: 2rem 0rem;
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}

.pricing .plan-item ul li{
    padding: 0.7rem 0;
    font-size: 1.6rem;
    color: var(--grey);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; 
    text-align: left;
    gap: 0.7rem;
}
  
.pricing .plan-item ul li i{
    height: 1.8rem;
    width: 1.8rem;
    color: var(--main-color);
    font-size: 1.3rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

/*----- 10- Get Quote -----*/
.get-quote{
    background: url("../../assets/images/Background/Get-Quote.jpg");
    background-position: center;
    background-size: cover;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; 
}

.get-quote form{
    width: 100%;
    padding: 4rem;
    text-align: center;
    border-left: var(--custom-border);
    border-radius: var(--border-radius-5);
    background-color:rgba(106, 0, 102, 0.95);
}

.get-quote .input-field,
.get-quote .select{
    border: none;
    background: rgba(255, 255, 255, 0.4);
}

.get-quote .input-field label,
.get-quote .select-container label {
    color: var(--white);
}

.get-quote .dark-form .extra-services{
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.get-quote .alert{
    display: block;
    font-size: 1.8rem;
    color: var(--main-color);
    padding-top: 1rem;
}

.get-quote .btn{
    border-color: var(--white);
    color: var(--white);
}

/*----- 11- FAQs -----*/
.faq .box-container{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 2rem;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap; 
}

.accordion-container{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 55rem;
        flex: 1 1 55rem;
}

.accordion{
    background-color: var(--white);
    margin-bottom: 1.5rem;
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    overflow: hidden;
    border-radius: var(--border-radius-5);
}

.accordion:last-child{
    margin-bottom: 0rem;
}

.accordion .accordion-heading{
    padding: 1.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1.5rem;
    cursor: pointer;
    font-size: 1.8rem;
}

.accordion.active .accordion-heading {
    border-bottom: 0.3rem solid var(--main-color);
}

.accordion .accordion-heading i{
    height: 4rem;
    width: 4rem;
    border-radius: var(--border-radius-4);
    color: var(--white);
    background-color: var(--secondary-color);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.accordion.active .accordion-heading i{
    background-color: var(--main-color);
}

.accordion .accordion-heading h3{
    -webkit-box-flex: 1;
        -ms-flex: 1 1 30rem;
            flex: 1 1 30rem;
    color: var(--secondary-color);
}

.accordion.active .accordion-heading h3{
    color: var(--main-color); 
}

.accordion.active .accordion-content{
    display: block;
}

.accordion-content{
    padding: 1.5rem;
    font-size: 1.5rem;
    line-height: 2;
    color: var(--grey);
    display: none;
}

.faq .image{
    height: 50rem;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 30rem;
        flex: 1 1 30rem;
    border-radius: var(--border-radius-5);
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    overflow: hidden;
}

/*----- 12- Team -----*/
.team .box-container{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(25rem, 1fr))[auto-fit];
        grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 1.5rem;
}

.team-item .image{
    position: relative;
    height: 35rem;
    overflow: hidden;
    border-bottom: var(--custom-border);
    border-radius: var(--border-radius-5);
}

.team-item .image img{
    z-index: 3;
}

.team-item .icon-container{
    position: absolute;
    bottom: -20%;
    left: 0;
    right: 0;
    padding: 1.5rem 1rem;
    color: var(--white);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    background: var(--secondary-color);
    z-index: 2;
}

.team-item:hover .icon-container{
    bottom: 0%;
}

.team-item .icon-container a{
    color: var(--white);
    font-size: 2rem;
}

.team-item .icon-container a:hover{
    color: var(--main-color);
}

.team-item .content{
    text-align: center;
    padding: 1.5rem;
}

.team-item .content h3{
    color: var(--secondary-color);
    font-size: 2.5rem;
    font-weight: 600;
    padding-bottom: 0.2rem;
}

.team-item .content p{
    font-size: 1.8rem;
    color: var(--main-color);
    font-weight: 500;
}

/*----- 13- Testimonials -----*/
.testimonial{
    background: -webkit-linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6)), url("../../assets/images/Background/Testimonials.jpg");
    background:         linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6)), url("../../assets/images/Background/Testimonials.jpg");
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}

.testimonial-slider{
    position: relative;
    padding-bottom: 4rem;
    overflow: hidden;
}

.testi-item{
    text-align: center;
}

.testi-item .des{
    position: relative;
    background: var(--main-color);
    border-radius: var(--border-radius-5);
    padding: 1rem 0.5rem;
    margin-bottom: 4.5rem;
}

.testi-item .des i{
    font-size: 2.5rem;
    color: var(--white);
}

.testi-item .des p{
    font-size: 1.6rem;
    padding: 1rem;
    color: var(--white);
}

.testi-item .des::before{
    content: "";
    position: absolute;
    bottom: -1.5rem;
    left: 50%;
    -webkit-transform: translateX(-50%) rotate(45deg);
            transform: translateX(-50%) rotate(45deg);
    height: 3rem;
    width: 3em;
    background: var(--main-color);
    z-index: -1;
}

.testi-item .intro{
    margin: 2rem 0;
}

.testi-item .intro img{
    height: 10rem;
    width: 10rem;
    border-radius: var(--border-radius-4);
}

.testi-item .intro h3{
    font-size: 2.2rem;
    font-weight: 500;
    color: var(--white);
    padding-top: 1rem;
    line-height: 0.7;
}

.testi-item .intro .rating{
    font-size: 1.6rem;
    color: var(--main-color);
}

/*----- 14- Blogs -----*/
.blogs .box-container{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(32rem, 1fr))[auto-fit];
        grid-template-columns: repeat(auto-fit, minmax(32rem, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.blog-item{
    padding: 1.5rem;
    background-color: var(--white);
    border-bottom: var(--custom-border);
    border-radius: var(--border-radius-5);
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
}

.blog-item .image{
    height: 20rem;
    overflow: hidden;
    position: relative;
    border-radius: var(--border-radius-5);
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
}

.blog-item:hover .image img{
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
}

.blog-item .content{
    padding-top: 2rem;
}

.blog-item .date{
    font-size: 1.6rem;
    padding: 0.7rem 1.5rem;
    border-radius: var(--border-radius-1);
    color: var(--white);
    background-color: var(--secondary-color);
    position: absolute;
    right: 1.5rem;
    bottom: 1.5rem;
}

.blog-item .content .main-heading{
    display: block;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    line-height: 1.3;
    padding-bottom: 0.8rem;
}

.blog-item .content .main-heading:hover{
    color: var(--main-color);
}

/*----- 15- Contact -----*/
.contact .box-container{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;  
    -ms-flex-wrap: wrap;  
        flex-wrap: wrap;
    margin: 2rem 0;
    border-radius: var(--border-radius-5);
    overflow: hidden;
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
}

.contact form{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 42rem;
        flex: 1 1 42rem;
    background: var(--white);
    padding: 2rem 2.5rem;
}

/*-- Google Map --*/
.contact iframe{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 42rem;
        flex: 1 1 42rem;
    min-height: 30rem;

}
.contact .alert{
    display: block;
    font-size: 1.8rem;
    color: var(--main-color);
    padding-top: 1rem;
}

.contact .contact-info{
    background-color: var(--secondary-color);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 1rem;
    padding: 2rem 0;
    border-radius: var(--border-radius-5);
    overflow: hidden;
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);

}

.contact .contact-info .info-item{
    -webkit-box-flex: 1;
    -ms-flex:1 1 25rem;
        flex:1 1 25rem;
    padding: 1.5rem 2rem;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}

.contact .contact-info .info-item i{
    height: 7rem;
    width: 7rem;
    font-size: 3rem;
    color: transparent;
    -webkit-text-stroke: 0.15rem var(--white);
    background-color: var(--main-color);
    margin: 0 auto;
    margin-bottom: 2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: var(--border-radius-4);
}

.contact .contact-info .info-item h3{
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--white);
    padding-bottom: 0.4rem;
}

.contact .contact-info .info-item p{
    color: var(--light-grey);
    line-height: 1.5;
}

.contact .contact-info .info-item p.gmail{
    text-transform: none;
}

/*----- 16- Clients Slider -----*/
.clients{
    background-color: rgba(0, 0, 0, 0.05);
}

.clients .client-slider{
    overflow: hidden;
}

.client-item{
    width: 20rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

/*------------------------------ All Sections CSS (End) ------------------------------*/