/*
Theme Name: Mada Digital Security
Theme URI: #
Author: Rojotiana RAKOTOVOLOLONA
Author URI: https://rojotiana-rakotovololona.com
Description: Style for Mada Digital Security
Version: 1.0
*/

@font-face {
    font-family: "Bebas Neue";
    src: url('fonts/BebasNeue-Regular.ttf') format('truetype');
    font-weight: "normal";
    font-style: "normal";
}

:root {
    --transition-1: ease 0.3s;
    --transition-2: ease 0.5s;

    --color-01: #00093d;
    --color-02: #ffffff;
    --color-03: #FF0202;
    --color-04: #FCFCFC;
    --color-05: #4C78B1;
    --color-06: #5B84B9;
    --color-07: #C3C3C3;
    --color-08: #3EACD0;
    --color-09: #39425f;
    --color-10: #a0adb6;
    --color-11: #797979;
    --color-12: #F7F7F7;
    --color-13: #9A9A9A;
    --color-14: #a0adb6;
    --color-15: #ddd;
    --color-16: #2689c3;
    --color-17: #f2f2f2;
    --color-18: #0082cc;
    --color-19: #f6b538;
    --color-20: #f0f0f0;
    --color-21: #71C06E;
    --color-22: #00A3D8;
    --color-23: #e9ab70;
    --color-24: #8bc4cf;
    --color-25: #5e7da9;
    --color-26: #ee6e47;
    --color-27: #9bc5ad;
    --color-28: #747474;
    --color-29: #f5f5f5;
    --color-30: #48bc5a;
    --color-31: #008bd4;
    --color-32: #f3a922;
    --color-33: #383491;
    --color-34: #01abdc;
    --color-35: #3b278d;
}

* {
    padding: 0;
    margin: 0;
    border: 0;
    outline: 0;
    list-style: none;
    text-decoration: none;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif, sans-serif;
    overflow-x: hidden;
}

main {
    padding-top: 5rem;
}

/************************************
 *             NAVBAR
 ************************************/
.nav-container {
    position: fixed;
    z-index: 100;
    width: 100%;
    background-color: var(--color-04);
}

.mds-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    margin: 0 auto;
    box-shadow: 1px 1px 1px #f3f3f3;
    padding: 0 50px;
}

#mds-navbar-logo {
    color: var(--white);
    justify-self: start;
    cursor: pointer;
}

#mds-navbar-logo img {
    height: 55px;
}

.nav-menu {
    text-align: center;
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 25px;
}

.nav-links {
    display: inline-block;
    color: var(--color-05) !important;
    text-transform: uppercase;
    text-decoration: none;
    font-family: 'Bebas Neue';
    font-size: 23px;
}

.nav-links {
    padding-left: 20px;
    padding-right: 20px;
    height: 100%;
    display: inherit;
    align-items: center;
    white-space: nowrap;
    transition: var(--transition-2);
}

.nav-links.active {
    color: var(--color-02) !important;
    background-color: var(--color-06);
}

.nav-links:hover {
    color: var(--color-06);
    background-color: var(--color-20);
}

.nav-links.active:hover {
    background-color: var(--color-06) !important;
    color: var(--color-02);
}

.menu-toggle .bar {
    width: 27px;
    height: 2px;
    margin: 5px auto;
    background-color: var(--color-06);
    margin-bottom: 8px;
    transition: var(--transition-1);
}

@media (max-width:990px) {
    .nav-menu {
        display: grid;
        grid-template-columns: auto;
        margin: 0;
        width: 100%;
        position: absolute;
        top: 80px;
        left: -100%;
        opacity: 0;
        padding: 0;
        transition: var(--transition-2);
    }

    #mds-navbar-logo {
        margin-left: 20px;
    }

    #mds-navbar-logo img {
        height: 35px !important;
    }

    .nav-menu.active {
        left: 0;
        opacity: 1;
        transition: var(--transition-2);
    }

    .nav-links {
        text-align: center;
        width: 100%;
        height: 60px;
        display: grid;
        background-color: var(--color-04);
        border-bottom: 1px solid #0000000f;
        transition: all .4s ease-out;
    }

    .mds-navbar {
        padding: 0;
    }

    #mobile-menu {
        position: absolute;
        right: 5%;
    }

    .menu-toggle .bar {
        display: block;
        cursor: pointer;
    }

    .menu-toggle:hover {
        cursor: pointer;
    }

    .menu-toggle.is-active .bar {
        margin-bottom: 0;
    }

    #mobile-menu.is-active .bar:nth-child(2) {
        opacity: 0;
    }

    #mobile-menu.is-active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
        background: var(--color-06);
    }

    #mobile-menu.is-active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
        background: var(--color-06);
    }

}

/************************************
 *             BUTTON
 ************************************/
.mds--btn {
    background-color: var(--color-06);
    padding: 0.6rem 2rem;
    border-radius: 2rem;
    text-decoration: none;
    color: var(--color-02);
    font-family: 'Bebas Neue';
    font-size: 21px;
    transition: var(--transition-1)
}

.mds--btn:hover {
    background-color: var(--color-05);
    color: var(--color-02);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    content: '';
}

.swiper-button-next i,
.swiper-button-prev i {
    font-size: 26px;
}

.swiper-button-next,
.swiper-button-prev {
    padding: 25px;
    border: 1px solid var(--color-09);
    border-radius: 9px;
    color: var(--color-09);
}

/************************************
 *             TAB
 ************************************/
.tab {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 0.5rem;
    row-gap: 0.5rem;
}

.tab button {
    background-color: var(--color-07);
    padding: 14px 16px;
    transition: var(--transition-1);
    font-size: 17px;
    text-transform: uppercase;
    color: var(--color-02);
    font-weight: bold;
}

.tab button:hover {
    opacity: 0.8;
}

.tab button.active {
    background-color: var(--color-08);
}

.tabcontent {
    display: none;
    padding: 6px 12px;
    animation: fadeEffect 1s;
}

@keyframes fadeEffect {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@media (max-width:640px) {
    .tab {
        /* grid-template-columns: repeat(1, 1fr); */
        overflow-x: auto;
    }

    .tab button {
        white-space: nowrap;
    }

    /* .tab button:not(:last-child) {
        margin-left: 1rem;
    } */

    /* .tab button:last-child {
        margin-right: 1rem;
    } */
}

/************************************
 *             SUBTITLE
 ************************************/
.mds--subtitle {
    position: relative;
    padding: 2rem 0;
}

.mds--subtitle h3 {
    left: 90px;
    /* position: relative; */
    text-transform: uppercase;
    position: absolute;
    top: 10px;
}

.mds--subtitle.white {
    color: var(--color-02);
}

.mds--subtitle.blue {
    color: var(--color-09);
}

/************************************
 *             LINE
 ************************************/
.mds--line {
    position: absolute;
    width: 75px;
    height: 6px;
    top: 28px;
}

.mds--line.blue {
    background-color: var(--color-09);
}

.mds--line.white {
    background-color: var(--color-02);
}

/************************************
 *           BREADCRUMBS
 ************************************/
/* .mds--breadcrumbs {
    background-color: var(--color-12);
    color: var(--color-13);
    text-transform: uppercase;
} */

.unv--nav-link {
    display: flex;
    justify-content: space-around;
    box-shadow: 0 5px 10px #00000033;
    align-items: center;
    /* overflow-x: auto; */
}

.unv--nav-link a,
.dropbtn {
    text-decoration: none;
    color: var(--color-11);
    text-transform: uppercase;
    transition: var(--transition-2);
}

.dropbtn {
    color: var(--color-11);
    border: none;
    background-color: transparent;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--color-02);
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    top: 56px;
    left: 0;
}

.dropdown-content a {
    color: var(--color-05);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: var(--color-15);
}

.dropdown:hover .dropdown-content {
    display: block;
}

.unv--extra-link {
    display: inherit;
    transition: var(--transition-2);
    margin-left: 1rem;
    margin-right: 1rem;
    text-align: center;
}

.unv--extra-link a,
.dropdown .dropbtn {
    position: relative;
    padding: 1rem;
}

.unv--extra-link a::before,
.dropdown .dropbtn::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: var(--color-11);
    bottom: 0;
    left: 0;
    transition: var(--transition-2);
}

.unv--extra-link:hover a::before,
.dropdown:hover .dropbtn::before {
    background-color: var(--color-05);
    color: var(--color-05);
}

.unv--extra-link:hover a,
.dropdown:hover .dropbtn {
    color: var(--color-05);
}

/* >>> Use for active extra tab link <<<
.unv--extra-link a.active {
    color: var(--color-05);
    background-color: #ababab30;
}

.dropdown-content a.active {
    background-color: #ababab30;
}

.unv--extra-link a.active::before {
    background-color: var(--color-05);
} */

@media (max-width:480px) {
    .unv--nav-link {
        /* justify-content: space-between; */
        display: grid;
        place-items: center;
    }

    .unv--extra-link {
        width: 100%;
    }
}

/**************************************
 *     _   _  ___  __  __ _____       *
 *    | | | |/ _ \|  \/  | ____|      *
 *    | |_| | | | | |\/| |  _|        * 
 *    |  _  | |_| | |  | | |___       *
 *    |_| |_|\___/|_|  |_|_____|      *
 *                                    *
 **************************************/
.home-section-1 .mds--container {
    position: absolute;
    width: 100%;
    padding: 0 6rem;
    /* bottom: 6px; */
    bottom: 50%;
    transform: translateY(50%);
}

.home-section-1 .mds--container .mds--title {
    width: 41%;
}

.home-section-1 .mds--container .mds--title h1 {
    font-size: 29px;
    text-align: center;
}

.home-section-1 .mds--container .mds--title ul {
    padding-left: 0;
}

.home-section-1 .mds--container .mds--title ul li {
    background-color: var(--color-06);
    padding: 0.4rem;
    text-transform: uppercase;
    text-align: center;
    margin: 0.3rem;
    color: var(--color-02);
    font-family: 'Bebas Neue';
    font-size: 1.5rem;
}

.bg-image img {
    width: 100%;
    /* height: 480px; */
    height: 60vh;
    object-fit: cover;
}

.mds--btn-container {
    padding: 4rem 0;
}

@media (max-width:1108px) {
    .home-section-1 .mds--container .mds--title {
        width: 42%;
    }
}

@media (max-width:785px) {
    .home-section-1 .mds--container {
        padding: 0 2rem;
    }

    .home-section-1 .mds--container .mds--title {
        width: 50%;
    }
}

@media (max-width:620px) {
    .home-section-1 .mds--container .mds--title {
        width: 100%;
    }

    .home-section-1 .mds--container .mds--title h1 {
        font-size: 25px;
    }

    .home-section-1 .mds--container .mds--title ul li {
        font-size: 1.3rem;
    }
}

/************************************
 *            SECTION 1
 ************************************/
.home-section-1 .swiper {
    width: 100% !important;
}

.home-section-1 .swiper-wrapper {
    width: 100%;
    align-items: center;
}

.home-section-1 .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
}

.home-section-1 .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: #ffffff82;
}

/* .mds--title {
    width: 45%;
} */

.mds--title h1 {
    font-family: 'Segoe UI';
    font-weight: 900;
    font-size: 45px;
    text-transform: uppercase;
    color: var(--color-02);
}

.mds--title p {
    color: var(--color-02);
}

