/* Poppins font */

@font-face {
    font-family: Poppins;
    src: url("../../fonts/poppins/Poppins-ExtraLight.ttf") format("opentype");
    font-weight: 100;
}

@font-face {
    font-family: Poppins;
    src: url("../../fonts/poppins/Poppins-Regular.ttf") format("opentype");
    font-weight: 300;
}

@font-face {
    font-family: Poppins;
    src: url("../../fonts/poppins/Poppins-Italic.ttf") format("opentype");
    font-weight: 400;
    font-style: italic;
}

@font-face {
    font-family: Poppins;
    src: url("../../fonts/poppins/Poppins-Bold.ttf") format("opentype");
    font-weight: 700;
}

.light-blue {
    color: rgba(6, 158, 170, 1);
}

.ital {
    font-style: italic;
}

.dashed-top-border {
    border-top: 1px dashed #d4e5e7;
    padding-top: 11px;
}

.hidden {
    display: none !important;
}

.hov-disabled {
    pointer-events: none;
}

* {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: #004247;
}

body {
    min-height: 100vh;
    background: linear-gradient(
            115deg,
            rgba(255, 255, 255, 1) 0%,
            rgba(224, 241, 244, 1) 30%,
            rgba(217, 238, 241, 1) 35%,
            rgba(4, 158, 170, 1) 50%
    );
}

header {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

/* Navbar */
/* Navbar containers */
.navbar-container {
    width: 100%;
    height: 58px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin: 30px 0px 30px 0px;
    padding: 0 10px 0 72px;
    max-width: 1600px;
}

.navbar-left-container,
.navbar-right-container {
    height: 100%;
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: center;
}

.navbar-left-desktop,
.navbar-right-desktop {
    height: 100%;
    display: flex;
    flex-direction: row;
}

.navbar-right-desktop {
    gap: 10px;
}

.navbar-right-mobile {
    height: 100%;
    display: none;
    /* mod-01 / 11-05 */
    gap: 20px;
    align-items: center;
}

/* Navbar images */
.navbar-logo {
    width: 218px;
    height: 46px;
    margin-right: 16px;
}

.navbar-logo-mobile {
    display: none;
}

/* Navbar buttons*/
.navbar-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 90%;
    padding: 0 16px;
    font-weight: 600;
    font-size: 12px;
    line-height: 22px;
    color: #0c575d!important;
    border-radius: 7px;
}

.signup-btn {
    padding: 0 32px;
    background: #ffffff;
}

.navbar-btn:hover {
    background: linear-gradient(90deg, #014247 0%, #069eaa 100%)!important;
    color: white!important;
    text-decoration: none!important;
}

.navbar-btn:hover .fa-angle-down  {
    color: white;
}

.navbar-right-profile {
    padding: 0px 20px;
    height: 100%;
    display: flex;
    align-items: center;
    background: white;
    border-radius: 7px;
}

.nav-user-panel {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.nav-user-panel-picture {
    width: 38px;
    border-radius: 28px;
}

.nav-user-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 36px;
}

.user-name {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 600;
    font-size: 11px;
    color: #1f1f1f;
    margin: 0;
}

.user-mail {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 300;
    font-size: 8px;
    line-height: 16px;
    color: #5e6e78;
    margin: 0;
}

/* Profile Dropdown */

.profile-dropdown-menu,
.profile-dropdown-menu-mobile {
    top: 50px;
    left: -10px;
    position: absolute;
    display: none;
    width: 188px;
    min-height: 80px;
    gap: 20px;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    padding: 20px 20px;
    border: 1px solid #069eaa;
    box-shadow: 0px 19px 25px rgba(1, 66, 71, 0.29);
    border-radius: 10px;
    z-index: 3;
    background-color: white;
}

.profile-dropdown-menu span,
.profile-dropdown-menu-mobile span {
    font-family: "Poppins";
    font-weight: 600;
    font-size: 11px;
    color: #014247;
}

.profile-dropdown-bottom-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 7px;
}

.profile-dropdown-bottom-container img {
    width: 11px;
    height: 12px;
}

/* Body */
.main-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    overflow-x: hidden;
}

/* MNC-HOME PAGE */

/* Body first-container */
.first-container {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1600px;
    height: 482px;
    margin-bottom: 110px;
}

.first-container-left,
.first-container-right {
    display: flex;
    flex-direction: column;
    height: 100%;
    gap: 27px;
}

.first-container-bg {
    position: absolute;
    height: 378px;
    width: 666px;
    bottom: 0%;
    left: 42%;
}

/* Body first-container-left */
.first-container-left {
    height: auto;
    width: 60%;
    top: 52px;
    position: absolute;
    left: -100%;
    animation: slide-in-right 1s forwards;
}

@keyframes slide-in-right {
    from {
        left: -100%;
    }
    to {
        left: 72px;
    }
}

.first-container-left-h1,
.first-container-left-h1 span {
    font-weight: 500;
    font-size: 40px;
    line-height: 43px;
}

.first-container-left-h1 span {
    font-weight: 900;
}

.first-container-left-p,
.first-container-left-p span {
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    color: #000000;
}

.first-container-left-p span {
    font-weight: 700;
}

.first-container-left-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 220px;
    height: 48px;
    background: linear-gradient(90deg, #014247 0%, #069eaa 100%);
    border-radius: 7px;
    color: white;
    font-weight: 700;
    font-size: 13px;
    line-height: 24px;
    margin-top: -15px;
}

.white-hov:hover {
    background: white;
    color: #014247 !important;
    text-decoration: none;
    border: 1px solid #014247;
}

.white-hov:hover i {
    text-decoration: none;
    color: #014247 !important;
}

/* Body first-container-right */

.dashboard-mockup {
    position: absolute;
    width: 638px;
    height: 460px;
    right: -100%;
    animation: slide-in-left2 2s forwards;
}

.mac-mockup {
    position: absolute;
    width: 474px;
    height: 286px;
    right: -100%;
    bottom: 0;
    animation: slide-in-left 1s forwards;
}

@keyframes slide-in-left {
    from {
        right: -100%;
    }
    to {
        right: 20%;
    }
}

@keyframes slide-in-left2 {
    from {
        right: -100%;
    }
    to {
        right: 0px;
    }
}

/* Body second-container */
.second-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 950px;
    background: #ffffff;
    border-radius: 245px 245px 0px 0px;
    position: relative;
}

/* Body second-container-absolute */
.second-container-absolute {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    left: calc(50% - 502px);
    top: calc(0% - 56px);
    width: 1000px;
    height: 130px;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 0 6px rgba(1, 66, 71, 0.5);
}

.second-container-absolute-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    width: 50%;
    height: 100%;
    padding-left: 67px;
}

.second-container-absolute-left-h1 {
    font-weight: 900;
    font-size: 24px;
    line-height: 24px;
}

.second-container-absolute-left-p {
    font-weight: 700;
    font-size: 24px;
    line-height: 28px;
}

