/*------------------------------------------------------------------
[Master Stylesheet]

Project:  Hillcrest Interiors
-------------------------------------------------------------------*/
/*------------------------------------------------------------------
[Table of contents]

1. Body
2. Header
3. Banner Section
4. About us  Section
5. Services Section
6. Our Team Section
7. Choose Us Section
8. Contact Section
9. Testimonials Section
10. Projects Section
11. Blog Section
12. Footer Section
*/


@import url('https://fonts.googleapis.com/css2?family=Italiana&family=Montserrat:wght@300;400;500;600;700;900&family=Roboto:wght@300;400;500;700&family=Mirt:wght@200;300;400;500&display=swap');
@import url("https://use.typekit.net/utw3waz.css");


:root {
    --blanc: #ffffff;
    --noir-light: #1D1D1B;
    --rouge: #C93A20;
    --noir:#000;
    --gris-light:#e9e9e9;
    --gris-dark:#767676;
    --vert: #B5BE0F;
    --bleu: #437884;
    --beige: #C4BFA1;
    --marron:#b1916c;
}


body{
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
}

.h1, h1 {
    font-size: 74px;
    font-family: "bely-display", sans-serif;
    color: var(--blanc);
}
.h2, h2 {
    font-size: 54px;
    font-family: "bely-display", sans-serif;
    color: var(--marron);
}
.h3, h3{
    font-size: 50px;
    line-height: 60px;
    font-weight: 400;
}
.h4, h4 {
    font-size: 30px;
    line-height: 36px;
}
.h5, h5 {
    font-size: 20px;
    font-family: "bely-display", sans-serif;
}
.h6, h6 {
    font-size: 22px;
    line-height: 28px;
    font-weight: 400;
    word-spacing: -0.4px;
    font-family: 'Montserrat', sans-serif;
    color: var(--noir-light);
}
p {
    font-size: 14px;
    line-height: 22px;
    font-weight: 400;
    color: var(--noir-light);
}
.text-size-18 {
    font-size: 18px;
    line-height: 32px;
}
.text-size-16 {
    font-size: 16px;
    line-height: 26px;
}
.text-size-14 {
    font-size: 14px;
    line-height: 24px;
}

.pointer-event-none {
    pointer-events: none;
}

.pointer-event-all {
    pointer-events: all;
}

.fa-check:before{
    content: none;
}

b, strong{
    font-weight: 600;
}

/* READ MORE BUTTON */
.btn-read_more {
    font-size: 14px;
    font-weight: 400;
    border-radius: 50px;
    text-align: center;
    color: var(--blanc);
    transition: all 0.3s ease-in-out;
    display: flex;
    align-items: center;
    width: max-content;
    padding: 6px 25px 6px 50px;
    position: relative;
    transition: all .3s;
    z-index: 2;
}

.btn-read_more.bold {
    font-weight: 500;
}

.btn-read_more::before {
    content: '';
    background: var(--rouge);
    border-radius: 50px;
    width: 32px;
    height: 100%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    margin-right: 10px;
    transition: all .3s;
    z-index: -1;
}

.btn-read_more.white:hover {
    padding: 6px 25px 6px 25px;
    color: var(--blanc);
}

.btn-read_more:hover::before {
    width: 100%;
}

.btn-read_more.black {
    color: var(--noir);
}

.btn-read_more:hover {
    padding: 6px 25px 6px 25px;
    color: var(--blanc);
}

.badge-primary{
    background-color: var(--rouge);
    padding: 5px 10px;
    margin-bottom: 10px;
}

.badge-primary a{
    color: var(--blanc);
    text-decoration: none;
}

/* Home Page Style */
/* HEADER */
#header {
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    /* position: relative; */
    position: fixed;
    background-color: white;
    z-index: 9999;
    width: 100%;
    box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.10);
}

.header-container {
    display: flex;
    justify-content: space-between;
    width: 85%;
}

.header-brand {
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-nav {
    display: flex;
    align-items: center;
}

.header-brand img{
    width: 184px;
}

.header-brand .logo-mobile{
    display: none;
}

#mobile-nav-button{
    display: none;
}
.banner-section .vr-img-mobile{display: none;}

/* NAV */
#mobile-nav-button {
    position: absolute;
    top: 25px;
    right: 40px;
    border: none;
    background-color: transparent;
    border-radius: 5px;
    padding: 7px;
    height: 40px;
    width: 40px;
}

#mobile-nav-button.open span{
    background-color: #fff;
}

#mobile-nav-button span {
    position: absolute;
    display: block;
    left: 50%;
    top: 50%;
    transform: translate(-50%);
    height: 2px;
    width: 25px;
    background-color: var(--noir-light);
}

#mobile-nav-button span::after, #mobile-nav-button span::before {
    content: '';
    position: relative;
    display: block;
    height: 2px;
    width: 25px;
    background-color: var(--noir-light);
    transition: all .3s;
}

#mobile-nav-button span::after {
    top: 10px;
} 

#mobile-nav-button span::before {
    bottom: 10px;
}

#mobile-nav-button.open span::after{
    top: 50%;
    left: 50%;
    transform: translate(-50%) rotate(45deg);
}

#mobile-nav-button.open span::before{
    top: 50%;
    bottom: initial;
    left: 50%;
    transform: translateY(70%) translateX(-50%) rotate(-45deg);
}

.header-nav ul {
    display: flex;
    flex-wrap: wrap;
    /* align-items: center; */
    justify-content: space-between;
    margin: 0;
    padding: 0;
}

.header-nav ul li {
    list-style: none;
}

.header-nav .nav-item {
    padding: 20px 10px;
}

.header-nav .nav-item .nav-link {
    color: var(--noir-light);
    font-weight: 500;
    position: relative;
    text-transform: lowercase;
}

.header-nav .nav-item .nav-link::before {
    content: '';
    background-color: var(--marron);
    width: 0;
    height: 0;
    border-radius: 100px;
    position: absolute;
    left: -2px;
    top: 50%;
    transform: translateY(-50%);
    display: none;
    transition: all .2s;
}

.header-nav .nav-item:hover .nav-link{
    font-weight: bold;
}

.header-nav .nav-item:hover .nav-link::before {
    display: block;
    width: 10px;
    height: 10px;
}

.header-nav .nav-item > .sub-menu {
    /* display: none; */
    justify-content: space-evenly;
    flex-wrap: wrap;
    position: absolute;
    top: calc( 100% - 5px );
    background-color: white;
    z-index: 10;
    width: 99vw;
    left: 0;
    transform-origin: top;
    transform: translateY(-20px);
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    transition: transform 0.3s ease, opacity 0.3s ease, max-height 0.3s ease, visibility 0.3s ease;

}

.header-nav .nav-item:hover > .sub-menu {
    display: flex;
    padding: 0 80px;
    transform: translateY(0);
    opacity: 1;
    visibility: visible; /* Assurez-vous qu'il est visible lorsque l'on survole */
}

.header-nav .nav-item > .sub-menu.submenu-visible {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    max-height: 500px; /* Ajustez selon la hauteur nécessaire */
    padding: 0 0 0 70px;
}

.header-nav .nav-item > .sub-menu .sub-menu-item {
    padding: 10px;
    flex: 1;
}

.header-nav .nav-item > .sub-menu .sub-menu-item .title{
    font-weight: bold;
    margin-bottom: 0;
    margin-top: 10px;
}

.header-nav .nav-item > .sub-menu .sub-menu-item .img-service {
    max-width: 90%;
    max-height: 140px;
    border-radius: 20px;
    overflow: hidden;
}

.header-nav .nav-item > .sub-menu .sub-menu-item .img-service img {
    width: 100%;
    max-height: 140px;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
}

.header-nav .nav-item > .sub-menu .sub-menu-item:hover .img-service img {
    transform: scale(1.03); /* Vous pouvez ajuster la valeur selon votre préférence */
}

.sub-menu .sub-menu-item .picto-service{
    width: 80px;
    height: 80px;
    position: absolute;
    border-radius: 50%;
    bottom: 30%;
    margin-left: -30px;
    overflow: hidden;
    /* background-color: red; */
}

.sub-menu .sub-menu-item .picto-service:before{
    content: '';
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: 65%, 100%;
    background-position: center;
    display: block;
}

.sub-menu .sub-menu-item .picto-concept:before{
    background-image: url('../images/picto-concep-espace.svg') ;
    background-color: var(--vert);
}

.sub-menu .sub-menu-item .picto-perspective:before{
    background-image: url('../images/picto-3D.svg');
    background-color: var(--beige);
    background-position-y: 14px;
}

.sub-menu .sub-menu-item .picto-realite-virtuelle:before{
    background-image: url('../images/picto-realite-virtuelle.svg');
    background-color: var(--bleu);
}

.sub-menu .sub-menu-item .excerpt-service{
    margin-left: 15%;
    width: 70%;
}

.header-nav .nav-item > .sub-menu .sub-menu-link {
    color: var(--noir);
    text-decoration: none;
}

.scroll-text{
    font-size: 90px;
    font-weight: 900;
    font-family: 'Montserrat';
    position: absolute;
    white-space: nowrap;
}

/* RS */

.banner_outer .social-icons ul li .social-networks:before{
    content: '';
    width: 45px;
    height: 45px;
    display: block;
}

.fa-instagram:before{
    content: '';
    background: url(../images/insta.svg) no-repeat center;
}

.fa-instagram:hover::before{
    background: url('../images/insta-rouge.svg') no-repeat center;
}

