/* CSS Le cabinet page */

#darkbg {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 100vw;
    height: 100vh;
    background-color: #000;
    opacity: 0.5;
    z-index: 999999999;
    display: none;
}

#popup-expert {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 66.66vw;
    height: 33.33vw;
    background-color: white;
    z-index: 99999999999;
    display: none;
}

#popup-expert .container {
    display: flex;
    height: 100%;
    position: relative;
}

#popup-expert .container .close-btn {
    position: absolute;
    right: 2vw;
    top: 2vw;
    width: 1.33vw;
    height: 1.33vw;
    cursor: pointer;
}

#popup-expert .container .close-btn svg {
    width: 1.33vw;
    height: 1.33vw;
}

#popup-expert .container>.col-left {
    height: 100%;
    width: 33.333%;
}

#popup-expert .container>.col-left .img-container {
    width: 100%;
    height: 100%;
}

#popup-expert .container>.col-left .img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#popup-expert .container>.col-right {
    height: 100%;
    width: 66.66%;
}

#popup-expert .container>.col-right .top {
    display: flex;
    flex-direction: column;
    padding: 4vw 2vw 4vw 4vw;
    width: 100%;
    overflow-y: overlay;
}

@media screen and (max-width: 1400px) {
    #popup-expert .container>.col-right .top {
        height: 85%;
    }
}

@media screen and (min-width: 1400px) {
    #popup-expert .container>.col-right .top {
        height: 75%;
    }
}

#popup-expert .container>.col-right .top h2 {
    margin-bottom: 1vw;
}

#popup-expert .container>.col-right .top h3 {
    margin-bottom: 2.33vw;
}

#popup-expert .container>.col-right .top p {
    max-width: 95%;
}

#popup-expert .container>.col-right .bot {
    display: flex;
    width: 100%;
    background-color: #1F5382;
}

@media screen and (max-width: 1400px) {
    #popup-expert .container>.col-right .bot {
        height: 15%;
    }
}


@media screen and (min-width: 1400px) {
    #popup-expert .container>.col-right .bot {
        height: 25%;
    }
}

@media screen and (max-width: 768px) {
    .close-btn.desktop {
        display: none !important;
    }

    .close-btn.mobile {
        display: block;
    }
}

@media screen and (min-width: 768px) {
    .close-btn.desktop {
        display: block;
    }

    .close-btn.mobile {
        display: none !important;
    }
}

#popup-expert .container>.col-right .bot a {
    text-decoration: none !important;
}

#popup-expert .container>.col-right .bot .col-left {
    width: 27%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 100%;
}

#popup-expert .container>.col-right .bot .col-right {
    width: 73%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

#tca-hero {
    height: 100vh;
    background-color: #1F5382;
    width: 100%;
    
    padding-top: 3.66vw;
}

#tca-hero .container {
    position: relative;
    height: 100%;
    display: flex;
    padding-right: 6.66vw;
    padding-left: 5.66vw;
}

#tca-hero .container .col-left {
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

#tca-hero .container .col-left .top {
    width: 100%;
    height: 40%;
    display: flex;
    align-items: center;
    position: relative;
}

#tca-hero .container .col-left .top h1 {
    padding-left: 11.33vw;
}

#tca-hero .container .col-left .top>svg {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 15.33vw;
    height: 14.13vw;
}

#tca-hero .container .col-left .bot {
    width: 100%;
    height: 60%;
    position: relative;
}

#tca-hero .container .col-left .bot .slider-cabinet {
    width: 100%;
    height: 100%;
}

#tca-hero .container .col-left .bot .slider-cabinet .img-container {
    width: 100%;
    height: 100%;
}

#tca-hero .container .col-left .bot .slider-cabinet .img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#tca-hero .container .col-left .bot .navigation-custom {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
    height: 3.33vw;
    display: flex;
    justify-content: center;
    align-items: center;
}

#tca-hero .container .col-left .bot .navigation-custom ul {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    height: 0.28vw;
}

#tca-hero .container .col-left .bot .navigation-custom ul li {
    width: 3vw;
    height: 0.28vw;
    background-color: white;
    list-style-type: none;
    margin: 0 0.5vw;
    position: relative;
    cursor: pointer;
}

#tca-hero .container .col-left .bot .navigation-custom ul li::after {
    content: '';
    width: 0;
    height: 100%;
    background-color: #CC482E;
    left: 0;
    top: 0;
    position: absolute;
}

#tca-hero .container .col-left .bot .navigation-custom ul li.slick-active::after {
    content: '';
    width: 100%;
    height: 100%;
    background-color: #CC482E;
    left: 0;
    top: 0;
    position: absolute;
}

#tca-hero .container .col-left .bot .navigation-custom ul li.slick-active::after {
    animation: sliderdot 3s linear forwards;
}