.mds--title p:nth-child(2n) {
    font: normal normal normal 28px/30px Bebas Neue;
    padding: 1rem 0;
    background-color: var(--color-06);
    display: inline-block;
    padding: 0.8rem 2rem;
    margin-bottom: 0;
}

/* @media (max-width:1366px) {
    .home-section-1 .bg-image img {
        height: 75vh;
    }
} */

/************************************
 *            SECTION 2
 ************************************/
.home-section-2 {
    /* padding: 1rem 3rem; */
    overflow-x: hidden;
}

.home-section-2 .tabcontent {
    padding: 0;
    /* padding: 6px 12px; */
}

/* .home-section-2 .tabcontent .mySwiper {
    padding: 6px 12px;
} */
.home-section-3 .mds--line {
    top: 60px;
}

.home-section-2 .tab,
.home-section-2 .swiper--container {
    padding: 1rem 3rem;
}

.home-section-2 .custom-slide {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    padding-left: 6rem;
    padding-right: 6rem;
}

.home-section-2 .swiper-pagination {
    display: none;
}

.home-section-2 .custom-slide .mds--carousel-article {
    padding: 2rem 0;
}

.home-section-2 .mds--carousel-article h2 {
    color: var(--color-09);
    font-size: 45px;
}

.home-section-2 .mds--carousel-article h4 {
    color: var(--color-10);
    padding-top: 3rem;
    padding-bottom: 1rem;
}

.home-section-2 .mds--carousel-article ul {
    padding-left: 0;
    padding-bottom: 3rem;
}

.home-section-2 .img-container {
    display: flex;
    justify-content: center;
}

.home-section-2 .img-container img {
    width: 350px;
    height: 350px;
    object-fit: cover;
    background-color: var(--color-02);
    border-radius: 50%;
    padding: 2rem;
    box-shadow: 0px 0px 9px 0px #4444;
}

/************************************
 *            SECTION 3
 ************************************/
.home-section-3 {
    background-image: url('images/background/bg-2.webp');
    background-size: cover;
    background-repeat: no-repeat;
    padding-bottom: 4rem;
    padding-top: 4rem;
}

.home-section-3 .mds--subtitle {
    padding-top: 2rem;
}

.home-section-3 .mds--solution-container {
    background-color: #ffffff70;
}

.home-section-3 .mds--solution-content {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    place-items: center;
    padding: 2rem 5rem;
    margin: 3rem 0 0 0;
    grid-gap: 1rem;
    row-gap: 1rem;
}

.home-section-3 .mds--solution-img {
    position: relative;
}

.home-section-3 .mds--solution-img img {
    width: 150px;
    height: 150px;
    object-fit: contain;
}

.home-section-3 .mds--solution-img p {
    position: absolute;
    width: 100%;
    bottom: 0;
    background-color: #000000ad;
    margin-bottom: 0;
    padding: 0.5rem 0;
    text-align: center;
    text-transform: uppercase;
    color: var(--color-02);
    height: 60px;
    display: none;
}

.home-section-3 .mds--solution-img:hover p {
    display: flex;
    align-items: center;
    justify-content: center;
}

/************************************
 *            SECTION 4
 ************************************/
.home-section-4,
.home-section-7 {
    margin-top: 4rem;
}

.home-section-4 .row,
.home-section-7 .row {
    padding: 2rem 5rem;
}

.home-section-4 .mds--actus-container p:nth-child(2n),
.home-section-7 .mds--actus-container p:nth-child(2n) {
    color: var(--color-11);
    margin-top: 1rem;
    text-align: center;
}

.home-section-4 .mds--actus-container,
.home-section-7 .mds--actus-container {
    margin: 1rem 0;
    padding: 1rem;
    box-shadow: 0px 0px 9px 0px #4444;
}

.home-section-4 .mds--actus-container p:nth-child(2n+1),
.home-section-7 .mds--actus-container p:nth-child(2n+1) {
    height: 150px;
    overflow: hidden;
}

.home-section-4 .mds--actus-container img,
.home-section-7 .mds--actus-container img {
    width: 100%;
    height: 185px;
    object-fit: cover;
}

.home-section-4 .mds--actus-container .mds--actus-btn,
.home-section-7 .mds--actus-container .mds--actus-btn {
    display: flex;
    justify-content: center;
    margin: 2rem 0;
}

.home-section-7 .wp-show-posts-entry-title a {
    color: var(--color-08);
    transition: var(--transition-2);
}

.home-section-5 {
    padding: 1rem 0;
}

.home-section-5 .logo {
    background-color: var(--color-12);
    display: flex;
    justify-content: center;
    padding: 1rem;
    align-items: center;
}

.home-section-5 .logo img {
    object-fit: scale-down;
    height: 100px;
    width: 100%;
}

.home-section-5 .text {
    text-align: center;
    color: var(--color-09);
}

.home-section-5 p {
    padding: 1rem;
}

@media (max-width:1315px) {
    .home-section-3 .mds--solution-content {
        grid-template-columns: repeat(6, 1fr);
    }
}

@media (max-width:1150px) {
    .home-section-3 .mds--solution-content {
        grid-template-columns: repeat(5, 1fr);
    }
}

@media (max-width:1004px) {
    .home-section-2 .custom-slide {
        grid-template-columns: repeat(1, 1fr);
        padding: 0;
    }

    .home-section-2 .mds--carousel-article h2,
    .home-section-2 .mds--carousel-article h4 {
        text-align: center;
    }

    .home-section-2 .mds--carousel-article h4 {
        padding-top: 1rem;
    }

    .home-section-2 .img-container {
        margin-top: 2rem;
    }

    .home-section-2 .custom-slide div:nth-of-type(1) {
        order: 2;
    }

    .home-section-2 .custom-slide div:nth-of-type(2) {
        order: 1;
    }

    .home-section-2 .swiper-button-next,
    .home-section-2 .swiper-button-prev {
        display: none;
    }

    .home-section-2 .swiper-pagination {
        display: block;
    }

    .home-section-5 .logo {
        display: grid;
        place-items: center;
    }

    /* .home-section-2 .custom-slide .mds--carousel-article {
        text-align: center;
    } */
}

@media (max-width:990px) {
    .home-section-3 .mds--solution-content {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width:825px) {
    .home-section-3 .mds--solution-content {
        grid-template-columns: repeat(3, 1fr);
    }
}


@media (max-width:975px) {
    .mds--title {
        width: 60%;
    }
}

@media (max-width:785px) {
    .mds--title {
        width: 100%;
    }

    .bg-image img {
        filter: brightness(0.5);
    }

    .mds--container {
        padding: 0 2rem;
        bottom: 40px;
    }

    .mds--title h1,
    .home-section-2 .mds--carousel-article h2 {
        font-size: 40px;
    }

    .home-section-2 .tab {
        padding: 1rem;
    }
}

@media (max-width:650px) {
    .home-section-3 .mds--solution-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width:490px) {
    .home-section-3 .mds--solution-content {
        padding: 2rem 0;
    }

    .home-section-4 .row,
    .home-section-7 .row {
        padding: 2rem 1rem;
    }
}


@media (max-width:480px) {
    /* .home-section-2 {
        padding: 1rem;
    } */

    .mds--container {
        padding: 0 1rem;
    }

    .mds--title h1,
    .home-section-2 .mds--carousel-article h2 {
        font-size: 30px;
    }

    .mds--title p:nth-child(2n) {
        padding: 0.5rem 1rem;
        font-size: 25px;
    }

    .home-section-2 .img-container img {
        width: 215px;
        height: 215px;
    }

    .home-section-2 .mds--carousel-article h4 {
        padding-top: 1rem;
    }

    .home-section-2 .custom-slide .mds--carousel-article {
        padding-top: 2rem;
    }

    .home-section-2 .tabcontent {
        padding: 0;
    }

    .home-section-2 .mds--carousel-article ul {
        padding-bottom: 1rem;
    }
}

@media (max-width:390px) {
    .home-section-3 .mds--solution-content {
        grid-template-columns: repeat(1, 1fr);
    }

    .home-section-3 .mds--solution-img img {
        width: 230px;
        height: 230px;
    }
}

/********************************************** 
 *    ____                _            _      *
 *   |  _ \ _ __ ___   __| |_   _  ___| |_    *
 *   | |_) | '__/ _ \ / _` | | | |/ __| __|   *
 *   |  __/| | | (_) | (_| | |_| | (__| |_    *
 *   |_|   |_|  \___/ \__,_|\__,_|\___|\__|   *
 *                                            *
 **********************************************/
.product-section-1,
.solutions-section-1,
.actus-section-1,
.about-section-1 {
    position: relative;
}

.hero--description {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%);
    transition: var(--transition-2);
}

.hero--description.about {
    /* top: 35%;
    transform: translateY(-50%) translateX(-30%); */
    bottom: 0;
    transform: translateY(0) translateX(30%);
    /* right: 01%; */
}

.hero--description.about h3 {
    /* width: 90%; */
    text-transform: initial;
}

.hero--description h3,
.hero--description h5 {
    color: var(--color-02);
}

.hero--description h3 {
    text-transform: uppercase;
    font-size: 45px;
    font-weight: 700;
}

.hero--description h5 {
    font-size: 22px;
    font-weight: 600;
}

.product-section-1 img,
.solutions-section-1 img,
.actus-section-1 img,
.about-section-1 img {
    width: 100%;
    /* min-height: 400px; */
    height: 60vh;
    object-fit: cover;
    transition: var(--transition-2);
}

.product-section-2 {
    margin-top: 3rem;
    margin-bottom: 2rem;
    padding: 0 3rem;
}

.product-section-2 .mds--link-container {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.product-section-2 .uniview--img-container {
    border: none;
}

.product-section-2 .tabcontent .uniview--list-container h5 {
    border-bottom: 1px solid var(--color-15);
    padding-bottom: 0.5rem;
    color: var(--color-09);
}

.product-section-2 .tabcontent .uniview--list-container ul li {
    list-style: disc;
    margin-left: 1rem;
    padding: 0;
}

.mds--product-container .uniview--img-container {
    transition: var(--transition-2);
}

.mds--product-container img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: top;
    /* margin-bottom: 2rem; */
    filter: none;
    transition: var(--transition-2);
}

.mds--product-container .uniview--link-1,
.mds--product-container .product--link {
    color: var(--color-13);
    text-decoration: none;
    display: grid;
    font-weight: bold;
    /* min-height: 320px; */
}

.mds--product-container .product--link {
    place-items: center;
    box-shadow: 0px 0px 14px #00000029;
    min-height: 245px;
}

.mds--product-container .uniview--link-2 {
    background: -webkit-linear-gradient(-45deg, #116dbd, #4b5faa 50%, #2ac6c8);
    color: var(--color-02);
    text-decoration: none;
    padding: 0.5rem 2rem;
    border-radius: 5px;
    background-size: 200% 100%;
    transition: background-position 1s ease;
}

.mds--product-container .uniview--link-2:hover {
    background-position: right center;
}

.mds--product-container .uniview--link-1:hover img,
.mds--product-container .product--link:hover img {
    scale: 1.1;
}

.mds--product-container .uniview--link-1:hover .uniview--img-container {
    box-shadow: 0 5px 10px #00000033;
}

.mds--product-container p {
    text-transform: capitalize;
}

.product-section-2 .mds--product-container p {
    text-align: center;
}

.product-section-2 .unv--features-list li {
    list-style: disc;
    margin-left: 1rem;
}

.product-section-2 #tab-2 h3 {
    color: var(--color-08);
    text-align: center;
    text-transform: uppercase;
    margin: 2rem 0;
}

