@charset "utf-8";
/* =============================================== FONTS =============================================== */
:root {
    --font-default: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --font-primary: "Montserrat", sans-serif;
    --font-secondary: "Lato", sans-serif;
}


/* =============================================== GLOBAL COLORS =============================================== */
:root {
    --color-default: #212529;
    --color-default-rgb: 33, 37, 41;
    --color-background: #ffffff;
    --color-background-rgb: 255, 255, 255;
    --color-primary: rgb(247, 124, 0);
    --color-primary-rgb: 232, 69, 69;
    --color-secondary: #0b0696;
    --color-secondary-rgb: 50, 53, 58;
    --color-box-background: #ffffff;
    --color-box-background-rgb: 255, 255, 255;
    --color-inverse: #ffffff;
    --color-inverse-rgb: 255, 255, 255;
}


/* =============================================== NAVBAR MENU COLORS =============================================== */
:root {
    --color-nav: rgba(0, 36, 78);
    --color-nav-hover: rgb(247, 146, 0);
    --color-nav-dropdown: #3a3939;
    --color-nav-dropdown-hover: rgb(247, 146, 0);
    --color-nav-dropdown-background: #ffffff;
    --color-nav-mobile-background: #ffffff;
}


/* =============================================== SCROLL =============================================== */
:root {
    scroll-behavior: smooth;
}


/* =============================================== GENERAL CSS =============================================== */
body {
    color: var(--color-default);
    background-color: var(--color-background);
    font-family: var(--font-default);
    opacity: 1;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: 0.3s;
}

a:hover {
    color: rgba(var(--color-primary-rgb), 0.7);
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-primary);
	
}

section {
    color: var(--color-default);
    /*background-color: var(--color-background);*/
    padding: 55px 0;
    overflow: clip;
}

.sectionCustom {
    position: relative;
}

.customPolice {
    color: var(--color-secondary);
    font-size: 1.4rem;
}


/* =============================================== TITLE =============================================== */
.section-title {
    text-align: center;
    padding: 50px;
    background-color: rgba(255, 255, 255, 0.7);
}

.section-portfolio {
    text-align: center;
    align-items: center;
    padding: 50px;
}

.section-title h2 {
    color: var(--color-secondary);
    font-size: 32px;
    font-weight: 700;
    position: relative;
	color: var(--color-secondary);
}

.section-title h2:before,
.section-title h2:after {
    content: "";
    width: 50px;
    height: 2px;
    background: var(--color-primary);
    display: inline-block;
}

.section-title h2:before {
    margin: 0 15px 10px 0;
}

.section-title h2:after {
    margin: 0 0 10px 15px;
}

.section-title p {
    margin-bottom: 0;
}

.sectionCustomTitle {
    text-align: center;
    padding-bottom: 30px;
}

.sectionCustomTitle h2 {
    font-size: 32px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
    color: var(--color-secondary);
}


.sectionCustomTitle h2::before {
    content: "";
    position: absolute;
    display: block;
    width: 120px;
    height: 1px;
    background: #ddd;
    bottom: 1px;
    left: calc(50% - 60px);
}

.sectionCustomTitle h2::after {
    content: "";
    position: absolute;
    display: block;
    width: 40px;
    height: 3px;
    background: #47b2e4;
    bottom: 0;
    left: calc(50% - 20px);
}

.sectionCustomTitle p {
    margin-bottom: 0;
}


/* =============================================== PAGE TITLE =============================================== */
.page-title {
    --color-box-background: rgba(var(--color-default-rgb), .05);
    color: var(--color-default);
    background-color: var(--color-background);
}

.page-title .heading {
    padding: 80px 0;
    border-top: 1px solid rgba(var(--color-default-rgb), 0.1);
}

.page-title .heading h1 {
    font-size: 38px;
    font-weight: 700;
    color: var(--color-secondary);
}

.page-title nav {
    background-color: var(--color-box-background);
    padding: 20px 0;
}

.page-title nav ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.page-title nav ol li+li {
    padding-left: 10px;
    font-size: 16px;
    color: #212529;
}


/* =============================================== GLOBAL HEADER =============================================== */
.header {
    --color-background: #ffffff;
    --color-inverse: #ffffff;
    color: var(--color-default);
    background-color: var(--color-background);
    padding: 15px 0;
    transition: all 0.5s;
    z-index: 997;
}

.header .logo img {
    max-height: 100px;
    margin-right: 6px;
}

.header .logo h1 {
    font-size: 27px;
    margin: 0;
    font-weight: 600;
    color: #ffffff;
}

.header .logo h1:hover {
    color: #ffffff;
}

.header .customIconHome {
    font-weight: 700;
    text-decoration: none;
    margin-left: 5rem;
    color: var(--color-secondary);
    font-size: 2.7rem;
}

.header .logo span {
    color: var(--color-primary);
    font-size: 24px;
    font-weight: 600;
    padding-left: 3px;
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
    color: var(--color-inverse);
    background: rgb(247, 124, 0);
    border-color: #ffffff;
    font-size: 22px;
    padding: 8px 15px;
    margin-right: 4rem;
    border-radius: 14px;
    transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
    color: var(--color-inverse);
    background: rgba(255, 170, 44);
}

.spanCustom {
    color: var(--color-primary);
}


.header .offcanvas-header {
    background-color: rgba(0, 59, 121);
    color: #ffffff;
    text-decoration-line: underline;
}

.header .offcanvas-header .btn-custom-offcanvas {
    cursor: pointer;
}

.header .offcanvas {
    height: 50%;
    width: 35% !important;
    position: fixed;
    transition: all 0.5s;
    background-color: #f3f8fc;
}

.header .offcanvas-header .offcanvas-title {
    font-size: 2.3rem !important;
}

.header .offcanvas-body ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.header .offcanvas-body ul li {
    padding: 10px 0;
}

.header .offcanvas-body ul li a {
    color: rgba(0, 59, 121);
    font-size: 20px;
    font-weight: 600;
    display: block;
    transition: color 0.3s ease;
    line-height: 3em;
    text-decoration: none;
}