@keyframes sliderdot {
    from {
        width: 0%;
    }
    to {
        width: 100%;
    }
}

#tca-hero .container .col-left .bot .navigation-custom ul li button {
    border: none;
    background-color: white;
    width: 100%;
    height: 100%;
    color: transparent;
    font-size: 0px;
    display: none;
}

#tca-hero .container .col-right {
    width: 50%;
    display: flex;
    flex-direction: column;
    padding-top: 22.66vw;
    padding-left: 3.33vw;
    position: relative;
}

@media screen and (min-width: 1501px) {
    #tca-hero .container .col-right {
        padding-top: 42vh;
    }
}

#tca-hero .container .col-right>svg {
    position: absolute;
    left: 3.33vw;
    bottom: 2vw;
    width: 1.66vw;
    height: 2.8vw;
    transition: .3s cubic-bezier(0, 0, 0.09, 0.99);
    cursor: pointer;
}

#tca-hero .container .col-right>svg:hover {
    transform: translateY(0.33vw);
}

#tca-hero .container .col-right>svg g {
    transition: .3s cubic-bezier(0, 0, 0.09, 0.99);
}

#tca-hero .container .col-right>svg:hover g {
    opacity: 1;
}

#tca-hero .container .col-right h2 {
    margin-bottom: 2.66vw;
}

#tca-hero .container .col-right p {
    max-width: 70%;
    margin-bottom: 2vw;
}

#tca-valeurs {
    background-color: #CC482E;
    padding-left: 5.66vw;
    
}

#tca-valeurs .container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    background-color: white;
    position: relative;
}

#tca-valeurs .container .col>svg {
    width: 11.26vw;
    height: 10.33vw;
    position: absolute;
    left: 0;
    top: 0;
}

#tca-valeurs .container .col {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 40vw;
    padding: 6.66vw 0;
}

#tca-valeurs .container .col h2 {
    margin-bottom: 2vw;
    text-align: center;
}

#tca-valeurs .container .col p {
    margin-bottom: 3vw;
    text-align: center;
    padding: 0 4vw;
}

#tca-valeurs .container .col blockquote {
    position: relative;
    text-align: center;
    margin-bottom: 2vw;
}

#tca-valeurs .container .col blockquote span svg {
    position: absolute;
    left: -0.3vw;
    top: 0;
    width: 1.33vw;
    height: 1vw;
}

#tca-valeurs .containerbot {
    padding-top: 3.33vw;
    padding-bottom: 3.33vw;
    padding-left: 5.66vw;
    padding-right: 5.66vw;
    display: flex;
    justify-content: space-around;
}

#tca-valeurs .containerbot .col-chiffre {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

#tca-valeurs .containerbot .col-chiffre p {
    text-align: center;
    max-width: 15vw;
}

#tca-valeurs .containerbot .col-chiffre p:first-of-type {
    margin-bottom: 1vw;
}

#tca-equipe {
    padding: 6.66vw 0;
    background-color: #1F5382;
    overflow: hidden;
}

#tca-equipe .containertop {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10vw;
    padding-bottom: 2vw;
}

#tca-equipe .containertop .navigation {
    display: flex;
    align-items: center;
}

#tca-equipe .containertop .navigation div {
    transition: .3s cubic-bezier(0, 0, 0.09, 0.99);
}

#tca-equipe .containertop .navigation .arrow-left>svg {
    margin-right: 1.66vw;
}

#tca-equipe .containertop .navigation .arrow-left:hover {
    transform: translateX(-0.33vw);
    cursor: pointer;
}

#tca-equipe .containertop .navigation .arrow-right:hover {
    transform: translateX(0.33vw);
    cursor: pointer;
}

#tca-equipe .container {
    width: 100%;
    padding: 0 10vw;
    padding-right: calc(10vw - 5.33vw);
}

#tca-equipe .container .slider-equipe {
    width: 100%;
}

#tca-equipe .container .slider-equipe .slick-track {
    margin: 0 -2.66vw;
}

#tca-equipe .container .slider-equipe .slick-list {}

#tca-equipe .container .slider-equipe .slick-slide {
    margin: 0 2.66vw;
}

#tca-equipe .container .slider-equipe .unequipier {
    width: 15.33vw;
    cursor: pointer;
    position: relative;
}

#tca-equipe .container .slider-equipe .unequipier .img-container {
    width: 100%;
    height: 15.33vw;
    margin-bottom: 1.66vw;
    position: relative;
}

#tca-equipe .container .slider-equipe .unequipier .img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .3s cubic-bezier(0, 0, 0.09, 0.99);
}

#tca-equipe .container .slider-equipe .unequipier p {
    text-align: center;
    margin-top: 1vw;
}

