@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    list-style: none;
    text-decoration: none;
    scroll-behavior: smooth;
}

:root {
    --main-color: #0059ff;
    --bg-color: #ffffff;
    --big-font: 4rem;
    --h2-font: 2.26rem;
    --p-font: 1.25rem;
    --nav-size: 16px;

    --text-color: #f2ecec;
    --text-color-nav: #f2ecec;

    --hover: #0059ff;
    --hover2: #0059ff;

    --navbar-color: rgb(251, 253, 253);

    --fa-style-family: "Font Awesome 6 Pro";
    --fa-style: 400;
    --fa-border-color: red;
    --fa-primary-color: green;
    --fa-secondary-color: red;
}

body {
    background: var(--bg-color);
    color: var(--text-color);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

section {
    position: relative;
    width: 100%;
    background: #f8f9fa;
    padding: 75px 13%;
    overflow: hidden;
}

.animation {
    animation: section_appear 1s;
    animation-delay: 600ms;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

@keyframes showus {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}

@keyframes section_appear {
    from {
        opacity: 0;
        transform: translateY(10%);
    }
    to {
        opacity: 1;
        transform: translateY(0%);
    }
}

/* --------------------- HEADER ------------------------ */

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    padding: 15px 7%;
    display: flex;
    z-index: 10;
    align-items: center;
    justify-content: space-between;
    transition: all 600ms ease;
}

header .logo {
    color: var(--text-color-nav);
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 3px;
    padding: 8px;
    margin-right: auto;
    font-family: 'Montserrat', sans-serif;
    transition: 400ms ease;
}

header .logo:hover {
    color:var(--hover);
}

header .navbar ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: inline-block;
    justify-content: flex-end;
}

header .navbar ul li {
    position: relative;
    float: left;
}

.navbar ul .left {
    position: relative;
    margin-right: auto;
}

header .navbar ul li a {
    color: var(--text-color-nav);
    font-size: var(--nav-size);
    padding: 17px;
    display: block;
    border-radius: 2px;
    transition: 400ms ease;
}

header .navbar ul li a:hover {
    color: rgb(64, 64, 64);
}

header .navbar ul li a i {
    color: white;
}

header .navbar ul li ul {
    position: absolute;
    left: 0;
    width: 350px;
    border-radius: 15px;
    background: rgb(255,255,255);
    display: none;
    padding: 2.5px 7.5px;
    box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.15);
    animation: showus 500ms ease-in-out;
}

.nav-dropdown {
    width: 100%;
    height: 75px;
    animation: showus 100ms ease-in-out;
}

.nav-dropdown:after {
    content: '';
    position: absolute;
    top: -15px;
    left: 30px;
    width: 0; 
    height: 0;
    z-index: 4; 
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 15px solid rgb(255, 255, 255);
    animation: showus 100ms ease-in-out;
}

.dropdown-child {
    position: relative;
    width: 300px;
    color: rgb(42, 42, 42);
    display: flex;
    padding: 10px 5px;
    margin: 0;
    border-radius: 10px;
    transition: 200ms ease;
}

.dropdown-child:hover {
    background: rgb(244, 242, 242);
}

.dropdown-child .left-drop {
    width: 21%;
    padding: 5px;
    display: flex;
    margin: auto;
}

.dropdown-child .left-drop img {
    position: relative;
    width: 28px;
    height: 28px;
}

.dropdown-child .right-drop {
    width: 79%;
    padding: 0;
    margin: 0;
}

#nav-reduced {
    width: 250px;
}

#nav-reduced .dropdown-child {
    width: 200px;
}

#nav-reduced .dropdown-child .right-drop {
    margin-left: 15px;
}

.dropdown-child .right-drop h1 {
    position: relative;
    font-size: 15px;
    font-weight: 900;
    color:rgb(21, 42, 70);
}

.dropdown-child .right-drop p {
    position: relative;
    font-size: 11px;
}

