/*
Theme Name: Lipstreet Lab
Theme URI: https://idizbox.com
Author: iDizBox
Author URI: https://idizbox.com
Description: By iDizBox - 2025
Version: 1.00
Text Domain: idbxboostrap1
*/

:root {
    --color-white: #FFFFFF;
    --color-black: #0D0C0C;
    --color-yellow: #d5ff05;
}

html, body {
    padding: 0;
    margin: 0;
    width: 100%;
    min-height: 100vh;
    overflow-x: clip;
    overflow-y: visible !important;
}

body {
    background-color: var(--color-black);
    color: var(--color-white);
    font-family: "Helvetica", "Arial", sans-serif;
    font-weight: bold;
/*    font-size: 22px;*/
    font-size: 18px;
    -webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
    position: relative;
}

.mobile_only {
    display: none;
}

:focus {
    outline: 0!important;
}

a, a:visited, a:focus {
    text-decoration: none;
    cursor: pointer;
    -webkit-transition: all .2s ease-in;
    -moz-transition: all .2s ease-in;
    -o-transition: all .2s ease-in;
    transition: all .2s ease-in;
}

.mb_5 { margin-bottom: 5px; }
.mb_10 { margin-bottom: 10px; }
.mb_15 { margin-bottom: 15px; }
.mb_20 { margin-bottom: 20px; }
.mb_25 { margin-bottom: 25px; }
.mb_30 { margin-bottom: 30px; }
.mb_40 { margin-bottom: 40px; }
.mb_50 { margin-bottom: 50px; }
.mb_60 { margin-bottom: 60px; }
.mb_100 { margin-bottom: 100px; }
.mb_150 { margin-bottom: 150px; }

.mt_10 { margin-top: 10px; }
.mt_15 { margin-top: 15px; }
.mt_20 { margin-top: 20px; }
.mt_25 { margin-top: 25px; }
.mt_30 { margin-top: 30px; }
.mt_40 { margin-top: 40px; }
.mt_50 { margin-top: 50px; }
.mt_60 { margin-top: 60px; }

.pb_10 { padding-bottom: 10px; }
.pb_15 { padding-bottom: 15px; }
.pb_20 { padding-bottom: 20px; }
.pb_25 { padding-bottom: 25px; }
.pb_30 { padding-bottom: 30px; }
.pb_40 { padding-bottom: 40px; }
.pb_50 { padding-bottom: 50px; }
.pb_100 { padding-bottom: 100px; }
.pb_120 { padding-bottom: 120px; }
.pb_150 { padding-bottom: 150px; }

.pt_10 { padding-top: 10px; }
.pt_15 { padding-top: 15px; }
.pt_20 { padding-top: 20px; }
.pt_25 { padding-top: 25px; }
.pt_30 { padding-top: 30px; }
.pt_40 { padding-top: 40px; }
.pt_50 { padding-top: 50px; }
.pt_100 { padding-top: 100px; }
.pt_120 { padding-top: 120px; }
.pt_150 { padding-top: 150px; }

.pos_rel {
    position: relative;
}

h1, .h1 {
/*    font-size: 80px;*/
    font-size: 64px;
    font-weight: bold;
    line-height: normal;
    margin-bottom: 0;
    text-transform: uppercase;
}

h1.h1_smaller {
    font-size: 34px;
}

h2, .h2 {
/*    font-size: 52px;*/
    font-size: 34px;
    line-height: normal;
    font-weight: bold;
    margin-bottom: 0;
    text-transform: uppercase;
}

h3, .h3 {
    font-size: 20px;
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 0;
    line-height: normal;
}

h4, .h4 {
/*    font-size: 26px;*/
    font-size: 20px;
    line-height: normal;
    font-weight: bold;
    margin-bottom: 0;
}

.bg_white {
    background-color: var(--color-white);
    color: var(--color-black);
}

.color_yellow {
    color: var(--color-yellow);
}

.p_div p:last-of-type {
    margin-bottom: 0;
}