#tca-equipe .container .slider-equipe .unequipier p:last-of-type {
    text-align: center;
    margin-top: 0vw;
    opacity: 0.55;
}

#tca-equipe .container .slider-equipe .unequipier .cross-box {
    position: absolute;
    bottom: 0;
    right: 0;
    top: 0;
    left: 0;
    margin: auto;
    width: 4.33vw;
    height: 4.33vw;
    opacity: 0;
    z-index: 9;
    transition: .3s cubic-bezier(0, 0, 0.09, 0.99);
}

#tca-equipe .container .slider-equipe .unequipier .cross {
    position: relative;
    width: 4.33vw;
    height: 4.33vw;
}

#tca-equipe .container .slider-equipe .unequipier .cross>div {
    width: 100%;
    height: 0.25vw;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    background-color: #fff;
    transition: .3s cubic-bezier(0, 0, 0.09, 0.99);
}

#tca-equipe .container .slider-equipe .unequipier .cross>div:last-of-type {
    transform: rotate(90deg);
}

@media screen and (min-width: 992px) {
    #tca-equipe .container .slider-equipe .unequipier .img-container:hover .cross-box {
        transform: rotate(90deg);
        opacity: 1;
    }
}

#tca-equipe .container .slider-equipe .unequipier .img-container:hover .cross div {
    background-color: #fff;
}

#tca-equipe .container .slider-equipe .unequipier .img-container:hover {
    background-color: #CC482E;
}

@media screen and (min-width: 992px) {
    #tca-equipe .container .slider-equipe .unequipier .img-container:hover img {
        opacity: 0;
    }
}

#tca-domaines {
    padding: 6.66vw 0;
    
}

#tca-domaines .containertop {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 3.33vw;
}

#tca-domaines .container {
    display: flex;
    justify-content: space-between;
    padding: 0 5.66vw;
    align-items: flex-end;
}

#tca-domaines .container .domaine {
    position: relative;
    width: 15.8vw;
    /* margin-right: 2.66vw; */
    cursor: pointer;
    text-decoration: none !important;
}

#tca-domaines .container .domaine:last-of-type {
    /* margin-right: 0; */
}

#tca-domaines .container .domaine p {
    margin-bottom: 1vw;
}

#tca-domaines .container .domaine .img-container {
    width: 100%;
    height: 15.8vw;
}

#tca-domaines .container .domaine .img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#tca-domaines .container .domaine .cross-box {
    position: absolute;
    bottom: 1.66vw;
    right: 1.66vw;
    width: 1.66vw;
    height: 1.66vw;
}

#tca-domaines .container .domaine .cross {
    position: relative;
    width: 1.66vw;
    height: 1.66vw;
    transition: .3s cubic-bezier(0, 0, 0.09, 0.99);
}

#tca-domaines .container .domaine .cross>div {
    width: 100%;
    height: 0.16vw;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    background-color: #fff;
    transition: .3s cubic-bezier(0, 0, 0.09, 0.99);
}

#tca-domaines .container .domaine .cross>div:last-of-type {
    transform: rotate(90deg);
}

#tca-domaines .container .domaine:hover .cross {
    transform: rotate(90deg);
}

#tca-domaines .container .domaine:hover .cross div {
    background-color: #fff;
}

@media screen and (max-width: 1230px) {
    #tca-valeurs {
        padding-left: 0;
    }
    #tca-valeurs .container .col {
        max-width: 80%;
    }
    #popup-expert {
        width: 75vw;
        height: 50vw;
    }
    #popup-expert .container>.col-right .top {
        padding: 4vw;
    }
}

@media screen and (max-width: 992px) {
    #tca-valeurs .containerbot .col-chiffre p {
        max-width: unset;
    }
    #tca-valeurs .containerbot .col-chiffre p:last-of-type {
        font-size: 16px;
    }
    #popup-expert {
        width: 88vw;
        height: 50vw;
    }
    #popup-expert .container .close-btn,
    #popup-expert .container .close-btn svg {
        width: 20px;
        height: 20px;
    }
    #popup-expert .container .close-btn {
        right: 15px;
        top: 15px;
    }
    #tca-equipe .container .slider-equipe .unequipier .img-container {
        height: 24vh;
    }
}