.dropdown-child:hover .right-drop h1{
    color:rgb(22, 76, 147);
}

#last a {
    margin-top: 9px;
    padding: 5px 17px;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 400;
    border: 2px solid rgb(255, 255, 255);
    color: rgb(255, 255, 255);
    box-shadow: 0 4px 20px 0 rgba( 34, 68, 123, 0.1 );
    transition: 400ms ease;
}

#last a:hover {
    transform: scale(1.02);
    background: rgb(255,255,255);
    color:rgb(35, 105, 255);
}

#last a:hover i {
    color:rgb(35, 105, 255);
}

#last i {
    color:rgb(255, 255, 255);
    margin-right: 3px;
}

/* NAVBAR DROPDOWN 2 */

.nav-dropdown2 {
    top: 0;
    left: 0;
    width: 100%;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 4px 20px 0 rgba( 34, 68, 123, 0.1 );
    animation: showus 100ms ease-in-out;
}

.nav-dropdown2:after {
    content: '';
    position: absolute;
    top: -15px;
    left: 30px;
    width: 0; 
    height: 0;
    z-index: 4; 
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 15px solid rgba(255,255,255,0.95);
    animation: showus 100ms ease-in-out;
}

.dropdown-child2 {
    position: relative;
    width: 100%;
    color: rgb(42, 42, 42);
    justify-content: center;
    display: flex;
    transition: 100ms ease;
}

.dropdown-child2 img {
    position: relative;
    width: 26px;
    height: 26px;
}

.nav-dropdown2 h1 {
    font-size: 16px;
    text-align: left;
    margin-top: 1px;
    margin-left: 7px;
    font-weight: 500;
}

header .navbar ul li ul a:hover {
    opacity: 0.8;
}

.nav-dropdown ul {
    left: 200px;
    top: 0;
}

header .navbar ul li:focus-within > ul,
header .navbar ul li:hover > ul {
    display: initial;
}

.hamburger {
    padding: 10px 10px;
    display: none;
    cursor: pointer;
    transition-property: opacity, filter;
    transition-duration: 0.15s;
    transition-timing-function: linear;
    font: inherit;
    color: inherit;
    text-transform: none;
    background-color: transparent;
    border: 0;
    margin: 0;
    overflow: visible; 
}
    
.hamburger:hover {
    opacity: 0.7;
}
    
.hamburger.is-active:hover {
    opacity: 0.7; 
}

.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
    background-color: var(--hover); 
}
  
.hamburger-box {
    width: 25px;
    height: 20px;
    display: inline-block;
    position: relative; 
}
  
.hamburger-inner {
    display: block;
    top: 50%;
    margin-top: -2px; 
}
    
.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
    width: 25px;
    height: 2.5px;
    background-color: rgb(255, 255, 255);
    border-radius: 4px;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.15s;
    transition-timing-function: ease; 
}
    
.hamburger-inner::before, .hamburger-inner::after {
    content: "";
    display: block; 
}
    
.hamburger-inner::before {
    top: -10px; 
}
    
.hamburger-inner::after {
    bottom: -10px; 
}

.hamburger--elastic .hamburger-inner {
    top: 2px;
    transition-duration: 0.275s;
    transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55); 
}

.hamburger--elastic .hamburger-inner::before {
    top: 10px;
    transition: opacity 0.125s 0.275s ease; 
}
    
.hamburger--elastic .hamburger-inner::after {
    top: 20px;
    transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55); 
}
  
.hamburger--elastic.is-active .hamburger-inner {
    transform: translate3d(0, 10px, 0) rotate(135deg);
    transition-delay: 0.075s; 
}
    
.hamburger--elastic.is-active .hamburger-inner::before {
    transition-delay: 0s;
    opacity: 0; 
}
    
.hamburger--elastic.is-active .hamburger-inner::after {
    transform: translate3d(0, -20px, 0) rotate(-270deg);
    transition-delay: 0.075s;
}