.header .offcanvas-body ul li a:hover {
    color: var(--color-primary);
}

@media (max-width: 1200px) {
    .header .logo {
        order: 1;
    }

    .header .navmenu {
        order: 3;
        z-index: 1050;
    }

    .header .btn-getstarted {
        order: 2;
        margin: 0 15px 0 0;
        padding: 6px 15px;
    }

    .header .offcanvas {
        z-index: 1060;
        height: 45%;
        width: 40% !important;
    }

    .header .offcanvas-body ul li a {
        line-height: 2.5rem;
    }
}

@media (max-width: 991px) {
    .header .offcanvas {
        z-index: 1060;
        height: 50%;
        width: 50% !important;
    }

    .header .offcanvas-body ul li a {
        line-height: 2rem;
    }
}

@media (max-width: 768px) {
    .header .offcanvas {
        z-index: 1060;
        height: 45%;
        width: 70% !important;
    }

    .header .offcanvas-body ul li a {
        line-height: 2rem;
    }
}

.scrolled .header {
    --color-background: #ffffff;
    --color-secondary: #444444;
    --color-nav: #444444;
    --color-nav-hover: rgb(247, 146, 0);
    box-shadow: 0 0 30px 10px rgba(0, 0, 0, 0.1);
}

section {
    scroll-margin-top: 90px;
}

@media (max-width: 1199px) {
    section {
        scroll-margin-top: 66px;
    }

    .header .customIconHome {
        margin-left: 0.5rem;
        font-size: 2rem;
    }
}


/* =============================================== CUSTOM HEADER =============================================== */
.index-page .header {
    --color-background: rgba(255, 255, 255, 0);
    --color-secondary: #37517e;
    --color-nav: rgba(255, 255, 255, 0.515);
    --color-nav-hover: #2185bc;
}

.index-page.scrolled .header {
    --color-background: rgba(40, 58, 90, 0.9);
    --color-secondary: #ffffff;
    --color-nav: #ffffff;
    --color-nav-hover: rgb(247, 159, 0);
}

.btn-custom {
    background-color:#ffffff;
}


/* =============================================== PAGE BACKGROUND =============================================== */
.page-layer{
    background-image: url("../img/backgroundPage1/background-CalqueFondDegrade.png");
    height: 100%;
    width: 100%;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
}

.page-wrapper {
    background-image: url("../img/backgroundPage1/background-CalqueFond1.png");
    height: 100%;
    width: 100%;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
}

.page-right-side-menu-linea {
    background-image: url("../img/backgroundPage1/background-CalqueFondTrait.png");
    width: 100%;
    background-repeat: no-repeat;
    background-position: top -20px right 200px;
    background-size: 600px auto;
    background-attachment: scroll;
    display: flex;
    align-items: center;
}

.page-right-side-menu{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    position: absolute;
    right: 0;
    top: 50rem;
}

.page-right-side-menu .service-menu-1 {
    list-style-type: none;
    margin: -40rem 10rem 0 0;
}

.page-right-side-menu .service-menu-2 {
    list-style-type: none;
    margin: 0 13rem 0 0;
}

.page-right-side-menu .service-menu-3 {
    list-style-type: none;
    margin: 0 16.4rem 0 0;
}

.page-right-side-menu .service-menu-4 {
    list-style-type: none;
    margin: 0 19.5rem 0 0;
}

.page-right-side-menu .service-menu-5 {
    list-style-type: none;
    margin: 0 23rem 0 0;
}

.page-right-side-menu .service-menu-6 {
    list-style-type: none;
    margin: 0 26.2rem 0 0;
}

.page-right-side-menu .service-item {
    margin-bottom: 5px;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.page-right-side-menu .service-item a {
    position: relative;
}

.page-right-side-menu .service-item a img {
    width: 250px;
    height: 85px;
}

@media (max-width: 1800px) {
    .page-right-side-menu-linea {
        background-size: 0;
        background-image: none;
    }

    .page-right-side-menu {
        display: none;
    }
}

@media screen and (max-width: 1200px) {
    .page-right-side-menu-linea {
        background-size: 0;
        background-image: none;
    }

    .page-right-side-menu {
        display: none;
    }
}
@media (max-width: 1199px) {
    .page-right-side-menu-linea {
        background-size: 0;
        background-image: none;
    }

    .page-right-side-menu {
        display: none;
    }
}


/* =============================================== NAVBAR MENU =============================================== */
@media (min-width: 900px) {
    .navmenu ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center;
    }

    .navmenu li {
        position: relative;
    }

    .navmenu a,
    .navmenu a:focus {
        color: var(--color-secondary);
        padding: 18px 15px;
        font-size: 23px;
        font-family: var(--font-secondary);
        font-weight: 400;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
        text-decoration: none;
    }

    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        transition: 0.3s;
    }

    .navmenu li:last-child a {
        padding-right: 0;
    }

    .navmenu li:hover>a,
    .navmenu .active,
    .navmenu .active:focus {
        color: var(--color-primary);
    }

    .navmenu .dropdown ul {
        margin: 0;
        padding: 10px 0;
        background: var(--color-nav-dropdown-background);
        display: block;
        position: absolute;
        visibility: hidden;
        opacity: 0;
        transition: 0.3s;
        border-radius: 4px;
        z-index: 99;
        left: 14px;
        top: calc(100% + 30px);
    }

    .navmenu .dropdown ul li {
        min-width: 200px;
    }

    .navmenu .dropdown ul a {
        padding: 10px 20px;
        font-size: 20px;
        text-transform: none;
        color: var(--color-nav-dropdown);
    }

    .navmenu .dropdown ul a i {
        font-size: 12px;
    }

    .navmenu .dropdown ul a:hover,
    .navmenu .dropdown ul .active:hover,
    .navmenu .dropdown ul li:hover>a {
        color: var(--color-nav-dropdown-hover);
    }

    .navmenu .dropdown:hover>ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }

    .navmenu .dropdown .dropdown ul {
        top: 0;
        left: 90%;
        visibility: hidden;
    }

    .navmenu .dropdown .dropdown:hover>ul {
        opacity: 1;
        top: 0;
        left: 100%;
        visibility: visible;
    }

    .navmenu .megamenu {
        position: static;
    }

    .navmenu .megamenu ul {
        margin: 0;
        padding: 10px;
        background: var(--color-nav-dropdown-background);
        box-shadow: 0 0 20px rgba(var(--color-default-rgb), 0.1);
        position: absolute;
        top: 130%;
        left: 0;
        right: 0;
        visibility: hidden;
        opacity: 0;
        display: flex;
        transition: 0.3s;
        border-radius: 4px;
        z-index: 99;
    }

    .navmenu .megamenu ul li {
        flex: 1;
    }

    .navmenu .megamenu ul li a,
    .navmenu .megamenu ul li:hover>a {
        padding: 10px 20px;
        font-size: 15px;
        color: var(--color-nav-dropdown);
    }

    .navmenu .megamenu ul li a:hover,
    .navmenu .megamenu ul li .active,
    .navmenu .megamenu ul li .active:hover {
        color: var(--color-nav-dropdown-hover);
    }

    .navmenu .megamenu:hover>ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }

    .navmenu .dd-box-shadow {
        box-shadow: 0 0 30px rgba(var(--color-default-rgb), 0.15);
    }
}