@media screen and (max-width: 768px) {
    #popup-expert {
        width: calc(100vw - 4.66vw * 2);
        height: calc(100vh - 3vh * 2);
    }
    #popup-expert .container>.col-left .img-container img {
        object-position: 0px -70px;
    }
    #popup-expert .container {
        flex-direction: column;
    }
    #popup-expert .container .col-left {
        width: 100%;
        height: 30vh;
    }
    #popup-expert .container .col-right {
        width: 100%;
    }
    #tca-equipe .container .slider-equipe .unequipier .img-container {
        height: 30vh;
    }
    #tca-valeurs {
        padding-left: 0;
    }
    #tca-valeurs .container .col {
        max-width: 100%;
    }
    #tca-valeurs .container .col h2 {
        margin-bottom: 30px;
        font-size: 24px;
        text-align: left;
    }
    #tca-valeurs .container .col p {
        margin-bottom: 30px;
    }
    #tca-valeurs .containerbot {
        flex-wrap: wrap;
        padding: 50px 4.66vw 20px;
    }
    #tca-valeurs .containerbot .col-chiffre {
        width: 50%;
        margin-bottom: 30px;
    }
    #tca-valeurs .containerbot .col-chiffre p {
        max-width: 75%;
    }
    #tca-equipe {
        padding: 50px 0;
    }
    #tca-equipe .container,
    #tca-equipe .containertop {
        padding: 0 4.66vw;
    }
    #tca-equipe .containertop {
        padding-bottom: 20px;
    }
    #tca-equipe .containertop .navigation .arrow-left>svg,
    #tca-equipe .containertop .navigation .arrow-right>svg {
        width: 35px;
    }
    #tca-domaines {
        padding-top: 0;
    }
    #tca-domaines .container .domaine {
        width: 100%;
        height: auto;
        margin-bottom: 30px;
    }
    #tca-domaines .container .domaine .img-container {
        height: 90px;
    }
    #tca-domaines .container .domaine .cross-box {
        display: none;
    }
    #tca-domaines .container {
        padding: 0 4.66vw;
        flex-direction: column;
    }
    #popup-expert .container>.col-right .top {
        overflow-y: scroll;
        padding: 25px 4.66vw;
    }
    #popup-expert .container>.col-right .top h2 {
        margin-bottom: 20px;
    }
    #popup-expert .container>.col-right .top h3 {
        margin-bottom: 30px;
    }
    #tca-equipe .container .slider-equipe .unequipier .img-container:hover {
        background-color: transparent;
    }
    #tca-equipe .container .slider-equipe .unequipier .img-container:hover .cross-box {
        opacity: 0;
    }
    #tca-domaines .containertop {
        padding: 50px 0;
    }
}

@media screen and (max-width: 600px) {
    #popup-expert .container .col-left {
        height: 25vh;
    }
    #popup-expert .container>.col-left .img-container img {
        object-position: 0px -40px;
    }
    #popup-expert .container>.col-right .bot {
        flex-direction: column;
        padding: 4.66vw;
    }
    #popup-expert .container>.col-right .bot .col-left {
        width: 100%;
        justify-content: flex-start;
    }
    #popup-expert .container>.col-right .bot .col-right {
        width: 100%;
        justify-content: flex-start;
        opacity: 0.6;
    }
    #tca-valeurs {
        padding-left: 0;
    }
    #tca-valeurs .container .col {
        max-width: 100%;
        align-items: flex-start;
        padding: 50px 4.66vw;
    }
    #tca-valeurs .container .col h2 {
        margin-bottom: 30px;
    }
    #tca-valeurs .container .col p {
        margin-bottom: 20px;
        text-align: left;
        padding: 0;
    }
    #tca-equipe .containertop .navigation .arrow-left>svg {
        margin-right: 15px;
    }
}

@media screen and (max-width: 480px) {
    #tca-domaines .containertop h2 {
        font-size: 24px;
        max-width: 70%;
        text-align: center;
        margin: auto;
    }
    #tca-equipe .container,
    #tca-equipe .containertop {
        padding-right: 24vw;
        
    }
    #tca-equipe .container,
    #tca-equipe .containertop h2 {
        font-size: 24px;
    }
    #tca-equipe .containertop .navigation {
        margin-right: -85px;
    }
    #tca-valeurs .containerbot {
        flex-wrap: wrap;
        padding: 50px 4.66vw;
    }
    #tca-valeurs .containertop {
        flex-direction: column;
        align-items: flex-end;
    }
    #tca-valeurs .containertop h2 {
        width: 100%;
    }
    #tca-valeurs .containerbot .col-chiffre {
        width: 100%;
        margin-bottom: 50px;
    }
    #tca-valeurs .containerbot .col-chiffre p {
        max-width: 60%;
    }
    #tca-equipe .container .slider-equipe .unequipier .img-container {
        height: 63vw;
        margin-bottom: 20px;
    }
    #tca-equipe .container .slider-equipe .slick-list {
        overflow: visible;
    }
    #tca-equipe .container .slider-equipe .slick-list {
        overflow: visible;
    }
    #tca-equipe .container .slider-equipe .slick-track {
        /* overflow: visible; */
    }
    #tca-equipe .container .slider-equipe .slick-track {
        margin: 0 -20px;
    }
    #tca-equipe .container .slider-equipe .slick-slide {
        margin: 0 20px;
    }
}