.product-section-2 #tab-2 .mds--product-container .uniview--img-container {
    display: flex;
    justify-content: center;
}

.product-section-2 #tab-2 .mds--product-container .product--link {
    background-color: var(--color-08);
    min-height: 210px;
}

.product-section-2 #tab-2 .mds--product-container .product--link p {
    color: var(--color-02);
    text-transform: initial;
}

.product-section-2 #tab-2 .mds--product-container img {
    width: 95px;
    height: 95px;
}

@media (max-width:785px) {
    .product-section-2 {
        padding: 0 1rem;
    }

    .hero--description {
        transform: translateY(-50%) translateX(-50%);
    }

    /* .product-section-1 img, */
    .solutions-section-1 img,
    .actus-section-1 img,
    .about-section-1 img {
        filter: brightness(0.5);
    }

    .hero--description h3 {
        font-size: 34px;
    }

    .hero--description.about h3 {
        width: 100%;
    }

    .hero--description.about {
        top: 50%;
        transform: translateY(-50%) translateX(-50%);
    }
}

/*********************************************
 *    _   _       _       _                  *
 *   | | | |_ __ (_)_   _(_) _____      __   *
 *   | | | | '_ \| \ \ / / |/ _ \ \ /\ / /   *
 *   | |_| | | | | |\ V /| |  __/\ V  V /    *
 *    \___/|_| |_|_| \_/ |_|\___| \_/\_/     *
 *                                           *
 *********************************************/
.uniview--img-container {
    display: block;
    width: 100%;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--color-15);
}

.uniview--img {
    background-size: cover;
    background-position: top center;
    /* background-color: var(--color-05); */
    background-repeat: no-repeat;
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.uniview--container {
    position: relative;
}

.uniview--text-container {
    position: absolute;
    top: 35%;
    width: 100%;
    padding: 0 3rem;
}

.uniview--text-container h1 {
    font-weight: 400;
    font-size: 45px;
    color: var(--color-02);
    margin-bottom: 1rem;
}

.uniview--text-container h3 {
    color: var(--color-02);
    font-size: 18px;
}

.uniview--tab .tab {
    display: flex;
    overflow-x: auto;
    margin-bottom: 2rem;
    margin-top: 2rem;
}

.uniview--tab .tab button {
    text-transform: initial;
    font-weight: normal;
    color: var(--color-11);
    background-color: transparent;
    border: 1px solid var(--color-13);
    border-radius: 3px;
    padding: 10px 13px;
    white-space: nowrap;
    margin-left: 0;
}

.uniview--tab .tab button.active,
.uniview--tab .tab button:hover {
    border-color: var(--color-08);
    color: var(--color-08);
}

/************************************
 *          UNIVIEW DETAILS
 ************************************/
.unv--details-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding: 2rem;
}

.unv--content-left,
.unv--content-right {
    padding: 0 0.5rem;
}

.unv--product-slider {
    display: grid;
    position: relative;
}

.product-section-1 .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-section-1 .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-section-1 .swiper {
    width: 100%;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
}

.product-section-1 .swiper-slide {
    background-size: cover;
    background-position: center;
}

.unv--details-slider-2 {
    width: 100%;
}

.unv--details-slider-1 {
    height: 100px;
    box-sizing: border-box;
    padding: 10px 0;
}

.unv--details-slider-1 .swiper-slide {
    width: 25%;
    height: 115px;
    opacity: 0.4;
    padding: 0.5rem;
    overflow: hidden;
}

.unv--product-slider .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
}

.unv--product-slider .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--color-16);
}

.unv--product-slider .swiper-pagination {
    bottom: 0;
    display: none;
}

.unv--details-slider-1 .swiper-slide-thumb-active {
    opacity: 1;
    border: 1px solid var(--color-16);
}

.product-section-1 .swiper-slide img {
    display: block;
    width: 80%;
    height: 100%;
    object-fit: contain;
}

.product-section-1 .swiper-button-next,
.product-section-1 .swiper-button-prev {
    border: none;
    top: 65px;
}

.product-section-1 .swiper-button-prev {
    left: -15px;
}

.product-section-1 .swiper-button-next {
    right: -15px;
}

.unv--desc-header .unv--title {
    color: var(--color-09);
}

.unv--desc-header .unv--subtitle {
    color: #444;
    font-weight: 300;
}

.unv--desc-content {
    background: var(--color-17);
    padding: 15px 10px;
}

.unv--desc-content ul li {
    list-style: disc;
    color: var(--color-09);
}

.unv--desc-img {
    position: relative;
}

.unv--desc-img img {
    width: 60px;
    height: 60px;
    min-height: 0;
    border-radius: 9px;
    object-fit: contain;
    margin-bottom: 0.5rem;
}

.unv--desc-img img:not(:last-child) {
    margin-right: 0.5rem;
}

.unv--section.product-section-2 .tab {
    display: flex;
    column-gap: 0;
    border-bottom: 1px solid var(--color-15);
    margin: 2rem 0;
}

.unv--section.product-section-2 .mds--product-container img {
    width: 140px;
    height: 140px;
}

.unv--section.product-section-2 .tab button.tablinks {
    position: relative;
    border: 1px solid var(--color-15);
    background-color: transparent;
    text-transform: initial;
    color: var(--color-09);
    font-weight: normal;
    border-bottom: none;
    margin: 0;
}

.unv--section.product-section-2 .tab button.active,
.unv--section.product-section-2 .tab button:hover {
    background-color: var(--color-16);
    color: var(--color-02);
}

.unv--section.product-section-2 .tab button.active::before {
    content: "";
    position: absolute;
    border-top: 8px solid var(--color-16);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    clear: both;
    bottom: -8px;
    transform: translateX(-50%);
    left: 50%;
}

.unv--section.product-section-2 table .thead {
    background-color: var(--color-17);
    text-align: left;
    font-weight: bold;
}

.unv--section.product-section-2 table td {
    padding: 10px 15px;
    line-height: 24px;
    color: var(--color-09);
    border: 1px solid var(--color-15);
}

.unv--section.product-section-2 .uniview--link-1 h5,
.unv--section.product-section-2 .uniview--link-1 p {
    text-align: center;
    font-weight: normal;
}

.unv--section.product-section-2 .uniview--img-container {
    box-shadow: none !important;
    display: flex;
    justify-content: center;
}

.unv--section.product-section-2 .uniview--link-1 {
    transition: var(--transition-2);
}

.unv--section.product-section-2 .uniview--link-1 {
    box-shadow: 0 5px 10px #00000033;
    /* min-height: 280px; */
    height: 215px;
}

.unv--download-link {
    text-decoration: none;
    color: var(--color-16);
    transition: var(--transition-2);
}

.unv--download-link i {
    font-size: 28px;
    margin-right: 8px;
}

.unv--section.product-section-2 ul {
    padding-left: 0;
}

.unv--section.product-section-2 ul li {
    padding: 0.5rem 0;
}

@media (max-width:850px) {
    .uniview--img {
        filter: brightness(0.5);
    }

    .uniview--text-container h1,
    .uniview--text-container h3 {
        text-align: center;
    }

    .unv--details-container {
        grid-template-columns: repeat(1, 1fr);
    }
}

@media (max-width:640px) {
    .unv--section.product-section-2 .tab button.active::before {
        content: none;
    }

    /* .unv--details-slider-2 .swiper-wrapper {
        height: 250px;
    } */

    .unv--product-slider .unv--details-slider-1 .swiper-wrapper {
        display: none;
    }

    .unv--product-slider {
        margin-bottom: 1rem;
        box-shadow: 0 4px 8px #00000033;
    }

    .product-section-1 .swiper-slide img {
        height: 100%;
        width: 100%;
        min-height: auto;
    }

    .unv--product-slider .swiper-pagination {
        display: block;
    }
}

/************************************
 *            CAMERA IP             *
 *           CAMERA PTZ             *
 *          ANALOG CAMERA           *
 *        CAMERA THERMIQUE          *
 ************************************/
.uniview--title p {
    margin-top: 2rem;
    padding-bottom: 0 !important;
    color: var(--color-11) !important;
}

.camera-ip-pro .uniview--img {
    background-image: url('images/uniview/produits/camera-ip/pro/img-2.jpg');
}

.camera-ip-prime .uniview--img {
    background-image: url('images/uniview/produits/camera-ip/prime/img-2.jpg');
}

.camera-ip-easy .uniview--img {
    background-image: url('images/uniview/produits/camera-ip/easy/img-2.jpg');
}

.analog-camera .uniview--img {
    background-image: url('images/uniview/produits/analog-camera/img-2.jpg');
}

.camera-ptz .uniview--img {
    background-image: url('images/uniview/produits/camera-ptz/img-2.jpg');
}

.camera-thermique .uniview--img {
    background-image: url('images/uniview/produits/camera-thermique/img-2.jpg');
}

.transmission .uniview--img {
    background-image: url('images/uniview/produits/transmission/img-2.jpg');
}

.accessoires-support .uniview--img,
.accessoires-boitier .uniview--img,
.accessoires-objectif .uniview--img,
.accessoires-alimentation .uniview--img {
    background-image: url('images/uniview/produits/accessoires/img-2.jpg');
}

.enregistreur-video-reseaux-pro .uniview--img {
    background-image: url('images/uniview/produits/enregistreur-video-reseaux/pro/img-2.jpg');
}

.enregistreur-video-reseaux-prime .uniview--img {
    background-image: url('images/uniview/produits/enregistreur-video-reseaux/prime/img-2.jpg');
}

.enregistreur-video-reseaux-easy .uniview--img {
    background-image: url('images/uniview/produits/enregistreur-video-reseaux/easy/img-2.jpg');
}

.vms .uniview--img {
    background-image: url('images/uniview/produits/vms/img-2.jpg');
}

.enregistreur-video-numerique .uniview--img {
    background-image: url('images/uniview/produits/enregistreur-video-numerique/img-2.jpg');
}

.stockage-calcul .uniview--img {
    background-image: url('images/uniview/produits/stockage-calcul/img-2.jpg');
}

.calcul-intelligent .uniview--img {
    background-image: url('images/uniview/produits/calcul-intelligent/img-2.jpg');
}

.detecteur-thermique .uniview--img {
    background-image: url('images/uniview/produits/detecteur-thermique/img-2.jpg');
}

.logiciel-client .uniview--img {
    background-image: url('images/uniview/produits/logiciel-client/img-2.jpg');
}

.technology .uniview--img {
    background-image: url('images/uniview/technologie/img-2.jpg');
}

.solutions .uniview--img {
    background-image: url('images/uniview/solutions/bgImg-2.jpg');
}

.camera-ip-pro--section-2,
.camera-ip-prime--section-2,
.camera-ip-easy--section-2,
.camera-ptz--section-2,
.analog-camera--section-2,
.camera-thermique--section-2,
.transmission--section-2,
.accessoires-support--section-2,
.accessoires-boitier--section-2,
.accessoires-objectif--section-2,
.accessoires-alimentation--section-2,
.enregistreur-video-reseaux-pro--section-2,
.enregistreur-video-reseaux-prime--section-2,
.enregistreur-video-reseaux-easy--section-2,
.vms--section-2,
.enregistreur-video-numerique--section-2,
.stockage-calcul--section-2,
.calcul-intelligent--section-2,
.detecteur-thermique--section-2,
.logiciel-client--section-2,
.technology--section-2 {
    padding: 3rem;
}