#menu-bar {
    display: none;
}

header label {
    cursor: pointer;
    display: none;
}

/* --------------------- SECTION: HOME ------------------------ */

.home {
    min-height: 100vh;
    background: #000;
    width: 100%;
}

.home video {
    position: fixed;
    top: 0;
    left: 0;
    opacity: .5;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-pause-button {
    position: absolute;
    bottom: 30px;
    right: 30px;
    border: none;
    background:rgb(0, 0, 0);
    cursor: pointer;
    z-index: 999;
    padding: 10px;
    transition: 0.2s ease-in-out;
}

.play-pause-button:hover {
    background:rgb(255, 255, 255);
}

.play-pause-button span {
    color: #fff;
    font-size: 15px;
    padding: 8px;
    transition: 400ms ease;
    transition: 0.2s ease-in-out;
}

.play-pause-button:hover span {
    color: rgb(0, 0, 0);
}

.video-carousel {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
  
.video-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}
  
.video-item:not(:first-child) {
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.home .text {
    position: absolute;
    width: 100%;
    bottom: 100px;
    -o-user-drag: none;
    -moz-user-drag: none; 
    -khtml-user-drag: none; 
    -webkit-user-drag: none;
}

.home .text h1 {
    position: relative;
    font-size: 76px;
    font-weight: 0;
    top: 20px;
    opacity: 0;
    -o-user-drag: none;
    -moz-user-drag: none; 
    -khtml-user-drag: none; 
    -webkit-user-drag: none; 
    font-family: 'Montserrat', sans-serif;
    animation: section_appear 1s;
    animation-delay: 1200ms;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

.home .text h2 {
    position: relative;
    margin-left: 5px;
    font-size: 34px;
    opacity: 0;
    -o-user-drag: none;
    -moz-user-drag: none; 
    -khtml-user-drag: none; 
    -webkit-user-drag: none;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    animation: section_appear 1s;
    animation-delay: 1600ms;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

#target-show-03 {
    display: none;
}

#target-show-04 {
    display: none;
}

/* --------------------- SECTION 02: COM DIGITAL ------------------------ */

.com-digitale {
    position: relative;
    background: rgb(241, 239, 239);
    min-height: 110vh;
    padding: 75px 8%;
}

.com-digitale .heading {
    position: relative;
    width: 100%;
    opacity: 0;
}

.com-digitale .heading h1 {
    font-size: 46px;
    font-weight: 600;
    text-align: center;
    letter-spacing: -1px;
    color:rgb(35, 35, 35);
    font-family: 'Poppins', sans-serif;
}

.com-digitale .heading p {
    font-size: 19.5px;
    color: #1269d4;
    line-height: 1.8;
    text-align: center;
    margin-top: 0.75rem;
}

.com-digitale .medias {
    position: relative;
    margin-top: 50px;
    display: grid;
    width: 100%;
    grid-template-columns: repeat(auto-fit, minmax(200px, auto));
    grid-gap: 2rem;
    margin: auto;
    opacity: 0;
    margin-top: 3rem;
}

.media-card {
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 20px;
    opacity: 0;
    width: 280px;
    height: 440px;

    animation: section_appear 1s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    transition: all 400ms ease;
}

.media-card .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    background: rgba(0, 102, 255, 0.1);
    transition: all 400ms ease;
}

.media-card h1 {
    color: #113d73;
    font-size: 18px;
    text-align: left;
    margin-left: 15px;
    letter-spacing: 1px;
    margin-top: 5px;
    font-family: 'Poppins';
}

.media-card p {
    color: #7f7f7f;
    font-size: 13.5px;
    margin-left: 15px;
    margin-top: 5px;
}

.media-card img {
    width: 100%;
    height: 70%;
    border-radius: 10px 10px 0 0;
    object-fit: cover;
    -o-user-drag: none; 
    -moz-user-drag: none; 
    -khtml-user-drag: none;
    -webkit-user-drag: none;
    transition: 400ms ease;
}

.media-card:hover img {
    height: 89%;
}

.media-card:hover .overlay {
    opacity: 1;
}

.media-card:hover {
    margin-top: -20px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

@media(max-width: 1300px) {
    .com-digitale .medias {
        grid-template-columns: repeat(3, 0fr);
        grid-gap: 40px;
        width: 800px;
        padding: 10px;
    }
}

@media(max-width: 1000px) {
    .com-digitale .medias {
        grid-template-columns: repeat(2, 0fr);
        grid-gap: 40px;
        width: 600px;
    }
}

@media(max-width: 700px) {
    .com-digitale .medias {
        grid-template-columns: repeat(1, 0fr);
        grid-gap: 40px;
        width: 440px;
    }

    .media-card { width: 440px; }
    .com-digitale .heading h1 { font-size: 42px; }
    .com-digitale .heading p { font-size: 18px; }
}

/* --------------------- SECTION 03: CE QUI NOUS REND UNIQUES ------------------------ */

.section-unique {
    position: relative;
    background-image:
    linear-gradient(to right, rgba(72, 70, 81, 0.52), rgba(12, 35, 78, 0.73)),
    url(../assets/arch/sections/02-unique/bg-02.webp);
    background-position: center;
    min-height: 30vh;
    padding: 70px 8%;
}

.section-unique .heading {
    position: relative;
    width: 100%;
    opacity: 0;
}

.section-unique .heading h1 {
    font-size: 49px;
    font-weight: 600;
    text-align: center;
    letter-spacing: -1px;
    margin-left: 1em;
    color:rgb(255, 255, 255);
    font-family: 'Poppins', sans-serif;
}

.section-unique .heading h1 span {
    color:#232323;
}


/* --------------------- SECTION 04: SOLUTIONS ------------------------ */

.section-solutions {
    position: relative;
    background: rgb(255, 255, 255);
    min-height: 110vh;
    padding: 70px 8%;
}

.section-solutions .heading {
    position: relative;
    width: 100%;
    opacity: 0;
}

.section-solutions .heading h1 {
    font-size: 50px;
    font-weight: 600;
    text-align: center;
    letter-spacing: -1px;
    color:rgb(35, 35, 35);
    font-family: 'Poppins', sans-serif;
}

.section-solutions .heading p {
    font-size: 19.5px;
    color: #1269d4;
    line-height: 1.8;
    text-align: center;
    margin-top: 0.75rem;
}

.section-solutions .heading p span {
    font-weight: bold;
}

.section-solutions .card-carousel {
    position: relative;
    overflow-x: scroll;
    white-space: nowrap;
    margin-top: 1.5rem;
    opacity: 0;
    padding: 20px;
}
  
.section-solutions .card-carousel .card {
    display: inline-block;
    width: 260px;
    height: 470px;
    margin-right: 20px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.075);
    background: rgba(255, 255, 255, 0.4);
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 300ms ease;
}

.section-solutions .card-carousel .card:nth-child(1):hover { box-shadow: 0px 4px 8px rgba(15, 144, 13, 0.3);}
.section-solutions .card-carousel .card:nth-child(2):hover { box-shadow: 0px 4px 8px rgba(177, 16, 16, 0.3);}
.section-solutions .card-carousel .card:nth-child(3):hover { box-shadow: 0px 4px 8px rgba(16, 113, 177, 0.3);}
.section-solutions .card-carousel .card:nth-child(4):hover { box-shadow: 0px 4px 8px rgba(177, 56, 16, 0.3);}
.section-solutions .card-carousel .card:nth-child(5):hover { box-shadow: 0px 4px 8px rgba(16, 113, 177, 0.3);}
.section-solutions .card-carousel .card:nth-child(6):hover { box-shadow: 0px 4px 8px rgba(227, 125, 7, 0.3);}
.section-solutions .card-carousel .card:nth-child(7):hover { box-shadow: 0px 4px 8px rgba(255, 0, 0, 0.3);}

.section-solutions .card-carousel .card img {
    width: 100%;
    height: 82.5%;
    object-fit: cover;
    -o-user-drag: none;
    -moz-user-drag: none; 
    -khtml-user-drag: none;
    -webkit-user-drag: none;
}

.section-solutions .card-carousel .card .mobile { display: none; }
.section-solutions .card-carousel .card .desktop { display: block; }

.section-solutions .card-carousel .card-text {
    padding: 10px;
    text-align: left;
    margin-left: 10px;
}
  
.section-solutions .card-carousel .card-text h3 {
    margin: 0;
    font-size: 18px;
    font-weight: bold;
    color: #113d73;
    letter-spacing: 1px;
    font-family: 'Poppins';
}
  
.section-solutions .card-carousel .card-text p {
    font-size: 14px;
    color: #666;
}

@keyframes interstice {
    0% {
        opacity: 1;
        transform: translateY(0px);
    }
    50% {
        opacity: 0;
        transform: translateY(15px);
    }
    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}

.inter-section {
    position: relative;
    width: 100%;
    height: 60px;
    background: #fff;
    margin-top: -30px;
    padding: 70px 13%;
}

.inter-section p {
    font-size: 18px;
    color: rgb(192, 192, 192);
    text-align: center;
    animation: 10000ms interstice;
    animation-iteration-count: infinite;
}

/* --------------------- SECTION 05: TIK TOK 02 ------------------------ */

.tiktok-02 {
    position: relative;
    background: rgb(255, 255, 255);
    min-height: 110vh;
    padding: 70px 0%;
    display: flex;
}

.tiktok-02 .text {
    width: 60%;
    height: 100%;
    opacity: 0;
    margin-top: 100px;
    margin-left: 50px;
}

.tiktok-02 .text h1 {
    font-size: 58px;
    font-weight: 600;
    margin-top: 1rem;
    text-align: center;
    letter-spacing: -1px;
    color:rgb(23, 23, 23);
    font-family: 'Poppins', sans-serif;
}

.tiktok-02 .text p {
    font-size: 19.5px;
    color: #1269d4;
    line-height: 1.8;
    text-align: center;
    margin: auto;
    margin-top: 0.75rem;
    width: 65%;
}

.tiktok-02 .text p span {
    font-weight: bold;
}

.tiktok-02 .medias {
    width: 40%;
    height: 100%;
}

.tiktok-02 .medias img {
    position: absolute;
    width: 218px;
    cursor: pointer;
    -webkit-filter: drop-shadow(8px 8px 8px rgba(0, 0, 0, 0.15));
    filter: drop-shadow(8px 8px 8px rgba(0, 0, 0, 0.15));
    transition: all 400ms ease;
}

.tiktok-02 .medias img:nth-child(1) { transform: rotate(-9deg); left: 10%; top: 10%; z-index: 3; }
.tiktok-02 .medias img:nth-child(1):hover { transform: scale(1.1) rotate(-3deg); }

.tiktok-02 .medias img:nth-child(2) { transform: rotate(3deg); left: 22%; top: 17%; z-index: 4; width:256px; }
.tiktok-02 .medias img:nth-child(2):hover { transform: scale(1.1) rotate(-3deg); }

.tiktok-02 .medias img:nth-child(3) { transform: rotate(0deg); left: 11.7%; top: 30%; width: 256px; z-index: 6; } /* SNAPCHAT */
.tiktok-02 .medias img:nth-child(3):hover { transform: scale(1.1) rotate(0deg); }

.tiktok-02 .medias img:nth-child(4) { transform: rotate(-7deg); left: 2%; top: 30%; width: 286px; z-index: 7; } /* TIKTOK */
.tiktok-02 .medias img:nth-child(4):hover { transform: scale(1.1) rotate(0deg); }

.tiktok-02 .medias img:nth-child(5) { transform: rotate(30deg); left: 20%; top: 37%; width: 256px; z-index: 5; } /* TWITTER */
.tiktok-02 .medias img:nth-child(5):hover { transform: scale(1.1) rotate(25deg); }

.tiktok-02 .medias img:nth-child(6) { transform: rotate(0deg); left: 23%; top: 11%; width: 64px; z-index: 2; } /* LINKEDIN */
.tiktok-02 .medias img:nth-child(6):hover { transform: scale(1.1) rotate(7deg); }

/* --------------------- SECTION 05B ------------------------ */

.section-05b {
    background: rgb(248, 248, 248);
    min-height: 80vh;
    padding: 70px 13%;
    margin-top: -10rem;
}

.section-05b .heading {
    position: relative;
    width: 100%;
    opacity: 0;
}

.section-05b .heading h1 {
    font-size: 50px;
    font-weight: 600;
    text-align: center;
    letter-spacing: -1px;
    color:rgb(15, 15, 15);
    font-family: 'Poppins', sans-serif;
}

.section-05b .heading p {
    font-size: 19.5px;
    color: #1269d4;
    line-height: 1.8;
    text-align: center;
    margin-top: 0.75rem;
}

.section-05b .heading p span {
    font-weight: bold;
}

.site-container {
    margin: 2rem auto;
    opacity: 0;
    max-width: calc(100% - 80px);
}

.article-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, auto));
    grid-gap: 3rem;
    margin-top: 4rem;
}

