/*Efintech style code*/
/*SOMMAIRE*/

/*1. BOUSSOL STYLE ********************/
/*2. DIVIDER STYLE ********************/
/*3. CARROUSSEL STYLE *********************/

/*Reset*/


/*BOUSSOL STYLE ********************/
.eb-boussol {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    width: 50px;
    color: white;
}

.eb-boussol-container {
    position: relative;
    width: 35px;
    height: 35px;
    border: 1px solid white;
    border-radius: 50%;
}

.eb-boussol-line {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: inherit;
}

.eb-boussol-line.v {
    border-top: 1px solid white;
    height: 0px;
    width: 100%;
}

.eb-boussol-line.h {
    border-left: 1px solid white;
    width: 0px;
    height: 100%;
}

/*END BOUSSOL STYLE */


/*2. DIVIDER STYLE ********************/
.eb-divider {
    display: flex;
    justify-content: left;
    width: 100%;
    border: 0px;
    height: auto;
    padding: 0;
    margin: 0;
}

.eb-divider[data-orientation="horizontal"] .eb-divider-item {
    width: 100%;
    border: 0px;
    border-top-width: 1px;
    border-style: solid;
    border-color: white;
    mix-blend-mode: difference;
    margin: 4vh 0;
    height: 0;
}

.eb-divider[data-orientation="vertical"] .eb-divider-item {
    width: 0;
    border: 0px;
    border-left-width: 1px;
    border-style: solid;
    border-color: white;
    mix-blend-mode: difference;
}

/* END DIVIDER STYLE *********************/

/* 3.CARROUSSEL STYLE *********************/
.eb-image-box {
    position: relative;
    height: calc(100vw *9 / 16);
}

.eb-image-box img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    clip-path: inset(0 0 0 100%);
    transition: all .5s ease-in-out;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.eb-image-box img.active {
    clip-path: inset(0 0 0 0);
}

.eb-gallerie-container {
    position: relative;
}

.eb-gallerie-menu {
    position: relative;
    z-index: 2;
    display: flex;
}

/* END CARROUSSEL STYLE *********************/


/* 4.TIPING EFFECT STYLE *********************/

.tiping-effect h2,
h2.tiping {
    white-space: inherit;
}

.tiping-effect h2 .inner,
h2.tiping .inner {
    visibility: hidden;
}

.tiping-effect h2 .cursor,
h2.tiping .cursor {
    border-right: 2px solid black;
    display: inline-block;
    width: 1px;
    animation: blink 0.7s step-end infinite;
}



.eb-tiping-effect {
    text-shadow: 0px 0px 1px rgba(0, 0, 0, .5), 0px 0px 3px rgba(0, 0, 0, .5);
}

.eb-tiping-effect .inner {
    visibility: hidden;
}

.eb-tiping-effect .cursor {
    border-right: 2px solid black;
    display: inline-block;
    width: 1px;
    animation: blink 0.7s step-end infinite;
}

@keyframes blink {
    50% {
        border-color: transparent;
    }
}

@keyframes blink {
    50% {
        border-color: transparent;
    }
}

/* END TIPING EFFECT STYLE *********************/


/* 5. SMART ECO SECTION ITEM STYLE *********************/


.eb-smar-eco-item {
    width: max-content;
    padding: 1%;
}

.eb-se-icon-contianer {
    display: flex;
    justify-content: left;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
}

.eb-se-icon {
    width: max-content;
}

.eb-se-icon svg {
    height: 45px;
}

.eb-se-text {
    width: 100%;
    font-size: 14px;
    padding: 0;
}

/* END SMART ECO SECTION ITEM STYLE *********************/


/* 6. EON BAY LISTE ITEM STYLE *********************/

.eb-smart-list {
    width: 100%;
    display: flex;
    justify-content: left;
    align-items: center;
    flex-wrap: nowrap;
}

.eb-smart-list-icon {
    width: 18px;
    height: 18px;
    margin-right: 12px;
}