.camera-ip-pro--section-2 h2,
.camera-ip-prime--section-2 h2,
.camera-ip-easy--section-2 h2,
.camera-ptz--section-2 h2,
.analog-camera--section-2 h2,
.camera-thermique--section-2 h2,
.transmission--section-2 h2,
.accessoires-support--section-2 h2,
.accessoires-boitier--section-2 h2,
.accessoires-objectif--section-2 h2,
.accessoires-alimentation--section-2 h2,
.enregistreur-video-reseaux-pro--section-2 h2,
.enregistreur-video-reseaux-prime--section-2 h2,
.enregistreur-video-reseaux-easy--section-2 h2,
.vms--section-2 h2,
.enregistreur-video-numerique--section-2 h2,
.stockage-calcul--section-2 h2,
.calcul-intelligent--section-2 h2,
.detecteur-thermique--section-2 h2,
.logiciel-client--section-2 h2,
.technology--section-2 h2 {
    color: var(--color-09);
    font-weight: normal;
    margin-top: 1rem;
}

.camera-ip-pro--section-2 p,
.camera-ip-prime--section-2 p,
.camera-ip-easy--section-2 p,
.camera-ptz--section-2 p,
.analog-camera--section-2 p,
.camera-thermique--section-2 p,
.transmission--section-2 p,
.accessoires-support--section-2 p,
.accessoires-boitier--section-2 p,
.accessoires-objectif--section-2 p,
.accessoires-alimentation--section-2 p,
.enregistreur-video-reseaux-pro--section-2 p,
.enregistreur-video-reseaux-prime--section-2 p,
.enregistreur-video-reseaux-easy--section-2 p,
.vms--section-2 p,
.enregistreur-video-numerique--section-2 p,
.stockage-calcul--section-2 p,
.calcul-intelligent--section-2 p,
.detecteur-thermique--section-2 p,
.logiciel-client--section-2 p {
    color: var(--color-14);
    font-weight: normal;
    padding-bottom: 1.5rem;
}

.technology--section-2 .uniview--title {
    padding-bottom: 2rem;
}

.technology--section-2 .unv--technology-container {
    text-decoration: none;
    padding: 1rem;
    color: var(--color-09);
}

.technology--section-2 .img-container {
    position: relative;
    overflow: hidden;
}

.technology--section-2 .img-container img {
    width: 100%;
    height: 175px;
    object-fit: cover;
    transition: var(--transition-2);
}

.technology--section-2 .unv--technology-container .row {
    display: flex;
    flex-direction: row;
    align-items: center;
    transition: var(--transition-2);
}

.technology--section-2 .unv--technology-container .descri-container {
    padding: 0 1.5rem;
}

.technology--section-2 .unv--technology-container .descri-container h3 {
    transition: var(--transition-2);
}

.technology--section-2 .unv--technology-container .descri-container p:last-child {
    color: var(--color-10);
}

.technology--section-2 .unv--technology-container:hover img {
    scale: 1.1;
}

.technology--section-2 .unv--technology-container:hover .descri-container h3 {
    color: var(--color-05);
}

.technology--section-2 .unv--technology-container:hover .row {
    box-shadow: 0 5px 10px #00000033;
}

@media (max-width:850px) {
    .camera-ip-pro .uniview--img {
        background-image: url('images/uniview/produits/camera-ip/pro/img-1.jpg');
    }

    .camera-ip-prime .uniview--img {
        background-image: url('images/uniview/produits/camera-ip/prime/img-1.jpg');
    }

    .camera-ip-easy .uniview--img {
        background-image: url('images/uniview/produits/camera-ip/easy/img-1.jpg');
    }

    .camera-ptz .uniview--img {
        background-image: url('images/uniview/produits/camera-ptz/img-1.jpg');
    }

    .analog-camera .uniview--img {
        background-image: url('images/uniview/produits/analog-camera/img-1.jpg');
    }

    .camera-thermique .uniview--img {
        background-image: url('images/uniview/produits/camera-thermique/img-1.jpg');
    }

    .transmission .uniview--img {
        background-image: url('images/uniview/produits/transmission/img-1.jpg');
    }

    .accessoires-support .uniview--img,
    .accessoires-boitier .uniview--img,
    .accessoires-objectif .uniview--img,
    .accessoires-alimentation .uniview--img {
        background-image: url('images/uniview/produits/accessoires/img-1.jpg');
    }

    .enregistreur-video-reseaux-pro .uniview--img {
        background-image: url('images/uniview/produits/enregistreur-video-reseaux/pro/img-1.jpg');
    }

    .enregistreur-video-reseaux-prime .uniview--img {
        background-image: url('images/uniview/produits/enregistreur-video-reseaux/prime/img-1.jpg');
    }

    .enregistreur-video-reseaux-easy .uniview--img {
        background-image: url('images/uniview/produits/enregistreur-video-reseaux/easy/img-1.jpg');
    }

    .vms .uniview--img {
        background-image: url('images/uniview/produits/vms/img-1.jpg');
    }

    .enregistreur-video-numerique .uniview--img {
        background-image: url('images/uniview/produits/enregistreur-video-numerique/img-1.jpg');
    }

    .stockage-calcul .uniview--img {
        background-image: url('images/uniview/produits/stockage-calcul/img-1.jpg');
    }

    .calcul-intelligent .uniview--img {
        background-image: url('images/uniview/produits/calcul-intelligent/img-1.jpg');
    }

    .detecteur-thermique .uniview--img {
        background-image: url('images/uniview/produits/detecteur-thermique/img-1.jpg');
    }

    .logiciel-client .uniview--img {
        background-image: url('images/uniview/produits/logiciel-client/img-1.jpg');
    }

    .technology .uniview--img {
        background-image: url('images/uniview/technologie/img-1.jpg');
    }

    .solutions .uniview--img {
        background-image: url('images/uniview/solutions/bgImg-1.jpg');
    }

}

@media (max-width:767px) {
    .technology--section-2 .img-container img {
        height: 254px;
    }
}

@media (max-width:480px) {

    .camera-ip-pro--section-2,
    .camera-ip-prime--section-2,
    .camera-ptz--section-2,
    .analog-camera--section-2,
    .camera-thermique--section-2,
    .transmission--section-2,
    .accessoires-support--section-2,
    .accessoires-boitier--section-2,
    .accessoires-objectif--section-2,
    .accessoires-alimentation--section-2,
    .enregistreur-video-reseaux-pro--section-2,
    .vms--section-2,
    .enregistreur-video-numerique--section-2,
    .calcul-intelligent--section-2,
    .detecteur-thermique--section-2,
    .logiciel-client--section-2,
    .technology--section-2 {
        padding: 3rem 1rem;
    }
}

/***************************************************
 *    ____        _       _   _                 
 *   / ___|  ___ | |_   _| |_(_) ___  _ __  ___ 
 *   \___ \ / _ \| | | | | __| |/ _ \| '_ \/ __|
 *    ___) | (_) | | |_| | |_| | (_) | | | \__ \
 *   |____/ \___/|_|\__,_|\__|_|\___/|_| |_|___/
 *                                              
 ***************************************************/
.solutions--section-2 {
    padding: 3rem;
}

.solutions--section-2 .uniview--title {
    padding-bottom: 2rem;
}

.solutions--section-2 .uniview--title h1 {
    color: var(--color-09);
}

.solutions--section-2 .unv--solutions-container {
    padding-bottom: 3rem;
}

.solutions--section-2 .unv--solutions-container .mds--product-container .mds--product-content .img--container img {
    margin-bottom: 1rem !important;
}

.solutions--section-2 .unv--solutions-container .img-container {
    display: flex;
    justify-content: center;
    border: 1px solid var(--color-15);
    padding: 1rem;
}

.solutions--section-2 .unv--solutions-container .img-container img {
    max-width: 100%;
}

.solutions--section-2 .unv--solutions-container h3 {
    color: var(--color-02);
    padding: 0 10rem 0 1rem;
    background: url('images/uniview/solutions/img-1.jpg') no-repeat #2682b6 right top;
    display: inline-block;
    margin-bottom: 2rem;
}

.unv--solutions-container .download {
    text-decoration: none;
    color: var(--color-13);
    border: 1px solid var(--color-13);
    border-radius: 3px;
    padding: 10px 13px;
    display: inline-block;
    transition: var(--transition-2)
}

.unv--solutions-container .download i {
    font-size: 28px;
    color: var(--color-08);
    margin-right: 8px;
}

.unv--solutions-container .download:hover {
    border-color: var(--color-08);
    color: var(--color-08);
}


.unv--solutions-container .mds--product-container .uniview--link-1 img {
    object-fit: cover;
}

.unv--solutions-container .mds--product-container .uniview--link-1 p {
    margin-top: 1rem;
}

.solutions--section-2 .mds--product-container .unv--col-title {
    color: var(--color-16);
    font-size: 20px;
}

.solutions--section-2 .mds--product-container ul {
    padding-left: 12px;
}

.solutions--section-2 .mds--product-container ul li i {
    color: var(--color-16);
    font-size: 9px;
}

.unv--solutions-container .mds--product-container .uniview--link-1:hover .uniview--img-container {
    box-shadow: none;
}

.unv--solutions-container .mds--product-container .mds--product-content .uniview--link-1 {
    border: 1px solid var(--color-15);
    text-align: center;
    transition: var(--transition-2);
}

.unv--solutions-container .mds--product-container .mds--product-content .uniview--img-container {
    border: none;
}

.unv--solutions-container .mds--product-container .mds--product-content p {
    transition: var(--transition-2);
    font-weight: 400;
    color: #606060;
}

.unv--solutions-container .mds--product-container .mds--product-content:hover p {
    color: var(--color-05);
}

.unv--solutions-container .mds--product-container .mds--product-content:hover .uniview--link-1 {
    box-shadow: 0 5px 10px #00000033;
}

.details.solutions b {
    color: var(--color-16) !important;
}

.details.solutions ul li {
    list-style: disc;
}

.details.solutions i {
    color: #999;
}