.article-card {
    background: rgb(255, 255, 255);
    border-radius: 20px;
    transition: 0.3s;
}

.article-card:hover {
    box-shadow: 0 4px 20px 0 rgba( 34, 68, 123, 0.2 );
    cursor: pointer;
}

.article-image {
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: 100%;
    border-radius: 20px 20px 0 0;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
}

.article-content {
    padding: 0 1.5rem 1rem 1.5rem;
}

.article-content .card-category {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    color: #6b82a7;
    display: block;
    margin-top: 25px;
    text-decoration: none;
}

.article-content .card-title {
    margin: 1.25rem 0;
    color: #22447b;
}

.article-content .card-excerpt {
    font-size: .95rem;
    line-height: 1.5rem;
    color: #6b82a7;
    margin-top: -10px;
}

.article-content p span {
    font-weight: bold;
}

@media screen and (min-width: 768px) {
    .site-container {
        max-width: 608px;
    }

    .article-card {
        display: grid;
        grid-template-rows: 220px 1fr;
    }
}

@media screen and (min-width: 1280px) {
    .site-container {
        max-width: 1156px;
    }
}

/* ---------------- CTA -------------- */

.take-rdv {
    position: relative;
    background: rgb(248, 248, 248);
    min-height: 110vh;
    padding: 0px 0% 0rem 0%;
}