.eb-smart-list-icon svg {
    width: 100%;
    margin-top: -30px;
    transform: rotate(45deg);
    fill: white;
    margin-right: 5px;
}

.eb-smart-list-text p {
    line-height: 1;
}

/* END EON BAY LISTE ITEM STYLE *********************/


/* 7. EON BAY PARTNER CARD STYLE *********************/

.eb-partnaire-card-wrapper {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.eb-partner-card-container {
    min-height: 80px;
    max-height: 210px;
    min-width: 104px;
    max-width: 210px;
    width: 33%;
    height: calc(((100vw / 3) - 3vw) * 0.45);
    position: relative;
}

.eb-partner-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.eb-partner-card img {
    width: 100%;
    filter: grayscale(100%);
    opacity: .5;
    object-fit: cover;
    width: 100%;
    height: 100%;
    transition: all .3s ease-in-out;
}

.eb-partner-card:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.eb-partner-card-overlay {
    display: none;
}


/* 8. NEWSLATTER FORM STYLE */

.newslatter {
    max-width: 450px;
    height: 50px;
    position: relative;
    background-color: white;
}

.newslatter input,
.newslatter p input {
    width: 100%;
    height: 50px;
    padding: 5px 20px;
    color: black;
}

.newslatter button,
.newslatter p button {
    position: absolute;
    padding: 0 10px;
    top: 50%;
    right: 0;
    transform: translate(-5px, -50%);
    height: 40px;
    color: #000;
    border: 1px solid #000;
    background-color: white;
    cursor: pointer;
    transition: all .2s ease-in-out;
}

.newslatter button:hover,
.newslatter p button:hover {

    background-color: #000;
    color: white;
}

.newslatter p br{
    display: none;
}

/* Why eon bay Section*/
.eb-partnaire-card-wrapper {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    flex-direction: row;
}

.eb-mensoury-column {
    width: 33.333%;
    padding: 0 10px;
    line-height: 1.1;
}

.eb-square-overlay {
    top: 0;
    left: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 0;
}

.eb-square-item,
.eb-mensoury-items {
    padding: 5%;
    position: relative;
    overflow: hidden;
}


.eb-mensoury-items {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.eb-liste-content {
    position: initial;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
    font-size: 0.5rem;
}

.eb-square-contente {
    height: 100%;
    position: relative;
}

.eb-square-lg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
}

.eb_square_text {
    display: flex;
    justify-content: center;
    align-items: center;
}

.eb_square_text p,
.eb-liste-content p {
    font-size: 1.1rem;
    line-height: 1.5;
}

.eb-square-icon {
    width: 60px;
    height: 60px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.eb-square-icon svg {
    width: 100%;
    height: 100%;
}

.eb-square-icon svg path {
    fill: white;
}



/* NEW CODE SECTION 13-02-25*/
.eb-mansoury-container {
    width: 100%;
    position: relative;
    overflow: hidden;
    margin: 20px 0;
}

.eb-mansoury-container:hover .eb-square-bg {
    transform: scale(1.1);
}

.eb-square-overlay,
.eb-square-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0;
    transition: all .3s ease-in-out;
}

.eb-square-overlay {
    top: 0;
    left: 0;
}

.eb-square-bg {
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: url('../img/play.jpg') no-repeat center;
    background-size: cover;
    overflow: hidden;
}

.eb-square-overlay {
    background-color: rgba(0, 0, 0, 0.3);
}


.eb-liste-content h4 {
    color: white;
    font-size: 4vw !important;
    text-align: center;
}

.eb-liste-content p {
    text-transform: uppercase;
    /* font-size: 1.1rem; */
    text-align: center;
}

/**
END NEW
*/

@media screen and (max-width: 768px) {
    .eb-partnaire-card-wrapper {
        justify-content: space-between;
    }

    .eb-mensoury-column {
        width: 100%;
    }

}