.fa-linkedin-in:before{
    content: '';
    background: url(../images/linkedin.svg) no-repeat center;
}

.fa-linkedin-in:hover::before{
    background: url('../images/linkedin-rouge.svg') no-repeat center;
}

.fa-whatsapp:before{
    content: '';
    background: url(../images/whatsapp.svg) no-repeat center;
}

.fa-whatsapp:hover::before{
    background: url('../images/whatsapp-rouge.svg') no-repeat center;
}

/* BADGE */
.header-container .badge .mid-circle{
    position: absolute;
    background-color: var(--rouge);
    background-image: url(../images/picto-send.svg);
    background-position: 9px 12px;
    background-repeat: no-repeat;
    background-size: 53%;
    border-radius: 50px;
    width: 46px;
    height: 46px;
    line-height: 46px;
    top: 64px;
    right: 64px;
    z-index: 11;
}

.header-container .badge .letters{
    position: absolute;
    top: 30px;
    right: 30px;
    z-index: 11;
    --badge-size: 113px;
    --badge-color: var(--black);
    display: flex;
    justify-content: center;
    align-items: center;
    width: var(--badge-size);
    height: var(--badge-size);
    background: var(--black);
    border-radius: 100%;
    box-shadow: inset 0 0 0 0.9rem var(--badge-color);
    animation: identifier 20s linear infinite;
}

.header-container .badge__emoji {
    display: block;
    margin: 0;
    animation: identifier 20s linear infinite;
    animation-direction: reverse;
    transition: all 0.3s;
}

.header-container .badge__char {
    --char-font-weight: 500;
    --char-font-size: 15px;
    --char-width: 20px;
    display: block;
    position: absolute;
    top: 0;
    left: calc(50% - var(--char-width) / 2);
    height: calc(var(--badge-size) / 2);
    width: var(--char-width);
    background-repeat: round;
    text-align: center;
    text-transform: uppercase;
    line-height: 1rem;
    font-weight: var(--char-font-weight);
    font-size: var(--char-font-size);
    color: var(--noir);
    font-family: 'Montserrat', sans-serif;
    transform-origin: bottom center;
    transform: rotate(var(--char-rotate));
}

.banner_outer{
    position: relative;
    /* padding-bottom: 155px; */
}
@media screen and (min-width: 992px) {
    .header-home.banner-section, .header-home .banner-backgroundimage {
        height: calc(100vh - 80px);
    }
}
@media screen and (max-width: 991px) {
    .header-home.banner-section .container-fluid {
        top: -1px;
        padding: 0;
    }
    .header-home.banner-section .carousel {
        background-color: var(--noir-light);
    }
    .header-home.banner-section .carousel-item {
        width: 100%;
    }
    .header-home .carousel .banner-section-outer {
        margin-top: 0;
    }
    .banner-backgroundimage::after {
        background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(29,29,27,1) 100%, rgba(29,29,27,1) 100%) !important;
    }
    .banner-backgroundimage .img-fluid {
        aspect-ratio: 4 / 3;
    }
}
@media screen and (max-width: 768px) {
    .banner-backgroundimage .img-fluid {
        aspect-ratio: 1 / 1;
    }
}
.header-home.banner-section::after {
    content: '';
    display: block;
    position: absolute;
    height: 100px;
    width: 100%;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.01);
    backdrop-filter: blur(4px);
}

.header-home .banner-section-outer{
    margin-top: 4em;
}

.header-other.banner-section, .header-other .banner-backgroundimage {
    height: calc(60vh - 80px);
}

.banner-section #carouselExampleControl, .banner-section .container-fluid, .banner-section .row  {
    height: 100%;
}

.banner-backgroundimage {
    width: 100%;
}

.header-home .banner-backgroundimage > *{
    display: none;
}

.banner-backgroundimage:after {
    content: '';
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(90deg, rgb(5 5 5 / 46%) 26.57%, rgba(0, 0, 0, 0.00) 50.28%);
    pointer-events: none;
}

.banner-backgroundimage .img-fluid {
    width: 100%;
    max-height: 100%;
    height: 100%;
    object-fit: cover;
}

.banner_outer .banner-background{
    position: absolute;
    top: 0;
}
.banner_outer .header {
    padding: 0 109px 0 106px;
    position: relative;
    z-index: 5;
}
.navbar-collapse ul{
    align-items: center; 
    display: inherit; 
}
.navbar-nav .nav-item a{
    font-size: 18px;
    line-height: 22px;
    font-weight: 500;
    text-transform: uppercase;
    position: relative;
    color: var(--blanc) !important;
    transition: all 0.3s ease-in-out;
}
.navbar-nav .nav-item a:hover{
    color: var(--noir-light) !important;
    background-color: transparent;
}
.navbar-nav li:hover > a:before {
    content: "";
    width: 7px;
    height: 7px;
    line-height: 7px;
    border-radius: 50px;
    background-color: var(--noir-light);
    position: absolute;
    top: 15px;
    left: -5px;
    z-index: 1;
    right: 0;
    transition: all 0.3s ease-in-out;
}
.navbar-nav .dropdown li:hover > a:before {
    display: none;
}
.navbar-nav li:last-child:hover > a:before {
    display: none;
}
.navbar-nav .active > a{
    color: var(--noir-light) !important;
}
.navbar-nav li.active > a:before {
    content: "";
    width: 7px;
    height: 7px;
    line-height: 7px;
    border-radius: 50px;
    background-color: var(--noir-light);
    position: absolute;
    top: 15px;
    left: -5px;
    z-index: 1;
    right: 0;
    transition: all 0.3s ease-in-out;
}
.navbar-nav li:last-child.active > a:before {
    display: none;
}
.navbar-brand{
    margin-left: 0;
    margin-right: 0;
    padding-top: 0;
    padding-bottom: 0;
}
.navbar{
    position: relative;
    padding: 30px 0;
    z-index: 1;
}
.navbar-nav li{
    margin: 0 34px;
}
.navbar-nav{
    padding-left: 147px;
    margin-top: -6px;
}
.navbar-nav li:first-child{
    margin-left: 0;
}
.navbar-nav li:last-child{
    margin-right: 0px;
    padding-right: 0;
}
.navbar-nav .nav-item .get_a_quote{
    font-size: 16px;
    line-height: 22px;
    font-weight: 500;
    border-radius: 45px;
    text-align: center;
    padding: 22px 47px;
    color: var(--blanc);
    background: var(--noir-light);
    border: 2px solid var(--blanc);
    transition: all 0.3s ease-in-out;    
    margin-left: 47px;
    position: relative;
    top: 4px;
}
.navbar-nav .nav-item .get_a_quote .dot{
    background: var(--blanc);
    border-radius: 50px;
    width: 10px;
    height: 10px;
    line-height: 10px;
    position: relative;
    top: 6px;
    float: left;
    margin-right: 10px;
}
.navbar-nav .nav-item .get_a_quote:hover{
    color: var(--blanc) !important;
}
.navbar-nav .dropdown{
    margin: 0 10px 0 35px;
}
.navbar-nav .nav-item .dropdown-item{
    color: var(--noir-light) !important;
    transition: all 0.3s ease-in-out;
}
.navbar-nav .nav-item .dropdown-item:hover{
    color: var(--blanc) !important;
    background-color: var(--rouge) !important;
    transition: all 0.3s ease-in-out;
}
.navbar-nav .drop-down-pages .active > a{
    color: var(--blanc) !important;
    background-color: var(--rouge) !important;
}
.navbar-nav .drop-down-pages .active > a:before {
    display: none;
}
.navbar-collapse .drop-down-pages {
    text-align: left;
    margin-left: 0;
}
.navbar-nav .dropdown-menu {
    background-color: var(--blanc);
    position: absolute;
    left: -20px;
    top: 45px;
    padding: 0;
    border: none;
    border-radius: 0;
    box-shadow: 1px 1px 30px rgb(0 0 0 / 20%);
}
.navbar-nav .drop-down-pages li{
    margin: 0;
}
.navbar-nav .drop-down-pages .nav-item a {
    font-size: 18px;
    line-height: 22px;
    font-weight: 500;
    text-transform: uppercase;
    padding: 12px 20px;
    margin-top: 0;
}
.navbar-expand-lg .drop-down-pages .nav-link {
    padding-left: 0;
}
.navbar-nav .drop-down-pages li:last-child{
    margin-left: 0;
}
.banner_outer .social-icons{
    float: right;
    z-index: 1;
}
.banner_outer .social-icons ul {
    position: fixed;
    right: 0;
    top: 0;
    width: 80px;
    text-align: center;
    height: 100vh;
    background: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 80;
}
.banner_outer .social-icons ul li{
    margin-top: 22px;
}
.banner_outer .social-icons ul li .social-networks {
    font-size: 20px;
    margin-top: 2px;
    color: var(--gris-dark);
    background: transparent;
    border-radius: 100px;
    text-align: center;
    /* transition: all ease-in-out 0.3s; */
    width: 45px;
    height: 45px;
    line-height: 45px;
}
.banner_outer .social-icons ul li .social-networks:hover {
    color: var(--rouge);
    /* border: 1px solid var(--rouge); */
    background: var(--blanc);
    /* transform: translateY(-5px); */
    transform: scale(1.1);
    transition: ease 0.03s;
}
.banner-section {
    position: relative;
    padding: 62px 200px 30px 165px;
}
.banner-section .banner-backgroundimage{
    position: absolute;
    top: 0;
    left: 0;
}
.banner-section .banner_content{
    position: relative;
    padding: 60px 40px 56px 55px;
    width: 86%;
    pointer-events: all;
}
.banner-section .banner_content h1{
    margin-bottom: 18px;
    line-height: normal;
}
.banner-section .banner_content .word-space{
    margin-bottom: 20px;
}
.banner-section .banner_content span{
    display: block;
    color: var(--noir-light);
    text-shadow: 0px -1px #fff, 0px 1px #fff, 1px 0px #fff, 0px 0px #fff, 0px 0px 0px #555;
}
.banner-section .banner_content p{
    font-weight: 300;
    letter-spacing: 0.2px;
    word-spacing: 0.4px;
    margin-bottom: 60px;
    font-size: 16px;
}