/* =============================================== MOBILE RESPONSIVE =============================================== */
@media (max-width: 1200px) {
    .mobile-nav-toggle {
        color: var(--color-secondary);
        font-size: 2rem;
        line-height: 0;
        margin-right: 10px;
        cursor: pointer;
        font-weight: 700;
    }

    .navmenu {
        padding: 0;
        z-index: 9997;
    }

    .navmenu ul {
        display: none;
        position: absolute;
        inset: 60px 20px 20px 20px;
        padding: 10px 0;
        margin: 0;
        border-radius: 6px;
        background-color: var(--color-nav-mobile-background);
        overflow-y: auto;
        transition: 0.3s;
        z-index: 9998;
        box-shadow: 0px 0px 30px rgba(var(--color-default-rgb), 0.1);
    }

    .navmenu a,
    .navmenu a:focus {
        color: var(--color-nav-dropdown);
        padding: 10px 20px;
        font-family: var(--font-secondary);
        font-size: 17px;
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
        text-decoration: none;
    }

    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: 0.3s;
        background-color: rgba(var(--color-primary-rgb), 0.1);
    }

    .navmenu a i:hover,
    .navmenu a:focus i:hover {
        background-color: var(--color-primary);
        color: var(--color-inverse);
    }

    .navmenu a:hover,
    .navmenu .active,
    .navmenu .active:focus {
        color: var(--color-nav-dropdown-hover);
    }

    .navmenu .active i,
    .navmenu .active:focus i {
        background-color: var(--color-primary);
        color: var(--color-inverse);
        transform: rotate(180deg);
    }

    .navmenu .dropdown ul,
    .navmenu .megamenu ul {
        position: static;
        display: none;
        z-index: 99;
        padding: 10px 0;
        margin: 10px 20px;
        background-color: var(--color-nav-dropdown-background);
        transition: all 0.5s ease-in-out;
    }

    .navmenu .dropdown ul ul,
    .navmenu .megamenu ul ul {
        background-color: rgba(33, 37, 41, 0.1);
    }

    .navmenu .dropdown>.dropdown-active,
    .navmenu .megamenu>.dropdown-active {
        display: block;
        background-color: rgba(33, 37, 41, 0.03);
    }

    .mobile-nav-active {
        overflow: hidden;
    }

    .mobile-nav-active .mobile-nav-toggle {
        color: #fff;
        position: absolute;
        font-size: 32px;
        top: 15px;
        right: 15px;
        margin-right: 0;
        z-index: 9999;
    }

    .mobile-nav-active .navmenu {
        position: fixed;
        overflow: hidden;
        inset: 0;
        background: rgba(33, 37, 41, 0.8);
        transition: 0.3s;
    }

    .mobile-nav-active .navmenu>ul {
        display: block;
    }
}

.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
    background-color: var(--color-primary);
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}

.scroll-top i {
    font-size: 24px;
    color: #ffffff;
    line-height: 0;
}

.scroll-top:hover {
    background-color: rgba(255, 170, 44);
    color: #ffffff;
}

.scroll-top.active {
    visibility: visible;
    opacity: 1;
}


/*=============================================== PRELOADER ===============================================*/
#preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    overflow: hidden;
    background-color: var(--color-background);
    transition: all 0.6s ease-out;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

#preloader div {
    width: 13px;
    height: 13px;
    background-color: var(--color-primary);
    border-radius: 50%;
    animation-timing-function: cubic-bezier(0, 1, 1, 0);
    position: absolute;
    left: 50%;
}

#preloader div:nth-child(1) {
    left: calc(50% + 8px);
    animation: animate-preloader-1 0.6s infinite;
}

#preloader div:nth-child(2) {
    left: calc(50% + 8px);
    animation: animate-preloader-2 0.6s infinite;
}

#preloader div:nth-child(3) {
    left: calc(50% + 32px);
    animation: animate-preloader-2 0.6s infinite;
}

#preloader div:nth-child(4) {
    left: calc(50% + 56px);
    animation: animate-preloader-3 0.6s infinite;
}

@keyframes animate-preloader-1 {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes animate-preloader-3 {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(0);
    }
}

@keyframes animate-preloader-2 {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(24px, 0);
    }
}


/* =============================================== DISABLE ANIMATION ON MOBILE =============================================== */
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0s !important;
    }

    #preloader {
        display: none;
    }
}


/* =============================================== TESTIMONIALS =============================================== */
.testimonials {
    background-attachment: fixed;
    margin: 0 auto;
}

.testimonials .container {
    overflow: hidden;
    margin: auto;
}

.testimonials .container .testimonialsCustomStyle {
    margin-top: 16rem;
    max-width: 600px;
    background-color: rgb(255, 255, 255, 0.7);
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
    overflow: hidden;
}