.mds--section.sync-hero--section-1 {
    padding: 4rem;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.mds--section.sync-hero--section-1 h2 {
    color: var(--color-02);
}

.mds--section.sync-hero--section-1.gestion-de-controle-dacces,
.mds--section.sync-hero--section-1.application-web,
.mds--section.sync-hero--section-1.gestion-de-visiteurs,
.mds--section.sync-hero--section-1.controle-dacces-qualifie-par-lanssi,
.mds--section.sync-hero--section-1.concentrateur-xperial-controle-dacces {
    background-color: var(--color-30);
}

.mds--section.sync-hero--section-1.supervision-graphique {
    background-color: var(--color-31);
}

.mds--section.sync-hero--section-1.gestion-de-videosurveillance {
    background-color: var(--color-32);
}

.mds--section.sync-hero--section-1.automate-xprime-controle-dacces-et-intrusion {
    background-color: var(--color-33);
}

.mds--section.sync-hero--section-1.multibanque-securite-bancaire {
    background-color: var(--color-34);
}

.mds--section.sync-hero--section-1.pupitre-tactile-xtc-ihm {
    background-color: var(--color-35);
}

.mds--section.sync-hero--section-1.integration-milestone-xprotect h2 {
    color: var(--color-28);
}

.mds--section.sync-hero--section-1.gestion-de-controle-dacces {
    background-image: url('images/synchronic/produits/gestion-de-controle-d-acces/details/bgImg-1.png');
}

.mds--section.sync-hero--section-1.application-web {
    background-image: url('images/synchronic/produits/application-web/details/bgImg-1.png');
}

.mds--section.sync-hero--section-1.gestion-de-visiteurs {
    background-image: url('images/synchronic/produits/gestion-de-visiteurs/details/bgImg-1.png');
}

.mds--section.sync-hero--section-1.supervision-graphique {
    background-image: url('images/synchronic/produits/supervision-graphique/details/bgImg-1.png');
}

.mds--section.sync-hero--section-1.gestion-de-videosurveillance {
    background-image: url('images/synchronic/produits/gestion-de-videosurveillance/details/bgImg.jpg');
}

.mds--section.sync-hero--section-1.integration-milestone-xprotect {
    background-image: url('images/synchronic/produits/integration-milestone/details/bgImg.png');
}

.mds--section.sync-hero--section-1.controle-dacces-qualifie-par-lanssi {
    background-image: url('images/synchronic/produits/controle-d-acces-qualifie-par-anssi/details/bgImg.png');
}

.mds--section.sync-hero--section-1.concentrateur-xperial-controle-dacces {
    background-image: url('images/synchronic/produits/concentrateur-xperial/details/bgImg.png');
}

.mds--section.sync-hero--section-1.automate-xprime-controle-dacces-et-intrusion {
    background-image: url('images/synchronic/produits/automate-xprime/details/bgImg.png');
}

.mds--section.sync-hero--section-1.multibanque-securite-bancaire {
    background-image: url('images/synchronic/produits/multibanque/details/bgImg.jpg');
}

.mds--section.sync-hero--section-1.pupitre-tactile-xtc-ihm {
    background-image: url('images/synchronic/produits/pupitre-tactile/details/bgImg.png');
}

.mds--section.sync-product--section-2.pupitre-tactile-xtc-ihm h3 {
    text-align: center;
    margin: 1rem 0;
}

.sync-solutions--section-2 h3,
.sync-solutions--section-3 h3 {
    font-weight: 400;
}

.sync-solutions--section-2,
.sync-product--section-2,
.sync-product--section-3 {
    padding: 3rem;
}

.sync-product--section-3 .tab {
    display: flex;
    overflow-x: auto;
    column-gap: 0;
}

.sync-product--section-3 .tab button {
    background-color: var(--color-02);
    color: #000;
    text-transform: capitalize;
    font-weight: 400;
    border: 1px solid #dddddd;
    border-bottom: none;
}

.sync-product--section-3 .tab button:last-child {
    border-left: none;
}

.sync-product--section-3 .tab button.active {
    background-color: #f5f5f5;
}

.sync-product--section-3 .tabcontent {
    border: 1px solid #dddddd;
    background-color: #f5f5f5;
}

.sync-product--section-3 .tabcontent h5 {
    font-weight: 400;
}

.sync-product--section-3 .tabcontent .unv--download-link {
    color: var(--color-21);
    font-weight: 600;
}

.sync-product--section-3 .tabcontent .unv--download-link i {
    color: #5e5d5d;
}

.sync-product--section-2 .media--container {
    text-align: center;
}

.sync-product--section-2 img {
    max-width: 100%;
}

.sync-product--section-2 video {
    width: 100%
}

.sync-product--section-2 h3 {
    color: var(--color-21);
}

.sync-product--section-2 ul li,
.sync-product--section-3 ul li {
    list-style: disc;
}

.sync-product--section-3 #tab-2 ul li {
    list-style: none;
}

.sync-product--section-3 #tab-2 ul {
    padding-left: 0;
}

.sync-solutions--section-2 img {
    width: 100%;
}

.sync-solutions--section-3 {
    padding: 3rem;
    background-color: var(--color-29);
}

.sync-solutions--section-3 img {
    width: 100%;
}

.sync-solutions--section-2 p,
.sync-solutions--section-3 p,
.sync-solutions--section-3 h2 {
    color: var(--color-28);
}

.sync-solutions--section-3 h2 {
    font-weight: 400;
}

.sync-solutions--section-3 .sync--doc-link {
    text-decoration: none;
    transition: var(--transition-2);
}

.sync-solutions--section-3 .sync--doc-link i {
    font-size: 24px;
}

.sync-solutions--section-4 {
    padding: 3rem;
}

.sync-solutions--section-4 h2 {
    text-align: center;
    color: var(--color-02);
}

.sync-solutions--section-4 .achievement-container {
    display: grid;
    place-items: center;
}

.sync-solutions--section-4 .achievement-container img {
    width: 85px;
}

.sync-solutions--section-4 .achievement-details p {
    text-align: center;
    font-size: 1.5rem;
    color: var(--color-02);
}

.mds--section.sync-hero--section-1.banque-2 {
    background-image: url('images/synchronic/solutions/banque/bg-1.jpg');
    background-color: var(--color-22);
}

.sync-solutions--section-2.banque-2 h3,
.sync-solutions--section-3.banque-2 h3 {
    color: var(--color-22);
}

.sync-solutions--section-3.banque-2 .sync--doc-link {
    color: var(--color-22);
}

.sync-solutions--section-4.banque-2 {
    background-color: var(--color-22);
}

.mds--section.sync-hero--section-1.collectivites {
    background-image: url('images/synchronic/solutions/collectivites/bg-1.jpg');
    background-color: var(--color-23);
}

.sync-solutions--section-2.collectivites h3,
.sync-solutions--section-3.collectivites h3 {
    color: var(--color-23);
}

.sync-solutions--section-3.collectivites .sync--doc-link {
    color: var(--color-23);
}

.sync-solutions--section-4.collectivites {
    background-color: var(--color-23);
}

.mds--section.sync-hero--section-1.sante {
    background-image: url('images/synchronic/solutions/sante/bg-1.jpg');
    background-color: var(--color-24);
}

.sync-solutions--section-2.sante h3,
.sync-solutions--section-3.sante h3 {
    color: var(--color-24);
}

.sync-solutions--section-3.sante .sync--doc-link {
    color: var(--color-24);
}

.sync-solutions--section-4.sante {
    background-color: var(--color-24);
}

.mds--section.sync-hero--section-1.industrie {
    background-image: url('images/synchronic/solutions/industrie/bg-1.jpg');
    background-color: var(--color-25);
}

.sync-solutions--section-2.industrie h3,
.sync-solutions--section-3.industrie h3 {
    color: var(--color-25);
}

.sync-solutions--section-3.industrie .sync--doc-link {
    color: var(--color-25);
}

.sync-solutions--section-4.industrie {
    background-color: var(--color-25);
}

.mds--section.sync-hero--section-1.site-sensible {
    background-image: url('images/synchronic/solutions/site-sensible/bg-1.jpg');
    background-color: var(--color-26);
}

.sync-solutions--section-2.site-sensible h3,
.sync-solutions--section-3.site-sensible h3 {
    color: var(--color-26);
}

.sync-solutions--section-3.site-sensible .sync--doc-link {
    color: var(--color-26);
}

.sync-solutions--section-4.site-sensible {
    background-color: var(--color-26);
}

.mds--section.sync-hero--section-1.tertiaire {
    background-image: url('images/synchronic/solutions/tertiaire/bg-1.jpg');
    background-color: var(--color-27);
}

.sync-solutions--section-2.tertiaire h3,
.sync-solutions--section-3.tertiaire h3 {
    color: var(--color-27);
}

.sync-solutions--section-3.tertiaire .sync--doc-link {
    color: var(--color-27);
}

.sync-solutions--section-4.tertiaire {
    background-color: var(--color-27);
}

.mds--section.sync-hero--section-1.bureau-detudes {
    background-image: url('images/synchronic/solutions/bureau/bg-1.jpg');
}

.sync-solutions--section-2.bureau-detudes h3,
.sync-solutions--section-3.bureau-detudes h3 {
    color: var(--color-21);
}

.sync-solutions--section-3.bureau-detudes .sync--doc-link {
    color: var(--color-21);
}

.sync-solutions--section-4.bureau-detudes {
    background-color: var(--color-21);
}

.mds--section.sync-hero--section-1.bureau-detudes h2 {
    color: var(--color-28);
}

.mds--section.sync-hero--section-1.installateurs-integrateurs {
    background-image: url('images/synchronic/solutions/installateurs-integrateurs/bg-1.jpg');
}

.sync-solutions--section-2.installateurs-integrateurs h3,
.sync-solutions--section-3.sante h3 {
    color: var(--color-21);
}

.sync-solutions--section-3.installateurs-integrateurs .sync--doc-link {
    color: var(--color-21);
}

.sync-solutions--section-4.installateurs-integrateurs {
    background-color: var(--color-21);
}

.mds--section.sync-hero--section-1.installateurs-integrateurs h2 {
    color: var(--color-28);
}

@media (max-width:991px) {
    .solutions--section-2 .unv--solutions-container .mds--product-container .mds--product-content .img--container img {
        height: auto !important;
    }
}

@media (max-width: 785px) {

    .solutions--section-2 {
        padding: 0 1rem;
    }

    .sync-solutions--section-2,
    .sync-solutions--section-3,
    .sync-product--section-2,
    .sync-product--section-3 {
        padding: 1rem;
    }

    .sync-solutions--section-4 .achievement-details p {
        font-size: 1rem;
    }
}

/***************************************************************
 *     _____         _                 _             _      
 *    |_   _|__  ___| |__  _ __   ___ | | ___   __ _(_) ___ 
 *      | |/ _ \/ __| '_ \| '_ \ / _ \| |/ _ \ / _` | |/ _ \
 *      | |  __/ (__| | | | | | | (_) | | (_) | (_| | |  __/
 *      |_|\___|\___|_| |_|_| |_|\___/|_|\___/ \__, |_|\___|
 *                                             |___/        
 ***************************************************************/
/************************************
 *             TRI-GUARD
 ************************************/
.tri-guard--section-1 .uniview--text-container {
    padding: 0 6rem;
}

.tri-guard--section-1 .uniview--text-container h1 {
    font-size: 70px;
    font-weight: 600;
    text-align: left;
}

.tri-guard--section-1 .uniview--text-container h3 {
    font-size: 38px;
    text-align: left;
}

.tri-guard--img-container {
    width: 100%;
    height: auto;
    position: relative;
    object-fit: cover;
    transition: var(--transition-2);
}

.tri-guard--section-1 .circle {
    background-image: url('images/uniview/technologie/tri-guard/details/circle.png');
    position: absolute;
    width: 50px;
    height: 50px;
    top: -43px;
    background-repeat: no-repeat;
}

.tri-guard--section-1 .mouse {
    background-image: url('images/uniview/technologie/tri-guard/details/mouse.png');
    width: 40px;
    position: absolute;
    height: 65px;
    bottom: 70px;
    background-repeat: no-repeat;
    left: 50%;
    animation: move 4s infinite linear;
}

.triguard--banner {
    background-image: url('images/uniview/technologie/tri-guard/details/bgImg-2.png');
    width: 100%;
    position: absolute;
    height: 125px;
    bottom: 0;
    background-repeat: no-repeat;
}

.tri-guard--title h2 {
    text-align: center;
    text-transform: uppercase;
    color: #149be6;
    font-size: 40px;
    margin-bottom: 2rem;
}