.bubble {
    width: 70%;
    padding: 40px 50px 40px 60px;
    opacity: 0;
    display: flex;
    background: rgb(57, 119, 255);
    border-radius: 40px;
    margin: 1rem auto;
}

.bubble .left-side {
    width: 70%;
}

.bubble .left-side h1 {
    font-size: 52px;
    color: #ffffff;
    line-height: 55px;
}

.bubble .left-side p {
    font-size: 20px;
    margin-top: 1.35rem;
    color: rgb(255, 255, 255);
}

.bubble .left-side a {
    background: #fff;
    padding: 17.5px;
    display: block;
    width: 210px;
    border-radius: 20px;
    font-weight: 600;
    margin-top: 1.5rem;
    color: rgb(57, 119, 255);
    transition: 400ms ease;
}

.bubble .left-side a:hover {
    transform: scale(1.02);
}

.bubble img {
    position: absolute;
    max-width: 40%;
    height: auto;
    right: -7%;
    top: -3%;
    object-fit: cover;
    -o-user-drag: none; 
    -moz-user-drag: none; 
    -khtml-user-drag: none;
    -webkit-user-drag: none;
    transition: 400ms ease;
}

.bubble img:hover {
    transform: scale(1.02);
}

@media(max-width: 991px) {
    .bubble img {
        top: 20%;
    }
}