.banner-section .banner_content .h1{
    font-size: 34px;
}

.banner-section .banner_content .bloc-service{
    display: flex;
    align-items: center;
}

.banner-section .banner_content .bloc-service .picto-service{
    width: 30px;
    height: 30px;
    margin-right: 10px;
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
}

.banner-section .banner_content .bloc-service .picto-service.picto-vr{
    background-image: url('../images/picto-realite-virtuelle.svg');
}

.banner-section .banner_content .bloc-service .picto-service.picto-concept{
    background-image: url('../images/picto-concep-espace.svg');
}

.banner-section .banner_content .bloc-service .picto-service.picto-pers{
    background-image: url('../images/picto-3D.svg');
}

.banner-section .banner_content .bloc-service p{
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 0;
}

.banner-section .carousel {
    position: relative;
    z-index: 1;
}
.banner-section .carousel-indicators {
    bottom: 0;
    right: 0;
    margin-right: 0;
    justify-content: flex-end;
}

.banner-section .carousel-indicators li {
    font-size: 18px;
    line-height: 28px;
    font-family: 'Montserrat', sans-serif;
    opacity: 1;
    width: fit-content;
    background: none;
    text-indent: 1px;
    margin-right: 35px;
    color: var(--blanc);
}

.banner-section .carousel-indicators li:last-child {
    margin-right: 0;
}

.banner-section .carousel-indicators .active {
    font-weight: bold;
}
.banner-section .banner-section-outer {
    overflow: hidden;
}
.banner-section .banner-row-content {
    max-height: 90%;
}
.banner-section .banner-section-outer .carousel-item, .banner-section .banner-section-outer .carousel-inner,.banner-section .banner-section-outer .carousel-card, .banner-section .banner-section-outer, .banner-section .banner-section-outer .banner_content{
    height: 100%;
    /* width: min-content; */
}
.banner-section .progress {
    overflow: visible;
    height: 2px;
    width: 100%;
    background: rgba(255, 255, 255, 0.30);
    border-radius: 10px;
    position: relative;
    top: initial !important;
    bottom: 40px !important;
    align-items: center;
}

.banner-section .progress-bar {
    float: left;
    height: 100%;
    color: var(--blanc);
    text-align: center;
    background: var(--blanc);
    height: 4px;
}

.banner-section .pagination-outer {
    position: relative;
    display: inline-block;
    left: 0;
    top: initial !important;
    bottom: 25px;
}
.banner-section .pagination-outer .carousel-control-prev {
    position: relative;
    left: 15px;
    top: 0;
    width: 35px;
    font-size: 22px;
    color: var(--blanc);
    opacity: 1;
    font-weight: bold;
    display: inline-block;
    text-align: left;
}
.banner-section .pagination-outer .carousel-control-next {
    position: relative;
    right: 15px;
    top: 0;
    width: 35px;
    font-size: 22px;
    color: var(--blanc);
    opacity: 1;
    font-weight: bold;
    display: inline-block;
    text-align: right;
}

/* About Us */

.about-section {
    position: relative;
    padding: 280px 0 80px;
    overflow: hidden;
}

.about-section .scroll-text{
    font-size: 90px;
    color:rgb(157 121 84 / 6%);
    font-weight: 900;
    font-family: 'Montserrat';
    position: absolute;
    right: 10%;
    top: 33%;
    left: 60%;
}

.about-section .about-image {
    position: absolute;
    top: -180px;
    left: -106px;
    width: 700px;
    height: 500px;
}

.about-section .about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-section .about_content {
    position: relative;
    background: var(--blanc);
    padding: 45px 60px 60px 45px;
    box-shadow: 1px 6px 13px rgb(0 0 0 / 8%);
    width: 778px;
    margin-left: -25px;
    border-radius: 10px;
    box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.10);
}
.about-section .about_content h2 {
    margin-bottom: 28px;
}
.about-section .about_content .sub-title {
    font-weight: bold;
    position: relative;
    padding-bottom: 13px;
    margin-bottom: 15px;
}

.about-section .about_content .sub-title::before {
    content: '';
    background-color: var(--marron);
    width: 46px;
    height: 3px;
    position: absolute;
    bottom: 0;
    left: 0;
}

.about-section .last_list figure {
    float: left;
    transition: all 0.3s ease-in-out;
    margin-right: 18px;
}
.about-section .last_list figure:hover{
    transform: translateY(-5px);
}
.about-section .last_list .content span {
    font-size: 30px;
    line-height: 32px;
    font-weight: 400;
    display: block;
    font-family: "bely-display", sans-serif;
    margin-bottom: 2px;
    color: var(--noir-light);
}
.about-section .last_list .last_list_atag {
    color: var(--rouge) !important;
    font-size: 30px;
    line-height: 38px;
    font-weight: 400;
    transition: all 0.3s ease-in-out;
}
.about-section .last_list .last_list_atag:hover {
    color: var(--noir-light) !important;
}


@-webkit-keyframes identifier {
0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
}

to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
}
}

@keyframes identifier {
0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
}

to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
}
}

/* Services */

.service-section{
    background-color: #2b2a2a;
    position: relative;
    padding: 115px 0 85px;
}

.service-section .scroll-text{
    color:var(--noir-light);
    right: 60%;
    top: 15%;
    left: -10%;
}

.service-section .service_content {
    text-align: center;
    width: calc(100% - 80px);
    text-align: left;
    margin-bottom: 75px;
}

.service-section .service_content h2 {
    margin-bottom: 86px;
}

.service-section .service-box .lower-portion .content{
    float: left;
    width: 80%;
}

.service-section .service-box .image {
    margin-bottom: 0;
    overflow: hidden;
}

.service-section .item a:hover .image img {
    transform: scale(1.1);
    transition: .3s;
}

.service-section .service-box .image img {
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
}

.service-section .service-carousel {
    z-index: 0;
}

.service-section .owl-item:nth-child(even) .service-box .image {
    height: 300px;
}

.service-section .service-box .lower-portion h5{
    color: var(--blanc);
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
}

.service-section .service-box .lower-portion p {
    color: var(--blanc);
}

.service-section .service-box .lower-portion{
    position: absolute;
    bottom: 20px;
    left: 20px;
    max-width: 100%;
}

.service-section .owl-carousel .owl-dots {
    display: none;
}

/* CONCEPTION D'ESPACE */

.about-service{
    margin-top: 20px;
    padding: 80px 0 40px;
    position: relative;
    overflow: hidden;
}

.about-service .service_content ul{
    padding-left: 40px;
}

.about-service .service_content ul li{
    position: relative;
    margin-bottom: 13px;
}

/* Review */

.review-section .review-box{
    position: relative;
    padding: 110px 50px 95px;
    text-align: center;
}
.review-section .review-box .icon {
    position: relative;
    height: 45px;
    width: 45px;
    text-align: center;
    display: inline-block;
}

.review-section .review-box h5{
    max-width: 200px;
    margin: 10px auto;
}

.review-section .review-box p {
    max-width: 230px;
    margin: 0 auto;
}

.review-section .row {
    justify-content: center;
}


/* Team */