.tri-guard--subtitle h3 {
    /* text-align: center; */
    text-transform: uppercase;
    /* color: #149be6; */
    font-size: 32px;
    margin-bottom: 2rem;
    position: relative;
}

.tri-guard--subtitle h3::before {
    content: '';
    position: absolute;
    bottom: 0;
    bottom: -15px;
    width: 100px;
    height: 7px;
    background: linear-gradient(90deg, #28ceea 0%, #0067e2 100%);
}

.tri-guard--section {
    padding: 2rem;
}

.tri-guard--section-2 img {
    width: 100%;
    height: 290px;
    object-fit: contain;
}

.tri-guard--section-2 ul li {
    list-style: disc;
    color: var(--color-10);
}

.tri-guard--section img {
    width: 100%;
}

.tri-guard--section-9 {
    background-color: #fafdff;
}

.tri-guard--section-10 table {
    width: 100%;
}

.tri-guard--section-10 table img {
    height: 150px;
    width: 215px;
    object-fit: contain;
}

.tri-guard--section-10 table tr {
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
}

.tri-guard--section-10 table td {
    padding: 0.5rem;
}

.tri-guard--section-10 table a,
.tri-guard--section-10 table li {
    white-space: nowrap;
    font-size: 12px;
}

.tri-guard--section-10 table a {
    text-decoration: none;
}

.tri-guard--section-7 .rojo {
    display: flex;
    position: relative;
}

.tri-guard--section-7 .unv--details-slider-1 {
    width: 100%;
    height: auto;
    white-space: nowrap;
    text-align: center;
    overflow-x: auto;
}

.tri-guard--section-7 .tri-guard--camera img {
    width: auto;
    object-fit: contain;
}

.tri-guard--section-7 .unv--details-slider-1 .swiper-slide {
    height: auto;
    width: auto !important;
}

.tri-guard--section-7 .unv--details-slider-1 .swiper-wrapper {
    height: auto;
}

.tri-guard--section-7 .unv--product-slider {
    height: 100%;
}

.tri-guard--section-7 .unv--product-slider .swiper-slide img {
    width: auto;
}

.tri-guard--section .unv--product-slider {
    margin-bottom: 0;
    box-shadow: none;
}

.tri-guard--section .unv--details-slider-1 .swiper-wrapper {
    display: flex;
}

@keyframes move {
    0% {
        bottom: 16%;
        opacity: 1;
    }

    50% {
        bottom: 18%;
        opacity: 0.7;
    }

    100% {
        bottom: 16%;
        opacity: 1;
    }
}

@media (max-width:990px) {
    .tri-guard--img-container {
        height: 400px;
    }

    .tri-guard--section-7 .tri-guard--camera {
        display: none;
    }

    .tri-guard--section-7 .unv--product-slider .swiper-slide img {
        width: 100%;
        height: 400px;
        object-fit: cover;
    }

    .tri-guard--section-1 .uniview--text-container {
        padding: 0 3rem;
    }

    .tri-guard--section-1 .uniview--text-container h1 {
        font-size: 45px;
    }

    .tri-guard--section-1 .uniview--text-container h3 {
        font-size: 18px;
    }

    .triguard--banner {
        height: 100px;
    }

    .tri-guard--title h2 {
        font-size: 30px;
    }

    .tri-guard--subtitle h3 {
        font-size: 23px;
    }

    .tri-guard--subtitle h3::before {
        height: 5px;
    }
}

@media (max-width:450px) {
    .tri-guard--section-1 .uniview--text-container {
        padding: 0 1rem;
    }

    .triguard--banner {
        display: none;
    }
}

/************************************
 *           COLORHUNTER
 ************************************/
.colorhunter--section-1 .colorhunter--img-container {
    width: 100%;
}

.colorhunter--title {
    padding-bottom: 4rem;
}

.colorhunter--title h1 {
    position: relative;
    text-align: center;
    color: #444;
}

.colorhunter--title h1::before {
    content: '';
    position: absolute;
    width: 110px;
    height: 4px;
    background-color: var(--color-18);
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
}

.colorhunter--section {
    padding: 7rem 2rem;
    background-color: #fafafa;
}

.colorhunter--section-2 {
    background-image: url('images/uniview/technologie/colorhunter/details/bg-video-1.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    /* padding: 7rem 2rem; */
}

.colorhunter--section-2 video {
    width: 100%;
}

.colorhunter--section-3 {
    background-color: #f2f4f4;
}

.colorhunter--section-3 .quote {
    font-size: 30px;
    color: #8c92ad;
}

.colorhunter--section-3 .quote-right {
    float: right;
}

.colorhunter--section-3 p {
    margin: 0 3rem;
    color: #333;
    font-size: 18px;
}

.colorhunter--section-3 p b {
    font-weight: 600;
}

.colorhunter--section-4 .custom-slide {
    background-color: var(--color-02);
    display: flex;
    align-items: center;
}

.colorhunter--section-5 .custom-slide {
    display: flex;
    align-items: center;
    padding-bottom: 3rem;
}

.colorhunter--section-4 .article-container,
.colorhunter--section-5 .article-container {
    display: flex;
}

.colorhunter--section-4 .mds--carousel-article,
.colorhunter--section-4 .img-container,
.colorhunter--section-4 .img-container img,
.colorhunter--section-5 .mds--carousel-article,
.colorhunter--section-5 .img-container,
.colorhunter--section-5 .img-container img {
    width: 100%;
}

.colorhunter--section-5 .img-container {
    background-image: url('images/uniview/technologie/colorhunter/details/techno-bg-2.png');
    background-repeat: no-repeat;
    background-position: right;
    background-size: contain;
}

.colorhunter--section-5 .img-container img {
    padding: 3rem 2rem;
    width: 80%;
    float: right;
}

.colorhunter--section-4,
.colorhunter--section-5,
.colorhunter--section-6,
.colorhunter--section-7,
.colorhunter--section-8 {
    padding-bottom: 0;
}

.colorhunter--section-5 .text-container {
    background-image: url('images/uniview/technologie/colorhunter/details/techno-bg-1.png');
    background-repeat: no-repeat;
    background-position: top left;
    padding: 3rem 4rem;
}

.colorhunter--section-5 .text-container h5 {
    color: var(--color-09);
    font-weight: normal;
}

.colorhunter--section .swiper-pagination-bullet {
    width: 20px;
    height: 20px;
}

.colorhunter--section .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--color-19);
}

.colorhunter--section-7 h3 {
    color: var(--color-18);
}

.colorhunter--section-7 ul {
    padding-left: 0;
}

.colorhunter--section-7 ul li i {
    color: var(--color-19);
    font-size: 7px;
}

.colorhunter--section-7 img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

.colorhunter--section-8 .colorhunter--product-link {
    display: flex;
    background-color: var(--color-20);
    text-decoration: none;
}

.colorhunter--section-8 .colorhunter--product-link img {
    transition: var(--transition-2);
}

.colorhunter--section-8 .colorhunter--product-details {
    background-color: #081d3a;
    color: var(--color-02);
    padding: 0.5rem;
    width: 100%;
    background-image: url('images/uniview/technologie/colorhunter/details/logo.jpg');
    background-repeat: no-repeat;
    background-position: bottom;
}

.colorhunter--section-8 .colorhunter--product-details ul li {
    list-style: disc;
}

.colorhunter--section-8 .colorhunter--product-img {
    color: #333;
    text-align: center;
    width: 100%;
}

.colorhunter--section-8 .colorhunter--product-link:hover .colorhunter--product-img img {
    scale: 1.05;
}

.colorhunter--section-9 .colorhunter--container {
    text-decoration: none;
    color: #555;
}

.colorhunter--section-9 .learn-more {
    display: inline-block;
    background-color: var(--color-18);
    color: var(--color-02);
    padding: 0.3rem;
    border-radius: 2px;
}

@media (max-width:990px) {
    .colorhunter--section-1 .colorhunter--img-container {
        height: 400px;
        object-fit: cover;
        object-position: left;
    }

    .colorhunter--section-3 p {
        margin: 0;
    }

    .colorhunter--section-7 img {
        width: 100%;
        height: 350px;
    }
}

@media (max-width:785px) {

    .colorhunter--section-4 .custom-slide,
    .colorhunter--section-5 .custom-slide {
        flex-direction: column;
    }

    .colorhunter--section-5 .img-container img {
        width: 100%;
    }
}

@media (max-width:480px) {
    .colorhunter--section {
        padding: 3rem 2rem;
    }

    .colorhunter--section-7 img {
        height: auto;
    }

    .colorhunter--section-8 .colorhunter--product-link {
        flex-direction: column;
    }
}

/************************************
 *             LIGHTHUNTER
 ************************************/
.unv--actus {
    padding: 3rem;
    transition: var(--transition-2);
}

.unv--actus .details b {
    color: #444;
}

.unv--actus .uniview--title h1 {
    text-transform: capitalize;
    color: var(--color-09);
}

.unv--back {
    margin-bottom: 1.5rem;
}

.unv--back a {
    text-decoration: none;
    border: 1px solid var(--color-15);
    border-radius: 5px;
    padding: 8px 30px;
    display: inline-flex;
    color: var(--color-09);
    transition: var(--transition-2);
    align-items: center;
}

.unv--back a i {
    font-size: 10px;
    margin-right: 0.5rem;
}

.unv--back a:hover {
    background-color: var(--color-18);
    border-color: transparent;
    color: var(--color-02);
}

.unv--actus .details {
    margin-top: 1rem;
}

.unv--actus .details p {
    color: var(--color-09);
}

.unv--actus .details p b {
    color: #444;
}

.unv--actus p.date {
    color: var(--color-10);
}

.unv--actus .texto {
    display: flex;
    align-items: center;
    padding-bottom: 2rem;
}

.unv--actus .texto .descri {
    background: #eee;
    padding: 1rem;
}

.unv--actus .img--container {
    text-align: center;
    display: flex;
    justify-content: center;
    flex-direction: row;
}

.unv--actus .img--container .multiple-image:not(:last-child) {
    margin-right: 1rem;
}

.unv--actus .img--container .multiple-image img {
    max-width: 300px;
}

.unv--actus .img--container .single-image img {
    width: 100%;
}

@media (max-width:785px) {
    .unv--actus .img--container {
        flex-direction: column;
    }

    .unv--actus .img--container .multiple-image img {
        max-width: 100%;
    }

    .unv--actus .img--container .multiple-image:not(:last-child) {
        margin-right: 0;
    }

    .unv--actus {
        padding: 1rem;
    }
}

@media (max-width:480px) {
    .unv--actus .texto {
        flex-direction: column;
    }
}

/************************************************** 
 *    ____        _       _   _                 
 *   / ___|  ___ | |_   _| |_(_) ___  _ __  ___ 
 *   \___ \ / _ \| | | | | __| |/ _ \| '_ \/ __|
 *    ___) | (_) | | |_| | |_| | (_) | | | \__ \
 *   |____/ \___/|_|\__,_|\__|_|\___/|_| |_|___/
 *                                              
 **************************************************/
.solution--section-1 .tab {
    padding: 0 3rem;
    padding-top: 2rem;
}

.solution-container {
    padding: 1rem 3rem;
}

.solution-container .mds--title-container {
    text-align: center;
    padding: 2rem 1rem;
}