.btn, .btn:active, .btn:visited, .btn:focus {
    background-color: var(--color-white);
    color: var(--color-black);
/*    font-size: 26px;*/
    font-size: 18px;
    font-weight: bold;
/*    padding: 10px 30px;*/
    padding: 1px 15px;
    border-radius: 10px;
    text-transform: uppercase;
}

.btn:hover {
    background-color: var(--color-yellow);
    color: var(--color-black);
}



.btn_black, .btn_black:active, .btn_black:focus, .btn_black:visited {
    background-color: var(--color-black);
    color: var(--color-white);
}

.btn svg {
    width: 16px;
    height: auto;
    vertical-align: initial;
}

.btn svg path {
    -webkit-transition: all .2s ease-in;
    -moz-transition: all .2s ease-in;
    -o-transition: all .2s ease-in;
    transition: all .2s ease-in;
}

.btn:hover svg path {
    fill: var(--color-black);
}

.btn_black:hover svg path {
    fill: var(--color-black);
}

.page_standard {
    padding-top: 118px;
}

.text_justify {
    text-align: justify;
}

/************************************/
/************************************/
/*               NAVBAR             */
/************************************/
/************************************/

.navbar {
    padding: 4px 30px;
    background-color: var(--color-black);
/*    border-bottom: 12px solid var(--color-white);*/
    border-bottom: 6px solid var(--color-white);
}

.navbar-brand {
    padding: 0;
}

img.navbar_toplogo {
    width: 98px;
    height: auto;
}

#main_navbar .menu-item {
    padding: 0 60px;
    position: relative;
}

#main_navbar .menu-item:first-of-type {
    padding-left: 0;
}

#main_navbar .menu-item:last-of-type {
    padding-right: 0;
}

#main_navbar .navbar-nav .menu-item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -1.5px;
    transform: translateY(-50%);
    width: 3px;
    height: 38px;
    background-color: var(--color-white);
}

.nav-link {
    padding: 0 !important;
    color: var(--black);
    font-weight: 600;
    position: relative;
}

.dropdown-toggle::after {
    content: "";
    display: none;
}

.navbar-nav .nav-link.active, .navbar-nav .nav-link.show, .navbar-nav .nav-link:hover, 
#main_navbar .menu-item.active .nav-link {
    color: var(--color-yellow);
}

.navbar-nav {
    align-items: center;
}

#main_navbar .dropdown-menu {
    border-radius: 0;
    border: 1px solid var(--color-white);
    width: auto;
/*    top: 55px;*/
    padding: 40px 15px;
    border: 3px solid var(--color-black);
    border-top: 16px solid transparent;
}

#main_navbar .dropdown-menu:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 12px;
    background-color: var(--color-black);
    top: 17px;
    left: 0;
}

#main_navbar .dropdown-menu .menu-item {
    padding: 0;
}

#main_navbar .dropdown-item.active, #main_navbar .dropdown-item:active {
    color: var(--color-yellow);
    background-color: transparent;
}

#main_navbar .dropdown-item:focus, #main_navbar .dropdown-item:hover {
    color: var(--color-yellow);
    background-color: var(--color-black);
}

#main_navbar .dropdown-item {
    color: var(--color-black);
    font-weight: bold;
    text-transform: uppercase;
/*    font-size: 24px;*/
    font-size: 16px;
    display: inline;
    padding: 0 10px;
}

#main_navbar .menu-item-object-realisation:first-of-type {
    margin-top: 20px;
}

.navbar-toggler {
    background-color: transparent;
    border: 0;
    padding: 0;
    position: absolute;
    right: 0.75rem;
    top: 40px;
}

.navbar-toggler:focus {
    text-decoration: none;
    background-color: none;
    outline: 0;
    box-shadow: none;
}

.navbar-toggler .navbar_togglebar {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 2px;
    background-color: var(--color-white);
}

.navbar-toggler .navbar_togglebar+.navbar_togglebar {
    margin-top: 5px;
}