.testimonials .testimonial-item {
    text-align: center;
    color: var(--color-secondary);
}

.textCustom {
    color: rgb(247, 124, 0);
    font-weight: 600;
    font-size: 20px;
}

.textCustom:hover {
    color: rgb(247, 165, 0);
}

.testimonials .testimonial-item .testimonial-img {
    width: 100px;
    border-radius: 50%;
    border: 6px solid rgba(255, 255, 255, 0.15);
    margin: 0 auto;
}

.testimonials .testimonials-item h2 {
    color: var(--color-secondary);
}
.testimonials .testimonial-item h3 {
    font-size: 22px;
    font-weight: bold;
    margin: 10px 0 5px 0;
    color: var(--color-secondary);
}

.testimonials .testimonial-item h4 {
    font-size: 14px;
    color: var(--color-secondary);
    margin: 0 0 15px 0;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
    color: rgba(255, 255, 255, 0.6);
    font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
    display: inline-block;
    left: -5px;
    position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
    display: inline-block;
    right: -5px;
    position: relative;
    top: 10px;
}

.testimonials .testimonial-item p {
    font-style: italic;
    margin: 0 auto 15px auto;
    color: var(--color-secondary);
    font-size: 19px;
}

.testimonials .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: rgb(169,169,169);
    opacity: 0.5;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #ffc451;
    opacity: 1;
}

@media (min-width: 1730px) {
    .testimonials .testimonial-item p {
        width: 80%;
    }
}

@media (max-width: 1730px) {
    .testimonials {
        background-attachment: fixed;
        padding: 0 50px 50px 0;
        margin: 0 auto;
    }

    .testimonials .container {
        overflow: hidden;
        margin: auto;
    }

    .testimonials .container .testimonialsCustomStyle {
        margin-left: 3rem;
    }
}

@media (min-width: 992px) {
    .testimonials .testimonial-item p {
        width: 80%;
    }
}


/* =============================================== CLIENTS SECTION =============================================== */
.partenaire {
    scroll-behavior: smooth;
    position: relative;
    padding: 5px;
    height: 200px;
    margin-bottom: 3rem;
}

.partenaire .swiper-slide {
    width: 210px;
    height: 175px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    margin-right: 30px;
}

.partenaire .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.partenaire .swiper {
    width: 100%;
    max-width: 700px;
    background: #f2f2f2f2;
    padding-left: 30px;
}

.partenaire .swiper-3d .swiper-wrapper {
    transform-style: preserve-3d;
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
}

@media (max-width: 640px) {
    .partenaire .swiper {
        height: 130px;
        padding-left: 10px;
        max-width: 380px;
    }

    .partenaire .swiper .swiper-slide {
        width: 125px;
        height: 125px;
        margin-right: 10px;
    }
}


/* =============================================== SERVICES =============================================== */
@keyframes fadeInFromBottom {
    0% { opacity: 0; transform: translateY(100%); }
    100% { opacity: 1; transform: translateY(0); }
}

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

.services .icon-box .voile {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #37517e;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    animation-duration: 0.3s;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
}

.services .icon-box:hover .voile {
    animation-name: fadeInFromBottom;
}

.services .icon-box:hover h4 a {
    color: #ffffff;
}

.services .icon-box {
    box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.1);
    padding: 80px 30px;
    transition: all ease-in-out 0.4s;
    background: #ffffff;
    cursor: pointer;
    height: 350px;
    width: 350px;
    z-index: 1;
    position: relative;
    text-align: center;
}

.services .icon-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s;
    z-index: -1;
}

.services .icon-box:hover::before {
    opacity: 1;
}

.services .icon-box .icon {
    width: 100px;
    height: 100px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: 0.3s;
}

.services .icon-box h4 {
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
    overflow: hidden;
    white-space: nowrap;
}

.services .icon-box .btn-info {
    font-size: 15px;
    font-weight: 700;
    margin: 55px auto 0;
    color: #ffffff;
    padding: 0 15px 0 15px;
    background-color: #0e4071;
    border-color: #0e4071;
    border-radius: 5%;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.services .icon-box h4 a {
    color: #37517e;
    transition: ease-in-out 0.3s;
    text-decoration: none;
}

.services .icon-box h4 img {
     transition: ease-in-out 0.3s;
 }

.services .icon-box p {
    line-height: 30px;
    font-size: 24px;
    margin-bottom: 0;
    text-align: center;
    color: #ffffff;
    padding: 0 15px 0 15px;
    font-weight: 600;
}

.services .icon-box:hover {
    transform: translateY(-10px);
    border-color: #fff;
    box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.1);
}

.services .icon-box:hover h4 a {
    color: #37517e;
}

@media screen and (min-width: 368px) {
    .services .icon-box {
        margin-bottom: 30px;
        padding: 40px 15px;
        width: 100%;
        height: auto;
        left: 0;
    }

    .services .icon-box .icon {
        width: 100px;
        height: 100px;
    }

    .services .icon-box h4 {
        font-size: 18px;
    }

    .services .icon-box .btn-info {
        margin: 30px auto 0;
        font-size: 14px
    }

    .services .icon-box .voile {
        font-size: 22px;
    }
}

@media screen and (min-width: 1024px) {
    .services .icon-box {
        padding: 60px 25px;
    }

    .services .icon-box .icon {
        width: 100px;
        height: 100px;
    }

    .services .icon-box h4 {
        font-size: 20px;
    }

    .services .icon-box .btn-info {
        font-size: 20px;
        margin: 30px auto 0;
    }

    .services .icon-box .voile {
        font-size: 20px;
    }
}

@media (max-width: 1199px) {
    .services .icon-box {
        margin-bottom: 30px;
        padding: 40px 15px;
        width: 100%;
        height: auto;
    }

    .services .icon-box .icon {
        width: 100px;
        height: 100px;
    }

    .services .icon-box h4 {
        font-size: 20px;
    }

    .services .icon-box .btn-info {
        margin: 30px auto 0;
        font-size: 20px
    }

    .services .icon-box .voile {
        font-size: 20px;
    }
}