.solution-container .mds--title-container h3 {
    text-transform: uppercase;
    color: var(--color-09);
    font-weight: 700;
}

.solution-container .mds--title-container p {
    color: var(--color-09);
}

.solution-container .uniview--img-container {
    border: none;
    height: auto;
}

.solution-container .mds--product-container p {
    text-transform: uppercase;
    margin-top: 1.5rem;
    transition: var(--transition-2);
}

.solution-container .mds--product-container .product--link {
    padding: 1rem;
    position: relative;
    max-width: 536px;
    max-height: 409px;
    min-height: 0;
}

.solution-container .mds--product-container .product--link i {
    position: absolute;
    right: 20px;
    bottom: 35px;
}

.solution-container .mds--product-container .product--link:hover p {
    color: var(--color-05);
}

@media (max-width:785px) {
    .solution--section-1 .tab {
        padding: 0 1rem;
        padding-top: 1rem;
    }
}

@media (max-width:640px) {
    .solution-container {
        padding: 1rem;
    }
}

/***************************************************** 
 *      _        _               _ _ _            
 *     / \   ___| |_ _   _  __ _| (_) |_ ___  ___ 
 *    / _ \ / __| __| | | |/ _` | | | __/ _ \/ __|
 *   / ___ \ (__| |_| |_| | (_| | | | ||  __/\__ \
 *  /_/   \_\___|\__|\__,_|\__,_|_|_|\__\___||___/
 *                                                
 *****************************************************/
.unv--actus .wp-show-posts-image img {
    width: 100%;
    height: 180px;
    transition: var(--transition-2);
    object-fit: cover !important;
}

.unv--actus a {
    transition: var(--transition-2);
    color: var(--color-09);
}

.unv--actus .uniview--title {
    margin-bottom: 3rem;
}

.actus .uniview--img {
    background-image: url('images/uniview/actus/img-2.jpg');
}

.news--section-1 {
    overflow-x: hidden;
}

.news--section-1 .tab {
    padding: 0 3rem;
    padding-top: 2rem;
}

.news--section-1 .mds--subtitle {
    margin: 2rem 0;
}

.news--section-1 .tabcontent {
    padding: 1.5rem 0;
}

.unv--actus-list .wp-show-posts-image img {
    width: 100%;
    transition: var(--transition-2);
}

.unv--actus-list time.wp-show-posts-entry-date.published {
    display: flex;
    justify-content: center;
    margin-top: 1em;
}

.unv--actus-list .wp-show-posts-posted-on.wp-show-posts-meta a {
    color: var(--color-11);
    text-decoration: none;
}

.unv--actus-list .wpsp-read-more {
    display: flex;
    justify-content: center;
    margin-bottom: 1em;
}

.unv--actus-list .wp-show-posts-entry-summary p {
    height: 125px;
}

.unv--actus-list .wp-show-posts-inner {
    box-shadow: 0 5px 10px #00000033;
}

.unv--actus-list .wp-show-posts-columns {
    margin-left: 0 !important;
}

.unv--actus-list,
.unv--actus-single {
    padding: 0.6rem 3.5rem;
    transition: var(--transition-2);
}

.unv--actus-single .wp-show-posts-image.wpsp-image-left {
    /* width: 50%; */
    width: 33%;
    box-shadow: 0 5px 10px #00000033;
}

.unv--actus-single .wp-show-posts-image img {
    transition: var(--transition-2);
    width: 100%;
    padding: 1rem;
    height: 325px;
    object-fit: cover;
}

.unv--actus-single .wp-show-posts-inner:hover {
    box-shadow: none;
}

.unv--actus-single .wp-show-posts-inner:hover .mds--btn {
    background-color: var(--color-06);
    color: var(--color-02);
}

.unv--actus-single .wp-show-posts-inner h3 a {
    color: var(--color-03);
}

.wp-show-posts-columns#wpsp-1984 .wp-show-posts-inner,
.wp-show-posts-columns#wpsp-2061 .wp-show-posts-inner {
    margin: 0.3rem !important;
    padding: 1rem;
}

.unv--actus-list .wp-show-posts-inner:hover .mds--btn {
    background-color: var(--color-06);
    color: var(--color-02);
}

.unv--actus-list .wp-show-posts-entry-summary p {
    height: 100px;
    overflow: hidden;
}

.unv--actus-list .mds--btn,
.unv--actus-single .mds--btn {
    border: 2px solid transparent;
    padding: 0.3rem 1.5rem;
}

.unv--actus-list .mds--btn:hover,
.unv--actus-single .mds--btn:hover {
    border-color: var(--color-06);
    color: var(--color-06) !important;
    background-color: var(--color-02) !important;
}

.unv--actus-list.videos .wp-show-posts-columns .wp-show-posts-single:not(.wp-show-posts-masonry-block) .wp-show-posts-image img {
    object-fit: cover;
}

.unv--actus-list.videos .wp-show-posts-entry-title a {
    text-decoration: none;
    color: var(--color-09);
    text-align: center;
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}

.wp-show-posts-entry-summary p {
    height: 75px;
    overflow: hidden;
}

.wp-show-posts-image {
    margin-bottom: 0;
    overflow: hidden;
}

.wp-show-posts-inner {
    padding: 0.5rem;
    transition: var(--transition-2);
}

.wp-show-posts-inner:hover {
    box-shadow: 0 5px 10px #00000033;
}

.unv--actus.videos .wp-show-posts-inner:hover {
    box-shadow: none;
}

.wp-show-posts-inner:hover a {
    color: var(--color-05);
}

.wp-show-posts-inner:hover .wp-show-posts-image img {
    scale: 1.1;
}

.wp-show-posts-image.wpsp-image-left {
    width: 250px;
}

.page-numbers {
    display: inline-block;
    text-decoration: none;
    border: 1px solid var(--color-15);
    padding: 0.5rem 1rem;
    border-radius: 3px;
    margin-bottom: 0.3rem;
}

.page-numbers.current {
    background-color: var(--color-06);
    color: var(--color-02);
}

.wpsp-load-more {
    margin-top: 2em;
    margin-bottom: 2em;
}

.unv--events-slide {
    background-color: #F1F0F0;
    padding: 2rem 0;
}

.unv--events-slide .swiper {
    width: 100%;
    height: 100%;
}

.unv--events-slide .swiper-wrapper {
    align-items: center;
}

.unv--events-slide .swiper-slide {
    text-align: center;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.unv--events-slide .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.unv--actus-list.videos .wp-show-posts-inner {
    box-shadow: none;
}

.unv--actus-list.videos .wp-show-posts-inner:hover {
    box-shadow: 0 5px 10px #00000033;
}

.unv--actus.sync .wp-block-video {
    display: flex;
    justify-content: center;
}

.unv--actus.sync .wp-block-video video {
    width: 55%;
}

.unv--actus.sync a {
    text-decoration: none;
    color: var(--color-21);
}

.unv--actus.sync .unv--back a:hover {
    background-color: var(--color-21);
    color: var(--color-02);
}

.unv--actus.sync-hero {
    padding: 3rem 0;
    background-image: url('images/synchronic/actus/bg-1.png');
    background-color: var(--color-21);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.unv--actus.sync-hero div {
    background-color: #fff;
    opacity: 0.9;
    padding: 3rem;
    margin-left: 1.3rem;
}

.unv--actus.sync-hero h2 {
    color: #747474;
}

/* @media (max-width:1106px) {
    .unv--actus-single .wp-show-posts-image img {
        height: 325px;
    }
} */

@media (max-width:850px) {
    .actus .uniview--img {
        background-image: url('images/uniview/actus/img-1.jpg');
    }
}

@media (max-width:785px) {
    .news--section-1 .tab {
        padding: 0 1rem;
        padding-top: 1rem;
    }
}

@media (max-width:767px) {
    .wp-show-posts-entry-summary p {
        height: auto;
    }

    .wp-show-posts-image {
        margin-bottom: 1em;
    }

    .wp-show-posts-image.wpsp-image-left {
        width: 100%;
    }

    .news--section-1 .actus-container .wp-show-posts-entry-summary p {
        height: auto;
        max-height: 125px;
    }

    .unv--actus-single .wp-show-posts-image.wpsp-image-left {
        width: 100%;
    }

    .unv--actus-single .wp-show-posts-image img {
        height: auto;
    }
}

@media (max-width:640px) {

    .unv--actus-list,
    .unv--actus-single {
        padding: 2rem 1rem;
    }
}

.unv--videos {
    background-color: var(--color-17);
    padding: 3rem;
    display: flex;
    justify-content: center;
}

.unv--actus.videos .mds--product-container {
    display: flex;
    justify-content: center;
}

/* .unv--videos .wp-block-embed {
    display: flex;
    justify-content: center;
} */

/* .unv--videos-container {
    display: flex;
    justify-content: center;
} */



/*****************************************************
 *       _                                      
 *      / \     _ __  _ __ ___  _ __   ___  ___ 
 *     / _ \   | '_ \| '__/ _ \| '_ \ / _ \/ __|
 *    / ___ \  | |_) | | | (_) | |_) | (_) \__ \
 *   /_/   \_\ | .__/|_|  \___/| .__/ \___/|___/
 *             |_|             |_|              
 *****************************************************/

.about--section-1 .tab {
    padding: 0 3rem;
    padding-top: 2rem;
}

.about--section-1 .descri {
    text-align: center;
    padding: 1rem 4rem;
    margin-bottom: 0;
}

.about--section-1 .mds--subtitle {
    margin: 2rem 0;
}

.about--section-1 .tabcontent {
    padding: 1.5rem 0;
}

.about--section-1 .mds--subtitle {
    margin-bottom: 0;
}

.about--section-1 .img-1 img,
.about--section-1 .img-2 img {
    width: 100%;
    object-fit: cover;
}

.about--section-1 .img-1 img {
    /* height: 510px; */
    height: 700px;
}

.about--section-1 .img-2 img {
    /* height: 255px; */
    height: 350px;
}

.about--container {
    padding: 1rem 4rem;
}

.about--container .about--title {
    color: var(--color-03);
    font-size: 3rem;
}

.about--section-2 .img-1,
.about--section-2 .img-2 {
    display: flex;
    justify-content: center;
}

.about--section-2 .img-1 {
    background-color: var(--color-06);
    padding: 1rem;
}

.about--section-2 .img-1 img,
.about--section-2 .img-2 img {
    width: 70%;
}

.about--section-2 .stat--container {
    background-color: var(--color-06);
}

.about--section-2 .stat-content {
    padding: 1rem 3rem;
}

.about--section-2 .stat-details {
    text-align: center;
    color: var(--color-02);
    background-color: #ffffff26;
    padding: 1rem;
}

.about--section-2 .stat-details p {
    margin-bottom: 0;
}

.about--section-3 {
    padding: 1rem 2rem;
}

.about--section-3 .client-container {
    box-shadow: 0px 0px 18px #00000029;
    padding: 1rem;
    margin: 1rem;
}

.about--section-3 .client-container img {
    width: 100%;
    height: 120px;
    object-fit: contain;
}

.about--section-3 .texto {
    text-align: center;
    text-transform: uppercase;
    font-weight: 700;
}

.about--section-3 .texto div:nth-child(1),
.about--section-3 .texto div:nth-child(3) {
    color: var(--color-06);
}

.about--section-3 .texto div:nth-child(2) {
    color: var(--color-03);
    font-weight: 900;
}

.about--section-3 .texto div:nth-child(1) {
    font-size: 9rem;
}

.about--section-3 .texto div:nth-child(2) {
    font-size: 2rem;
}

.about--section-3 .texto div:nth-child(3) {
    font-size: 5rem;
}

.about--section-4 .gallery {
    padding: 1rem 5rem;
}

.about--section-4 .gallery img {
    width: 100%;
    object-fit: cover;
}

.about--section-4 .gallery .img-1 img,
.about--section-4 .gallery .img-5 img {
    height: 205px;
}

.about--section-4 .gallery .img-2 img {
    height: 395px;
}

.about--section-4 .gallery .img-3 img {
    height: 420px;
    object-position: top;
}

.about--section-4 .gallery .img-4 img {
    height: 180px;
}

.about--section-4 .gallery .img-6 img {
    height: 395px;
}

.about--section-4 .gallery .img-6 {
    position: relative;
}

.about--section-4 .gallery .img-6 p {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) translateY(7px);
    width: 100%;
    background-color: #00000073;
    height: 55px;
    /* display: none; */
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-02);
    transition: var(--transition-2);
    cursor: pointer;
}