.nav_open .navbar-toggler .navbar_togglebar_1 {
    transform: rotate(45deg);
    transform-origin: 0% 50%;
}

.nav_open .navbar-toggler .navbar_togglebar_2 {
    opacity: 0;
}

.nav_open .navbar-toggler .navbar_togglebar_3 {
    transform: rotate(-45deg);
    transform-origin: 0% 50%;
    margin-top: 6px;
}

@media (min-width: 992px) {

    #main_navbar .nav-item.dropdown {
        position: relative;
    }

    #main_navbar .nav-item.dropdown .dropdown-menu {
        display: none;
        top: 100%;      /* juste sous le parent */
        margin-top: 0;  /* pas de trou */
    }

    #main_navbar .nav-item.dropdown:hover > .dropdown-menu {
        display: block;
    }
}

#qtranslate-chooser {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 30px;
}

a.navbar-brand {
    color: var(--color-white);
    font-size: 18px;
}

a.navbar-brand:hover, a.navbar-brand:active, a.navbar-brand:visited, a.navbar-brand:focus {
    color: var(--color-white);
}

#main_navbar .nav-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

/************************************/
/************************************/
/*             ACCUEIL              */
/************************************/
/************************************/

/*
.header_logo_cont {
    max-width: 425px;
    margin: auto;
}
*/

/*
.header_logo_img {
    max-width: 425px;
    margin: auto;
}
*/

#qtranslate-chooser {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 0;
    margin: 0;
}

#qtranslate-chooser a {
    color: var(--color-white);
    text-transform: uppercase;
}

#qtranslate-chooser a:hover {
    color: var(--color-yellow);
}

#qtranslate-chooser li {
    position: relative;
}

#qtranslate-chooser li:first-of-type:after {
    content: "";
    position: absolute;
    top: 50%;
    right: -15px;
    transform: translateY(-50%);
    width: 3px;
    height: 28px;
    background-color: var(--color-white);
}

.client_logo_item {
    filter: grayscale(1);
}

.service_img {
    border-radius: 20px;
}

.h4_service {
    font-size: 18px;
    text-transform: uppercase;
}

.h4_service_sec {
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 400;
}

.related_actis {
    border-bottom: 1px solid var(--color-yellow);
}

.header_logo_img {
    max-width: 170px;
}

#home_aheader {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 400px;
    padding: 30px;
}

#home_aheader.haut_gauche {
    justify-content: left;
    align-items: start;
}

#home_aheader.haut_droite {
    justify-content: right;
    align-items: start;
}

#home_aheader.haut_centre {
    justify-content: center;
    align-items: start;
}

#home_aheader.centre {
    justify-content: center;
    align-items: center;
}

#home_aheader.centre_gauche {
    justify-content: start;
    align-items: center;
}

#home_aheader.centre_droite {
    justify-content: end;
    align-items: center;
}

#home_aheader.bas_gauche {
    justify-content: left;
    align-items: end;
}

#home_aheader.bas_droite {
    justify-content: right;
    align-items: end;
}

#home_aheader.bas_centre {
    justify-content: center;
    align-items: end;
}

.home_header_h1, .home_header_desc {
    line-height: 1;
}

.home_header_h1 span {
    font-size: 59px;
}

.home_header_desc {
    text-align: center;
    font-weight: 400;
    font-size: 16px;
}

.home_expertise_h2 {
    font-size: 18px;
}

/************************************/
/************************************/
/*          REALISATIONS            */
/************************************/
/************************************/

.realisations_header_slide_imgwrap {
    position: relative;
    aspect-ratio: 1/1;
    overflow: hidden;
    border-radius: 30px;
}

.realisations_header_slide_imgwrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.realisation_item_imgwrap {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 20px;
}

.realisation_item_imgwrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.realisation_item_overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.realisation_item_overlay h3 {
    font-size: 20px;
    text-transform: uppercase;
    margin: 0;
    color: var(--color-white);
    background-color: var(--color-black);
    padding: 0 10px;
    border-radius: 5px;
    font-weight: 400;
    margin: 20px;
}