/* =============================================== FEATURES =============================================== */
.features .features-item {
    color: rgba(var(--color-default-rgb), 0.8);
}

.features .features-item+.features-item {
    margin-top: 100px;
}

@media (max-width: 768px) {
    .features .features-item+.features-item {
        margin-top: 40px;
    }
}

.features .features-item h3 {
    color: var(--color-secondary);
    font-weight: 700;
    font-size: 26px;
}

.features .features-item .btn-get-started {
    background-color: var(--color-primary);
    color: var(--color-inverse);
    padding: 8px 30px 10px 30px;
    border-radius: 4px;
}

.features .features-item .btn-get-started:hover {
    background-color: rgba(var(--color-primary-rgb), 0.9);
}

.features .features-item ul {
    list-style: none;
    padding: 0;
}

.features .features-item ul li {
    padding-bottom: 10px;
    display: flex;
    align-items: flex-start;
}

.features .features-item ul li:last-child {
    padding-bottom: 0;
}

.features .features-item ul i {
    font-size: 20px;
    padding-right: 4px;
    color: var(--color-primary);
}

.features .features-item img {
    border: 6px solid var(--color-box-background);
    box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.1);
}

.features .features-item .features-img-bg {
    position: relative;
    min-height: 500px;
}

@media (max-width: 640px) {
    .features .features-item .features-img-bg {
        min-height: 300px;
    }
}

.features .features-item .features-img-bg img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.features .features-item .image-stack {
    display: grid;
    position: relative;
    grid-template-columns: repeat(12, 1fr);
}

.features .features-item .image-stack .stack-back {
    grid-column: 4/-1;
    grid-row: 1;
    width: 100%;
    z-index: 1;
}

.features .features-item .image-stack .stack-front {
    grid-row: 1;
    grid-column: 1/span 8;
    margin-top: 20%;
    width: 100%;
    z-index: 2;
}


/* =============================================== PRESENTATION SECTIONS =============================================== */
.portfolio {
    list-style: none;
    margin-bottom: 20px;
}

.spanCustomPortfolio {
    color: var(--color-primary);
    font-weight: 600;
}

.portfolio li {
    cursor: pointer;
    display: inline-block;
    margin: 10px 5px;
    font-size: 15px;
    font-weight: 500;
    line-height: 1;
    color: #444444;
    transition: all 0.3s;
    padding: 8px 20px;
    border-radius: 50px;
    font-family: "Poppins", sans-serif;
}

.portfolio li:hover,
.portfolio li.filter-active {
    background: #47b2e4;
    color: #fff;
}
.portfolio .portfolio-item {
    margin-bottom: 30px;
}

.portfolio .portfolio-item .portfolio-img {
    overflow: hidden;
}

.portfolio .portfolio-item .portfolio-img img {
    transition: all 0.6s;
}

.portfolio .portfolio-item .portfolio-info {
    opacity: 0;
    position: absolute;
    left: 12px;
    bottom: 0;
    z-index: 3;
    right: 12px;
    transition: all 0.3s;
    background: rgba(55, 81, 126, 0.8);
    padding: 10px 15px;
}

.portfolio .portfolio-item .portfolio-info h4 {
    font-size: 18px;
    color: #fff;
    font-weight: 600;
    margin-bottom: 0;
}

.portfolio .portfolio-item .portfolio-info p {
    color: #f9fcfe;
    font-size: 14px;
    margin-bottom: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
    position: absolute;
    right: 40px;
    font-size: 24px;
    top: calc(50% - 18px);
    color: #fff;
    transition: 0.3s;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
    color: #47b2e4;
}

.portfolio .portfolio-item .portfolio-info .details-link {
    right: 10px;
}

.portfolio .portfolio-item:hover .portfolio-img img {
    transform: scale(1.15);
}

.portfolio .portfolio-item:hover .portfolio-info {
    opacity: 1;
}

#presentation .portfolio-info {
    padding: 35px 25px;
    text-align: center;
}

/*@media (max-width: 1199px) {*/
/*    #presentation .portfolio-info {*/
/*        padding: 25px 15px;*/
/*    }*/
/*}*/

/*@media (max-width: 991px) {*/
/*    #presentation .portfolio-info {*/
/*        padding: 15px 10px;*/
/*    }*/
/*}*/


/* =============================================== PORTFOLIO DETAILS PAGE =============================================== */
.portfolio-details .portfolio-details-slider img {
    width: 80%;
    margin: 7rem 0 5rem;
    align-items: center;
    text-align: center;
}

.portfolio-details .swiper-wrapper {
    height: auto;
}

.portfolio-details .portfolio-details-slider .special-image img {
    background-color: rgba(255, 255, 255, 0.7);
}

.portfolio-details .swiper-button-prev {
    width: 40px;
    height: 40px;
    margin-left: 3rem;
}

.portfolio-details .swiper-button-next {
    width: 40px;
    height: 40px;
    margin-right: 3rem;
}

.portfolio-details .swiper-button-prev-custom {
    left: 140px;
    right: auto;
}
.portfolio-details .swiper-button-next-custom {
    left: auto;
    right: 140px;
}

.portfolio-details .swiper-button-prev:after,
.portfolio-details .swiper-button-next:after {
    color: rgba(255, 255, 255, 0.8);
    background-color: rgba(0, 0, 0, 0.15);
    font-size: 24px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.portfolio-details .swiper-button-prev:hover:after,
.portfolio-details .swiper-button-next:hover:after {
    background-color: rgba(0, 0, 0, 0.3);
}

.customDetails {
    font-size: 16px;
}

.scroll-down {
    background-color: var(--color-primary);
    border-radius: 4px;
    transition: 0.3s;
    text-decoration: none;
    margin: 0 auto;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-30px);
    }
    60% {
        transform: translateY(-15px);
    }
}

.scroll-down i {
    font-size: 30px;
    color: #ffffff;
}

.scroll-down:hover {
    background-color: rgba(255, 170, 44);
    color: #ffffff;
}


@media (max-width: 1199px) {
    .portfolio-details .swiper-button-prev {
        margin-left: 2rem;
    }

    .portfolio-details .swiper-button-next {
        margin-right: 2rem;
    }
}