.about--section-4 .gallery .img-6 p:hover {
    background-color: #000000c7;
}

/* .about--section-4 .gallery .img-6:hover p {
    display: flex;
    justify-content: center;
    align-items: center;
} */


.about--section-4 .gallery-container {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

.about--section-4 .gallery-container img {
    width: 100%;
}

.about--section-4 .gallery-container .swiper {
    width: 100%;
    height: 100%;
}

.about--section-4 .gallery-container .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about--section-4 .gallery-container .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about--section-4 .gallery-container .swiper {
    width: 100%;
    height: 300px;
    margin-left: auto;
    margin-right: auto;
}

.about--section-4 .gallery-container .swiper-slide {
    background-size: cover;
    background-position: center;
}

.about--section-4 .gallery-container .myGallery2 {
    /* height: 80%; */
    height: 60vh;
    width: 100%;
    border: 1px solid #93939329;
    border-radius: 2px;
}

.about--section-4 .gallery-container .myGallery2 .swiper-slide img {
    object-fit: contain;
}

.about--section-4 .gallery-container .myGallery {
    /* height: 20%; */
    height: 25vh;
    box-sizing: border-box;
    padding: 10px 0;
}

.about--section-4 .gallery-container .myGallery .swiper-slide {
    width: 25%;
    height: 100%;
    opacity: 0.4;
}

.about--section-4 .gallery-container .myGallery .swiper-slide-thumb-active {
    opacity: 1;
}

.about--section-4 .gallery-container .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about--section-4 .gallery-container .swiper-button-next,
.about--section-4 .gallery-container .swiper-button-prev {
    border: 1px solid var(--color-02);
    color: var(--color-02);
    background-color: #00000036;
    backdrop-filter: blur(3px);
}

/*Dialog Styles*/
dialog {
    padding: 1rem 3rem;
    background: white;
    /* max-width: 400px; */
    padding-top: 2rem;
    border-radius: 4px;
    border: 0;
    box-shadow: 0 5px 30px 0 rgba(0, 0, 0, 0.1);
    width: 100%;
    height: 100%;
    margin: auto;
    animation: zoomIn 0.5s both;
}

dialog::-webkit-backdrop {
    background: rgba(255, 255, 255, 0.4);
    z-index: 2;
    backdrop-filter: blur(20px);
    animation: zoomIn 0.5s both;
}

dialog::backdrop {
    background: rgba(255, 255, 255, 0.4);
    z-index: 2;
    backdrop-filter: blur(20px);
    animation: zoomIn 0.5s both;
}

dialog .x {
    filter: grayscale(1);
    border: none;
    background: none;
    position: absolute;
    top: 15px;
    right: 10px;
    transition: ease filter, transform 0.3s;
    cursor: pointer;
    transform-origin: center;
}

dialog .x:hover {
    filter: grayscale(0);
    transform: scale(1.1);
}

dialog h2 {
    font-weight: 600;
    font-size: 2rem;
    padding-bottom: 1rem;
}

dialog p {
    font-size: 1rem;
    line-height: 1.3rem;
    padding: 0.5rem 0;
}

/* .zoomIn {
    animation-name: zoomIn;
    animation-duration: 1s;
    animation-fill-mode: both;
} */

@keyframes zoomIn {
    0% {
        opacity: 0;
        transform: scale3d(.3, .3, .3);
    }

    50% {
        opacity: 1;
    }
}

.about--section-5 .contact-info {
    margin: 3rem;
    padding: 2rem;
    box-shadow: 0px 0px 31px #00000029;
    position: relative;
    top: -30px;
    background: var(--color-02);
    font-weight: 600;
}

.about--section-5 .contact-info .logo {
    display: flex;
    justify-content: center;
}

.about--section-5 .contact-info .logo img {
    width: 280px;
}

.about--section-5 .contact-info .insigne {
    text-align: center;
    margin-top: 1rem;
}

.about--section-5 .contact-info .tel-content {
    display: flex;
    justify-content: center;
    margin: 1rem 6rem;
    margin-top: 3rem;
    padding: 0.8rem;
    border-radius: 3rem;
    box-shadow: 0px 0px 32px #00000029;
}

.about--section-5 .contact-info .tel-content div {
    display: flex;
    justify-content: center;
}

.about--section-5 .contact-info .tel-content div:nth-child(1) {
    margin-right: 3rem;
}

.about--section-5 .contact-info .tel-content a {
    color: var(--color-09);
    text-decoration: none;
    font-size: 25px;
    display: flex;
    align-items: center;
}

.about--section-5 .contact-info .tel-content a span.fa-stack {
    font-size: 1.5rem;
}

.about--section-5 .contact-info .tel-content a i {
    color: var(--color-02);
}

.about--section-5 .contact-info .tel-content a i.fas.fa-circle {
    color: var(--color-30);
}

.about--section-5 .contact-info .local-container {
    padding-top: 1.5rem;
}

.about--section-5 .contact-info .local-container .local-content {
    color: var(--color-09);
    text-align: center;
}

.about--section-5 .contact-info .local-container .local-content span.fa-stack {
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
}

.about--section-5 .contact-info .local-container .local-content i.fas.fa-circle {
    color: var(--color-03);
}

.about--section-6 {
    position: relative;
    top: -45px;
    display: grid;
    place-items: center;
    padding: 1rem;
}

.about--section-6 h3 {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.about--section-6 .logo-container {
    display: flex;
    align-items: center;
}

.about--section-6 .logo-container img {
    width: 85%;
}

@media (max-width:1200px) {
    .about--section-1 .img-1 img {
        height: 510px;
    }

    .about--section-1 .img-2 img {
        height: 255px;
    }
}

@media (max-width:991px) {
    /* .about--section-5 .contact-info .tel {
        float: left;
    } */

    .about--section-4 .gallery .img-1 img,
    .about--section-4 .gallery .img-2 img,
    .about--section-4 .gallery .img-3 img,
    .about--section-4 .gallery .img-4 img,
    .about--section-4 .gallery .img-5 img,
    .about--section-4 .gallery .img-6 img {
        height: 255px;
    }

    .about--section-5 .contact-info .tel-content {
        flex-direction: column;
        justify-content: center;
    }

    .about--section-5 .contact-info .tel-content div:nth-child(1) {
        margin-right: 0;
        margin-bottom: 1rem;
    }
}

@media (max-width:989px) {

    .about--section-2 .img-1 img,
    .about--section-2 .img-2 img {
        width: 100%;
    }

    .about--section-2 .img-1 {
        padding: 1rem 3rem;
    }
}

@media (max-width:750px) {
    .about--section-5 .contact-info .tel-content a {
        font-size: 20px;
    }

    .about--section-5 .contact-info .tel-content a span.fa-stack {
        font-size: 1.3rem;
    }
}

@media (max-width:640px) {

    .about--container {
        padding: 1rem;
    }

    .about--section-2 .img-1 {
        padding: 1rem;
    }

    .about--section-1 .descri {
        padding: 1rem;
    }

    .about--section-4 .gallery {
        padding: 1rem;
    }

    .about--section-3 {
        padding: 1rem;
    }

    .about--section-5 .contact-info {
        margin: 1rem;
    }
}

@media (max-width:600px) {
    .about--section-5 .contact-info .tel-content {
        margin: 1rem 1rem;
    }
}

@media (max-width:460px) {
    dialog {
        padding: 1rem 2rem;
    }

    .about--section-4 .gallery-container .myGallery {
        display: none;
    }

    .about--section-4 .gallery-container .myGallery2 {
        height: 80vh;
    }

    .about--section-5 .contact-info .tel-content {
        margin: 1rem 0;
    }
}

/**************************************
 *    _____           _               *
 *   |  ___|__   ___ | |_ ___ _ __    *
 *   | |_ / _ \ / _ \| __/ _ \ '__|   *
 *   |  _| (_) | (_) | ||  __/ |      *
 *   |_|  \___/ \___/ \__\___|_|      *
 *                                    *
 **************************************/
footer {
    background-color: var(--color-01);
    color: var(--color-02);
    /* position: absolute;
    bottom: 0;
    width: 100%; */
}

.mds--footer-container {
    padding: 6rem 1rem;
}

.mds--footer-row-1 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}

.mds--footer-row-2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
}

.mds--footer-col {
    margin: 0 1rem;
}

.mds--footer-title {
    display: block;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 1.3rem;
}

.mds--footer-container ul {
    padding: 0;
}

.mds--footer-icon {
    display: flex;
    flex-direction: row;
}

.mds--footer-icon li:not(:last-child) {
    margin-right: 1.3rem;
}

.mds--footer-link {
    text-decoration: none;
}

.mds--footer-link i {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 20px;
    color: #fff;
    transition: var(--transition-2);
}

.mds--footer-link .fas.fa-envelope {
    background-color: #ffc107;
}

.mds--footer-link .fab.fa-linkedin-in {
    background-color: #007ab9;
}

.mds--footer-link .fab.fa-facebook-f {
    background-color: #3a559f;
}

.mds--footer-link .fab.fa-whatsapp {
    background-color: #67d449;
}

.mds--footer-link:hover .fas.fa-envelope {
    background-color: #c39200;
}

.mds--footer-link:hover .fab.fa-linkedin-in {
    background-color: #005986;
}

.mds--footer-link:hover .fab.fa-facebook-f {
    background-color: #233565;
}

.mds--footer-link:hover .fab.fa-whatsapp {
    background-color: #479732;
}

.accordion {
    pointer-events: none;
}

.mds--footer-col .products {
    display: none;
}

@media(max-width:890px) {
    .mds--footer-row-1 {
        grid-template-columns: repeat(1, 1fr);
    }

    .mds--footer-row-2 {
        grid-template-columns: repeat(1, 1fr);
    }

    .mds--footer-row-2 .mds--footer-title {
        padding: 12px 0;
    }

    .mds--footer-title {
        margin-bottom: 0;
    }

    .mds--footer-icon {
        margin-top: 2rem;
    }

    .accordion {
        cursor: pointer;
        pointer-events: all;
        padding: 12px 0;
        transition: var(--transition-2);
    }

    .accordion:not(:last-child) {
        border-bottom: 1px solid #9393934f;
    }

    .panel {
        padding: 0 18px;
        display: none;
        overflow: hidden;
    }

    .mds--footer-col .products {
        display: block;
    }
}