html {
  scroll-behavior: smooth;
}
.banner{
    min-height: 625px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}
.banner__inner{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.banner__inner .banner-content{
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 50%;
    color: #fff;
}

.banner__inner .banner-img{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50%;
    color: #fff;
}

.banner-content .title h1{
    font-size: 48px;
    font-weight: 700;
    line-height: 50px;
}
.banner-content .sub-title h3{
    font-size: 24px;
    font-weight: 600;
    line-height: 28px;
}
.banner-content .description{
   margin-bottom: 20px; 
}

.sub-banner{
    background-color: var(--main-color);
    color: #fff;
    padding: 20px 0;
}

.sub-banner-content{
    display: flex;
    justify-content: space-between;
    align-items: center;

}

.sub-banner-content .texte{
    width: 100%;
}
.sub-banner-content .texte h3{
        font-size: 20px;
    font-weight: 600;
    line-height: 26px;
}

.section{
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.services-container{
    overflow: hidden;
}

.section .title {
    text-align: center;
    margin-bottom: 1rem;
}

.section .title h2 {
    font-size: 36px;
    font-weight: 600;
    line-height: 40px;
    color: #007380;
}

.section .description{
    text-align: center;
    margin-bottom: 2rem;
}

.section .description p {
    font-size: 18px;
    line-height: 22px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    -webkit-column-gap: 8rem;
    column-gap: 8rem;
    row-gap: 3rem;
}

.services-grid .service .service-image img{
    width: 220px;
    height: auto;
    border-radius: 50%;
}

.services-grid .service{
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    justify-content: center;
}

.services-grid .service .service-title , .services-grid .service .service-summary{
    text-align: center;
}

.services-grid .service .service-summary{
    margin: 15px 0;
}

.services-grid .service .service-title h3{
    font-size: 24px;
    color: #007380;
    line-height: normal;
}

.services-grid .service .service-title h3:hover{
    color: #cc3362;
}
.services-grid .service .service-title p{
    color: rgb(42, 43, 44);
}
.services-grid .service .service-action a {
    color: #2A2B2C;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.section.contact{
    background-color: #D3F9F5;
    padding-bottom: 0;
}

.contact-container{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    -webkit-column-gap: 0;
    column-gap: 0;
    align-items: end;
}
.contact-container .image{text-align: center;}

.contact-container .image img{
    width: 100%;
    height: auto;
}
.contact-form .cf-head{
    margin-bottom: 2rem;
}

.contact-form .cf-head h2{
    font-size: 36px;
    font-weight: 600;
    line-height: 40px;
    margin-bottom: 1rem;
}

.contact-form .cf-body .line{
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.contact-form .cf-body .linefull{
    margin-bottom: 1.5rem;
}

.contact-form .cf-body .linefull textarea{
    width: 100%;
}

.contact-form .cf-body input , .contact-form .cf-body textarea{
    font-size: 15px;
    margin-bottom: 0;
    margin-top: 0;
    width: 100%;
    max-width: 90%;
    padding-left: 20px !important;
    padding-right: 20px !important;
    padding-top: 14px !important;
    padding-bottom: 14px !important;
    border-radius: 40px !important;
    color: #2A2B2C;
    background-color: #FFFFFF;
    border-style: solid;
    border-width: 2px 2px 2px 2px;
    border-color: #CCCCCC;
    background: #fff;
    float: none;
    height: auto;
    margin: 0;
    outline: 0;
    border: 1px solid #666;
    transition: all .3s;
    padding-block: 1px;
    padding-inline: 2px;
}

.contact-form .cf-body input[type=submit]{
    font-family: "Montserrat", Sans-serif;
    font-weight: 700;
    fill: #fff;
    color: #fff;
    background-color: var(--main-color);
    border-radius: 100px 100px 100px 100px!important;;
    padding: 17px 30px 17px 30px !important;
    display: block;
    line-height: 1.2;
    width: fit-content;
    cursor: pointer;
}

.projects-container{
    display: flex;
    gap: 2rem;
}

.projects-container .pc-left{
    width: 23%;
}
.projects-container .pc-left .title{
    text-align: left;
    margin-bottom: 2rem;
}
.projects-container .pc-left .description{
    text-align: left;
}
.projects-container .pc-right{
    width: 77%;
}

.projects-slider .project {
    float: none;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 10px;
}

.projects-slider .project .project__inner_item{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
        -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.projects-slider .project .project-image{
    margin-bottom: 2rem;
}

.projects-slider .project .project-image img{
    border: none;
    border-radius: 0;
    box-shadow: none;
    height: auto;
    max-width: 100%;
    overflow: hidden;
    margin: 0 auto;
    border-radius: 35px !important;
    transition: 0.5s all ease-in-out;
    display: block;
    margin: auto;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
} 

.projects-slider .project .project-image img:hover {
    transform: scale(1.05);
    border-radius: 35px !important;
}

.projects-slider .project .project-title{
    margin-bottom: 1rem;
    min-height: 100px;
}

.projects-slider .project .project-title a h3{
    font-size: 20px;
    font-weight: 600;
    line-height: 26px;
    text-align: left;
}

.projects-slider .project .project-action a {
    color: #2A2B2C;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}

.section.about{
    background-color: #007380;
}

.section.about .title h2{
    color: #fff;
}

.section.about .description p{
    color: #fff;
}

.section.about .element .icon svg{
    width: 80px;
    height: auto;
}

.section.about .element .icon{
    margin-bottom: 1rem;
}

.section.about .element .head h3{
    font-size: 25px;
    color: #fff;
    text-align: center;
    margin-bottom: 1rem;
}

.section.about .element .description p{
    font-size: 15px;
    color: #fff;
    text-align: center;
}

.about-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    -webkit-column-gap: 2rem;
    column-gap: 2rem;
    row-gap: 2rem;
}