@media (max-width: 991px) {

    .portfolio-details .swiper-button-prev,
    .portfolio-details .swiper-button-next {
        display: none;
    }
}

.portfolio-details .portfolio-info h3 {
    color: var(--color-secondary);
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
}

.portfolio-details .portfolio-info h3:after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: var(--color-primary);
    left: 0;
    bottom: 0;
}

.portfolio-details .portfolio-info ul {
    list-style: none;
    padding: 0;
    font-size: 15px;
    margin: 0 !important;
}

.portfolio-details .portfolio-info ul li {
    display: flex;
    flex-direction: column;
    padding-bottom: 15px;
}

.portfolio-details .portfolio-info ul strong {
    text-transform: uppercase;
    font-weight: 500;
    color: rgba(var(--color-default-rgb), 0.5);
    font-size: 15px;
}

.portfolio-details .portfolio-info .btn-visit {
    padding: 8px 35px;
    background: var(--color-primary);
    color: var(--color-inverse);
    border-radius: 50px;
    transition: 0.3s;
    text-decoration: none;
    margin-top: 10px;
    font-size: 16px;
    font-weight: 500;
}

.portfolio-details #presentation {
    padding: 80px;
}

.portfolio-details .portfolio-info .btn-visit:hover {
    background: rgba(255, 170, 44);
}

.portfolio-details .portfolio-description h2 {
    color: var(--color-secondary);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
    padding: 0;
    font-size: 22px;
    color: var(--color-secondary);
    text-align: justify;
}

.portfolio-details .portfolio-description .testimonial-item {
    padding: 30px;
    position: relative;
    background: var(--color-box-background);
    margin: 40px 0 40px 0;
}

.portfolio-details .portfolio-description .testimonial-item .testimonial-img {
    width: 90px;
    border-radius: 50px;
    border: 6px solid var(--color-background);
    float: left;
    margin: 0 10px 0 0;
}

.portfolio-details .portfolio-description .testimonial-item h3 {
    font-size: 18px;
    font-weight: bold;
    margin: 15px 0 5px 0;
    padding-top: 20px;
    color: rgba(255, 170, 44);
}

.portfolio-details .portfolio-description .testimonial-item h4 {
    font-size: 14px;
    color: #6c757d;
    margin: 0;
}

.portfolio-details .portfolio-description .testimonial-item .quote-icon-left,
.portfolio-details .portfolio-description .testimonial-item .quote-icon-right {
    color: rgba(255, 170, 44);
    font-size: 26px;
    line-height: 0;
}

.portfolio-details .portfolio-description .testimonial-item .quote-icon-left {
    display: inline-block;
    left: -5px;
    position: relative;
}

.portfolio-details .portfolio-description .testimonial-item .quote-icon-right {
    display: inline-block;
    right: -5px;
    position: relative;
    top: 10px;
    transform: scale(-1, -1);
}

.portfolio-details .portfolio-description .testimonial-item p {
    font-style: italic;
    margin: 0 0 15px 0;
    padding: 0;
    text-align: center;
}

@media (max-width: 1399px) {
    .portfolio-details #presentation {
        padding: 10px;
        margin: -3rem;
    }
}


@media (max-width: 1199px) {
    .portfolio-details #presentation {
        padding: 20px;
        margin: -5rem;
    }

    .portfolio-details .portfolio-description p {
        font-size: 22px;
    }

    .portfolio-details .portfolio-description .testimonial-item p {
        font-size: 20px;
    }
}

@media (max-width: 991px) {
    .portfolio-details #presentation {
        padding: 30px;
    }

    .portfolio-details .portfolio-description .testimonial-item p {
        font-size: 22px;
    }

    .portfolio-details .portfolio-details-slider img {
        width: 100%;
    }

    .portfolio-details .portfolio-description p {
        font-size: 20px;
    }

    .portfolio-details .portfolio-info h3:after {
        width: 100px;
    }

    .portfolio-details .portfolio-info ul strong {
        font-size: 20px;
    }

    .portfolio-details .portfolio-info {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .portfolio-details .portfolio-info ul li {
        display: flex;
        align-items: center;
        padding-bottom: 15px;
    }

    .portfolio-details .portfolio-info .btn-visit {
        max-width: 220px;
        margin-left: auto;
        margin-right: auto;
    }
}


/* =============================================== CALL-TO-ACTION =============================================== */
.call-to-action {
    --color-default: #ffffff;
    --color-background: #000000;
    --color-background-rgb: 0, 0, 0;
    padding: 80px 0;
    position: relative;
    -webkit-clip-path: inset(0);
    clip-path: inset(0);
}

.call-to-action img {
    position: fixed;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    z-index: 1;
}

.call-to-action:before {
    content: "";
    background: rgba(var(--color-background-rgb), 0.5);
    position: absolute;
    inset: 0;
    z-index: 2;
}

.call-to-action .container {
    position: relative;
    z-index: 3;
}

.call-to-action h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-default);
}

.call-to-action p {
    color: var(--color-default);
}

.call-to-action .cta-btn {
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 40px;
    border-radius: 5px;
    transition: 0.5s;
    margin: 10px;
    border: 2px solid var(--color-inverse);
    color: var(--color-inverse);
}

.call-to-action .cta-btn:hover {
    background: var(--color-primary);
    border: 2px solid var(--color-primary);
}


/* =============================================== RECENT POSTS =============================================== */
.recent-posts article {
    background-color: var(--color-box-background);
    box-shadow: 0 4px 16px rgba(var(--color-default-rgb), 0.1);
    padding: 30px;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
}

.recent-posts .post-img {
    max-height: 240px;
    margin: -30px -30px 15px -30px;
    overflow: hidden;
}

.recent-posts .post-category {
    font-size: 16px;
    color: rgba(var(--color-default-rgb), 0.5);
    margin-bottom: 10px;
}

.recent-posts .title {
    font-size: 20px;
    font-weight: 600;
    padding: 0;
    margin: 0 0 20px 0;
}