@media(max-width: 768px) {
    .bubble {
        width: 85%;
        padding: 30px;
        margin: 3rem auto;
    }
    
    .bubble img { display: none; }
    .bubble .left-side {
        width: 100%;
        text-align: center;
    }

    .bubble .left-side h1 {
        font-size: 38px;
    }

    .bubble .left-side a {
        display: block;
        width: auto;
    }
}

@media(max-width: 440px) {
    .bubble {
        /* haut | droit | bas | gauche */
        padding: 20px 20px 20px 20px;
    }

    .bubble .left-side h1 {
        font-size: 32px;
        line-height: unset;
    }

    .bubble .left-side h1 br {
        display: none;
    }

    .bubble .left-side p {
        font-size: 16px;
    }
}

/*----------------- FOOTER -----------------*/

footer {
    position: relative;
    height: auto;
    padding: 50px 100px;
    background: #0a0a0a;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

footer .contain {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    flex-direction: row;
}

footer .contain .sec {
    margin-right: 30px;
}

footer .contain .sec.aboutus {
    width:  40%;
}

footer .contain h2 {
    position: relative;
    color: #fff;
    font-weight: 500;
    margin-bottom: 15px;
}

footer .contain h2:before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 2px;
    background: #0072ff;
}

footer p {
    color: #999;
}