.team-section {
    background: url(../images/team-background.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    padding: 108px 0 68px;
}

.team-section:after{
    content: '';
    background-color: var(--blanc);
    width: 80px;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.team-section .row {
    justify-content: center;
}

.team-section .team_content {
    text-align: center;
}
.team-section .team_content h2 {
    margin-bottom: 65px;
}
.team-section .team-box {
    position: relative;
    text-align: center;
}
.team-section .team-box .image {
    position: relative;
    overflow: hidden;
    border-width: 10px 0 0 10px;
    width: 200px;
    height: 200px;
    border-radius: 200px;
    margin: auto;
    border: 4px solid var(--marron) ;
}
.team-section .team-box .image img{
    transition: all 0.3s ease-in-out;
}

.team-section .team-box:hover img {
    transform: scale(1.1);
}

.team-section .team-box .picture {
    position: relative;
    width: fit-content;
    margin: 0 auto;
}

/* .team-section .team-box .picture::before {
    content: '';
    position: absolute;
    bottom: 17px;
    right: 17px;
    width: 21px;
    height: 21px;
    background-color: var(--rouge);
    display: block;
    border-radius: 50px;
    z-index: 10;
} */

.team-section .team-box .image-content{
    position: relative;
    transition: all 0.3s ease-in-out;
}

.team-section .team-box .content-bg{
    position: relative;
    top: 0;
}
.team-section .team-box .content{
    left: 0;
    right: 0;
    bottom: 8px;
    padding: 20px;
    transition: all 0.3s ease-in-out;
}
.team-section .team-box h6 {
    color: var(--blanc);
    margin-bottom: 2px;
}
.team-section .team-box span {
    display: block;
    margin-bottom: 18px;
    color: var(--blanc);
}
.team-section .team-box li {
    margin: 0 3px;
    display: inline-block;
    background: transparent;
    border-radius: 100px;
    text-align: center;
    transition: all 0.3s ease-in-out;
    width: 34px;
    height: 34px;
    line-height: 34px;
}
.team-section .team-box li:first-child {
    margin-left: 0;
}
.team-section .team-box li:last-child {
    margin-right: 0;
}
.team-section .team-box li a {
    color: var(--blanc);
}
.team-section .team-box i {
    font-size: 14px;
    transition: all 0.3s ease-in-out;
}
.team-section .team-box li:hover {
    transform: translateY(-5px);
}

.team-section .team-box:hover i{
    color: var(--rouge);
}

.team-section .social-networks:before{
    content: '';
    width: 24px;
    height: 24px;
    display: block;
}

.team-section .fa-instagram:before{
    background: url('../images/insta-marron.svg') no-repeat center;
}

.team-section .team-box:hover .fa-instagram:before{
    background: url('../images/insta-blanc.svg') no-repeat center;
}

.team-section .fa-linkedin-in:before{
    background: url('../images/linkedin-marron.svg') no-repeat center;
}

.team-section .team-box:hover .fa-linkedin-in:before{
    background: url('../images/linkedin-blanc.svg') no-repeat center;
}

/* Choose us */

.choose-section {
    position: relative;
    padding: 240px 0 125px;
    overflow: hidden;
}

.choose-section .scroll-text{
    color: rgb(157 121 84 / 6%);
    right: 60%;
    top: 25%;
    left: -50%;
}

.choose-section .choose-image {
    position: absolute;
    height: 515px;
    width: 650px;
    top: -120px;
    right: -90px;
}

.choose-section .choose-image img{
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.choose-section .choose_content {
    position: relative;
    background: var(--blanc);
    padding: 45px 30px 50px 74px;
    box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.10);
    width: 708px;
    margin-left: -25px;
    border-radius: 10px;
}
.choose-section .choose_content h2 {
    margin-bottom: 35px;
}
.choose-section .choose_content .sub-title {
    margin-bottom: 30px;
}
.choose-section .choose_content .text {
    font-family: 'Montserrat', sans-serif;
}
/* .choose-section .choose_content .text:hover {
    color: var(--marron);
} */

.choose-section .choose_content ul {
    padding-left: 20px;
}

.choose-section .choose_content ul li {
    margin-bottom: 10px;
    padding-left: 17px;
    position: relative;
}

.choose-section .choose_content ul li::before {
    content: '';
    background-color: var(--marron);
    width: 8px;
    height: 8px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    border-radius: 100px;
}

.choose-section .btn-read_more {
    font-weight: 500;
    margin-top: 40px;
}

/* Derniers projets */

.project-section .project_content .client-pj{
    font-weight: bold;
}

/* Contact */

.contact-section {
    background-color: var(--noir-light);
    position: relative;
    padding: 100px 0 60px;
    border-radius: 0 0 22px 22px;
    z-index: 81;
}

.contact-section input {
    font-size: 16px;
    line-height: 24px;
    font-weight: 300;
    color: var(--blanc);
    background-color: var(--noir-light);
    border: none;
    border-bottom: 1px solid var(--marron);
    padding: 10px 0;
    margin-bottom: 30px;
    width: 98%;
    overflow: visible;
    outline: none;
}

.contact-section input::-webkit-input-placeholder {
    color: var(--blanc);
}
.contact-section textarea::-webkit-input-placeholder {
    color: var(--blanc);
}

.contact-section .adress {
    margin: 20px 0 35px 0;
}

.contact-section .adress p {
    color: var(--blanc);
    margin-bottom: 0px;
}

.contact-section .bouton-iti{
    height: 100px;
    position: relative;
}

.contact-section .bouton-iti .btn-itineraire{
    border: 1px solid var(--blanc);
    padding: 10px 20px;
    font-size: 14px;
}

.contact-section .bouton-iti .btn-itineraire:hover{
    border: 1px solid var(--blanc);
    padding: 10px 20px;
    background-color: var(--blanc);
    color: var(--noir-light);
    text-decoration: none;
    transition: all .3s ease;
}

.contact-section textarea {
    font-size: 16px;
    line-height: 24px;
    font-weight: 300;
    color: var(--blanc);
    background-color: var(--noir-light);
    border: none;
    border-bottom: 1px solid var(--marron);
    padding: 10px 0;
    width: 98%;
    height: 210px;
    margin-bottom: 40px;
    resize: none;
    outline: none;
    overflow: auto;
}
.contact-section i {
    font-size: 20px;
    float: right;
    top: 16px;
    right: 55px;
    position: absolute;
    color: var(--blanc);
    transition: all 0.3s ease-in-out;
}
.contact-section i:hover{
    color: var(--rouge);
}
.contact-section .phone-rotate {
    transform: rotate(320deg);
}

.contact-section .submit {
    background-color: transparent;
    border: none;
    font-size: 14px;
    font-weight: 400;
    border-radius: 50px;
    text-align: center;
    color: var(--blanc);
    transition: all 0.3s ease-in-out;
    display: flex;
    align-items: center;
    width: max-content;
    padding: 6px 25px 6px 50px;
    position: relative;
    transition: all .3s;
    z-index: 2;
}

.contact-section .submit::before {
    content: '';
    background: var(--rouge);
    border-radius: 50px;
    width: 32px;
    height: 100%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    margin-right: 10px;
    transition: all .3s;
    z-index: -1;
}

.contact-section .submit:hover::before {
    width: 100%;
}

.contact-section .submit:hover {
    padding: 6px 25px 6px 25px;
    color: var(--blanc);
}

.contact-section .contact_content{
    text-align: right;
    padding-top: 5px;
    padding-right: 90px;
}
.contact-section .contact_content h2{
    position: relative;
    margin-bottom: 45px;
}

.contact-section .contact_content .map{
    position: relative;
    overflow: hidden;
    border-radius: 500px;
    width: 550px;
    height: 550px;
    
}
.contact-section .contact_content .map iframe {
    width: 550px;
    height: 550px;
}
/* .contact-section .contact_content .map iframe:hover {
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
} */

/* Testimonial */

.testimonial-section{
    background-color: #2b2a2a;
    color: var(--blanc);
    padding: 0;
    margin-bottom: 80px;
    overflow: hidden;
}

.testimonial-section .scroll-text{
    color: var(--noir-light);
    right: 0;
    left: -70%;
    margin-top: 8%;
}

.testimonial-section h2{
    margin-bottom: 43px;
    color: var(--marron);
    max-width: 90%;
    text-align: right;
    padding-right: 7%;
}

.testimonial-section .item {
    display: flex;
}

.testimonial-section .testimonials-image {
    height: 60%;
    max-width: 50%;
    position: absolute;
    top: 0;
    right: 0;
    object-fit: cover;
}

.testimonial-section .owl-nav {
    position: absolute;
    bottom: 25%;
    right: 130px;
}

.testimonial-section .owl-theme .owl-nav [class*=owl-] {
    transition: all .3s;
    outline: none;
}

.testimonial-section .owl-theme .owl-nav [class*=owl-]:hover {
    background: none;
    transform: scale(1.1);
}

.testimonial-section .owl-nav .owl-next span, .testimonial-section .owl-nav .owl-prev span {
    padding: 10px 15px !important;
    border: 1px solid var(--marron) !important;
    border-radius: 300px !important;
    margin: 0 5px !important;
}

.testimonial-section .owl-carousel {
    z-index: 0;
} 

.testimonial-section .bg-black {
    background-color: transparent;
    padding: 60px 140px 70px 140px;
}

.testimonial-section .testimonial_content {
    position: relative;
    z-index: 2;
    max-width: 55%;
    margin-top: 120px;
}

.testimonial-section .testimonial_content ul{
    margin-bottom: 22px;
}
.testimonial-section .testimonial_content ul li {
    display: inline-block;
    margin: 0 2px;
}
.testimonial-section .testimonial_content ul li:first-child {
    margin-left: 0;
}
.testimonial-section .testimonial_content ul li:last-child {
    margin-right: 0;
}
.testimonial-section .testimonial_content ul li i {
    color: var(--rouge);
    font-size: 18px;
    line-height: 18px;
}
.testimonial-section .testimonial_content p{
    color: var(--blanc);
    margin-bottom: 40px;
}
.testimonial-section .testimonial_content .content {
    display: flex;
    align-items: center;
}

.testimonial-section .testimonial_content .content span{
    font-size: 20px;
    line-height: 34px;
    font-weight: 600;
}
.testimonial-section .testimonial_content .content .testimonial-contentimage {
    float: left;
    margin-right: 10px;
}
.testimonial-section .testimonial_content .content .testimonial-contentimage img {
    border-radius: 100px;
    height: 100px;
    width: 100px;
    object-fit: cover;
    border: 4px solid var(--marron);
    /* filter: grayscale(100%); */
}
.testimonial-section .testimonial_content .content .designation-outer{
    display: inline-block;
    padding: 27px 0 0 15px;
}
.testimonial-section .testimonial_content .content .text-size-16{
    color: var(--marron);
}
.testimonial-section .testimonial-line{
    position: absolute;
    top: -60px;
    left: 63px;
}
.testimonial-section .owl-carousel .owl-dots {
    position: absolute;
    left: -286px;
    top: 225px;
    margin-top: 0 !important;
    transform: rotate(90deg);
}
.testimonial-section .owl-carousel .owl-dots .owl-dot span {
    width: 22px;
    height: 22px;
    margin: 0 28px;
    transition: all 0.3s ease-in-out;
    border: 2px solid var(--rouge);
    background: var(--blanc);
}
.testimonial-section .owl-carousel .owl-dots .owl-dot:hover span {
    background: var(--rouge);
    width: 22px;
    height: 22px;
    border: 5px solid var(--rouge);
}
.testimonial-section .owl-carousel .owl-dots .owl-dot.active span {
    background: var(--rouge);
    width: 22px;
    height: 22px;
    border: 5px solid var(--rouge);
}
.testimonial-section .owl-carousel .owl-dots .owl-dot:focus {
    outline: none;
}
.testimonial-section .owl-carousel .owl-stage-outer {
}
.testimonial-section .testimonial_wrapper figure{
    position: absolute;
    transition: all 0.3s ease-in-out;
}

/* Project */

.project-section{
    position: relative;
    padding: 58px 0 60px;
    margin-bottom: 30px;
    overflow: hidden;
}

.project-section .scroll-text{
    color: rgb(157 121 84 / 6%);
    right: 0;
    top: 15%;
    left: -100%;
}

.project-section .project-image {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.project-section .project-image img{
    object-fit: cover;
    height: 100%;
    width: 85%;
    display: block;
    margin-left: auto;
}

.project-section ul {
    padding-left: 25px;
    margin-bottom: 100px;
}

.project-section .project_content{
    margin-left: 10%;
}

.project-section .project_content h2{
    margin-bottom: 60px;
}

.project-section .project_content h3{
    font-size: 22px;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    line-height: inherit;
} 

.project-section .project_content .text{
    font-size: 24px;
    line-height: 30px;
    font-weight: 500;
    display: block;
    margin-bottom: 30px;
}


.project-section .project_content .area-properties{
    margin-bottom: 32px;
}
.project-section .project_content .area-properties ul li {
    display: inline-block;
    margin: 0 17px;
}
.project-section .project_content .area-properties ul li:first-child {
    margin-left: 0;
}
.project-section .project_content .area-properties ul li:last-child {
    margin-right: 0;
}

.project-section .project_content .area-properties ul .image-text{
    border-bottom: 1px solid var(--noir-light);
    margin-bottom: 22px;
    display: flex;
}
.project-section .project_content .area-properties ul .image-text .icon{
    display: inline-block;
    transition: all 0.3s ease-in-out;
}
.project-section .project_content .area-properties ul .image-text .icon:hover{
    transform: translateY(-5px);
}
.project-section .project_content .area-properties ul .image-text h6{
    display: inline-block;
    color: var(--rouge);
    margin-bottom: 5px;
    padding: 8px 0 0 8px;
}
.project-section .project_content .area-properties ul li p{
    position: relative;
    color: var(--noir-light);
    padding-left: 20px;
    margin-bottom: 12px;
}
.project-section .project_content .area-properties ul li p::before{
    content: "";
    position: absolute;
    width: 6px;
    height: 6px;
    line-height: 6px;
    border-radius: 30px;
    background: var(--noir-light);
    top: 8px;
    left: 0px;
}
.project-section .project_content .properties{
    display: flex;
}
.project-section .project_content .properties .first-list{
    margin-right: -30px;
}
.project-section .project_content .properties li {
    display: inline-block;
    margin-bottom: 10px;
}
.project-section .project_content .properties ul li .circle {
    position: relative;
    border: 2px solid var(--rouge);
    border-radius: 100px;
    height: 14px;
    width: 14px;
    line-height: 14px;
    text-align: center;
    margin-right: 17px;
    display: inline-block;
    transition: all 0.3s ease-in-out;
    border-right-style: none;
    top: 2px;
}
.project-section .project_content .properties ul li .circle:before {
    font-size: 14px;
    position: absolute;
    left: 3px;
    margin-top: -3px;
    font-family: 'FontAwesome';
    transition: all 0.3s ease;
    color: var(--rouge);
}
.project-section .project_content .properties ul li:hover {
    color: var(--rouge);
}

/* Images */
.image-section {
    padding-bottom: 6em;
}

.image-section .image-carousel .item {
    height: 150px;
}

.image-section .image-carousel .item .image, .image-section .image-carousel .item figure, .image-section .image-carousel .item img {
    height: 100%;
    object-fit: cover;
}

.image-section .owl-dots{
    display: none;
}

/* Feed Instagram */

.feed-instagram{
    padding: 6em 0;
    background-color: rgb(250 247 245 / 100%);
    z-index: 81;
    position: relative;
}

.feed-instagram .contenu-insta{
    padding: 0;
}

.feed-instagram .contenu-insta .row{
    text-align: center;
}

.feed-instagram .feed-row{
    padding-right: 80px;
}

.feed-instagram .txt-feed{
    margin-left: 10%;
}

.feed-instagram .txt-feed h2{
    font-size: 36px;
    line-height: 40px;
}

.feed-instagram .btn-read_more.insta:before{
    content: '';
    background-color: var(--rouge);
    background-image: url('../images/insta-blanc.svg');
    background-repeat: no-repeat;
    background-position: 9px center ;
    background-size: 14px;
}

.feed-instagram .btn-read_more.insta:hover{
    padding: 6px 25px 6px 35px;
}

.feed-instagram .img-fluid{
    height: 100%;
    object-fit: cover;
    max-height: 400px;
}

.feed-instagram .display-insta{
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}



/* Clients */
.clients {
    position: relative;
    display: block;
    background-color: rgb(250 247 245 / 100%);
    z-index: 81;
    padding-bottom: 100px;
}

.clients h2 {
    text-align: left;
    padding: 70px 0 50px 0;
    /* opacity: .7; */
    margin: 0 0 0 4%;
    font-size: 36px;
}

.clients .carousel-container {
    max-width: 92%;
    margin: 0 auto;
}

.clients .item{
    height: 60px;
}

.clients .item img{
    max-height: 100%;
    object-fit: contain;
}

/* Mentions légales */

.mentions-legales h2{
    font-size: 26px;
    margin: 1em 0 .3em;
    color: var(--noir-light);
    font-family: 'Montserrat', sans-serif;
}

.mentions-legales{
    margin-bottom: 5em;
}

/* Footer */

.footer-section .opencookies{
    cursor: pointer;
    color: var(--rouge);
}

.footer-section .opencookies:hover{
    text-decoration: underline;
}

.footer-mask {
    background-color: var(--blanc);
    margin-bottom: 500px;
}

.footer-section {
    background: var(--blanc);
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: -5;
    width: 100%;
    color: var(--noir);
}
.footer-section .middle-portion{
    padding-bottom: 50px;
}
.footer-section .middle-portion .logo-part {
    text-align: center;
}
.footer-section .middle-portion .logo-part .footer-logo {
    margin-bottom: 30px;
    width: 200px;
    margin: auto;
}
.footer-section .middle-portion .links {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.footer-section .middle-portion .links li {
    margin: 5px 15px;
}
.footer-section .middle-portion a {
    text-transform: lowercase;
    color: var(--noir);
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    padding: 5px;
}
.footer-section .middle-portion a:hover {
    color: var(--rouge);
}

.footer-section .footer-lower {
    padding-bottom: 30px;
}

.footer-section .footer-lower .social-icons{
    margin-bottom: 65px;
}
.footer-section .footer-lower .social-icons ul {
    display: flex;
    justify-content: center;
    align-items: center;
}
.footer-section .footer-lower .social-icons ul li {
    margin: 0 6px;
}
.footer-section .footer-lower .social-icons ul li:first-child {
    margin-left: 0;
}
.footer-section .footer-lower .social-icons ul li:last-child {
    margin-right: 0;
}
.footer-section .footer-lower .social-icons ul li .social-networks {
    font-size: 18px;
    margin-top: 2px;
    border-radius: 100px;
    text-align: center;
    transition: all ease-in-out 0.3s;
    width: 40px;
    height: 40px;
    line-height: 40px;
    color: var(--noir);
    text-decoration: none;
}
.footer-section .footer-lower .social-icons ul li .social-networks:hover {
    /* color: var(--rouge); */
    /* border: 1px solid var(--rouge); */
    transform: translateY(-5px);
}

.footer-section .copyright {
    text-align: center;
}

.footer-section .copyright a {
    color: var(--rouge);
}

.footer-section .footer-lower .social-icons ul li .social-networks:before{
    content: '';
}

.footer-section .footer-lower .social-icons ul li .fa-facebook-f:before{
    background: url('../images/fb-bleu.svg') no-repeat center;
    width: 40px;
    height: 40px;
    display: block;
}

.footer-section .footer-lower .social-icons ul li .fa-linkedin-in:before{
    background: url('../images/linkedin-bleu.svg') no-repeat center;
    width: 40px;
    height: 40px;
    display: block;
}

.footer-section .footer-lower .social-icons ul li .fa-instagram:before{
    background: url('../images/insta-bleu.svg') no-repeat center;
    width: 40px;
    height: 40px;
    display: block;
}

/* Sub-banner */
.sub-banner{
    background: var(--noir-light);
    position: relative;
    padding-bottom: 217px;
}
.sub-banner .banner-background{
    position: absolute;
    top: 0;
}
.sub-banner .header {
    padding: 0 106px;
    position: relative;
    z-index: 5;
}
.sub-banner .social-icons{
    float: right;
    z-index: 1;
}
.sub-banner .social-icons ul {
    right: 42px;
    top: 82px;
}
.sub-banner .social-icons ul li{
    margin-top: 22px;
}
.sub-banner .social-icons ul li .social-networks {
    font-size: 20px;
    margin-top: 2px;
    color: var(--blanc);
    border: 1px solid var(--blanc);
    background: transparent;
    border-radius: 100px;
    text-align: center;
    transition: all ease-in-out 0.3s;
    width: 45px;
    height: 45px;
    line-height: 45px;
}
.sub-banner .social-icons ul li .social-networks:hover {
    color: var(--rouge);
    border: 1px solid var(--blanc);
    background: var(--blanc);
    transform: translateY(-5px);
}
.sub-banner_section {
    position: relative;
    padding: 170px 200px 50px 170px;
}
.sub-banner_section .banner-backgroundimage{
    position: absolute;
    top: 0;
    right: 125px;
}
.sub-banner_section .banner_content{
    position: relative;
    background: var(--noir-light);
    border: 10px solid var(--rouge);
    padding: 60px 40px 56px 55px;
    width: 86%;
}
.sub-banner_section .banner_content h1 {
    margin-bottom: 14px;
}
.sub-banner_section .banner_content p {
    margin-bottom: 30px;
}

/* About Page */

.abouttestimonial-section {
    background: var(--blanc);
    padding: 112px 0 154px;
}

/* Blog Page */

.blog-section {
    padding: 140px 0 110px;
}
.blog-section h2{
    text-align: center;
    margin-bottom: 58px;
}
.blog-section .box{
    padding: 108px 15px 60px 32px;
    border: 1px solid var(--gris-light);
    width: 89%;
    /* height: 558px; */
    margin-bottom: 30px;
    transition: all 0.3s ease-in-out;
}
.blog-section .box .number{
    font-size: 50px;
    line-height: 56px;
    font-weight: 500;
    color: var(--rouge);
    display: block;
    margin-bottom: -3px;
}
.blog-section .box .month{
    font-size: 18px;
    line-height: 28px;
    font-weight: 600;
    font-family: "bely-display", sans-serif;
    color: var(--rouge);
    border-bottom: 2px solid var(--rouge);
    display: inline-block;
    margin-bottom: 28px;
    letter-spacing: 1.2px;
}
.blog-section .box .text{
    font-size: 14px;
    line-height: 22px;
    font-weight: 500;
    margin-bottom: 30px;
    color: var(--noir-light);
}
.blog-section .box .image {
    overflow: hidden;
    height: 182px;
    width: 320px;
}
.blog-section .box:hover {
    border: 1px solid var(--rouge);
    background: var(--rouge);
}
.blog-section .box:hover .number{
    color: var(--blanc);
}
.blog-section .box:hover .month{
    color: var(--blanc);
    border-bottom: 2px solid var(--blanc);
}
.blog-section .box:hover .text{
    color: var(--blanc);
}
.blog-section .box:hover .image {
    box-shadow: 1px 7px 20px rgb(0 0 0 / 26%);
}

/* Service Page */

.servicepage-section{
    margin-top: 20px;
    padding: 80px 0 56px;
    position: relative;
    overflow: hidden;
}
.residential-section{
    position: relative;
}
.residential-section .servicepage-background{
    position: absolute;
    top: 138px;
    left: 0;
}
.residential-section .service_wrapper{
    position: relative;
}
.residential-section .servicepage-circularimage{
    position: absolute;
    top: -148px;
    left: -102px;
    z-index: 1;
}
.servicepage-circularimage{
    animation: animName 12s linear infinite;
}
@keyframes animName {
0%{
    transform: rotate(0deg);
    }
100%{
    transform: rotate(360deg);
    }
}

.service_wrapper .servicepage-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.residential-section .service_wrapper .servicepage-image{
    /* position: absolute; */
    top: -75px;
    left: -30px;
    width: 100%;
    height: 570px;
}
.residential-section .service_wrapper .servicepage-rightborder{
    position: absolute;
    top: -100px;
    right: 10px;
}
.residential-section .service_wrapper .servicepage-boximage{
    position: absolute;
    top: 410px;
    left: -73px;
}
.residential-section .service_wrapper .servicepage-boximage img {
    -webkit-animation: mover1 1s infinite  alternate;
    animation: mover1 1s infinite  alternate;
  }
  @-webkit-keyframes mover {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
  }
.residential-section .service_content{
    padding-left: 10px;
}
.residential-section .service_content h3 {
    font-weight: 600;
    font-family: "bely-display", sans-serif;
    margin-bottom: 25px;
    color: var(--marron);
}
.residential-section .service_content p {
    margin-bottom: 22px;
    line-height: 24px;
    font-weight: 500;
}
.residential-section .service_content .servicepage-contentimage {
    margin-bottom: 38px;
}
.residential-section .service_content .text:hover {
    color: var(--noir-light);
}
.residential-section .service_content ul{
    padding-left: 40px;
}
.residential-section .service_content ul li{
    position: relative;
    margin-bottom: 13px;
}

.service_content ul li .circle {
    border: 2px solid var(--rouge);
    background-color: var(--rouge);
    border-right-style: none;
    border-radius: 100px;
    height: 8px;
    width: 8px;
    line-height: 20px;
    text-align: center;
    display: inline-block;
    transition: all 0.3s ease-in-out;
    position: absolute;
    top: 8px;
    left: -20px;
}
/* .residential-section .service_content ul li .circle:before {
    font-size: 18px;
    position: absolute;
    left: 4px;
    margin-top: -3px;
    font-family: 'FontAwesome';
    transition: all 0.3s ease;
    color: var(--rouge);
} */

/* Restaurant */

.servicepage-section2{
    padding: 80px 0 160px;
    position: relative;
    overflow: hidden;
}
.restaurant-section{
    position: relative;
}
.restaurant-section .servicepage-background{
    position: absolute;
    top: 158px;
    right: 0;
}
.restaurant-section .service_wrapper{
    position: relative;
}
.restaurant-section .servicepage-circularimage{
    position: absolute;
    top: -132px;
    right: -108px;
    z-index: 1;
}
.restaurant-section .service_wrapper .servicepage-image{
    /* position: absolute; */
    top: -58px;
    right: -30px;
    width: 100%;
    height: 570px;
}
.restaurant-section .service_wrapper .servicepage-leftborder{
    position: absolute;
    top: -82px;
    left: 10px;
}
.restaurant-section .service_wrapper .servicepage-boximage{
    position: absolute;
    top: 424px;
    right: -75px;
}
.restaurant-section .service_wrapper .servicepage-boximage img {
    -webkit-animation: mover1 1s infinite  alternate;
    animation: mover1 1s infinite  alternate;
  }
  @-webkit-keyframes mover1 {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
  }
.restaurant-section .service_content h3 {
    font-weight: 600;
    font-family: "bely-display", sans-serif;
    margin-bottom: 25px;
    color: var(--marron);
}
.restaurant-section .service_content p {
    margin-bottom: 22px;
    line-height: 24px;
    font-weight: 500;
}
.restaurant-section .service_content .servicepage-contentimage {
    margin-bottom: 38px;
}
.restaurant-section .service_content .text:hover {
    color: var(--noir-light);
}
.restaurant-section .service_content ul{
    padding-left: 40px;
}
.restaurant-section .service_content ul li{
    position: relative;
    margin-bottom: 13px;
}

.service_content ul li .circle {
    border: 2px solid var(--marron);
    /* border-right-style: none; */
    background-color: var(--marron);
    border-radius: 100px;
    height: 8px;
    width: 8px;
    line-height: 20px;
    text-align: center;
    display: inline-block;
    transition: all 0.3s ease-in-out;
    position: absolute;
    top: 8px;
    left: -20px;
}

/* .restaurant-section .service_content ul li .circle:before {
    font-size: 18px;
    position: absolute;
    left: 4px;
    margin-top: -3px;
    font-family: 'FontAwesome';
    transition: all 0.3s ease;
    color: var(--rouge);
} */

/* Architectural */

.servicepage-section3 {
    padding: 0px 0 56px;
    margin-bottom: 100px;
}
.architectural-section .servicepage-circularimage{
    top: -151px;
    left: -103px;
}

/* Lighting */

.servicepage-section4 {
    padding: 80px 0 174px;
}

/* Contact Page */

.contactinfo-section {
    padding: 483px 0 0;
}
.contactinfo-section .contact_map_section {
    overflow: hidden;
}
.contactinfo-section .contact_map_section iframe {
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
}
.contactinfo-section :hover iframe{
    filter: none;
}
.contactinfo-section .contactpage-rightborder{
    position: absolute;
    top: -18px;
    right: 80px;
}
.contactinfo-section .contactpage-rightborder img {
    -webkit-animation: mover 1s infinite  alternate;
    animation: mover 1s infinite  alternate;
  }
  @-webkit-keyframes mover {
    0% { transform: translateX(0); }
    100% { transform: translateX(-10px); }
  }
.contactinfo-section .badge .mid-circle{
    position: absolute;
    background: var(--rouge);
    border-radius: 50px;
    width: 28px;
    height: 28px;
    line-height: 28px;
}
.contactinfo-section .badge {
    position: absolute;
    top: -70px;
    left: -52px;
    z-index: 1;
    --badge-size: 150px;
    --badge-color: var(--black);

    display: flex;
    justify-content: center;
    align-items: center;

    width: var(--badge-size);
    height: var(--badge-size);

    background: var(--black);
    border-radius: 100%;
    box-shadow: inset 0 0 0 0.9rem var(--badge-color);
    animation: identifier 20s linear infinite;
}
.contactinfo-section .badge__emoji {
    display: block;
    margin: 0;
    animation: identifier 20s linear infinite;
    animation-direction: reverse;
    transition: all 0.3s;
}
.contactinfo-section .badge__char {
    --char-font-weight: 600;
    --char-font-size: 26px;
    --char-width: 32px;
    display: block;
    position: absolute;
    top: 0;
    left: calc(50% - var(--char-width) / 2);
    height: calc(var(--badge-size) / 2);
    width: var(--char-width);
    background-repeat: round;
    text-align: center;
    text-transform: uppercase;
    line-height: 1rem;

    font-weight: var(--char-font-weight);
    font-size: var(--char-font-size);
    color: var(--gris-dark);
    font-family: "bely-display", sans-serif;
    transform-origin: bottom center;
    transform: rotate(var(--char-rotate));
}
.contactinfo-section .badge__char1 {
    --char-font-weight: 700;
    --char-font-size: 20px;
    --char-width: 26px;
    top: -5px;
}
@-webkit-keyframes identifier {
0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
}

to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
}
}

@keyframes identifier {
0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
}

to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
}
}