.recent-posts .title a {
    color: var(--color-secondary);
    transition: 0.3s;
}

.recent-posts .title a:hover {
    color: var(--color-primary);
}

.recent-posts .post-author-img {
    width: 50px;
    border-radius: 50%;
    margin-right: 15px;
}

.recent-posts .post-author {
    font-weight: 600;
    margin-bottom: 5px;
}

.recent-posts .post-date {
    font-size: 14px;
    color: rgba(var(--color-default-rgb), 0.5);
    margin-bottom: 0;
}


/* =============================================== PRICE =============================================== */
.pricing .row {
    padding: 50px 0 120px 0;
}

.pricing .pricing-item {
    padding: 40px 40px;
    box-shadow: 0 3px 20px -2px rgba(20, 45, 100, 0.1);
    background: #fff;
    height: 100%;
    border-top: 4px solid #fff;
    border-radius: 5px;
}

.pricing .pricing-item ul {
    border-bottom: 3px solid #37517e;
    padding-bottom: 10px;
}

.pricing h3 {
    font-weight: 600;
    margin: 10px 0 15px 0;
    font-size: 25px;
    color: #37517e;
}

.pricing h4 {
    font-size: 48px;
    color: #37517e;
    font-weight: 700;
    font-family: "Jost", sans-serif;
    margin-bottom: 25px;
}

.pricing h4 sup {
    font-size: 28px;
}

.pricing h4 span {
    color: #47b2e4;
    font-size: 18px;
    display: block;
}

.pricing ul {
    padding: 20px 0;
    list-style: none;
    color: #999;
    text-align: left;
    line-height: 20px;
}

.pricing ul li {
    padding: 10px 0 10px 30px;
    position: relative;
    font-size: 18px;
}

.pricing ul i {
    color: #28a745;
    font-size: 24px;
    position: absolute;
    left: 0;
    top: 6px;
}

.pricing ul .na {
    color: #ccc;
}

.pricing ul .na i {
    color: #ccc;
}

.pricing ul .na span {
    text-decoration: line-through;
}

.pricing .buy-btn {
    display: inline-block;
    padding: 12px 35px;
    border-radius: 35px;
    color: #47b2e4;
    font-size: 18px;
    font-weight: 500;
    font-family: "Jost", sans-serif;
    transition: 0.3s;
    border: 1px solid #47b2e4;
    text-align: center;
}

.pricing .buy-btn:hover {
    background: #47b2e4;
    color: #fff;
}
.pricing .featured {
    z-index: 10;
    border: 3px solid #47b2e4;
}

.pricing .featured .buy-btn {
    background-color: #47b2e4;
    color: #fff;
}

.pricing .featured .buy-btn:hover {
    background-color: #23a3df;
}

@media (min-width: 992px) {
    .pricing .featured {
        transform: scale(1.15);
    }

    .pricing .left-right {
        margin-top: 50px;
    }
}

/*@media (max-width: 767px) {*/
/*    .pricing .featured {*/
/*        max-width: 80%;*/
/*        margin: 0 auto 30px auto;*/
/*    }*/
/*}*/

/*@media (max-width: 420px) {*/
/*    .pricing .featured {*/
/*        max-width: 100%;*/
/*        margin: 0 auto 30px auto;*/
/*    }*/
/*}*/


/* =============================================== CONTACT =============================================== */
.contact .info {
    border-top: 3px solid #47b2e4;
    border-bottom: 3px solid #47b2e4;
    padding: 30px;
    background: #fff;
    width: 100%;
    box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.1);
}

.contact .info i {
    font-size: 20px;
    color: #47b2e4;
    float: left;
    width: 44px;
    height: 44px;
    background: #e7f5fb;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
}

.contact .info h4 {
    padding: 0 0 0 60px;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #37517e;
}

.contact .info p {
    padding: 0 0 10px 60px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #6182ba;
}

.contact .info .email p {
    padding-top: 5px;
}

.contact .info .social-links {
    padding-left: 60px;
}

.contact .info .social-links a {
    font-size: 18px;
    display: inline-block;
    background: #333;
    color: #fff;
    line-height: 1;
    padding: 8px 0;
    border-radius: 50%;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
    margin-right: 10px;
}

.contact .info .social-links a:hover {
    background: #47b2e4;
    color: #fff;
}

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i,
.contact .info .timetable:hover i {
    background: #47b2e4;
    color: #fff;
}

@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


/* =============================================== FOOTER =============================================== */
#footer {
    font-size: 14px;
    background: #37517e;
}

#footer .footer-top {
    padding: 60px 0 30px 0;
    background: #f3f5fa;
}

#footer .footer-top .footer-contact {
    margin-bottom: 30px;
}

#footer .footer-top .footer-contact h3 {
    font-size: 28px;
    margin: 0 0 10px 0;
    padding: 2px 0 2px 0;
    line-height: 1;
    text-transform: uppercase;
    font-weight: 600;
    color: #37517e;
}

#footer .footer-top .footer-contact p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
    font-family: "Jost", sans-serif;
    color: #5e5e5e;
}

#footer .footer-top h4 {
    font-size: 16px;
    font-weight: bold;
    color: #37517e;
    position: relative;
    padding-bottom: 12px;
}

#footer .footer-top .footer-links {
    margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#footer .footer-top .footer-links ul i {
    padding-right: 2px;
    color: #47b2e4;
    font-size: 18px;
    line-height: 1;
}

#footer .footer-top .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
    padding-top: 0;
}

#footer .footer-top .footer-links ul a {
    color: #777777;
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
    text-decoration: none;
    color: #47b2e4;
}

#footer .footer-top .social-links a {
    font-size: 18px;
    display: inline-block;
    background: #47b2e4;
    color: #fff;
    line-height: 1;
    padding: 9px 0;
    margin-right: 4px;
    border-radius: 50%;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
    background: #209dd8;
    color: #fff;
    text-decoration: none;
}

#footer .footer-bottom {
    padding-top: 30px;
    padding-bottom: 30px;
    color: #fff;
}

#footer .copyright {
    float: left;
}