.sci {
    margin-top: 20px;
    display: flex;
}

.sci li {
    list-style: none;
}

.sci li a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #222;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
    text-decoration: none;
    border-radius: 4px;
}

.sci li a:hover {
    background: #0072ff;
}

.sci li a .fab {
    color: #fff;
    font-size: 20px;
}

.quickLinks {
    position: relative;
    width: 25%;
}

.quickLinks ul li {
    list-style: none;
}

.quickLinks ul li a {
    color: #999;
    text-decoration: none;
    margin-bottom: 10px;
    display: inline-block;
}

.quickLinks ul li a:hover {
    color: #fff;
}

.contact {
    width: calc(35% - 60px);
    margin-right: 0 !important;
}

.contact .info {
    position: relative;
}

.contact .info li {
    display: flex;
    margin-bottom: 16px;
}

.contact .info li span:nth-child(1) {
    color: #fff;
    font-size: 20px;
    margin-right: 10px;
}

.contact .info li span {
    color: #999;
}

.contact .info li a {
    color: #999;
    text-decoration: none;
}

.contact .info li a:hover {
    color: #fff;
}

.copyright {
    width: 100%;
    margin-left: auto;
    text-align: center;
}

.copyright img {
    width: 38px;
    border-radius: 20px;
    margin-top: 3rem;
    margin-bottom: -1rem;
    -o-user-drag: none; 
    -moz-user-drag: none; 
    -khtml-user-drag: none;
    -webkit-user-drag: none;
    transition: 500ms ease;
}

.copyright img:hover {
    transform: scale(1.03);
}

.copyright p {
    color: rgb(206, 206, 206);
    margin-top: -4rem;
    font-weight: 600;
}