.contactinfo-section .info_content{
    position: absolute;
    top: 197px;
    width: 70%;
    left: 21%;
}
.contactinfo-section .info_content .content-box {
    width: 89%;
    padding: 114px 46px 74px;
    background: var(--noir-light);
    transition: all 0.3s ease-in-out;
}
.contactinfo-section .info_content .form-group {
    border-bottom: 1px solid var(--blanc);
    margin-bottom: 75px;
}
.contactinfo-section .info_content .form3 {
    margin-bottom: 70px;
}
.contactinfo-section .info_content input::-webkit-input-placeholder {
    color: var(--blanc);
}
.contactinfo-section .info_content textarea::-webkit-input-placeholder {
    color: var(--blanc);
}
.contactinfo-section .info_content input {
    font-size: 18px;
    line-height: 22px;
    font-weight: 400;
    color: var(--blanc);
    background: transparent;
    border: none;
    margin-bottom: 14px;
    overflow: visible;
    outline: none;
}
.contactinfo-section .info_content textarea {
    font-size: 18px;
    line-height: 22px;
    font-weight: 400;
    color: var(--blanc);
    background: transparent;
    width: 100%;
    height: 182px;
    resize: none;
    outline: none;
    overflow: auto;
    border: none;
}
.contactinfo-section .info_content .message {
    margin-bottom: 55px;
}
.contactinfo-section .info_content .submit {
    font-size: 16px;
    line-height: 22px;
    font-weight: 500;
    text-transform: uppercase;
    border-radius: 50px;
    text-align: center;
    padding: 23px 50px;
    width: 39%;
    color: var(--blanc);
    background: var(--rouge);
    border: 2px solid var(--rouge);
    transition: all 0.3s ease-in-out;
    display: inline-block;
    letter-spacing: 0.8px;
}
.contactinfo-section .info_content .submit .dot {
    background: var(--blanc);
    border-radius: 50px;
    width: 9px;
    height: 9px;
    line-height: 9px;
    position: relative;
    top: 6px;
    left: 12px;
    float: left;
    transition: all 0.3s ease-in-out;
}
.contactinfo-section .info_content .submit:hover {
    color: var(--blanc);
    background: transparent;
    border: 2px solid var(--blanc);
}
.contactinfo-section .contactpage_content{
    padding-top: 140px;
    margin-left: -50px;
}
.contactpage-section {
    padding: 98px 0 170px;
}
.contactpage-section .box {
    text-align: center;
    padding: 27px 40px 44px;
    background-color: var(--blanc);
    border: 1px solid var(--rouge);
    transition: all 0.3s ease-in-out;
}
.contactpage-section .box:hover {
    transform: translateY(-5px);
    background-color: var(--rouge);
}
.contactpage-section .box1 {
    padding: 27px 40px 18px;
}
.contactpage-section .box .icon {
    border-radius: 100px;
    height: 70px;
    width: 70px;
    line-height: 70px;
    margin-bottom: 25px;
    text-align: center;
    display: inline-block;
    border: 1px dashed var(--rouge);
    transition: all 0.3s ease-in-out;
}
.contactpage-section .box .icon:hover {
    transform: translateY(-5px);
}
.contactpage-section .box:hover .icon{
    border: 1px dashed var(--blanc);
}
.contactpage-section .box:hover .icon img{
    filter: brightness(0) invert(1);
}
.contactpage-section .box h5 {
    font-weight: 600;
    margin-bottom: 7px;
    letter-spacing: 1.8px;
    transition: all 0.3s ease-in-out;
}
.contactpage-section .box:hover h5{
    color: var(--blanc);
}
.contactpage-section .box .text-size-16 {
    color: var(--noir-light);
    transition: all 0.3s ease-in-out;
}
.contactpage-section .box:hover .text-size-16{
    color: var(--blanc);
}
.contactpage-section a:hover{
    color: var(--noir-light) !important;
}