#footer .credits {
    float: right;
    font-size: 13px;
    padding-right: 40px;
}

#footer .credits a {
    transition: 0.3s;
}

@media (max-width: 768px) {
    #footer .footer-bottom {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    #footer .copyright,
    #footer .credits {
        text-align: center;
        float: none;
    }

    #footer .credits {
        padding-top: 4px;
    }
}


/* =============================================== LEGAL NOTICES =============================================== */
.legal-notices {
    padding: 50px;
    color: var(--color-secondary);
    background-color: rgba(255, 255, 255, 0.7);
    text-align: justify;
    margin: 7rem 0 5rem 0;
}

.legal-notices  h1 {
    font-weight: 600;
    color: var(--color-primary);
}

.legal-notices h2, .data-protection h2, .content h2 {
    font-weight: 600;
    color: var(--color-secondary);
}

.legal-notices h3 {
    font-weight: 500;
    text-decoration: underline;
    margin: 0 3rem 0 3rem;
}

.head-office-text-custom {
    font-size: 1.1rem;
    margin: 0 5rem 2rem 5rem;
}

.data-protection {
    padding: 50px;
    color: var(--color-secondary);
    background-color: rgba(255, 255, 255, 0.7);
    text-align: justify;
    margin: 7rem 0 5rem 0;
}

.data-protection p, .content p {
    font-size: 1.2rem;
    line-height: 1.5;
    margin: 0 5rem 2rem 5rem;
}

.data-protection li {
    font-size: 1.2rem;
    line-height: 1;
    margin: 0 0 1rem 7rem;
}

.content {
    padding: 50px;
    color: var(--color-secondary);
    background-color: rgba(255, 255, 255, 0.7);
    text-align: justify;
    margin: 7rem 0 5rem 0;
}

.separator {
    margin: 25px 0 80px 340px;
    border: 0;
}

.separator-line {
    border: 0;
    border-bottom: 5px solid var(--color-primary);
    width: 0;
    animation: separator-width 1s ease-out forwards;
}

@keyframes separator-width {
    0% {
        width:  0;
    }
    100% {
        width: 100%;
    }
}

@media screen and (max-width: 1200px) {
    .legal-notices, .data-protection, .content {
        margin: 4rem;
    }

    .legal-notices h1 {
        font-size: 2.7rem;
        margin-top: 5rem;
    }

    .legal-notices h2 {
        font-size: 2rem;
    }

    .legal-notices h3 {
        font-size: 1.5rem;
    }

    .legal-notices p {
        font-size: 1.2rem;
    }

    .data-protection p, .content p {
        margin-right: 4rem;
    }

    .separator-line {
        display: none;
        animation: none;
    }
}

@media screen and (max-width: 768px) {
    .legal-notices, .data-protection, .content {
        margin: 0;
    }

    .legal-notices h1 {
        font-size: 2.7rem;
        margin-top: 5rem;
    }

    .legal-notices h2 {
        font-size: 2rem;
    }

    .legal-notices h3 {
        font-size: 1.5rem;
    }

    .legal-notices p {
        font-size: 1.2rem;
    }

    .head-office-text-custom {
        font-size: 1.1rem;
        margin: 0 2rem 2rem 2rem;
    }

    .data-protection p, .content p {
        margin: 0;
    }

    .separator-line {
        display: none;
        animation: none;
    }
}





@-webkit-keyframes scroll {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(calc(-250px * 7));
            transform: translateX(calc(-250px * 7));
  }
}

@keyframes scroll {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(calc(-250px * 7));
            transform: translateX(calc(-250px * 7));
  }
}
.slider22 {
  background: pr;
  box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.125);
  height: 130px;
  margin: auto;
  overflow: hidden;
  position: sticky;
  width: 960px;
}
.slider22::before, .slider::after {
  /* background: linear-gradient(to right, white 90%, rgba(255, 255, 255, 0) 100%); */
  content: "";
  height: 100px;
  position: absolute;
  width: 200px;
  z-index: 2;
}
.slider22::after {
  right: 0;
  top: 0;
  -webkit-transform: rotateZ(180deg);
          transform: rotateZ(180deg);
}
.slider22::before {
  left: 0;
  top: 0;
}
.slider22 .slide-track {
  -webkit-animation: scroll 20s linear infinite;
          animation: scroll 20s linear infinite;
  display: flex;
  width: calc(250px * 14);
}
.slider22 .slide {
  height: 100px;
  width: 250px;
}


.nounderline2{

	color:#ffffff;
	text-decoration:none;
}

.lientelephone{
	
}


.boutonvalidation{
	display: block;
	margin : auto;
	border-radius: 14px;
}


.boutoncouleur {
    color: var(--color-inverse);
    background: rgb(247, 124, 0);
    border-color: #ffffff;
    font-size: 22px;
    padding: 8px 15px;
    transition: 0.3s;
}


.section-title2{
	    text-align: center;
    padding: 50px;
}

.section-title2 h2 {
    color: var(--color-secondary);
    font-size: 32px;
    font-weight: 700;
    position: relative;
}

.section-title2 h2:before,
.section-title2 h2:after {
    content: "";
    width: 50px;
    height: 2px;
    background: var(--color-primary);
    display: inline-block;
}

.section-title2 h2:before {
    margin: 0 15px 10px 0;
}

.section-title2 h2:after {
    margin: 0 0 10px 15px;
}

.section-title2 p {
    margin-bottom: 0;
}



/* CAROUELLE ECRAN MOBILE */
 .slider22 {
            width: 70vw; 
            max-width: 1000px;
            /* height: 50vh; /* Hauteur relative à la hauteur de la fenêtre */ 
            overflow: hidden;
            margin: auto;
            position: relative;
        }

        /* Slide */
        .slide-track {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }

        /* Images du carrousel */
        .slide-track img {
            width: 100%;
            object-fit: cover;
        }

        @media (max-width: 768px) {
            .slider22 {
                height: 40vh; 
            }
        }

        @media (max-width: 480px) {
            .slider22 {
                height: 30vh;
            }
        }