@media(max-width: 991px) {
    header {
        padding: 20px;
    }

    header .navbar {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgb(255,255,255);
        border-top: 1px solid rgba(0,0,0,0.2);
        display: none;
    }

    header .navbar ul li {
        width: 100%;
        padding: 0;
        margin: 0;
    }

    header .navbar ul li ul {
        position: relative;
        width: 100%;
        padding: 0;
        margin: 0;
    }

    header .navbar ul li a {
        color:rgb(0, 0, 0);
    }

    header .navbar ul li a i {
        color: #000;
    }

    header .navbar ul li ul li {
        background: #eee;
        padding: 0;
        margin: 0;
    }

    header .navbar ul li ul li ul {
        width: 100%;
        left: 0;
    }

    header label {
        display: initial;
    }

    .hamburger {
        display: inline-block;
    }

    #menu-bar:checked ~ .navbar {
        display: initial;
    }

    .home .text h1 {
        font-size: 32px;
    }

    .home .text h2 {
        margin-left: 0px;
        font-size: 20px;
        margin-top: 10px;
    }

    #target-show-01,
    #target-show-02 {
        display: none;
    }

    #target-show-03 {
        display: block;
        font-size: 72px;
        top: -10px;
    }

    #target-show-04 {
        display: block;
        font-size: 42px;
        top: -42.5px;
        margin-left: 1.5px;
    }

    #last a {
        background: none;
        color: #ffffff;
        margin-bottom: 10px;
        margin-left: 10px;
        padding: 10px;
        display: block;
        width: 160px;
        background: #000;
    }
    
    #last i {
        color:rgb(255, 255, 255);
        padding-left: 10px;
    }
}

@media screen and (max-width: 768px) {
    footer {
        padding: 40px;
    }

    footer .contain {
        flex-direction: column;
    }

    footer .contain .sec {
        margin-right: 0;
        margin-bottom: 40px;
    }

    footer .contain .sec.aboutus,
    .quickLinks,
    .contact 
    {
        width: 100%;
    }

    .copyrightText {
        padding: 8px 40px;
    }
}

@media(max-width: 440px) {
    .home .text { width: 100%; }
    #target-show-03 { display: block; font-size: 48px; top: -10px; }
    #target-show-04 { display: block; font-size: 28px; top: -32.5px; margin-left: 1.5px; }

    .media-card { width: 340px; }
    .com-digitale .heading { margin: 0; }
    .com-digitale .heading h1 { font-size: 31px; }
    .com-digitale .heading p { font-size: 14px; }
    .com-digitale .medias .media-card { width: 300px; }
    .com-digitale .medias { grid-template-columns: repeat(1, 0fr); grid-gap: 40px; width: 320px; }

    .section-unique { min-height: auto; max-height: 20vh; }
    .section-unique .heading h1 { font-size: 28px; margin: -2.5rem auto; }

    .inter-section p { font-size: 14px; }
    .section-solutions .heading h1 { font-size: 33px; }
    .section-solutions .heading p { font-size: 14px; }
    .section-solutions .card-carousel .card .mobile { display: block; }
    .section-solutions .card-carousel .card .desktop { display: none; }

    .section-05b .heading h1 { font-size: 36px; }
    .section-05b .heading p { font-size: 15px; }

    .tiktok-02 { display: flex; flex-wrap: wrap; flex-direction: column; }
    .tiktok-02 .text { order: 1; margin: 0; width: 100%; }
    .tiktok-02 .text h1 { font-size: 42px; }
    .tiktok-02 .text p { font-size: 14px; }
    .tiktok-02 .medias { position: absolute; order: 2; width: 100%; top: 35%; }
    .tiktok-02 .medias img { position: absolute; }
    .tiktok-02 .medias img:nth-child(1) { width: 102px; left: 17%; top: 7.5%; }
    .tiktok-02 .medias img:nth-child(2) { width: 126px; left: 27.5%; top: 17%; z-index: 4; }
    .tiktok-02 .medias img:nth-child(3) { width: 110px; left: 48%; top: 9%; z-index: 3; }
    .tiktok-02 .medias img:nth-child(4) { width: 86px; left: 58%; top: 15%; }
    .tiktok-02 .medias img:nth-child(5) { width: 102px; left: 57%; top: 18%; transform: rotate(10deg); z-index: 3; }
    .tiktok-02 .medias img:nth-child(6) { width: 48px; left: 42%; top: 12%; transform: rotate(10deg); z-index: 3; }
    .site-container { max-width: 400px; margin-right: auto; }
}