/* Project Page */

.projectpage-section {
    position: relative;
    padding: 20px 0 158px;
}
.projectpage-section .subheading {
    text-align: center;
}
.projectpage-section .subheading h2{
    margin-bottom: 32px;
}
.projectpage-section .nav-tabs {
    border-bottom: none;
    justify-content: center;
    padding: 10px 70px;
    /* margin-bottom: 55px; */
}
.projectpage-section .nav-tabs li{
    margin: 0 11px;
}
.projectpage-section .nav-tabs li:first-child{
    margin-left: 0;
}
.projectpage-section .nav-tabs li:last-child{
    margin-right: 0;
}
.projectpage-section .tabs-box{
    position: relative;
    width: 66%;
    left: 17%;
}
.projectpage-section .tabs-box .nav-tabs li a {
    display: inline-block;
    color: var(--noir-light);
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid transparent;
    padding: 5px 10px;
    border-radius: 50px;
    position: relative;
}
.projectpage-section .tabs-box .nav-tabs li a:hover {
    color: var(--rouge);
    border: 2px solid var(--rouge);
    transition: all 0.3s ease-in-out;
}
.projectpage-section .tabs-box .nav-tabs li:hover > a::before {
    content: none;
    width: 11px;
    height: 11px;
    line-height: 11px;
    border-radius: 50px;
    background-color: var(--rouge);
    position: absolute;
    top: 18px;
    left: 23px;
    z-index: 1;
    right: 0;
    transition: all 0.3s ease-in-out;
}
.projectpage-section .tabs-box .nav-tabs .active > a{
    color: var(--rouge) !important;
}
.projectpage-section .tabs-box .nav-tabs > li > a.active {
    color: var(--blanc);
    border: 2px solid var(--rouge);
    background-color: var(--rouge);
    transition: all 0.3s ease-in-out;
}
.projectpage-section .tabs-box .nav-tabs li .active::before {
    content: none;
    width: 11px;
    height: 11px;
    line-height: 11px;
    border-radius: 50px;
    background-color: var(--rouge);
    position: absolute;
    top: 18px;
    left: 23px;
    z-index: 1;
    right: 0;
    transition: all 0.3s ease-in-out;
}
.projectpage-section .tabs-box .tab-content .tab-image img{
    height: 314px;
    object-fit: cover;
}
.projectpage-section .tabs-box .tab-content .tab-image3 img{
    height: 306px;
}
.projectpage-section .tabs-box .tab-content .tab-image4 img{
    height: 628px;
}
.projectpage-section .tabs-box .tab-content .middle-image img{
    width: 423px;
}
.projectpage-section .tabs-box .tab-content .tab-image8 img{
    width: 643px;
}
.projectpage-section .tabs-box .tab-content .tab-image9 img{
    width: 314px;
}
.projectpage-section .overlay:hover .tab-image {
    opacity: 1;
    background: var(--noir);
}
.projectpage-section .overlay:hover img {
    opacity: 30%;
}
.projectpage-section .tabs-box .tab-content .image{
    position: relative;
}
.projectpage-section .tabs-box .tab-content .icon{
    position: absolute;
    font-size: 20px;
    line-height: 20px;
    margin: 0 auto;
    top: 142px;
    left: 0;
    right: 0;
    transition: all 0.3s ease-in-out;
    text-align: center;
    display: none;
}
.projectpage-section .tabs-box .tab-content .icon4{
    top: 310px;
}
.projectpage-section .tabs-box .tab-content .image:hover .icon {
    display: block;
    color: var(--blanc);
}
.projectpage-section .tabs-box .tab-content a:hover {
    color: var(--rouge);
}