.second-container-absolute-left-p span {
    font-weight: 900;
    font-size: 28px;
    line-height: 28px;
    background-image: linear-gradient(90.06deg, #049eaa 35%, #014247 58.32%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.second-container-absolute-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 50%;
    height: 100%;
    gap: 4px;
}

.second-container-absolute-right-title {
    font-weight: 300;
    font-size: 8px;
    line-height: 14px;
    letter-spacing: 0.8em;
    text-transform: uppercase;
    color: #049eaa;
}

.second-container-absolute-right-slider {
    width: 100%;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.second-container-absolute-right-slide-track {
    display: flex;
    animation: scrolling 10s linear infinite;
}

.second-container-absolute-right-slider::after,
.second-container-absolute-right-slider::before {
    position: absolute;
    top: 0;
    width: 48px;
    height: 100%;
    content: "";
    z-index: 1;
}

.second-container-absolute-right-slider::after {
    right: 0;
    background: linear-gradient(to left, #ffffff 0%, transparent 100%);
}

.second-container-absolute-right-slider::before {
    left: -4px;
    background: linear-gradient(to right, #ffffff 0%, transparent 100%);
}

.second-container-absolute-right-slide {
    display: flex;
    justify-content: end;
    align-items: center;
    width: 130px;
    padding: 0px 15px;
}

.second-container-absolute-right-slide img {
    max-height: 42px;
    max-width: 67px;
}

/* Body second-container-top */
.second-container-top {
    margin: 40px 0px 32px 0px;
}

.second-container-top-h1 {
    font-weight: 500;
    font-size: 40px;
    line-height: 24px;
    text-align: center;
    color: #014247;
    margin-bottom: 32px;
}

.second-container-top-h1 span {
    font-weight: 700;
    font-size: 40px;
    line-height: 24px;
    color: #014247;
}

.second-container-top-p1,
.second-container-top-link,
.second-container-top-p1 {
    text-align: center;
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    text-align: center;
    color: #000000;
}

.second-container-top-p1 span,
.second-container-top-link,
.second-container-top-p1 span {
    font-weight: 700;
}

.second-container-top-p1 {
    margin-bottom: 9px;
}

.second-container-top-link {
    color: rgba(4, 158, 170, 1);
}

/* Body second-container-bot */
.second-container-bot {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 364px;
    gap: 104px;
    margin-bottom: 64px;
}

.second-container-bot-line {
    position: absolute;
    background: #014247;
    width: 100%;
    height: 1px;
    bottom: 62px;
}

.second-container-bot-elem-container {
    position: relative;
    width: 194px;
    height: 280px;
}

.second-container-bot-elem {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(5px);
    z-index: 1;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: start;
    align-items: start;
    padding: 32px 24px;
    border: 1px solid #049eaa;
}

.second-container-bot-elem-number {
    position: absolute;
    left: -48px;
    bottom: 113px;
    font-weight: 900;
    font-size: 200px;
    line-height: 24px;
    text-align: center;
    z-index: 0;
    color: rgba(212, 229, 231, 1);
}

.elem-number2 {
    left: -72px;
    bottom: 111px;
}

.elem-number3 {
    left: -96px;
}

.elem-number4 {
    left: -104px;
}

.second-container-bot-elem-circle {
    position: absolute;
    left: -16px;
    bottom: 40px;
    width: 30px;
    height: 30px;
    border-radius: 50px;
    z-index: 0;
    background: #ffffff;
    border: 1px solid #014247;
}

.second-container-bot-elem img {
    height: 40px;
}

.second-container-bot-elem-title {
    font-weight: 700;
    font-size: 20px;
    line-height: 20px;
    color: #004247;
}

.second-container-bot-elem-p {
    font-weight: 400;
    font-size: 11px;
    line-height: 14px;
    color: #000000;
}

.second-container-bot-elem-container.active .second-container-bot-elem-number {
    color: #049eaa;
}

.second-container-bot-elem-container.active .second-container-bot-elem {
    bottom: 16px;
    border: 5px solid #014247;
    box-shadow: 0px 10px 20px rgba(1, 66, 71, 0.5);
}

.second-container-bot-pagination {
    display: none;
    flex-direction: row;
    gap: 4px;
    height: 6px;
}

.second-container-bot-pagination-elem {
    background: #d4e5e6;
    border-radius: 5px;
    width: 22px;
}

.second-container-bot-pagination-elem.active {
    background: #049eaa;
    width: 64px;
}

/* Third container */
.third-container {
    width: 100%;
    height: 568px;
    background: #014247;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    overflow-x: hidden;
    position: relative;
}

.third-container-bg {
    height: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
}

.third-container-top {
    color: white;
    font-weight: 400;
    font-size: 40px;
    line-height: 43px;
    text-align: center;
    padding: 64px 0px;
    z-index: 1;
}

.third-container-top span {
    color: white;
    font-weight: 700;
    font-size: 40px;
    line-height: 43px;
    text-align: center;
}

.third-container-bot {
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 100%;
    padding: 0px 72px;
    position: relative;
}

.third-container-bot-subcontainer {
    display: flex;
    flex-direction: row;
    width: 100%;
    max-width: 1600px;
}

.third-container-bot-left {
    width: 400px;
    display: flex;
    flex-direction: column;
    font-weight: 600;
    font-size: 20px;
    line-height: 20px;
    text-align: center;
    color: #049eaa;
    margin-right: 160px;
}

.third-container-bot-left-title {
    font-weight: 600;
    font-size: 20px;
    line-height: 20px;
    text-align: start;
    color: #049eaa;
    margin: 24px 0px;
}

.third-container-bot-left-elem {
    display: flex;
    gap: 24px;
    margin-bottom: 17px;
    cursor: pointer;
}

.third-container-bot-left-elem span {
    font-weight: 700;
    font-size: 32px;
    line-height: 24px;
    color: #ffffff;
    opacity: 0.35;
}

.third-container-bot-left-elem img {
    display: none;
}

.third-container-bot-left-elem.active span {
    opacity: 1;
}

.third-container-bot-left-elem.active img {
    display: block;
}

.third-container-bot-right {
    height: 290px;
    width: 600px;
    display: flex;
    flex-direction: row;
    position: absolute;
    left: calc(50% - 145px);
}

.third-container-bot-right-elem {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    width: 600px;
    height: 290px;
    right: calc(-50vw + 145px);
}

.third-container-bot-right-elem.active {
    animation: third-container-slide-left 1s forwards;
}

@keyframes third-container-slide-left {
    from {
        right: calc(-50vw + 145px);
    }
    to {
        right: 0px;
    }
}

.third-container-bot-right-elem.next {
    position: absolute;
    top: 0;
    opacity: 0.5;
    transition: all 1s ease-in-out;
}

.third-container-bot-right-elem.last {
    position: absolute;
    top: 0;
    opacity: 0;
}

.third-container-bot-right-elem-card-title {
    font-weight: 100;
    font-size: 8px;
    line-height: 14px;
    letter-spacing: 0.8em;
    text-transform: uppercase;
    color: #ffffff;
    margin: 0px 26px;
}

.third-container-bot-right-elem-card {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    width: 100%;
    height: 275px;
    background: #ffffff;
    border-radius: 15px;
    padding: 40px 26px;
    gap: 10px;
}

.third-container-bot-right-elem-card-title-mobile {
    display: none;
}

.third-container-bot-right-elem-card-li {
    height: 18px;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: start;
    gap: 8px;
}

.elem-card-li-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #049eaa;
}

.elem-card-li-txt {
    font-weight: 400;
    font-size: 11px !important;
    line-height: 14px !important;
    color: #000000 !important;
    width: 95%;
}

.elem-card-li-txt span {
    font-weight: 700;
    font-size: 11px !important;
    line-height: 14px !important;
    color: #000000 !important;
}

.elem-card-btn-container {
    width: 100%;
    height: 48px;
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
    gap: 4px;
    margin-top: 44px;
}

.elem-card-btn {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px 44px;
    background: linear-gradient(90deg, #014247 0%, #069eaa 100%);
    border-radius: 7px;
    font-weight: 700;
    font-size: 13px;
    line-height: 24px;
    color: #ffffff;
}

/* Fourth Container */
.bottom-wrapper {
    width: 100%;
    background: #e6f4f6;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    overflow-x: hidden;
}

.fourth-container {
    width: calc(100% - 152px);
    max-width: 1600px;
    height: 564px;
    display: flex;
    flex-direction: row;
    padding: 80px 0px;
    margin: 0px 76px;
    gap: 80px;
    overflow-x: hidden;
}

.fourth-container-left,
.fourth-container-right {
    transition: transform 0.5s ease-out;
}

.fourth-container-left.off-screen {
    transform: translateX(-200%);
}

.fourth-container-right.off-screen {
    transform: translateX(200%);
}

.fourth-container-left img {
    width: 540px;
    height: 402px;
    border-radius: 15px;
}

.fourth-container-right {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
}

.fourth-container-right-title {
    display: flex;
    flex-direction: row;
    justify-content: start;
    gap: 24px;
    font-weight: 500;
    font-size: 40px;
    line-height: 24px;
    margin-bottom: 16px;
}

.fourth-container-right-title span {
    font-weight: 700;
    font-size: 40px;
    line-height: 24px;
}

.fourth-container-right-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.fourth-container-right-list-elem {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.right-list-p {
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
}

.fourth-container-right-list-elem-h1 {
    display: flex;
    flex-direction: row;
    gap: 8px;
    align-items: center;
}

.right-list-h1 {
    font-weight: 700;
    font-size: 20px;
    line-height: 17px;
}

.fourth-container-right-btn {
    height: 48px;
    width: 220px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px 44px;
    background: linear-gradient(90deg, #014247 0%, #069eaa 100%);
    border-radius: 7px;
    font-weight: 700;
    font-size: 13px;
    line-height: 24px;
    color: #ffffff !important;
}

/* fifth container */
.fifth-container {
    max-width: 1600px;
    width: calc(100% - 152px);
    height: 240px;
    background-image: url("../../images/home-fifth-container-bg.png");
    background-size: cover;
    border-radius: 15px;
    padding: 51px 0px;
    margin: 0px 76px;
    gap: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.fifth-container-top {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 16px;
}

.fifth-container-top-separator {
    width: 0px;
    height: 7.6px;
    border: 1px solid #049eaa;
}

.fifth-container-mid {
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    text-align: center;
    color: #ffffff;
}

.fifth-container-btn {
    width: 200px;
    height: 48px;
    color: white;
    background: #049eaa;
    border-radius: 7px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 12px;
    line-height: 24px;
}

/* sixth-container */

.sixth-container {
    height: 496px;
    width: 848px;
    display: flex;
    flex-direction: column;
    margin: 80px 0px;
    gap: 48px;
}

.sixth-container-title {
    font-weight: 400;
    font-size: 40px;
    line-height: 43px;
    text-align: start;
}

.sixth-container-title span {
    font-weight: 700;
    font-size: 40px;
    line-height: 43px;
}

.sixth-container-bot {
    display: flex;
    flex-direction: row;
    gap: 64px;
}

.sixth-container-bot-left {
    position: relative;
    width: 424px;
    height: 323px;
}

.sixth-container-photo1 {
    position: absolute;
    border-radius: 15px;
    width: 262px;
    height: 262px;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.sixth-container-photo2 {
    position: absolute;
    border-radius: 15px;
    width: 176px;
    height: 176px;
    top: 0;
    left: 0;
}

.sixth-container-logo1 {
    position: absolute;
    width: 120px;
    height: 68px;
    right: -24px;
    bottom: -24px;
}

.sixth-container-logo2 {
    position: absolute;
    width: 60px;
    height: 34px;
    top: 160px;
    left: 136px;
}

.sixth-container-white-square {
    position: absolute;
    width: 114px;
    height: 114px;
    left: 88px;
    bottom: 80px;
    background: #ffffff;
    border-radius: 15px;
}

.sixth-container-blue-square {
    position: absolute;
    width: 68px;
    height: 68px;
    right: -40px;
    top: 20px;
    border: 1px solid #004247;
    border-radius: 15px;
}

.sixth-container-bot-right {
    width: 363px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.sixth-container-bot-right-list {
    width: 100%;
    height: 323px;
}

.sixth-container-bot-right-list-elem {
    width: 100%;
    height: 100%;
    background: #ffffff;
    border-radius: 15px;
    display: none;
    opacity: 0;
    flex-direction: column;
    justify-content: center;
    padding: 86px 59px 86px 24px;
}

.sixth-container-bot-right-list-elem.active {
    opacity: 1;
    display: flex;
}

.sixth-container-bot-right-list-elem-review .fas.fa-star {
    color: #049eaa !important;
    font-size: 10px !important;
}

.sixth-container-bot-right-list-elem-h1 {
    font-weight: 700;
    font-size: 14px;
    line-height: 14px;
    margin-top: 4px;
}

.sixth-container-bot-right-list-elem-h2 {
    font-weight: 400;
    font-size: 11px;
    line-height: 16px;
    color: #049eaa;
    margin-bottom: 12px;
}

.sixth-container-bot-right-list-elem-p {
    font-weight: 400;
    font-size: 11px;
    line-height: 14px;
    color: #000000;
}

.sixth-container-bot-right-pagination {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 11px;
}

.sixth-container-bot-right-pagination img {
    width: 22px;
    height: 13px;
}

.sixth-container-bot-right-pagination .reversed {
    transform: rotate(180deg);
}

.sixth-container-bot-right-pagination-numbers {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.sixth-container-bot-right-pagination-numbers span {
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
}

/* MNC-OFFRE PAGE */

.offre-body {
    min-height: 100vh;
    background: radial-gradient(
            104.64% 177.43% at 108.65% 116.17%,
            #049eaa 1.04%,
            #a8dbe1 36.35%,
            #d9eef1 58.59%,
            #d9eef1 66.75%,
            #e0f1f4 81.81%,
            #ffffff 100%
    );
}

.concept-body {
    min-height: 100vh;
    background: linear-gradient(217deg, #D9EEF1 0%, #ffffff 30%, #ffffff 50%, #D9EEF1 100%)
}

.blog-body {
    min-height: 100vh;
    background: linear-gradient(217deg, #D9EEF1 0%, #ffffff 68%, #ffffff 50%, #D9EEF1 100%);}

.offre-first-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 30px 72px 30px;
}

.offre-first-container-h1 {
    font-weight: 500;
    font-size: 40px;
    line-height: 43px;
    margin-bottom: 24px;
}

.offre-first-container-h1 span {
    font-weight: 900 !important;
    font-size: 40px;
    line-height: 43px;
}

.offre-first-container-p,
.offre-first-container-p span {
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    color: #000000;
}

.offre-first-container-p {
    margin-bottom: 24px;
}

.offre-first-container-p span {
    font-weight: 700 !important;
}

.offre-first-container-bottom {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: center;
    align-items: end;
    gap: 22px;
}

.offre-first-container-card-container {
    display: flex;
    flex-direction: column;
    width: 260px;
}

.offre-first-container-card-header {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding-left: 75px;
}

.offre-first-container-card-header > span:first-child {
    font-weight: 275;
    font-size: 10px;
    line-height: 10px;
}

.offre-first-container-card-header > span:nth-child(2) {
    font-weight: 400;
    font-size: 10px;
    line-height: 10px;
    padding-bottom: 5px;

}

.offre-first-container-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 261px;
    border: 2px solid #014247;
    border-radius: 12px;
}

.offre-first-container-card-absolute {
    position: absolute;
    top: 0px;
    transform: translateY(-60%);
    left: 20px;
    display: flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    background: rgba(4, 158, 170, 1);
    border-radius: 50px;
    box-shadow: 0px 21px 9px -9px rgba(0, 0, 0, 0.25);
}

.offre-first-container-card-absolute i {
    color: white;
    font-size: 18px;
}

.offre-first-container-card-top {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 30px 24px 26px 24px;
    background: #014247;
    border-radius: 8px 8px 0px 0px;
}

.offre-first-container-card-formule {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 14px;
}

.offre-first-container-card-top-formule-title {
    font-weight: 200;
    font-size: 24px;
    line-height: 43px;
    color: #ffffff;
}

.offre-first-container-card-top-formule-price span {
    font-weight: 900;
    font-size: 32px;
    line-height: 43px;
    color: #ffffff;
    white-space: nowrap;
}

.offre-first-container-card-top-formule-price {
    font-weight: 300;
    font-size: 13px;
    line-height: 43px;
    color: #ffffff;
}

.offre-first-container-card-top-advantages {
    font-weight: 200;
    font-size: 11px;
    line-height: 13px;
    color: #ffffff;
}

.offre-first-container-card-top-advantages span {
    font-weight: 700;
    font-size: 11px;
    line-height: 13px;
    color: #ffffff;
}

.offre-first-container-card-bot {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 275px;
    padding: 24px 24px 40px 24px;
    justify-content: space-between;
    background: white;
    border-radius: 0px 0px 9px 9px;
}

.offre-first-container-card-bot-list {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.offre-first-container-card-bot-line {
    display: flex;
    flex-direction: row;
    gap: 8px;
    align-items: center;
    font-weight: 400;
    font-size: 11px;
    line-height: 20px;
    padding: 5px;
}

.offre-first-container-dot {
    width: 3px;
    height: 3px;
    background: #049eaa;
}

.offre-first-container-card-bot-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 213px;
    height: 48px;
    background: linear-gradient(90deg, #014247 0%, #069eaa 100%);
    border-radius: 7px;
}

.offre-first-container-card-bot-btn:hover {
    border: 1px solid #014247;
    background: white;
}

.offre-first-container-card-bot-btn:hover .offre-first-container-card-bot-btn-link {
    color: #014247 !important;
    text-decoration: none;
}

.offre-first-container-card-bot-btn-link {
    font-weight: 700;
    font-size: 13px;
    line-height: 24px;
    color: #ffffff;
}

/* offre second container */
.offre-second-container {
    width: 100%;
    background: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 64px 276px 183px 276px;
    gap: 52px;
}

.offre-second-container-title {
    font-weight: 700;
    font-size: 24px;
    line-height: 21px;
}

.offre-second-container-block-line {
    width: 830px;
    height: 43px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #d4e5e7;
}

.offre-second-container-line-elem {
    display: flex;
    max-width: 256px;
    font-weight: 400;
    font-size: 13px;
    line-height: 13px;
    align-items: center;
}

.offre-second-container-elem-container {
    width: 325px;
    height: 100%;
    display: flex;
    flex-direction: row;
    margin-right: 53px;
    gap: 113px;
}

.offre-second-container-block-title .offre-second-container-line-elem {
    font-weight: 700;
    font-size: 13px;
    line-height: 13px;
}

.offre-second-container-block-title .offre-second-container-elem-container {
    gap: 74px;
    margin-right: 68px;
}

.second-container-elem-container-spe {
    margin-right: 64px;
    gap: 80px;
}

.second-container-line-elem-spe {
    font-weight: 700;
    font-size: 11px;
    line-height: 13px;
    color: #049eaa;
    white-space: nowrap;
}

/* mnc-offre third container */

.offre-third-container {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #e6f4f6;
    gap: 32px;
}

.offre-third-container-absolute {
    position: absolute;
    top: 0;
    left: calc(50% - 414px);
    transform: translateY(-50%);
    width: 828px;
    height: 206px;
    background-image: url("../../images/home-fifth-container-bg.png");
    background-size: cover;
    border-radius: 10px;
    padding: 48px 64px;
    gap: 24px;
    display: flex;
    flex-direction: column;
    align-items: end;
    justify-content: center;
}

.offre-third-container-absolute-title {
    display: flex;
    flex-direction: column;
    width: 442px;
}

.offre-third-container-absolute-title,
.offre-third-container-absolute-title span {
    font-weight: 400;
    font-size: 24px;
    line-height: 27px;
    color: #ffffff;
}

.offre-third-container-absolute-title span {
    font-weight: 700;
    font-size: 24px;
    line-height: 27px;
    color: #ffffff;
}

.offre-third-container-absolute-btn-container {
    display: flex;
    flex-direction: row;
    width: 442px;
    justify-content: space-between;
}

.offre-third-container-absolute-btn {
    width: 212px;
    height: 48px;
    color: white;
    background: #049eaa;
    border-radius: 7px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 12px;
    line-height: 24px;
}

.footer-send {
    width: 156px;
    margin-top: 10px;
    margin-left: auto;
    cursor:pointer;
}

.offre-third-container-title {
    font-weight: 700;
    font-size: 24px;
    line-height: 21px;
    margin-top: 166px;
}

.offre-third-container-mid {
    display: flex;
    flex-direction: row;
    width: 828px;
    gap: 32px;
}

.offre-third-container-column {
    width: 398px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.offre-third-container-card {
    width: 100%;
    padding: 32px 24px;
    gap: 12px;
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border-radius: 10px;
}

.offre-third-container-card-title,
.offre-third-container-card-title span {
    font-weight: 400;
    font-size: 16px;
    line-height: 13px;
    color: #014247;
}

.offre-third-container-card-title span {
    font-weight: 700;
    position: relative;
}

.offre-third-container-card-title span span {
    position: absolute;
    right: -16px;
    top: -4px;
    font-size: 11px;
    line-height: 20px;
    font-weight: 300;
}

.offre-third-container-card-mid {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 11px 0px;
    gap: 11px;
    border-top: 1px solid #d4e5e7;
    border-bottom: 1px solid #d4e5e7;
}

.offre-third-container-card-mid-line {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    font-weight: 400;
    font-size: 11px;
    line-height: 13px;
    align-items: center;
}

.offre-third-container-card-mid-caption {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    font-style: italic;
    font-weight: 400;
    font-size: 10px;
    line-height: 13px;
    align-items: center;
}

.offre-third-container-card-mid-line span {
    font-style: italic;
    font-size: 11px;
    line-height: 13px;
}

.offre-third-container-total {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.offre-third-container-total span,
.offre-third-container-total-price {
    font-weight: 700;
    font-size: 16px;
    line-height: 13px;
    color: #049eaa;
}

.offre-third-container-total-price button,
.offre-third-container-total-price button:hover{
    font-weight: 700;
    font-size: 13px;
    line-height: 13px;
    color: #049eaa;
}

.offre-third-container-total-price button:hover,
.offre-third-container-total-price button:focus {
    text-decoration: none;
}

.offre-third-container-total-price span {
    font-weight: 400;
}

.offre-third-container-caption {
    font-style: italic;
    font-weight: 400;
    font-size: 8px;
    line-height: 13px;
    width: 828px;
    margin-bottom: 48px;
}

/* Footer */

.footer-container {
    width: 100%;
    height: 512px;
    background: #014247;
    border-radius: 40px 40px 0px 0px;
    display: flex;
    justify-content: center;
    align-items: center;
}

footer {
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 100%;
    max-width: 1600px;
    height: 100%;
    padding: 64px 72px;
}

.footer-top {
    width: 100%;
    height: 46px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.footer-top img {
    width: 218px;
    height: 46px;
}

.footer-top-right {
    display: flex;
    flex-direction: row;
    gap: 40px;
}

.footer-top-right-number {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 206px;
    height: 46px;
    border: 1px solid #b8dbdf;
    border-radius: 7px;
    font-weight: 700;
    font-size: 13px;
    line-height: 30px;
    color: white;
}

.footer-top-right-btn-list {
    display: flex;
    flex-direction: row;
    width: 224px;
    height: 46px;
    gap: 12px;
}

.footer-top-right-btn {
    display: flex;
    width: 46px;
    height: 46px;
    justify-content: center;
    align-items: center;
    background: #049eaa;
    border-radius: 7px;
}

.footer-top-right-btn i {
    color: white;
    font-size: 16px;
}

.footer-mid {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    height: 200px;
}

.footer-mid-left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    width: 378px;
}

.footer-mid-left-title {
    font-weight: 700;
    font-size: 20px;
    line-height: 20px;
    color: #ffffff;
    margin-bottom: 16px;
}

.footer-mid-left form {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.footer-mid-left input {
    width: 100%;
    height: 40px;
    background: #003335;
    border-radius: 7px;
    padding: 14px 16px;
    margin-bottom: 8px;
    color: #ffffff;
    font-weight: 300;
    font-size: 13px;
    line-height: 13px;
    border: none;
    outline: none;
}

.footer-mid-left input::placeholder {
    color: #ffffff;
    font-weight: 300;
    font-size: 13px;
    line-height: 13px;
    opacity: 0.6;
}

.footer-mid-left button {
    width: 138px;
    height: 48px;
    background: #049eaa;
    border-radius: 7px;
    color: #ffffff;
    font-weight: 700;
    font-size: 13px;
    line-height: 24px;
    margin-top: 16px;
    margin-left: calc(100% - 138px);
    border: none;
    outline: none;
}

.footer-mid-right {
    display: flex;
    flex-direction: row;
    height: 100%;
    gap: 59px;
}

.footer-mid-right-elem {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.footer-mid-right-elem-title {
    font-weight: 700;
    font-size: 14px;
    line-height: 21px;
    margin-bottom: 8px;
    color: #ffffff;
}

.footer-mid-right-elem a {
    font-weight: 300;
    font-size: 13px;
    line-height: 37px;
    color: #ffffff;
    opacity: 0.7;
}

.footer-bot {
    width: 100%;
    text-align: center;
    font-weight: 300;
    font-size: 13px;
    line-height: 37px;
    color: #ffffff;
    opacity: 0.6;
    margin-top: 60px;
}

.mobile-br {
    display: none;
}

/* Media Queries */

@media screen and (max-width: 1600px) {
    .third-container-bot-right-elem.next {
        right: calc(-50vw + 90px);
    }
}

@media screen and (max-width: 1400px) {
    .third-container-bot-right-elem.next {
        display: none;
    }

    @keyframes third-container-slide-left {
        from {
            right: calc(-50vw);
            opacity: 0.5;
        }
        to {
            right: 0px;
            opacity: 1;
        }
    }

    .fourth-container {
        justify-content: center;
    }

    @keyframes slide-in-left {
        from {
            right: -100%;
        }
        to {
            right: 10%;
        }
    }

    @keyframes slide-in-left2 {
        from {
            right: -100%;
        }
        to {
            right: -10%;
        }
    }
}

@media screen and (max-width: 1250px) {
    .footer-mid-left {
        width: 300px;
    }

    .footer-mid-right {
        gap: 15px;
    }
}

@media screen and (max-width: 1200px) {
    @keyframes slide-in-left2 {
        from {
            right: -100%;
        }
        to {
            right: -30%;
        }
    }

    .second-container-bot-elem-container {
        position: absolute;
        right: calc(0% - 210px);
        display: none;
    }

    .second-container-bot-elem-container.active {
        display: flex;
        left: calc(50% - 97px);
    }

    .second-container-bot-elem-container.next {
        display: flex;
    }

    .second-container-bot-pagination {
        display: flex;
        position: absolute;
        bottom: -14px;
        left: calc(50% - 70px);
    }

    .fourth-container {
        width: 100%;
        height: auto;
        max-width: 600px;
        flex-direction: column;
        padding: 60px 25px;
        margin: 0px;
        gap: 40px;
        align-items: center;
    }

    .fourth-container-left img {
        width: 500px;
        height: 320px;
    }

    .fourth-container-right {
        gap: 26px;
    }

    .fourth-container-right-title {
        gap: 10px;
        font-size: 30px;
        line-height: 30px;
        margin-bottom: 4px;
    }

    .fourth-container-right-title span {
        font-size: 30px;
        line-height: 30px;
    }

    .fourth-container-right-list {
        gap: 24px;
    }

    .fourth-container-right-list-elem {
        gap: 10px;
    }

    .right-list-p {
        line-height: 19px;
    }

    .fourth-container-right-list-elem-h1 {
        gap: 8px;
    }

    .right-list-h1 {
        font-size: 20px;
        line-height: 21px;
    }

    .fourth-container-right-btn {
        height: 45px;
        width: 100%;
        display: flex;
        padding: 7px 20px;
        font-size: 14px;
        line-height: 30px;
    }
}

@media screen and (max-width: 550px) {
    .fourth-container-left img {
        width: 344px;
        height: 240px;
    }
}

.fifth-container.carbone {
    max-width: 800px!important;
    max-height: 136px!important;
    margin-top: 74px!important;
    padding: 45px 0 0 0;
    background-image: url(../../images/fefe.png);
    background-size: 100% 100%;
    border-radius: 0 0 15px 15px;
    gap: 20px;
}

.fifth-container.carbone .fifth-container-mid {
    line-height: 12px!important;
}

.fifth-container.carbone p {
    color: white;
    font-weight: lighter;
    text-align: center;
    padding: 0 91px 15px 91px;
    margin-bottom: 0;
}

.fifth-container.carbone p span{
    color: white;
    font-weight: bold;
}

.bulle-carbone {
    margin-top: 30px!important;
}

@media screen and (max-width: 1000px) {
    .navbar-left-desktop,
    .navbar-right-desktop,
    .navbar-logo {
        display: none;
    }

    .navbar-right-mobile,
    .navbar-logo-mobile {
        display: flex;
    }

    .navbar-container {
        height: 31px;
        margin: 24px 20px;
        padding: 0px;
    }

    .navbar-btn {
        height: 100%;
        font-weight: 600;
        font-size: 12px;
        line-height: 18px;
    }

    .navbar-right-profile {
        padding: 0px;
    }

    .nav-user-panel {
        padding: 3px 11px 3px 3px;
    }
    .nav-user-info {
        display: none;
    }

    .nav-user-panel-picture {
        width: 25px;
        border-radius: 28px;
    }

    #navbarDropdownMenuBtn {
        position: absolute;
        top: 11px;
        right: 4px;
    }

    .menu-dropdown-img {
        width: 16px;
    }

    .first-container {
        margin-bottom: 200px;
    }

    .first-container-bg {
        position: absolute;
        height: auto;
        width: 60%;
        bottom: 0%;
        left: 20%;
    }

    .first-container-left {
        align-items: center;
        width: 100%;
        height: 420px;
        top: 20px;
        position: absolute;
        left: -100%;
        animation: slide-in-right 1s forwards;
        padding: 0px 25px;
        text-align: center;
    }

    @keyframes slide-in-right {
        from {
            left: -100%;
        }
        to {
            left: 0px;
        }
    }

    .first-container-left-h1,
    .first-container-left-h1 span {
        font-size: 35px;
        line-height: 35px;
    }

    .first-container-left-p,
    .first-container-left-p span {
        font-size: 14px;
        line-height: 19px;
    }

    .first-container-left-h1 {
        max-width: 420px;
    }

    .first-container-left-p {
        max-width: 440px;
    }

    .first-container-left-btn {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        max-width: 420px;
        height: 45px;
        font-size: 14px;
        line-height: 30px;
    }

    .dashboard-mockup {
        position: absolute;
        width: 60%;
        height: auto;
        bottom: 0;
        animation: slide-in-left2 2s forwards;
    }

    .mac-mockup {
        position: absolute;
        width: 45%;
        height: auto;
        bottom: 0;
        left: 20%;
    }

    @keyframes slide-in-left {
        from {
            right: -100%;
        }
        to {
            right: 20%;
        }
    }

    @keyframes slide-in-left2 {
        from {
            right: -100%;
        }
        to {
            right: 0px;
        }
    }

    /* Second Container 1000px */
    /* Body second-container 1000px */
    .second-container {
        width: 100%;
        height: 1050px;
        border-radius: 140px 140px 0px 0px;
    }

    /* Body second-container-absolute 1000px */
    .second-container-absolute {
        flex-direction: column;
        justify-content: start;
        left: 50%;
        top: calc(0% - 94px);
        width: 80%;
        height: 235px;
        transform: translateX(-50%);
    }

    .second-container-absolute-left {
        width: 100%;
        max-width: 420px;
        height: auto;
        padding: 32px 32px 0px 32px;
    }

    .second-container-absolute-right {
        width: 100%;
        height: auto;
        gap: 4px;
        padding-top: 16px;
        align-items: center;
    }

    .second-container-absolute-right-title {
        max-width: 420px;
        width: 100%;
        margin: 0px 32px;
        text-align: center;
        font-size: 8px;
        line-height: 18px;
        letter-spacing: 0.64em;
    }

    /* Body second-container-top 1000px*/
    .second-container-top {
        margin: 0 25px 32px 25px;
        max-width: 420px;
    }

    .second-container-top-h1 {
        font-size: 30px;
        line-height: 30px;
        margin-bottom: 32px;
    }

    .second-container-top-h1 span {
        font-size: 30px;
        line-height: 30px;
    }

    .second-container-top-p1,
    .second-container-top-link,
    .second-container-top-p1 {
        font-weight: 400;
        font-size: 14px;
        line-height: 19px;
    }

    .second-container-top-p1 {
        margin-bottom: 9px;
    }

    /* Third container */
    .third-container {
        width: 100%;
        height: 738px;
        padding: 0px 24px;
    }

    .third-container-bg {
        width: 100%;
        position: absolute;
        top: 0;
        left: 0;
    }

    .third-container-top {
        font-weight: 200;
        font-size: 30px;
        line-height: 30px;
        padding: 70px 0px 20px 0px;
    }

    .third-container-top span {
        font-size: 30px;
        line-height: 30px;
    }

    .third-container-bot {
        flex-direction: column;
        padding: 0px;
        height: 488px;
    }

    .third-container-bot-subcontainer {
        flex-direction: column;
        height: 100%;
        align-items: center;
    }

    .third-container-bot-left {
        width: 100%;
        max-width: 420px;
        display: flex;
        flex-direction: column;
        font-weight: 600;
        font-size: 20px;
        line-height: 20px;
        margin-right: 0px;
        align-items: center;
    }

    .third-container-bot-left-list {
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }

    .third-container-bot-left-title {
        font-weight: 600;
        font-size: 24px;
        line-height: 25px;
        margin: 20px 0px 18px 0px;
    }

    .third-container-bot-left-elem {
        gap: 0px;
        margin-bottom: 28px;
        flex-direction: column;
        gap: 2px;
        align-items: center;
        justify-content: start;
        margin-top: 22px;
    }

    .third-container-bot-left-elem.active {
        margin-top: 0px;
    }

    .third-container-bot-left-elem span {
        font-weight: 700;
        font-size: 15px;
        line-height: 30px;
    }

    .third-container-bot-left-elem img {
        display: none;
        transform: rotate(90deg);
        height: 20px;
        width: 20px;
    }

    .third-container-bot-right {
        height: auto;
        width: 100%;
        max-width: 420px;
        left: 50%;
        transform: translateX(-50%);
        top: 150px;
        height: 400px;
    }

    .third-container-bot-right-elem {
        width: 100%;
        height: auto;
        justify-content: start;
    }

    .third-container-bot-right-elem.next {
        right: -300px;
    }

    .third-container-bot-right-elem-card-title {
        display: none;
    }

    .third-container-bot-right-elem-card-title-mobile {
        display: block;
        font-weight: 300;
        font-size: 10px;
        line-height: 18px;
        letter-spacing: 1em;
        text-transform: uppercase;
        color: #049eaa;
    }

    .third-container-bot-right-elem-card {
        height: auto;
        padding: 40px 30px;
        gap: 20px;
    }

    .third-container-bot-right-elem-card-li {
        height: auto;
        gap: 10px;
    }

    .elem-card-li-dot {
        width: 7.5px !important;
        height: 7.5px !important;
        border-radius: 50%;
        background: #049eaa;
    }

    .elem-card-li-txt {
        width: 94%;
    }

    .elem-card-li-txt,
    .elem-card-li-txt span {
        font-size: 12px !important;
        line-height: 15px !important;
    }

    .elem-card-btn-container {
        width: 100%;
        height: auto;
        flex-direction: column;
        justify-content: center;
        gap: 10px;
        margin-top: 0;
    }

    .elem-card-btn {
        height: 45px;
        width: 100%;
        padding: 14px 0px;
        font-size: 14px;
        line-height: 30px;
    }

    /* Fourth Container 1000px */

    .fourth-container {
        width: calc(100% - 50px);
        height: auto;
        max-width: 600px;
        flex-direction: column;
        padding: 60px 0px;
        margin: 0px 25px;
        gap: 40px;
        align-items: center;
    }

    .fourth-container-right {
        gap: 26px;
        width: 100%;
    }

    .fourth-container-right-title {
        gap: 10px;
        font-size: 30px;
        line-height: 30px;
        margin-bottom: 4px;
    }

    .fourth-container-right-title span {
        font-size: 30px;
        line-height: 30px;
    }

    .fourth-container-right-list {
        gap: 24px;
    }

    .fourth-container-right-list-elem {
        gap: 10px;
    }

    .right-list-p {
        line-height: 19px;
    }

    .fourth-container-right-list-elem-h1 {
        gap: 8px;
    }

    .right-list-h1 {
        font-size: 20px;
        line-height: 21px;
    }

    .fourth-container-right-btn {
        height: 45px;
        width: 100%;
        display: flex;
        padding: 7px 20px;
        font-size: 14px;
        line-height: 30px;
    }

    /* fifth container 1000px */
    .fifth-container {
        width: calc(100% - 50px);
        max-width: 600px;
        height: 374px;
        background-image: url("../../images/home-fifth-container-bg-mobile.png");
        margin: 50px 25px;
        padding: 80px 30px 108px 30px;
        gap: 32px;
    }

    .fifth-container-mid {
        font-size: 25px;
        line-height: 24px;
    }

    .fifth-container-btn {
        width: 100%;
        font-size: 14px;
        line-height: 30px;
    }

    /* sixth-container 1000px */

    .sixth-container {
        height: auto;
        width: calc(100% - 50px);
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: 48px 25px;
        gap: 38px;
    }

    .sixth-container-title,
    .sixth-container-title span {
        font-size: 30px;
        line-height: 30px;
    }

    .sixth-container-bot {
        flex-direction: column;
        align-items: center;
        gap: 38px;
    }

    .sixth-container-bot-left {
        width: 364px;
        height: 254px;
    }

    .sixth-container-photo1 {
        width: 205px;
        height: 205px;

        right: 31px;
    }

    .sixth-container-photo2 {
        width: 138px;
        height: 138px;
    }

    .sixth-container-logo1 {
        width: 94px;
        height: 64px;
        right: 24px;
    }

    .sixth-container-logo2 {
        width: 46px;
        height: 27px;
        top: 120px;
        left: 100px;
    }

    .sixth-container-white-square {
        width: 90px;
        height: 90px;
        left: 60px;
        bottom: 60px;
    }

    .sixth-container-blue-square {
        width: 53px;
        height: 53px;
        right: 0px;
    }

    .sixth-container-bot-right {
        width: 364px;
        gap: 22px;
    }

    .sixth-container-bot-right-list {
        width: 100%;
        height: 268px;
    }

    .sixth-container-bot-right-list-elem {
        padding: 57px 32px;
    }

    .sixth-container-bot-right-list-elem-review .fas.fa-star {
        font-size: 12px !important;
    }

    .sixth-container-bot-right-list-elem-h1 {
        font-size: 16px;
        line-height: 26px;
        margin-top: 4px;
    }

    .sixth-container-bot-right-list-elem-h2 {
        font-size: 12px;
        line-height: 26px;
        margin-bottom: 10px;
    }

    .sixth-container-bot-right-list-elem-p {
        font-size: 12px;
        line-height: 15px;
    }

    .sixth-container-bot-right-pagination {
        gap: 14px;
    }

    .sixth-container-bot-right-pagination img {
        width: 28px;
        height: 16px;
    }

    .sixth-container-bot-right-pagination-numbers span {
        font-weight: 500;
        font-size: 18px;
        line-height: 30px;
    }

    /* mnc-offre 1000px */
    /* mnc-offre first-container 1000px*/
    .offre-first-container {
        padding: 60px 28px;
    }

    .offre-first-container-h1 {
        font-size: 35px;
        line-height: 54px;
        margin-bottom: 20px;
    }

    .offre-first-container-p,
    .offre-first-container-p span {
        line-height: 26px;
    }

    .offre-first-container-p {
        margin-bottom: 20px;
    }

    .offre-first-container-bottom {
        flex-direction: column;
        justify-content: start;
        align-items: center;
        gap: 30px;
    }

    .offre-first-container-card-container {
        flex-direction: column;
        width: 354px;
    }

    .offre-first-container-card-header {
        margin-bottom: 10px;
        padding-left: 92px;
    }

    .offre-first-container-card-header > span:first-child {
        font-size: 12px;
        line-height: 12px;
    }

    .offre-first-container-card-header > span:nth-child(2) {
        font-size: 12px;
        line-height: 12px;
    }

    .offre-first-container-card {
        width: 100%;
    }

    .offre-first-container-card-absolute {
        width: 52px;
        height: 52px;
    }

    .offre-first-container-card-absolute i {
        font-size: 20px;
    }

    .offre-first-container-card-top {
        padding: 30px;
        gap: 6px;
    }

    .offre-first-container-card-formule {
        gap: 6px;
    }

    .offre-first-container-card-top-formule-title {
        font-size: 25px;
        line-height: 25px;
    }

    .offre-first-container-card-top-formule-price span {
        font-size: 30px;
        line-height: 30px;
    }

    .offre-first-container-card-top-formule-price {
        font-size: 12px;
        line-height: 30px;
    }

    .offre-first-container-card-top-advantages,
    .offre-first-container-card-top-advantages span {
        font-size: 12px;
        line-height: 14px;
    }

    .offre-first-container-card-bot {
        height: auto;
        padding: 20px 30px 30px 30px;
        gap: 20px;
    }

    .offre-first-container-card-bot-line {
        gap: 10px;
        font-size: 12px;
        line-height: 30px;
    }

    .offre-first-container-dot {
        width: 4px;
        height: 4px;
    }

    .offre-first-container-card-bot-btn {
        width: 100%;
        height: 60px;
    }

    .offre-first-container-card-bot-btn-link {
        font-size: 16px;
        line-height: 30px;
    }

    /* mnc-offre second-container 1000px */
    .offre-second-container-block-desktop {
        display: none;
    }

    .offre-second-container {
        padding: 60px 30px 306px 30px;
    }

    .offre-second-container-title {
        font-size: 30px;
        line-height: 26px;
    }

    .offre-second-container-block {
        width: 100%;
    }

    .offre-second-container-block-line {
        height: 54px;
        width: auto;
    }

    .offre-second-container-line-elem {
        max-width: 144px;
        font-size: 12px;
        line-height: 13px;
    }

    .offre-second-container-elem-container {
        width: 164px;
        height: 100%;
        gap: 50px;
        margin-right: 18px;
    }

    .offre-second-container-block-title .offre-second-container-line-elem {
        font-size: 12px;
        line-height: 13px;
    }

    .offre-second-container-block-title .offre-second-container-elem-container {
        gap: 16px;
        margin-right: 28px;
    }

    .offre-second-container-block-title
    .offre-second-container-elem-container
    .offre-second-container-line-elem {
        transform: rotate(-45deg);
    }

    .second-container-line-elem-business {
        margin-bottom: 13px;
    }

    .second-container-line-elem-starter {
        margin-bottom: 4px;
    }

    /* mnc-offre third container 1000px */
    /* mnc-offre third container absolute 1000px */
    .offre-third-container {
        gap: 50px;
    }

    .offre-third-container-absolute {
        left: calc(50% - 174px);
        transform: translateY(-50%);
        width: 354px;
        height: 484px;
        background-image: url("../../images/mnc-offre-third-container-picture-mobile.png");
        background-size: cover;
        border-radius: 10px;
        padding: 40px 20px;
        gap: 26px;
        justify-content: end;
        align-items: center;
    }

    .offre-third-container-absolute-title {
        width: 314px;
    }

    .offre-third-container-absolute-title,
    .offre-third-container-absolute-title span {
        font-size: 30px;
        line-height: 34px;
        text-align: center !important;
        font-weight: 200;
    }

    .offre-third-container-absolute-title span {
        font-weight: 700;
        font-size: 30px;
        line-height: 34px;
    }

    .offre-third-container-absolute-btn-container {
        flex-direction: column;
        width: 266px;
        justify-content: start;
        gap: 15px;
    }

    .offre-third-container-absolute-btn {
        width: 100%;
        height: 60px;
        font-size: 16px;
        line-height: 30px;
    }

    /* mnc-offre third container mid 1000px */
    .offre-third-container-card-desktop {
        display: none;
    }

    .offre-third-container-title {
        margin-top: 318px;
        font-size: 30px;
        line-height: 26px;
    }

    .offre-third-container-mid {
        display: flex;
        flex-direction: column;
        width: 372px;
        gap: 20px;
    }

    .offre-third-container-column {
        width: 100%;
    }

    .offre-third-container-card {
        width: 100%;
        padding: 20px 21px;
        gap: 15px;
    }

    .tab-list {
        flex-direction: column !important;
        gap: 0px !important;
        height: auto !important;
        border-bottom: none !important;
        width: 372px !important;
        border-radius: 0 !important;
    }

    .tab-list .tab-list-elem:first-child {
        border-radius: 7px 7px 0 0 !important;
    }

    .tab-list .tab-list-elem:last-child {
        border-radius: 0 0 7px 7px !important;
    }

    .offre-third-container-card-title,
    .offre-third-container-card-title span {
        font-size: 17px;
        line-height: 16px;
    }

    .offre-third-container-card-mid {
        padding: 14px 0px;
        gap: 14px;
    }

    .offre-third-container-card-mid-line {
        width: 100%;
        font-size: 12px;
        line-height: 16px;
    }

    .offre-third-container-card-mid-line span {
        font-size: 12px;
        line-height: 16px;
    }

    .offre-third-container-total span,
    .offre-third-container-total-price {
        font-size: 18px;
        line-height: 16px;
    }

    .offre-third-container-caption {
        font-size: 10px;
        line-height: 16px;
        width: 100%;
        margin-bottom: 74px;
        padding: 0px 15px;
    }

    /* Footer 1000px */

    .footer-container {
        height: auto;
        justify-content: center;
        align-items: center;
    }

    footer {
        gap: 40px;
        padding: 42px 25px;
    }

    .footer-top {
        height: auto;
        flex-direction: column;
        justify-content: start;
        gap: 23px;
        align-items: center;
    }

    .footer-top img {
        width: 192px;
        height: 41px;
    }

    .footer-top-right {
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
        gap: 23px;
    }

    .footer-top-right-number {
        width: 254px;
        font-size: 16px;
        line-height: 30px;
    }

    .footer-top-right-btn-list {
        display: flex;
        flex-direction: row;
        width: 217px;
        height: 40px;
        gap: 19px;
    }

    .footer-top-right-btn {
        width: 40px;
        height: 40px;
    }

    .footer-top-right-btn i {
        font-size: 14px;
    }

    .footer-mid {
        flex-direction: column;
        justify-content: start;
        align-items: center;
        height: auto;
        gap: 47px;
    }

    .footer-mid-left {
        gap: 10px;
        height: 100%;
        width: 364px;
        align-items: center;
    }

    .footer-mid-left-title {
        line-height: 25px;
        margin-bottom: 5px;
    }

    .footer-mid-left input {
        padding: 14px 12px;
        margin-bottom: 10px;
        font-size: 12px;
        line-height: 16px;
    }

    .footer-mid-left input::placeholder {
        font-size: 12px;
        line-height: 16px;
    }

    .footer-mid-left button {
        width: 100%;
        margin: 0;
        height: 45px;
        font-size: 14px;
        line-height: 30px;
    }

    .footer-mid-right {
        width: 364px;
        display: flex;
        flex-direction: column;
        height: auto;
        gap: 23px;
    }

    .footer-mid-right-elem {
        width: 100%;
        height: auto;
    }

    .footer-mid-right-elem-title {
        font-size: 14px;
        line-height: 26px;
    }

    .footer-mid-right-elem a {
        font-size: 12px;
        line-height: 36px;
    }

    .footer-bot {
        font-size: 14px;
        line-height: 18px;
        margin-top: 50px;
        letter-spacing: 0.11em;
    }

    .mobile-br {
        display: block;
    }

    .profile-dropdown-menu, .profile-dropdown-menu-mobile {
        top: 34px!important;
        left: -147px!important;
    }

    .fifth-container.carbone {
        width: 65%!important;
        margin-top: calc(0% + 141px)!important;
        padding: 35px 0 0 0!important;
    }

    .bulle-carbone {
        margin-top: 95px!important;
    }

    .fifth-container.carbone p {
        font-size: 12px!important;
        padding: 0 25px 15px 25px!important;
    }

    .fifth-container.carbone .fifth-container-mid {
        font-size: 16px!important;
    }
}

@media screen and (max-width: 500px) {
    .fifth-container.carbone p {
        padding: 0 25px 15px 25px!important;
    }

    .second-container-absolute-left-h1, .second-container-absolute-left-p.text-center {
        font-size: 15px!important;
    }

    .second-container-absolute-left-p.text-center span {
        font-size: 29px!important;
        line-height: 28px!important;
    }

    .second-container-absolute-left-p {
        text-align: center;
    }

    .second-container-absolute-left-p span {
        display: block; /* Mettre le span en tant que bloc pour occuper toute la largeur */
        font-size: 15px;
        line-height: 35px;
    }

    .second-container-absolute-left-p span + * {
        white-space: normal; /* Permettre au texte de passer à la ligne */
    }
}

.block-up-footer {
    margin-bottom: -50px;
    height: 230px;
    border-radius: 35px 35px 0 0;
    background: url(../../images/fefe1.png);
    background-size: cover;
}

@media screen and (max-width: 900px) {
    .block-up-footer {
        margin-bottom: -125px;
        height: 310px;
    }
}

@media screen and (max-width: 500px) {
    .fifth-container.carbone p {
        padding: 0 5px 10px 5px!important;
        font-size: 10px!important;
    }

    .fifth-container.carbone p span {
        font-size: 10px!important;
    }

    .fifth-container.carbone .fifth-container-mid {
        line-height: 12px!important;
    }

    .bulle-carbone svg {
        width: 65px!important;
        height: 65px!important;
    }

    .first-container {
        height: 670px !important;
    }

    .second-container-absolute {
        top: calc(0% - 110px);
        height: 210px;
    }

    .second-container-absolute-right-title {
        letter-spacing: 0.5em;
    }

    .third-container {
        height: 800px;
    }

    /* mnc-offre 500px */
    /* mnc-offre second-container 500px */
    .offre-second-container-block-title .offre-second-container-elem-container {
        margin-right: 8px;
    }

    .offre-second-container-elem-container {
        margin-right: 0px;
    }

    .footer-mid-left {
        width: 350px;
    }

    .footer-mid-right {
        width: 350px;
    }

    .fifth-container.carbone {
        width: 65%!important;
        margin-top: calc(0% + 100px)!important;
        gap: 10px!important;
    }

    .bulle-carbone {
        margin-top: 60px!important;
    }

    .block-up-footer {
        margin-bottom: -155px;
        height: 415px;
    }
}

.profile-dropdown-menu span, .profile-dropdown-menu-mobile span,
.profile-dropdown-menu a, .profile-dropdown-menu-mobile a {
    font-family: "Poppins";
    font-weight: 600;
    font-size: 11px;
    color: #000;
}

.fa-angle-down:hover {
    color: white;
}

/*Services*/

.service-body {
    min-height: 100vh;
    background: radial-gradient(104.64% 177.43% at 108.65% 116.17%, #049EAA 1.04%, #A8DBE1 36.35%, #D9EEF1 58.59%, #D9EEF1 66.75%, #E0F1F4 81.81%, #FFFFFF 100%)
}

.service-responsive-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-right: 25%;
    padding-left: 25%
}

.service-image-container {
    position: relative;
    width: 100%;
    max-width: 660px;
    aspect-ratio: 660 / 480;
}

.service-responsive-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-ellipse {
    position: absolute;
    width: 3%;
    height: 4%;
    background-color: #049EAA;
    border-radius: 50%;
    box-shadow: 0px 11px 4px -1px #00000033;
}

.service-ellipse-1 {
    top: 56%;
    left: 0%;
}

.service-ellipse-2 {
    bottom: 28%;
    right: 10%;
}

.service-ellipse-3 {
    top: 16%;
    left: 74%;
    background-color: #014247;
}

.service-line-common {
    position: absolute;
    height: 0.5%;
    background-color: #049EAA;
    box-shadow: 0px 9px 6px rgba(0, 0, 0, 0.19);
    border-radius: 50px;
}

.service-line {
    width: 17%;
    transform: rotate(45deg);
    top: 51%;
    right: 95.5%;
}

.service-line2 {
    width: 38%;
    top: 42.8%;
    right: 109.8%;
}

.service-line3 {
    width: 34%;
    transform: rotate(45deg);
    bottom: 14%;
    left: 83%;
}

.service-line4 {
    width: 36%;
    top: 102%;
    left: 111.9%;
}

.service-line5,
.service-line6 {
    background-color: #014247;
}

.service-line5 {
    width: 33%;
    transform: rotate(23deg);
    top: 27%;
    left: 75%;
}

.service-line6 {
    width: 41%;
    top: 35.7%;
    left: 106.5%;
}

.service-box {
    position: absolute;
    width: 37%;
    max-height: 50%;
}

.service-docs {
    bottom: 59%;
    left: -47.5%;
}

.service-formalities {
    bottom: 66%;
    left: 106.5%;
    width: 41%;
}

.service-signature {
    bottom: 0.3%;
    left: 112%;
    width: 36%;
}

.service-docs h2,
.service-formalities h2 {
    font-size: 16px;
    color: #014247;
    margin-bottom: 7px;
}

.service-signature h2 {
    font-size: 16px;
    color: #049EAA;
    margin-bottom: 7px;
}

.service-docs span,
.service-formalities span {
    color: #014247;
}

.service-signature span {
    color: #fff;
}

.service-hide{
    display: flex;
    flex-direction: column;
    padding-left: 14%;
    padding-right: 14%;
}

.service-hide h2{
    color: #014247;
}

.service-list-image-container {
    background-size: cover !important;
    background: url("../../images/service-background.jpeg") no-repeat center top fixed;
    padding-top: 12%;
    margin-top: -16vh;
    padding-bottom: 7%;
}

.service-title {
    color: #FFF;
    text-align: center;
    font-size: 28px;
    font-style: normal;
    font-weight: 400;
    line-height: 34px;
    margin-bottom: 3%;
}

.service-title-mobile{
    padding-left: 14%;
    padding-right: 14%;
}

.service-container{
    display: flex;
    flex-wrap: wrap;
}

.service-col {
    display: flex;
    flex-direction: column;
    border-right: 1px solid white;
    padding-left: 3.5%;
    padding-right: 3.5%;
}

.service-col:last-child {
    border-right: none;
}

.service-col:first-child {
    padding-left: 5%;
    align-items: center;
    padding-right: 1%;
}

.service-h2 {
    color: #FFF;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    margin-bottom: 14px;
}

.service-ul {
    padding-left: 18px !important;
}

.service-ul li {
    color: #FFF;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
    margin-bottom: 6px;
    word-wrap: break-word;
}

.service-ul li {
    list-style-image: url("../../images/bulleted-list.svg");
    padding-left: 2px;
}

.service-ul-mobile{
    display: none;
}

.service-h3 {
    font-size: 19px;
    font-weight: 700;
    text-align: center;
    background: linear-gradient(91.22deg, #13777E 16.55%, #014247 84.35%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-top: 10px;
}

.service-col-opinions {
    background: #EDF5F5;
    border-radius: 10px;
    box-shadow: 0px 24px 24px -20px #0142475C;
    padding: 10px;
}

.service-img-dialogue {
    display: block;
    margin-top: 16px;
    padding: 10px;
    max-width: 100%;
    height: auto;
}

.service-comment {
    font-size: 13px;
    font-weight: 300;
    line-height: 18px;
    text-align: left;
    bottom: 44%;
    left: 17%;
    width: 70%;
    max-height: 27%;
}

.service-author {
    display: flex;
    flex-direction: row;
    align-items: center;
    max-width: 240px;
    padding-left: 23px;
}

.service-ranking{
    bottom: 87%;
    left:64%;
}

.service-color{
    color: #014247;
}

.service-font-lighter{
    font-weight: lighter;
}

@media (max-width: 1000px) {

    .service-ranking {
        display: none;
    }

    .service-responsive-container {
        padding: 4%;
    }

    .service-line-common {
        display: none;
    }

    .service-ellipse {
        display: none;
    }

    .service-image-container {
        max-width: none;
        aspect-ratio: unset;
    }

    .service-box{
        display: none;
    }

    .service-list-image-container{
        margin-top: 0;
        padding-top: 3%;
    }
}

@media (min-width: 768px) and (max-width: 1200px) {
    .service-container {
        margin-right: 6%;
        margin-left: 6%;
    }
}

@media (min-width: 1201px) and (max-width: 1400px) {
    .service-container {
        margin-right: 8%;
        margin-left: 8%;
    }
}

@media (min-width: 1401px) {
    .service-container {
        margin-right: 10%;
        margin-left: 10%;
    }
}

.dropdown-menu {
    left: -164px!important;
    min-width: 0;
    width: 79%;
    margin: 0;
    padding: 1px 15px!important;
}

.dropdown-menu.mega-menu.v-2.z-depth-1.special-color.show {
    box-shadow: 5px 10px 8px 6px #88888875;
    margin-top: 18px;
    background: linear-gradient(90deg,#fff 80%,#e6f4f6 0%);
    border: 0!important;
}

.dropdown-menu.mega-menu.v-2.z-depth-1.special-color.show .container {
    max-width: 1350px!important;
}

.dropdown-menu.mega-menu.v-2.z-depth-1.special-color.show .col-md-3 {
    padding: 25px 21px!important;
}

.dropdown-menu.mega-menu.v-2.z-depth-1.special-color.show .col-md-3.sub-menu.mb-0 {
    background-color: #e6f4f6;
}

.dropdown-menu.mega-menu ul.list-unstyled li a::before {
    content: "\203A";
    color: #459eab;
    font-size: 24px;
    line-height: 20px;
    margin-right: 5px;
}

.dropdown-menu.mega-menu ul.list-unstyled li a {
    font-size: 14px;
    line-height: 21px;
    font-weight: 700;
    display: flex;
    color: #004247;!important;
    text-decoration: none;
}

.dropdown-menu.mega-menu ul.list-unstyled li a:hover {
    color: rgba(4, 158, 170, 1);
}

.dropdown-button-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 200px;
    height: 44px;
    background: linear-gradient(90deg, #014247 0%, #069eaa 100%);
    border-radius: 7px;
    color: white;
    font-weight: 700;
    font-size: 13px;
    line-height: 24px;
    margin-bottom: 15px;
}

.footer-bot a {
    font-weight: 300;
    font-size: 13px;
    line-height: 37px;
    color: #ffffff;
}

#concept-tabs .list-etape-concept p.active {
    color: #004247;
    border-bottom: none;
    opacity: 1;
}

#concept-tabs .list-etape-concept p {
    color: #014247;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 26px;
    padding-bottom: 0;
    padding-top: 0;
    opacity: 0.5;
    text-transform: none;
}

.concept-arrow-top, .concept-border-bottom {
    opacity: 0;
}

.concept-arrow-top.show, .concept-border-bottom.show {
    opacity: 1;
}

.puce-b2c {
    color: #459fab;
    background-color: #e7f3f5;
}

.cms-body {
    min-height: 100vh;
    background: linear-gradient(115deg, rgba(255, 255, 255, 1) 0%, rgba(224, 241, 244, 1) 10%, rgba(217, 238, 241, 1) 77%, rgb(97 152 157) 100%)
}

/* mod-01 / 11-05 ajouter et modifier classes pour creer mobile-menu */
.navbar-right-mobile i {
    font-size: 16px;
    color: rgba(1, 66, 71, 1);
}

.mobile-menu {
    display: none;
}

@media screen and (max-width: 1000px) {
    body {
        position: relative;
        overflow-x: hidden;
    }

    .mobile-menu {
        display: flex;
    }
}

.mobile-menu {
    width: 100%;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(165.92deg, #014247 23.56%, #049eaa 99.37%);
    box-shadow: 0px 74px 94px rgba(1, 66, 71, 0.79);
    border-radius: 0px 0px 7px 7px;
    gap: 30px;
    padding: 40px 40px 20px 40px;
    position: absolute;
    top: 0;
    display: none;
    transition: all 0.5s ease;
    z-index: 10;
}

.mobile-menu.visible {
    display: flex;
    animation: slideIn 0.5s ease;
}

@keyframes slideIn {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.mobile-menu-logo {
    width: 210px;
    height: 45px;
    margin-bottom: 20px;
}

.mobile-menu-lines {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.mobile-menu-line {
    display: flex;
    flex-direction: row;
    gap: 22px;
    align-items: center;
}

.mobile-menu-line i {
    font-size: 16px;
    width: 16px;
    color: white;
}

.mobile-menu-line a {
    font-size: 16px;
    font-weight: 300;
    font-size: 14px;
    line-height: 14px;
    color: white;
}

.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
    gap: 2px;
}

.mobile-menu-toggle img {
    width: 10px;
    height: 10px;
}

.mobile-menu-toggle span {
    color: white;
    font-size: 10px;
}

input[type=password]+label, input[type=text]+label {
    position: absolute;
    right: 15px;
    top: 20px;
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    transform: translate(0, -50%);
    z-index: 9;
    line-height: 1;
    cursor: pointer;
    font-size: 11px;
}

input[type=password]+label input, input[type=text]+label input {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.login-form {
    width: 320px;
    margin: 20px auto 60px;
    max-width: 100%;
}

.login-form-reset {
    width: 320px;
    margin: 20px auto 20px;
    max-width: 100%;
}

.logo-link img {
    width: 250px;
    height: 50px;
    margin-bottom: 10px;
}

.separator {
    background-color: #e9e9ec;
    height: 1px;
    width: 100%;
}

.span-other {
    padding-right: 16px!important;
    padding-left: 16px!important;
    color: #8c909c!important;
}

.flex-level {
    margin-bottom: 24px!important;
    margin-top: 24px!important;
    align-items: center;
    display: flex;
}

.googleSignin {
    align-items: center;
    border: 1px solid #ccccd1;
    border-radius: 4px;
    color: #111;
    display: flex;
    flex-direction: row;
    font-size: 14px;
    justify-content: center;
    line-height: 20px;
}

.googleSignin span {
    line-height: 20px;
    margin-left: 12px;
}

.googleSignin:hover {
    background-color: #fff;
    border: 1px solid #111;
    color: #111;
    text-decoration: none;
}

a.b2c:hover {
    text-decoration: none !important;
}

.btn-connect, .submit_btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 41px;
    background: linear-gradient(90deg, #014247 0%, #069eaa 100%);
    border-radius: 7px;
    color: white;
    font-weight: 700!important;
    font-size: 13px!important;
    line-height: 24px!important;
    border: 0;
    cursor: pointer;
}

.alert-error {
    background-color: #fcf1f6;
    color: #d4175b!important;
    border: 1px solid #fcf1f6;
    font-weight: 300;
}

.alert-container {
    padding: 15px 0;
    text-align: center;
    /*margin: 15px 0;*/
    border-radius: 0.25rem;
    width: 320px;
    margin: 0 auto 0;
    max-width: 100%;
}

.alert-container .col-md-12 {
    color: #d4175b!important;
}

.connect-link {
    font-weight: 300;
    font-size: 13px;
    line-height: 37px;
    opacity: 0.7;
}

.tooltip-wrap .tooltip-inner {
    position: absolute;
    top: -50%;
    left: 150%;
    width: 450px;
    max-width: 450px;
    border-radius: 5px;
    padding: 0.5rem 0.5rem;
    display: none;
    visibility: visible;
    z-index: 9;
    -webkit-transition: 0.2s ease-in-out;
    -moz-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
    text-align: left;
}

.tooltip-wrap .info_bulle:hover + .tooltip-inner {
    opacity: 0.8;
    visibility: visible;
    display: inline-block;
    margin-left: -9px;
}

.info_bulle {
    cursor: pointer;
    display: inline-block;
    color: var(--text-secondary-color);
    font-size: 16px;
    background: rgb(240, 239, 234);
    background: radial-gradient( circle, rgba(240, 239, 234, 0) 39%, var(--text-secondary-color) 39% );
    border-radius: 50px 50px 50px 0px;
    height: 16px;
    width: 16px;
}

.tooltip-wrap {
    position: relative;
    cursor: default;
    font-family: 'freightsans', san-serif !important;
    display: inline-block;
}

.submenu2 h3 {
    padding-left: 0!important;
    font-weight: 700!important;
}

.input-grp .form-group-title {
    margin: 0;
}

.submit_btn {
    width: 40%!important;
    margin: auto;
}

.contact-textarea {
    margin-top: 0px!important;
    border: 0;
}

input[type='radio'], input[type='checkbox'] {
    opacity: 0;
    width: 20px;
    height: 20px;
    margin-left: 20px;
    margin-right: 10px;
    z-index: 9;
    position: relative;
    cursor: pointer;
}

input[type='checkbox'] {
    opacity: 0;
    width: 20px;
    height: 20px;
    z-index: 9;
    position: relative;
    cursor: pointer;
    margin-left: 0;
    margin-right: 0;
}

input[type='radio'] + span, input[type='checkbox'] + span {
    margin-right: 20px;
    display: inline-block;
    position: relative;
    top: -6px;
    cursor: pointer;
    max-width: 90%;
}

input[type='checkbox'] + span {
    margin-right: 0;
    display: inline-block;
    position: relative;
    top: -6px;
    cursor: pointer;
    max-width: 90%;
}

input[type='radio'] + span:before, input[type='checkbox'] + span:before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    left: -30px;
    background: #fff;
    top: 0;
    z-index: 7;
    border-radius: 3px;
}

input[type='radio'] + span:before {
    border-radius: 50%;
    border: 0.05em solid #ffffff;
}

.submenu .form-group-title h3 {
    font-weight: 700!important;
}

.error-input {
    color: #d4175b;
    font-size: 14px;
    border: 1px solid #fcf1f6;
    padding: 4px 10px;
    margin: 5px 0;
    border-radius: 0.25rem;
    background-color: #fcf1f6;
    font-weight: 500;
}

.modal-size {
    width: 50%!important;
}

@media screen and (max-width: 767px) {
    .modal-size {
        width: 100%!important;
    }

    .px-5 {
        padding-left: 3px!important;
        padding-right: 3px!important;
    }
}

.banner_text_left_sec .banner_text_drop_menu .badge.badge-new, .banner_text_left_sec .banner_text_bloc3 .badge.badge-new {
    background-color: #069eaa;
    color: #fff!important;
    border-radius: 17px;
    font-size: 14px!important;
    line-height: 10px!important;
}

.dropdown-menu.mega-menu.v-2.z-depth-1.special-color.show .col-md-4, .dropdown-menu.mega-menu.v-2.z-depth-1.special-color.show .col-md-8.menu-container {
    padding: 30px 40px!important;
}

.dropdown-menu.mega-menu.v-2.z-depth-1.special-color.show .col-md-4.sub-menu.mb-0 {
    background-color: #e6f4f6;
}

form .short, form .weak, form .good {
    font-weight: bold;
    color: #d4175b;
}

.cursor-default {
    cursor: default;
}

@media screen and (max-width: 575px) {
    .mobile-body {
        background: white!important;
    }

    .service-col {
        padding: 0 !important;
        border-right: none !important;
    }

    .service-col-opinions {
        max-width: 250px;
    }

    .service-col-opinions-parent {
        margin-bottom: 6%;
    }

    .service-comment{
        max-height: 23%;
    }

    .service-ul{
        padding-left: 8% !important;
    }

    .service-container{
        padding-left: 14%;
        padding-right: 14%;
    }

    .service-ul-computer{
        display: none;
    }

    .service-ul-mobile{
        display: unset;
    }
}

.mb-60 {
   margin-bottom: 60px;
}

.outline-0 {
    outline: 0;
}

.home-slide-formalities {
    text-align: center!important;
    font-size: 12px!important;
    line-height: 13px!important;
}

.color-offre-first-container {
    font-size: 11px!important;
    width: 90%!important;
    color: #004247;
}

.phone-header:hover {
    background: transparent!important;
    color: white!important;
    text-decoration: none!important;
    border: 1px solid white!important;
}

.first-sub-subcontainer-bot {
    width: 100%;
    height: 500px;
    display: flex;
    justify-content: center;
    position: relative;
    margin-bottom: 90px;
}

.first-sub-subcontainer-bot img {
    position: absolute;
}

.landing-trophy-full {
    width: 100%;
    min-width: 1920px;
    top: 200px;
    left: 0;
}

.landing-big-circle {
    top: 214px;
    left: 188px;
}

.landing-medium-circle {
    top: 284px;
    left: 380px;
}

.landing-little-circle {
    top: 365px;
    left: 540px;
}

.msInf1000 {
    display: none;
}

.msSup1000 {
    display: flex;
}

.first-sub-subcontainer-bot-txt {
    width: 735px;
}

.first-sub-subcontainer-bot h1 {
    color: #004247;
    font-size: 40px;
    font-weight: 700;
    line-height: 50px;
}

.first-sub-subcontainer-bot p, .first-sub-subcontainer-bot p span {
    color: #004247;
    font-size: 18px;
    font-weight: 400;
    line-height: 32px;
}

.first-sub-subcontainer-bot p span {
    font-weight: 700;
    padding: 0!important;
}

@media screen and (min-width: 1200px) and (max-width: 1920px) {
    .landing-trophy-full {
        width: 100%;
        min-width: 100vw;
        top: 10.417vw;
        left: 0;
    }

    .landing-big-circle {
        top: 11.145vw;
        left: 9.791vw;
        width: 9.115vw;
    }

    .landing-medium-circle {
        top: 14.896vw;
        left: 19.791vw;
        width: 7.865vw;
    }

    .landing-little-circle {
        top: 19.01vw;
        left: 28.125vw;
        width: 7.083vw;
    }

    .first-sub-subcontainer-bot-txt {
        width: 38.281vw;
    }

    .first-sub-subcontainer-bot h1 {
        font-size: 40px;
        line-height: 2.604vw;
    }

    .first-sub-subcontainer-bot p, .first-sub-subcontainer-bot p span {
        font-size: 1vw;
        line-height: 1.5625vw;
    }

    .elem-card-li-txt, .elem-card-li-txt span {
        font-size: 13px!important;
    }

    .third-container-bot-right-elem-card {
        gap: 13px!important;
    }
}

@media screen and (max-width: 1000px) {
    .landing-little-circle {
        transform: scale(0.5);
        top: 280px;
        left: 300px;
    }
    .landing-medium-circle {
        transform: scale(0.5);
        top: 240px;
        left: 200px;
    }
    .landing-big-circle {
        transform: scale(0.5);
        top: 180px;
        left: 100px;
    }
    .landing-trophy-full {
        min-width: 1200px;
        top: 200px;
        left: 0;
    }

    .first-sub-subcontainer-bot h1 {
        font-size: 30px;
        line-height: 50px;
        padding: 0px 30px;
    }

    .first-sub-subcontainer-bot p, .first-sub-subcontainer-bot p span {
        font-size: 15px;
        line-height: 25px;
        padding: 0px 30px;
    }

    .responsive-column-reverse {
        flex-direction: column-reverse;
    }

    .whoweare-right-bloc2 {
        height: 38vh!important;
    }
}

@media screen and (max-width: 600px) {
    .first-sub-subcontainer-bot {
        align-items: end;
    }

    .landing-trophy-full {
        top: 60px;
        left: 0;
    }

    .landing-big-circle {
        top: 70px;
        left: 124px;
    }

    .landing-medium-circle {
        top: 116px;
        left: 208px;
    }

    .landing-little-circle {
        top: 155px;
        left: 275px;
    }

    .msSup1000 {
        display: none;
    }

    .msInf1000 {
        display: flex;
    }
}

@media screen and (max-width: 436px) {
    .navbar-right-mobile .signup-btn {
        padding: 0 9px;
    }
}

.card-header.custom {
    padding: 0!important;
    background-color: transparent;
    border: 0;
}

#accordion .card,
#accordion2 .card,
#accordionModif .card,
#accordionModif2 .card,
#accordionCession .card,
#accordionCession2 .card,
#accordionDissol .card,
#accordionDissol2 .card,
#accordionCapital .card,
#accordionDeclarative .card,
#accordionDeclarative2 .card,
#accordionDeclarative3 .card,
#accordionDeclarative4 .card,
#accordionCessionFond .card,
#accordionQuote .card,
#accordionFusionTup .card {
    border: 0;
    border-top: 1px solid #D4E5E7;
    border-radius: 0;
}

.arrow-icon {
    transition: transform 0.3s;
}

.arrow-icon.rotated {
    transform: rotate(180deg);
}

.ttc-badge {
    font-size: 10px!important;
    text-transform: uppercase;
    position: relative;
    top: -7px;
}

.offre-third-container-total-price.ht {
    font-weight: 500!important;
    font-size: 11px!important;
}

.offre-third-container-total-price.sub-detail {
    font-weight: 500!important;
    font-size: 11px!important;
    color: black!important;
    margin-right: 27px;
}

.offre-third-container-total-price.sub-detail strong {
    font-size: 11px!important;
}

.offre-third-container-total-price.sub-sub-detail {
    font-weight: 500!important;
    font-size: 10px!important;
    color: black!important;
    font-style: italic;
    margin-right: 27px;
}

.separator-accordion {
    border-top: 1px dashed #D4E5E7;
}

.mr-12 {
    margin-right: 12px;
}

.font-11 {
    font-size: 11px;
}

.p-15 {
    padding: 15px;
}

.concept-container-top-h1 {
    color: #004247;
    text-align: center;
    font-family: 'Poppins';
    font-size: 50px;
    font-weight: 500;
    line-height: 54px;
}

.concept-container-top-h1 span {
    color: #004247;
    font-weight: 900;
    font-size: 50px;
    line-height: 54px;
}

.whoweare-left-bloc1 {
    max-width: 639px;
    max-height: 428px;
    height: 66vh;
    border-radius: 10px;
    background: url("../../images/illu1-whoweare-test.png");
    background-size: cover!important;
}

.valeur-imgs {
    width: 100%;
    border-radius: 10px;
    padding: 5px;
}

.whoweare-right-bloc2 {
    max-width: 639px;
    max-height: 428px;
    height: 62vh;
    border-radius: 10px;
    background: url("../../images/illu2-whoweare.png") no-repeat;
    background-size: contain!important;
}

.whoweare-left-bloc1 p {
    color: #FFF!important;
    text-align: right!important;
    font-size: 45px!important;
    font-style: normal!important;
    font-weight: 700!important;
    line-height: 45px!important;
}

.whoweare-first-container-left-p {
    color: #004247;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 29px;
}

.whoweare-first-container-left-p span {
    color: #004247;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 29px;
}
.container.whoweare.bis {
    max-width: 1000px;
}

.container.whoweare.swipper {
    max-width: 1300px;
}

@media screen and (min-width: 768px) and (max-width: 991px) {
    .container.whoweare {
        max-width: 540px!important;
    }
    .container.whoweare.swipper {
        max-width: 1300px!important;
    }
}

@media screen and (max-width: 991px) {
    .row.inverse {
        flex-direction: column-reverse;
    }

    .valeur-title {
        text-align: center!important;
    }

    .service-col:nth-child(2) {
        border-right: none !important;
    }

    .service-col:first-child {
        padding-left: 3.5%;
        align-items: unset;
    }
}

@media screen and (max-width: 578px) {
    .whoweare-left-bloc1 {
        margin: 0 10px 0 10px!important;
    }

    .whoweare-left-bloc1 p {
        font-size: 8vw!important;
    }
}

@media screen and (max-width: 1012px) {
    .footer-p-impact {
        width: 50%!important;
    }
}

.valeur-title {
    font-size: 50px;
    font-style: normal;
    font-weight: 700;
    line-height: 47px;
    background: linear-gradient(270deg, #004247 0%, #049EAA 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.swipper-number-card {
    color: #D9EEF1;
    text-align: right;
    font-size: 60px;
    font-style: normal;
    font-weight: 700;
    line-height: 65px;
    letter-spacing: -2.4px;
}

.footer-p-impact {
    color: white;
    width: 26%;
    font-size: 14px
}

.footer-p-impact span {
    color: white;
    font-size: 25px;
    font-weight: 700;
}

.footer-p-impact strong {
    color: white;
}

.rapider_heading.team-text h3 {
    color: #049EAA;
    text-align: center;
    font-size: 40px!important;
    font-style: normal;
    font-weight: 700;
    line-height: 40px!important;
}

.rapider_heading.team-text div {
    color: #004247;
    text-align: center;
    font-size: 15px!important;
    font-style: normal;
    font-weight: 400;
    line-height: 23px;
    width: 760px;
}

/*diag*/
.rectangle {
    position: relative;
    padding: 20px;
}

.level-1 {
    margin: 0 auto 20px;
}

.level-1::before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-100%);
    width: 1px;
    height: 20px;
    background: #339eaa;
}

.level-1-wrapper {
    width: 246px;
    height: 1px;
    background: #339eaa;
    margin: auto;
    position: relative;
}

.level-1-wrapper::before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-100%);
    width: 1px;
    height: 21px;
    background: #339eaa;
}

.level-1-bis-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 84%;
    transform: translateX(-100%);
    width: 68%;
    height: 1px;
    background: #339eaa;
}

.level-1-bullet-1::before {
    content: "";
    position: absolute;
    top: 100%;
    left: 16%;
    transform: translateX(-100%);
    width: 1px;
    height: 20px;
    background: #339eaa;
}

.level-1-bullet-2::before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-100%);
    width: 1px;
    height: 20px;
    background: #339eaa;
}

.level-1-bullet-3::before {
    content: "";
    position: absolute;
    top: 100%;
    left: 84%;
    transform: translateX(-100%);
    width: 1px;
    height: 20px;
    background: #339eaa;
}

.level-1-bullet-1::after, .level-1-bullet-2::after, .level-1-bullet-3::after {
    content: "";
    position: absolute;
    left: 16%;
    top: 20px;
    transform: translateX(-60%);
    width: 5px;
    height: 5px;
    background: #339eaa;
    border-radius: 10px;
}

.level-1-bullet-2::after {
    left: 50%;
}

.level-1-bullet-3::after {
    left: 84%;
}

@media screen and (max-width: 700px) {
    .rectangle {
        padding: 20px 10px;
    }

    .level-1,
    .level-2 {
        width: 100%;
    }

    .level-1 {
        margin-bottom: 20px;
    }

    .level-1-bis-wrapper::before,
    .level-2-wrapper > li::before {
        display: none;
    }

    .level-2-wrapper,
    .level-2-wrapper::after,
    .level-2::after {
        display: block;
    }

    .level-2-wrapper {
        width: 90%;
        margin-left: 10%;
    }

    .level-2-wrapper::before {
        left: -20px;
        width: 2px;
        height: calc(100% + 40px);
    }

    .level-2-wrapper > li:not(:first-child) {
        margin-top: 50px;
    }

    .rapider_heading.team-text div {
        width: 100%;
    }
}

.person-card-level-3 {
    width: 220px;
    height: 80px;
    left: 0px;
    top: 0px;
    position: absolute;
    background: white;
    border-radius: 10px;
    border: 1px #049EAA solid;
}

.person-card-level-3-text {
    left: 75px;
    top: 43px;
    position: absolute;
    color: #014247;
    font-size: 9px;
    font-weight: 400;
    line-height: 10px;
    word-wrap: break-word;
    text-align: left;
}

.box-level-3 {
    width: 220px;
    height: 80px;
    position: relative;
}

.grid-level-1 {
    display: grid;
    grid-template-columns: repeat(2, auto);
    justify-content: center;
    gap: 25px;
    position: relative;
}

.grid-level-3 {
    display: grid;
    grid-template-columns: repeat(2, auto);
    justify-content: center;
    gap: 15px;
    position: relative;
}

@media (min-width: 1200px) and (max-width: 1390px) {
    .person-card-level-3, .box-level-3 {
        width: 175px;
    }
}

@media screen and (max-width: 1200px) {
    .level-1-bis-wrapper::before,
    .level-1-bullet-1::before,
    .level-1-bullet-2::before,
    .level-1-bullet-3::before,
    .level-1-bullet-1::after,
    .level-1-bullet-2::after,
    .level-1-bullet-3::after {
        display: none;
    }

    .level-1.last::after {
        content: "";
        position: absolute;
        left: 50%;
        top: 100px;
        transform: translateX(-60%);
        width: 5px;
        height: 5px;
        background: #339eaa;
        border-radius: 10px;
    }

    .col-remove {
        display: none;
    }

    .col-next-remove {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media screen and (max-width: 992px) {
    .col-next-remove {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media screen and (max-width: 449px) {
    .categories .title-tags-box {
        display: none;
    }
    .categories .tags-box {
        width: 100px;
        height: 100px;
    }
}

@media screen and (max-width: 470px) {
    .grid-level-1, .grid-level-3 {
        grid-template-columns: repeat(1, auto);
    }

    .grid-level-1 {
        gap: 0;
    }

    .level-1::before,
    .level-1-wrapper,
    .level-1-bis-wrapper,
    .level-1.last::after {
        display: none;
    }
}

.slick-class {
    width: 310px!important;
    height: 385px!important;
    margin: 0 10px;
}

.h3-chart {
    text-align: center;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 50px;
    background: linear-gradient(270deg, #004247 0%, #049EAA 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.chart-img-parent {
    width: 50px;
    height: 50px;
    left: 15px;
    top: 15px;
    position: absolute;
}

.chart-img {
    width: 50px;
    height: 50px;
    left: 0px;
    top: 0px;
    position: absolute;
    border-radius: 100px;
}

.chart-first-name {
    left: 75px;
    top: 20px;
    position: absolute;
    color: #014247;
    font-size: 12px;
    font-weight: 700;
    line-height: 25px;
    word-wrap: break-word
}

/* Tab-list */
.tab-list {
    display: flex;
    flex-direction: row;
    width: 828px;
    gap: 26px;
    border-bottom: 2px solid #069eaa;
    margin-bottom: 20px;
    flex-wrap: nowrap;
}

.tab-list-elem {
    display: flex;
    width: 100%;
    height: 42px;
    justify-content: center;
    align-items: center;
    background: #ffffff;
    border-radius: 7px 7px 0px 0px;
    cursor: pointer;
}

.tab-list-elem p {
    margin: 0;
    font-weight: 300;
    font-size: 13px;
    line-height: 17px;
    color: #014247;
    text-align: center;
}

.tab-list-elem.active {
    background: #014247;
}

.tab-list-elem.active p {
    font-weight: 700;
    color: #ffffff;
}

.img-fluid {
    border-radius: 10px;
    width: 555px;
    height: 267px;
    flex-shrink: 0;
    object-fit: cover;
}

.img-fluid-miniature {
    border-radius: 10px;
    width: 150px;
    height: 100px;
    flex-shrink: 0;
    object-fit: cover;
}

.blog-tags span {
    color: #004247;
    font-size: 10px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px; /* 181.818% */
    letter-spacing: 1.1px;
    text-transform: uppercase;
}

.gap-15 {
    gap: 15px;
}

.gap-10 {
    gap: 10px;
}

.gap-5 {
    gap: 5px;
}

.article-title {
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px;
    background: linear-gradient(270deg, #004247 0%, #049EAA 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.article-subcontent, .link-blog-btn {
    color: #004247;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}

.article-meta {
    color: #049EAA;
    font-size: 11px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0.55px;
}

.article-meta span {
    color: #049EAA;
    font-size: 11px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: 0.55px;
}

.blog-title-bloc2 {
    color: #014247;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 29px;
    margin-bottom: 20px;
}

.recommendation-subtitle {
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    text-decoration: underline;
    background: linear-gradient(270deg, #004247 0%, #049EAA 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tags-box {
    width: 145px;
    height: 195px;
    flex-shrink: 0;
    border-radius: 10px;
}

.title-tags-box {
    color: #FFF;
    text-align: center;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 18px;
    width: 145px;
}

.tags-all {
    height: 75px;
    flex-shrink: 0;
    border-radius: 10px;
    background: #004247;
}

.tags-all:hover, .title-tags-box:hover, .tags-box:hover {
    text-decoration: none;
}

.tags-all p {
    color: #FFF!important;
    text-align: center;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 18px;
    text-decoration: none;
}

.link-blog-btn {
    border-radius: 5px;
    background: #E6F4F6;
    height: 30px;
    font-size: 11px;
}

.link-blog-btn:hover {
    border: 1px solid black;
    text-decoration: unset;
    color: unset;
}

.prev-blog-btn, .next-blog-btn {
    width: 270px;
    height: 75px;
    flex-shrink: 0;
    border-radius: 5px;
    background: linear-gradient(90deg, #E6F4F6 0%, #FFF 100%);
}

.title-prev-btn, .title-next-btn {
    color: #004247;
    font-size: 10px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.subtitle-prev-btn, .subtitle-next-btn {
    color: #004247;
    font-size: 10px;
    font-style: normal;
    font-weight: 700;
    line-height: 15px;
    max-width: 230px;
}

.subtitle-next-btn, .title-next-btn {
    text-align: right;
}

.filter-tags {
    border-radius: 5px;
    background: #dff2f5;
    height: 22px;
}

.see-all-articles {
    color: #004247;
    font-family: Poppins;
    font-size: 11px;
    font-style: normal;
    font-weight: 700;
    line-height: 18px; /* 163.636% */
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}

.see-all-articles:hover {
    color: #004247;
    text-decoration: none;
}

.w-30px {
    width: 30px;
}

.prev-blog-btn.text-decoration-none, .next-blog-btn.text-decoration-none {
    text-decoration: none!important;
}

.img-categories {
    width: 54px;
    height: 54px;
    padding: 12px;
    border-radius: 50%;
    overflow: visible;
}

.column-gap-15 {
    gap: 3px 15px;
}

.paginate_button.blog {
    color: #004247;
    font-family: Poppins;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 25px; /* 125% */
}

.paginate_button.blog.current {
    font-weight: 700;
}

.paginate_button.blog-prev, .paginate_button.blog-next {
    width: 140px;
    height: 40px;
    flex-shrink: 0;
    border-radius: 5px;
    background: #FFF;
    color: #004247;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    padding: 10px;
    text-decoration: none;
}

.filter-tags span {
    font-size: 9px;
}

/**/
.select-box {
    position: relative;
    display: block;
    width: 100%;
    font-size: 18px;
    color: #60666d;
}

.select-box__current {
    position: relative;
    cursor: pointer;
    outline: none;
}
.select-box__current:focus + .select-box__list {
    opacity: 1;
    -webkit-animation-name: none;
    animation-name: none;
}
.select-box__current:focus + .select-box__list .select-box__option {
    cursor: pointer;
}
.select-box__current:focus .select-box__icon {
    -webkit-transform: translateY(-50%) rotate(180deg);
    transform: translateY(-50%) rotate(180deg);
}
.select-box__icon {
    position: absolute;
    top: 50%;
    right: 15px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    transition: 0.2s ease;
}
.select-box__value {
    display: flex;
}
.select-box__input {
    display: none;
}
.select-box__input:checked + .select-box__input-text {
    display: block;
}
.select-box__input-text {
    display: none;
    width: 100%;
    margin: 0;
    padding: 10px 15px;
    background-color: #fff;
    border-radius: 7px;
    font-size: 11px;
}
.select-box__list {
    top: 32px;
    margin-top: 0;
    position: absolute;
    width: 100%;
    padding: 0;
    list-style: none;
    opacity: 0;
    -webkit-animation-name: HideList;
    animation-name: HideList;
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-timing-function: step-start;
    animation-timing-function: step-start;
}
.select-box__option {
    display: block;
    padding: 10px 15px;
    background-color: #fff;
    margin-bottom: 0;
    font-size: 11px;
}
.select-box__option:hover, .select-box__option:focus {
    color: #546c84;
    background-color: #fbfbfb;
}

@-webkit-keyframes HideList {
    from {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }
    to {
        -webkit-transform: scaleY(0);
        transform: scaleY(0);
    }
}

@keyframes HideList {
    from {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }
    to {
        -webkit-transform: scaleY(0);
        transform: scaleY(0);
    }
}

.select-box__option[data-selected="true"] {
    display: none;
}

.select-box__list a {
    text-decoration: none;
    color: #004247;
    border-radius: 0 0 7px 7px;
}

.search-form {
    position: relative;
    height: 40px;
    border-radius: 7px;
    background: #fff;
}

.search-input {
    position: absolute;
    top: 10px;
    left: 38px;
    font-size: 11px;
    background: none;
    color: #5a6674;
    width: 195px;
    height: 20px;
    border: none;
    appearance: none;
    outline: none;
}

.search-button {
    position: absolute;
    top: 10px;
    left: 15px;
    height: 20px;
    width: 20px;
    padding: 0;
    margin: 0;
    border: none;
    background: none;
    outline: none!important;
    cursor: pointer;
}

.category-tag {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.category-tag .category-name {
    white-space: nowrap;
    overflow: hidden;
    max-width: 0;
    transition: max-width 0s ease-out, opacity 0s ease-out;
    display: inline-block;
    opacity: 0;
}

.category-tag:hover {
    text-decoration: none;
}

.category-tag:hover .category-name {
    max-width: 225px;
    opacity: 1;
    transition: max-width 0.5s ease-in, opacity 0.5s ease-in;
}

.article figure.image_resized img, .article figure.image img {
    max-width: 100%;
    height: auto
}

.custom-gradient {
    display: inline-block;
    background: linear-gradient(to left, #023F44, #069EAA);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}