.custom_arrow svg path {
    -webkit-transition: all .2s ease-in;
    -moz-transition: all .2s ease-in;
    -o-transition: all .2s ease-in;
    transition: all .2s ease-in;
}

.custom_arrow:hover svg path {
    fill: var(--color-yellow);
}

.realisations_header_desc {
    text-transform: uppercase;
    /* font-size: 42px; */
    font-size: 20px;
    line-height: normal;
    font-weight: 400;
    font-style: italic;
}

.realisations_header_h1 {
    font-size: 40px;
}

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

/************************************/
/************************************/
/*           REALISATION            */
/************************************/
/************************************/

.realisation_sstitre {
    font-size: 54px;
    line-height: normal;
}

.realisation_description {
    font-weight: normal;
}

.realisation_content_in {
    height: 100%;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

.realisation_swiper .swiper-slide {
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.realisation_swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.realisation_thumbs_row .realisation_thumb {
    display: block;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.realisation_thumbs_row .realisation_thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.realisation_btn_next {
/*    width: 100%;*/
}

.realisation_thumb_col.is-active {
    display: none !important;
}

.realisation_titre span {
    text-transform: none;
}

.realisation_description_cont {
    font-weight: normal;
    flex-grow: 1;
    display: flex;
    align-items: center;
    flex-direction: row;
}

span.x-lower {
    text-transform: lowercase;
}

h1.realisation_titre {
    font-size: 24px;
}

/************************************/
/************************************/
/*             CONTACT              */
/************************************/
/************************************/

.form_container {
    border-radius: 20px;
    background-color: var(--color-white);
    color: var(--color-black);
    padding: 30px;
}

.form-label {
    margin-bottom: 3px;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 18px;
}

.form-control {
    border: 0;
    border-bottom: 2px solid var(--color-black);
    border-radius: 0;
    margin-bottom: 15px;
}

.form-control:focus {
    box-shadow: none;
    border-color: var(--color-black);
}

/************************************/
/************************************/
/*             AGENCE               */
/************************************/
/************************************/

.agence_h2 {
    font-size: 24px;
}

.agence_h3 {
    text-transform: none;
    font-size: 18px;
}

.agence_header_cont {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.agence_header_h1_cont span {
    color: var(--color-yellow);
    font-style: italic;
}

.paragraphes_list_img {
    border-radius: 20px;
/*
    width: 100%;
    max-width: 225px;
*/
    margin: auto;
}

/*
.agence_header_h1_cont h1.h1_smaller {
    font-size: 19.5px;
}
*/

/************************************/
/************************************/
/*             FOOTER               */
/************************************/
/************************************/

footer {
    background-color: var(--color-black);
    padding: 30px 0;
    font-weight: 400;
}

.footer_cp {
    font-size: 12px;
}

.footer_cp a {
    color: var(--color-white);
}

.footer_links {
    display: flex;
    align-items: center;
    gap: 30px;
    justify-content: end;
}

.footer_link_insta {
    position: relative;
    padding-right: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer_link_insta span {
    display: inline-block;
    position: relative;
    padding-right: 20px;
}

.footer_link_insta span:after {
    content: "";
    position: absolute;
    top: 50%;
    right: -1.5px;
    transform: translateY(-50%);
    width: 3px;
    height: 38px;
    background-color: var(--color-white);
}

.footer_logo_cont {
    display: flex;
    align-items: center;
}

#menu-footer {
    list-style: none;
    padding: 0;
    margin: 0;
}

#menu-footer li {
    line-height: 1;
}

#menu-footer li a {
    color: var(--color-white);
    font-size: 14px;
}

/************************************/
/************************************/
/*          MEDIA QUERIES           */
/************************************/
/************************************/

@media (min-width: 992px) {
    .col-lg-5th {
        flex: 0 0 20%;
        max-width: 20%;
    }
}

@media (min-width: 1400px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1170px;
    }
}

@media (max-width: 992px) {
    
    .m_mb_5 { margin-bottom: 5px; }
    .m_mb_10 { margin-bottom: 10px; }
    .m_mb_15 { margin-bottom: 15px; }
    .m_mb_20 { margin-bottom: 20px; }
    .m_mb_25 { margin-bottom: 25px; }
    .m_mb_30 { margin-bottom: 30px; }
    .m_mb_40 { margin-bottom: 40px; }
    .m_mb_50 { margin-bottom: 50px; }
    .m_mb_60 { margin-bottom: 60px; }
    .m_mt_10 { margin-top: 10px; }
    .m_mt_15 { margin-top: 15px; }
    .m_mt_20 { margin-top: 20px; }
    .m_mt_25 { margin-top: 25px; }
    .m_mt_30 { margin-top: 30px; }
    .m_mt_40 { margin-top: 40px; }
    .m_mt_50 { margin-top: 50px; }
    .m_mt_60 { margin-top: 60px; }

    .m_pb_10 { padding-bottom: 10px; }
    .m_pb_15 { padding-bottom: 15px; }
    .m_pb_20 { padding-bottom: 20px; }
    .m_pb_25 { padding-bottom: 25px; }
    .m_pb_30 { padding-bottom: 30px; }
    .m_pb_40 { padding-bottom: 40px; }
    .m_pb_50 { padding-bottom: 50px; }
    .m_pb_100 { padding-bottom: 100px; }
    .m_pt_10 { padding-top: 10px; }
    .m_pt_15 { padding-top: 15px; }
    .m_pt_20 { padding-top: 20px; }
    .m_pt_25 { padding-top: 25px; }
    .m_pt_30 { padding-top: 30px; }
    .m_pt_40 { padding-top: 40px; }
    .m_pt_50 { padding-top: 50px; }
    .m_pt_100 { padding-top: 100px; }
    
    body {
        font-size: 18px;
    }
    
    h1, .h1 {
        font-size: 48px;
    }
    
    h2, .h2 {
        font-size: 34px;
    }
    
    .btn, .btn:active, .btn:visited, .btn:focus {
        font-size: 18px;
    }
    
    .navbar {
        padding: 4px 0px;
    }
    
    #main_navbar .menu-item {
        padding: 0;
        position: relative;
        margin-bottom: 10px;
    }
    
    #main_navbar .navbar-nav .menu-item:not(:last-child)::after {
        display: none;
    }
    
    #qtranslate-chooser {
        list-style: none;
        display: flex;
        align-items: center;
        gap: 30px;
        padding: 0;
        margin: 0;
        justify-content: center;
        margin-bottom: 20px;
    }
    
    .header_logo_img {
        max-width: 200px;
        margin: auto;
    }
    
    .footer_links {
        display: block;
        text-align: center;
        margin-bottom: 30px;
    }
    
    .footer_link_insta {
        position: relative;
        padding-right: 0;
        display: flex;
        align-items: center;
        gap: 20px;
        justify-content: center;
    }
    
    .footer_link_insta:after {
        display: none;
    }
    
    .realisations_header_next svg, .realisations_header_prev svg {
        width: 40px;
        height: auto;
    }
    
    .realisations_header_desc {
        font-size: 20px;
    }
    
    h1.realisation_titre {
        font-size: 28px;
    }
    
    .realisation_sstitre {
        font-size: 24px;
        margin-top: 10px;
    }
    
    .form_container {
        padding: 30px 15px;
    }
    
    .header_logo_cont {
        text-align: center;
    }
    
    #home_aheader {
        display: flex;
/*        flex-direction: column;*/
        align-items: center;
        justify-content: center;
        gap: 30px;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    #main_navbar .nav-center {
        position: relative;
    }
    
    .agence_header_cont, .realisations_header_titcont {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .realisations_header_h1 {
        font-size: 28px;
    }
    
    .home_header_h1 {
        text-align: center;
    }
    
    .home_header_h1 span {
        font-size: 44px;
    }
    
}