/* Project PopUp Style */

.modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1050;
    overflow: hidden;
    outline: 0;
}
.fade {
    opacity: 0;
    transition: opacity .15s linear;
}
.modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto;
}
.fade.show {
    opacity: 1;
    background-color: transparent;
}
[tabindex="-1"]:focus {
    outline: 0!important;
}
.modal.fade .modal-dialog {
    transition: transform .3s ease-out,-webkit-transform .3s ease-out;
    transform: translate(0,-25%);
}
.modal-dialog {
    max-width: 48%;
    margin: 1.75rem auto;
    position: relative;
    width: auto;
    pointer-events: none;
}
.modal.show .modal-dialog {
    transform: translate(0,0);
}
.modal.fade .modal-dialog {
    transition: transform .3s ease-out,-webkit-transform .3s ease-out;
}
.modal-content {
    top: 100px;
    position: relative;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-clip: padding-box;
    outline: 0;
    background-color: var(--blanc);
    border-radius: 10px;
    box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.10);
    border: none;
}
.modal-header {
    display: flex;
    -webkit-box-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    justify-content: space-between;
    padding: 1rem;
    border-bottom: none;
}
.close:not(:disabled):not(.disabled) {
    cursor: pointer;
    opacity: 1 !important;
}
.modal-header .close {
    padding: 1rem;
    margin: -1rem -1rem -1rem auto;
}
.modal-header button {
    background: var(--rouge);
    opacity: 1;
    position: absolute;
    right: 7px;
    top: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    border-radius: 50%;
    justify-content: center;
    outline: none;
}
.close {
    float: right;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
}
button.close {
    border: 0;
    -webkit-appearance: none;
}
button {
    text-transform: none;
    overflow: visible;
}
.modal-header button i {
    color: var(--blanc);
    font-size: 18px;
    line-height: 18px;
    padding: 5px 5px;
    outline: none;
}
.fa-x:before {
    content: "\58";
}
.blog-model-con .modal-body {
    overflow-y: auto;
    padding-top: 0;
}
.modal-body {
    position: relative;
    -webkit-box-flex: 1;
    flex: 1 1 auto;
    padding: 1rem;
    padding-left: 30px;
    padding-right: 30px;
}
.modal-body .blog-box-item {
    border-radius: 0;
}
.blog-box-item {
    background: var(--white-color);
    overflow: hidden;
}
.modal-body img {
    width: 100%;
}
.img-fluid {
    max-width: 100%;
    height: auto;
}
.modal-content .project_content{
    padding: 15px 0;
}
.modal-content .project_content h3{
    margin-bottom: 10px 0px;
    color: var(--noir-light);
    font-family: "bely-display", sans-serif;
    font-size: 36px;
    line-height: normal;
}
.modal-content .project_content .text{
    font-size: 20px;
    line-height: 30px;
    font-weight: 500;
    display: block;
    margin-bottom: 15px;
    color: var(--noir-light);
}
.modal-content .project_content .text-client-pj{
    font-weight: bold;
    font-size: 24px;
}
.modal-content .project_content .area-properties{
    margin-bottom: 32px;
}
.modal-content .project_content .area-properties ul li {
    display: block;
}
.modal-content .project_content .area-properties ul li:first-child {
    margin-left: 0;
}
.modal-content .project_content .area-properties ul li:last-child {
    margin-right: 0;
}
.modal-content .project_content .area-properties ul .image-text{
    border-bottom: 1px solid var(--noir-light);
    margin-bottom: 22px;
    display: flex;
}
.modal-content .project_content .area-properties ul .image-text .icon{
    display: inline-block;
}
.modal-content .project_content .area-properties ul .image-text h6{
    display: inline-block;
    color: var(--blanc);
    margin-bottom: 5px;
    padding: 8px 0 0 8px;
}
.modal-content .project_content .area-properties ul li p{
    position: relative;
    padding-left: 20px;
    margin-bottom: 12px;
}
.modal-content .project_content .area-properties ul li p::before{
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    line-height: 6px;
    border-radius: 30px;
    background: var(--marron);
    top: 8px;
    left: 0px;
}
.modal-content .project_content .properties{
    display: flex;
}
.modal-content .project_content .properties .first-list{
    margin-right: 70px;
}
.modal-content .project_content .properties li {
    margin-bottom: 10px;
    color: var(--blanc);
}
.modal-content .project_content .properties ul{
    padding-left: 20px;
}
.modal-content .project_content .properties ul li .circle {
    position: relative;
    border: 2px solid var(--rouge);
    border-radius: 100px;
    height: 14px;
    width: 14px;
    line-height: 14px;
    text-align: center;
    display: inline-block;
    transition: all 0.3s ease-in-out;
    border-right-style: none;
    top: 2px;
    left: -16px;
}
.modal-content .project_content .properties ul li .circle:before {
    font-size: 14px;
    position: absolute;
    left: 3px;
    margin-top: -3px;
    font-family: 'FontAwesome';
    transition: all 0.3s ease;
    color: var(--rouge);
}
.modal-content .project_content .properties ul li:hover {
    color: var(--rouge);
}

.fa-angle-left:before{
    color: var(--blanc);
    font-size: 22px;
}

.fa-angle-right:before{
    color: var(--blanc);
    font-size: 22px;
}

.modal-content .owl-carousel .owl-nav{
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
}

.modal-content .owl-carousel .owl-nav button:focus{
    outline: none;
}

.modal-content .owl-carousel button.owl-next{
    right: 0;
}

/*-------- BLOG PAGES ------------ */

/* Blog */
.blogpage-section {
    padding: 120px 0;
}
/* Single blog */
.singleblog-section {
    padding: 166px 0 162px;
}

@media only screen and (max-width: 991px) {
    h1, .h1 {
        font-size: 38px;
        line-height: 46px;
    }
    .header-nav .nav-item {
        padding: 10px 0px;
    }

    .header-container {
        flex-direction: column;
        /* margin-top: 20px; */
    }
    .header-brand {
        justify-content: flex-start;
    }
    .header-nav {
        justify-content: center;
        margin-top: 40px;
    }
    .header-container .header-nav, .header-container .badge {
        display: none;
    }

    #mobile-nav-button{
        display: block;
    }

    .header-nav ul {
        flex-direction: column;
        justify-content: center;
    }

    .banner_outer .social-icons ul {
        display: none;
    }
    .banner-section .banner_content .btn-read_more {
        margin: 0 auto;
    }
    /* .banner-section, .banner-section .banner-backgroundimage {
        max-height: 500px;
    } */
    .banner-section .progress {
        bottom: 60px !important;
    }
    .banner-section .pagination-outer {
        margin: auto;
        justify-content: space-between;
        display: flex;
        bottom: 50% !important;
        top: auto !important;
        position: absolute;
        width: 100%;
        transform: translateY(50%);
    }
    .banner-section .carousel-indicators {
        bottom: 10px;
    }
    .project-section ul {
        margin-bottom: 35px;
    }
    .image-section {
        padding: 40px 15px;
    }
    .image-section .image-carousel .item {
        height: 250px;
    }

    #header .open {
        /* animation: fadeinDown .2s ease; */
    }
    .header-container.open .header-nav, .header-container.open {
        display: flex;
        /* animation: fadeinDown .2s ease; */
    }
    .header-nav .nav-item .nav-link{
        padding: .5em .5em .5em 5em;
    }

    .header-nav .nav-item > .sub-menu .sub-menu-item{
        padding: 0px;
    }

    .header-nav .nav-item > .sub-menu .sub-menu-item .title{
        display: block;
        font-weight: inherit;
    }
    .header-nav .nav-item > .sub-menu .sub-menu-item p{
        display: none;
    }


    @keyframes fadeinDown {
        0% {
           opacity: 0;
           transform: translateY(-20px);
        }
        100% {
           opacity: 1;
           transform: translateY(0);
        }
     }   
}

@media only screen and (max-width : 767px){
    h1, .h1 {
        font-size: 34px;
        line-height: 42px;
    }
    
    

    .header-container .badge {
        position: relative;
        top: initial;
        right: initial;
        margin: 20px auto;
    }
    .testimonial-section .testimonials-image {
        position: relative;
        top: initial;
        right: initial;
        width: 100%;
        max-width: 100%;
        height: 250px;
        order: 2;
        display: block;
    }
    .testimonial-section .testimonial_content h2 {
        display: block;
        max-width: 100%;
        padding: 0;
        text-align: center;
        order: 1;
    }
    .testimonial-section .testimonial_content {
        margin-top: 20px;
        max-width: 100%;
    }
    .testimonial-section .owl-nav {
        position: relative;
        bottom: initial;
        right: initial;
        margin: 20px 0 !important;
    }
    .testimonial-section .bg-black {
        padding: 40px;
    }
    .testimonial-section .testimonial_content .content .testimonial-contentimage img {
        width: 70px;
        height: 70px;
    }
    .testimonial-section .testimonial_content .content {
        justify-content: center;
    }
    .testimonial-section .item {
        flex-direction: column;
    }

    .modal-dialog{
        max-width: 80%;
    }
}

@media only screen and (max-width: 575px) {
    h1, .h1 {
        font-size: 32px;
        line-height: 40px;
    }
    .banner-section .carousel-indicators li {
        margin-right: 15px;
    }
    .about-section .about_content .sub-title {
        margin-top: 15px;
    }
    .about-section .about_content .sub-title::before {
        left: 50%;
        transform: translateX(-50%);
    }
    .about-section .about_content .btn-read_more {
        margin: 0 auto;
    }
    .footer-section .middle-portion .links {
        flex-direction: column;
    }
    .footer-section .middle-portion .links li {
        width: 100%;
        text-align: center;
        margin: 5px 0;
    }
    .footer-section .footer-lower .social-icons {
        margin-bottom: 45px;
    }
    .project-section .project_content h2 {
        margin-bottom: 20px;
    }
    .choose-section .choose_content h2 {
        margin-bottom: 20px;
        padding: 0;
    }

}