/* 
/* ==========================================================================
   TemplateMo - Finance Business
   PARTIE 1 - Nettoyage & Optimisation
   ========================================================================== */

/* ---------- Base ---------- */

*,
*::before,
*::after{
    box-sizing:border-box;
}

body{
    margin:0;
    font-family:'Poppins',sans-serif;
    overflow-x:hidden;
    text-rendering:optimizeLegibility;
    -webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing:grayscale;
}

img{
    max-width:100%;
    height:auto;
    display:block;
}

ul{
    margin:0;
    padding:0;
    list-style:none;
}

h1,h2,h3,h4,h5,h6,
p{
    margin:0;
}

p{
    font-size:14px;
    line-height:30px;
    color:#666;
}

a{
    text-decoration:none;
    transition:.3s ease;
}

/* ---------- Buttons ---------- */

a.filled-button,
a.border-button{
    display:inline-block;
    border-radius:30px;
    text-transform:uppercase;
    font-size:13px;
    font-weight:700;
}

a.filled-button{
    padding:12px 30px;
    background:#a4c639;
    color:#fff;
}

a.filled-button:hover{
    background:#fff;
    color:#a4c639;
}

a.border-button{
    padding:10px 28px;
    border:2px solid #fff;
    color:#fff;
    background:transparent;
}

a.border-button:hover{
    background:#fff;
    color:#a4c639;
}

/* ---------- Section Heading ---------- */

.section-heading{
    margin-bottom:80px;
    text-align:center;
}

.section-heading h2{
    font-size:36px;
    font-weight:600;
    color:#1e1e1e;
}

.section-heading em{
    color:#a4c639;
    font-style:normal;
}

.section-heading span{
    display:block;
    margin-top:15px;
    font-size:15px;
    letter-spacing:1px;
    text-transform:uppercase;
    color:#666;
}

/* ---------- Preloader ---------- */

#preloader{
    position:fixed;
    inset:0;
    z-index:9999999;
    background:#a4c639;
    color:#fff;
    overflow:hidden;
}

#preloader .jumper{
    position:absolute;
    inset:0;
    width:50px;
    height:50px;
    margin:auto;
}

#preloader .jumper>div{
    position:absolute;
    width:50px;
    height:50px;
    border-radius:50%;
    background:#fff;
    opacity:0;
    animation:jumper 1s linear infinite;
}

#preloader .jumper>div:nth-child(2){
    animation-delay:.333s;
}

#preloader .jumper>div:nth-child(3){
    animation-delay:.666s;
}

@keyframes jumper{

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

    5%{
        opacity:1;
    }

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

}

/* ---------- Sub Header ---------- */

.sub-header{
    height:46px;
    line-height:46px;
    background:#a4c639;
}

.sub-header ul li{
    display:inline-block;
}

.sub-header .left-info li{
    padding:0 20px;
    border-left:1px solid rgba(255,255,255,.3);
}

.sub-header .left-info li:last-child{
    border-right:1px solid rgba(255,255,255,.3);
}

.sub-header .left-info i{
    margin-right:10px;
    font-size:18px;
}

.sub-header .left-info a{
    color:#fff;
    font-size:14px;
    font-weight:600;
}

.sub-header .right-icons{
    float:right;
}

.sub-header .right-icons li{
    width:46px;
    margin-right:-4px;
    text-align:center;
    border-right:1px solid rgba(255,255,255,.3);
}

.sub-header .right-icons li:first-child{
    border-left:1px solid rgba(255,255,255,.3);
}

.sub-header .right-icons a{
    color:#fff;
}

.sub-header .right-icons a:hover{
    opacity:.75;
}


/* ---------- Banner ---------- */

.img-fill{
    position:relative;
    display:block;
    width:100%;
    overflow:hidden;
    text-align:center;
}

.img-fill img{
    position:relative;
    min-width:100%;
    min-height:100%;
    max-width:none;
    display:inline-block;
}

.Grid1k{
    max-width:1200px;
    margin:auto;
    padding:0 15px;
}

.blocks-box,
.slick-slider{
    margin:0;
    padding:0;
}

.slick-slide{
    float:left;
    padding:0;
}

.Modern-Slider .item .img-fill{
    height:95vh;
    background-repeat:no-repeat;
    background-position:center;
    background-size:cover;
}

.Modern-Slider .item-1 .img-fill{
    background-image:url(../images/slide_01.jpg);
}

.Modern-Slider .item-2 .img-fill{
    background-image:url(../images/slide_02.jpg);
}

.Modern-Slider .item-3 .img-fill{
    background-image:url(../images/slide_03.jpg);
}

.Modern-Slider .NextArrow,
.Modern-Slider .PrevArrow{
    position:absolute;
    top:50%;
    z-index:5;
    border:0;
    background:transparent;
    color:#fff;
    font-family:"FontAwesome";
    font-size:36px;
    cursor:pointer;
    transform:translateY(-50%);
}

.Modern-Slider .NextArrow{
    right:30px;
}

.Modern-Slider .PrevArrow{
    left:30px;
}

.Modern-Slider .NextArrow::before{
    content:"\f105";
}

.Modern-Slider .PrevArrow::before{
    content:"\f104";
}

.slick-dots{
    display:none;
}

.Modern-Slider .text-content{
    position:absolute;
    top:50%;
    left:50%;
    width:75%;
    transform:translate(-50%,-50%);
    text-align:left;
}

.Modern-Slider .item h6{
    margin-bottom:15px;
    color:#a4c639;
    font-size:22px;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
    animation:fadeOutRight 1s both;
}

.Modern-Slider .item h4{
    margin-bottom:30px;
    color:#fff;
    font-size:44px;
    font-weight:700;
    letter-spacing:2.5px;
    text-transform:uppercase;
    overflow:hidden;
    animation:fadeOutLeft 1s both;
}

.Modern-Slider .item p {
	max-width: 570px;
	color: #fff;
	font-size: 15px;
	font-weight: 400;
	line-height: 30px;
	margin-bottom: 40px;
}

.Modern-Slider .item a {
  margin: 0 5px;
}

.Modern-Slider .item.slick-active h6{
  animation:fadeInDown 1s both 1s;
}

.Modern-Slider .item.slick-active h4{
  animation:fadeInLeft 1s both 1.5s;
}

.Modern-Slider .item.slick-active{
  animation:Slick-FastSwipeIn 1s both;
}

.Modern-Slider .buttons {
  position: relative;
}

.Modern-Slider {background:#000;}


/* ==== Slick Slider Css Ruls === */
.slick-slider{position:relative;display:block;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-touch-callout:none;-khtml-user-select:none;-ms-touch-action:pan-y;touch-action:pan-y;-webkit-tap-highlight-color:transparent}
.slick-list{position:relative;display:block;overflow:hidden;margin:0;padding:0}
.slick-list:focus{outline:none}.slick-list.dragging{cursor:hand}
.slick-slider .slick-track,.slick-slider .slick-list{-webkit-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}
.slick-track{position:relative;top:0;left:0;display:block}
.slick-track:before,.slick-track:after{display:table;content:''}.slick-track:after{clear:both}
.slick-loading .slick-track{visibility:hidden}
.slick-slide{display:none;float:left /* If RTL Make This Right */ ;height:100%;min-height:1px}
.slick-slide.dragging img{pointer-events:none}
.slick-initialized .slick-slide{display:block}
.slick-loading .slick-slide{visibility:hidden}
.slick-vertical .slick-slide{display:block;height:auto;border:1px solid transparent}




/* Request Form */

.request-form {
	background-color: #a4c639;
	padding: 40px 0px;
	color: #fff;
}

.request-form h4 {
	font-size: 22px;
	font-weight: 600;
}

.request-form span {
	font-size: 15px;
	font-weight: 400;
	display: inline-block;
	margin-top: 10px;
}

.request-form a.border-button {
	margin-top: 12px;
	float: right;
}




/* Services */

.services {
	margin-top: 140px;
}

.service-item img {
	width: 100%;
	overflow: hidden;
}

.service-item .down-content {
	background-color: #f7f7f7;
	padding: 30px;
}

.service-item .down-content h4 {
	font-size: 20px;
	font-weight: 700;
	letter-spacing: 0.25px;
	margin-bottom: 15px;
}

.service-item .down-content p {
	margin-bottom: 20px;
}



/* Fun Facts */

.fun-facts {
	margin-top: 140px;
	background-image: url(../images/fun-facts-bg.jpg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;
	padding: 140px 0px;
	color: #fff;
}

.fun-facts span {
	text-transform: uppercase;
	font-size: 15px;
	color: #fff;
	letter-spacing: 1px;
	margin-bottom: 10px;
	display: block;
}

.fun-facts h2 {
	font-size: 36px;
	font-weight: 600;
	margin-bottom: 35px;
}

.fun-facts em {
	font-style: normal;
	color: #a4c639;
}

.fun-facts p {
	color: #fff;
	margin-bottom: 40px;
}

.fun-facts .left-content {
	margin-right: 45px;
}

.count-area-content {
	text-align: center;
	background-color: rgba(250,250,250,0.1);
	padding: 25px 30px 35px 30px;
	margin: 15px 0px;
}

.count-digit {
    margin: 5px 0px;
    color: #a4c639;
    font-weight: 700;
    font-size: 36px;
}
.count-title {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.5px;
}



/* More Info */

.more-info {
	margin-top: 140px;
}

.more-info .left-image img {
	width: 100%;
	overflow: hidden;
}

.more-info .more-info-content {
	background-color: #f7f7f7;
}

.about-info .more-info-content {
	background-color: transparent;
}

.about-info .right-content {
	padding: 0px!important;
	margin-right: 30px;
}

.more-info .right-content {
	padding: 45px 45px 45px 30px;
}

.more-info .right-content span {
	text-transform: uppercase;
	font-size: 15px;
	color: #666;
	letter-spacing: 1px;
	margin-bottom: 10px;
	display: block;
}

.more-info .right-content h2 {
	font-size: 36px;
	font-weight: 600;
	margin-bottom: 35px;
}

.more-info .right-content em {
	font-style: normal;
	color: #a4c639;
}

.more-info .right-content p {
	margin-bottom: 30px;
}


/* Testimonials Style */

.about-testimonials {
	margin-top: 0px!important;
}

.testimonials {
	margin-top: 140px;
	background-color: #f7f7f7;
	padding: 140px 0px;
}
.testimonial-item .inner-content {
	text-align: center;
	background-color: #fff;	
	padding: 30px;
	border-radius: 5px;
}
.testimonial-item p {
	font-size: 14px;
	font-weight: 400;
}
.testimonial-item h4 {
	font-size: 19px;
	font-weight: 700;
	color: #1e1e1e;
	letter-spacing: 0.5px;
	margin-bottom: 0px;
}
.testimonial-item span {
	display: inline-block;
	margin-top: 8px;
	font-weight: 600;
	font-size: 14px;
	color: #a4c639;
}
.testimonial-item img {
	max-width: 60px;
	border-radius: 50%;
	margin: 25px auto 0px auto;
}




/* Call Back Style */

.callback-services {
	border-top: 1px solid #eee;
	padding-top: 140px;
}

.contact-us {
	background-color: #f7f7f7;
	padding: 140px 0px;
}

.contact-us .contact-form {
	background-color: transparent!important;
	padding: 0!important;
}

.callback-form {
	margin-top: 140px;
}

.callback-form .contact-form {
	background-color: #a4c639;
	padding: 60px;
	border-radius: 5px;
	text-align: center;
}

.callback-form .contact-form input {
	border-radius: 20px;
	height: 40px;
	line-height: 40px;
	display: inline-block;
	padding: 0px 15px;
	color: #6a6a6a;
	font-size: 13px;
	text-transform: none;
	box-shadow: none;
	border: none;
	margin-bottom: 35px;
}

.callback-form .contact-form input:focus {
	outline: none;
	box-shadow: none;
	border: none;
}

.callback-form .contact-form textarea {
	border-radius: 20px;
	height: 120px;
	max-height: 200px;
	min-height: 120px;
	display: inline-block;
	padding: 15px;
	color: #6a6a6a;
	font-size: 13px;
	text-transform: none;
	box-shadow: none;
	border: none;
	margin-bottom: 35px;
}

.callback-form .contact-form textarea:focus {
	outline: none;
	box-shadow: none;
	border: none;
}

.callback-form .contact-form ::-webkit-input-placeholder { /* Edge */
  color: #aaa;
}
.callback-form .contact-form :-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #aaa;
}
.callback-form .contact-form ::placeholder {
  color: #aaa;
}

.callback-form .contact-form button.border-button {
	background-color: transparent;
	color: #fff;
	border: 2px solid #fff;
	font-size: 13px;
	text-transform: uppercase;
	font-weight: 700;
	padding: 10px 28px;
	border-radius: 30px;
	display: inline-block;
	transition: all 0.3s;
	outline: none;
	box-shadow: none;
	text-shadow: none;
	cursor: pointer;
}
/* ==========================================================================
   PARTIE 3 - Nettoyage & Optimisation
   ========================================================================== */

/* ---------- Buttons ---------- */

.callback-form .contact-form button.border-button:hover,
.contact-us .contact-form button.filled-button:hover,
footer .contact-form button.filled-button:hover{
    background:#fff;
    color:#a4c639;
}

.contact-us .contact-form button.filled-button,
footer .contact-form button.filled-button{
    display:inline-block;
    padding:12px 30px;
    border:0;
    border-radius:30px;
    background:#a4c639;
    color:#fff;
    font-size:13px;
    font-weight:700;
    text-transform:uppercase;
    cursor:pointer;
    transition:.3s ease;
    outline:0;
    box-shadow:none;
    text-shadow:none;
}


/* ---------- Partners ---------- */

.contact-partners{
    margin-top:-8px;
}

.partners{
    margin-top:140px;
    padding:60px 0;
    background:#f7f7f7;
}

.partners .owl-item{
    text-align:center;
    cursor:pointer;
}

.partners .partner-item img{
    display:block;
    max-width:156px;
    margin:auto;
}


/* ---------- Footer ---------- */

footer{
    padding:80px 0;
    background:#232323;
    color:#fff;
}

footer h4{
    margin-bottom:35px;
    color:#fff;
    font-size:20px;
    font-weight:600;
    letter-spacing:.25px;
}

footer p{
    color:#fff;
}

footer .social-icons{
    margin-top:25px;
}

footer .social-icons li{
    display:inline-block;
    margin-right:5px;
}

footer .social-icons li:last-child{
    margin-right:0;
}

footer .social-icons a{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:34px;
    height:34px;
    border-radius:50%;
    background:#fff;
    color:#232323;
    transition:.3s ease;
}

footer .social-icons a:hover{
    background:#a4c639;
}

footer .menu-list li{
    margin-bottom:13px;
}

footer .menu-list li:last-child{
    margin-bottom:0;
}

footer .menu-list a{
    color:#fff;
    font-size:14px;
    transition:.3s ease;
}

footer .menu-list a:hover{
    color:#a4c639;
}

footer .contact-form input,
footer .contact-form textarea{
    width:100%;
    border:0;
    border-radius:20px;
    padding:15px;
    background:#343434;
    color:#aaa;
    font-size:13px;
    outline:0;
    box-shadow:none;
}

footer .contact-form input{
    height:40px;
    padding:0 15px;
    margin-bottom:15px;
}

footer .contact-form textarea{
    min-height:120px;
    max-height:200px;
    resize:vertical;
    margin-bottom:15px;
}

footer .contact-form input:focus,
footer .contact-form textarea:focus{
    background:#343434;
}

footer .contact-form ::placeholder{
    color:#aaa;
}


/* ---------- Sub Footer ---------- */

.sub-footer{
    padding:25px 0;
    text-align:center;
    background:#343434;
}

.sub-footer p{
    color:#fff;
    font-weight:300;
    letter-spacing:.5px;
}

.sub-footer a{
    color:#fff;
}


/* ---------- Page Heading ---------- */

.page-heading{
    padding:230px 0 150px;
    text-align:center;
    color:#fff;
    background:url("../images/page-heading-bg.jpg") center/cover no-repeat;
}

.page-heading h1{
    margin-bottom:18px;
    font-size:36px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:capitalize;
}

.page-heading span{
    display:block;
    color:#fff;
    font-size:15px;
    letter-spacing:1px;
    text-transform:uppercase;
}


/* ---------- Team ---------- */

.team{
    margin:140px 0 -140px;
    padding:120px 0;
    background:#f7f7f7;
}

.team-item img{
    width:100%;
    display:block;
}

.team-item .down-content{
    padding:30px;
    background:#fff;
}

.team-item h4{
    margin-bottom:10px;
    font-size:20px;
    font-weight:700;
    letter-spacing:.25px;
}

.team-item span{
    display:block;
    margin-bottom:15px;
    color:#a4c639;
    font-size:14px;
    font-weight:600;
}

.team-item p{
    margin-bottom:20px;
}


/* ---------- Single Service ---------- */

.single-services{
    margin-top:140px;
}

#tabs ul li{
    display:block;
    width:100%;
    margin-bottom:10px;
}

#tabs ul li:last-child{
    margin-bottom:0;
}

#tabs ul li a{
    display:block;
    width:100%;
    padding:30px;
    background:#a4c639;
    color:#121212;
    font-size:20px;
    font-weight:700;
    letter-spacing:.5px;
    transition:.3s ease;
}

#tabs ul li a i{
    float:right;
    margin-top:5px;
}

#tabs .ui-tabs-active a{
    color:#fff;
}

.tabs-content{
    display:inline-block;
    margin-left:30px;
    text-align:left;
    transition:.3s ease;
}

.tabs-content img{
    width:100%;
    display:block;
}

.tabs-content h4{
    margin:30px 0 15px;
    font-size:20px;
    font-weight:700;
    letter-spacing:.25px;
}

.tabs-content p{
    color:#7a7a7a;
}


/* ---------- Contact Information ---------- */

.contact-information{
    margin-top:140px;
}

.contact-information .contact-item{
    padding:60px 30px;
    text-align:center;
    background:#f7f7f7;
}

.contact-information .contact-item i{
    display:block;
    margin-bottom:40px;
    color:#a4c639;
    font-size:48px;
}

.contact-information .contact-item h4{
    margin-bottom:15px;
    font-size:20px;
    font-weight:700;
    letter-spacing:.25px;
}

.contact-information .contact-item p{
    margin-bottom:20px;
}

.contact-information .contact-item a{
    color:#a4c639;
    font-size:15px;
    font-weight:600;
}


@media (max-width:768px){

    .sub-header{
        display:none;
    }

    .Modern-Slider .item h6{
        font-size:18px;
    }

    .Modern-Slider .item h4{
        margin-bottom:25px;
        font-size:28px;
        line-height:36px;
        letter-spacing:1px;
    }

    .Modern-Slider .item p{
        line-height:25px;
        margin-bottom:30px;
    }

    .Modern-Slider .PrevArrow{
        left:5px;
    }

    .Modern-Slider .NextArrow{
        right:5px;
    }

    .request-form{
        text-align:center;
    }

    .request-form .border-button{
        float:none;
        margin-top:30px;
    }

    .service-item,
    .team-item,
    .contact-item{
        margin-bottom:30px;
    }

    .fun-facts .left-content{
        margin:0 0 30px;
    }

    .more-info .right-content{
        padding:30px;
    }

    .about-info .right-content{
        margin:0 0 30px;
    }

    .tabs-content{
        margin:30px 0 0;
    }

    footer{
        padding:80px 0 20px;
    }

    footer .footer-item{
        margin-bottom:30px;
        padding-bottom:30px;
        border-bottom:1px solid #343434;
    }

    footer .last-item{
        border:0;
    }

}

/*==================================================
    ACCOUNT PROCESS
==================================================*/

.account-process{
    margin-top:80px;
    padding:100px 20px;
    background:#f8fbf4;
}

.account-process .container{
    max-width:1300px;
    margin:auto;
}

/* Header */

.steps-header{
    margin-bottom:70px;
    text-align:center;
}

.process-badge{
    display:inline-block;
    margin-bottom:20px;
    padding:12px 30px;
    border:1px solid #d6e9a6;
    border-radius:40px;
    background:#eff7db;
    color:#8bbe22;
    font-weight:700;
    letter-spacing:1.5px;
    text-transform:uppercase;
}

.steps-header h2{
    margin:18px 0;
    color:#1d2d1f;
    font-size:48px;
    font-weight:800;
    line-height:1.2;
}

.steps-header h2 span{
    color:#a6ce39;
}

.steps-header p{
    max-width:700px;
    margin:auto;
    color:#68756b;
    font-size:17px;
    line-height:1.8;
}

/* Steps */

.steps{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:22px;
}

.step-card{
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    width:235px;
    height:235px;
    padding:22px;
    text-align:center;
    background:#fff;
    border:1px solid #e5ecd7;
    border-radius:16px;
    transition:.35s ease;
}

.step-card:hover{
    transform:translateY(-8px);
    border-color:#a6ce39;
    box-shadow:0 20px 45px rgba(166,206,57,.18);
}

.step-card.active{
    color:#fff;
    background:#a6ce39;
    border-color:#a6ce39;
    box-shadow:0 20px 45px rgba(166,206,57,.30);
}

.step-number{
    color:#a6ce39;
    font-size:46px;
    font-weight:800;
}

.step-card.active .step-number{
    color:#fff;
}

.step-icon{
    display:flex;
    justify-content:center;
    align-items:center;
    width:62px;
    height:62px;
    margin:18px 0;
    border-radius:50%;
    background:#a6ce39;
    color:#fff;
    font-size:22px;
}

.step-card.active .step-icon{
    color:#a6ce39;
    background:#fff;
}

.step-card h3{
    margin-bottom:10px;
    color:#243126;
    font-size:22px;
}

.step-card.active h3{
    color:#fff;
}

.step-card p{
    color:#6f7b72;
    font-size:15px;
    line-height:1.7;
}

.step-card.active p{
    color:#f8fff1;
}

.arrow{
    color:#a6ce39;
    font-size:28px;
}

/*==================================================
    OPEN ACCOUNT SECTION
==================================================*/

.join-section{
    width:100%;
    padding:90px 0;
    overflow:hidden;
    background:#fff;
}

.join-container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:70px;
    width:92%;
    max-width:1400px;
    margin:auto;
}

/* Left */

.join-content{
    flex:1;
    max-width:610px;
}

.join-badge{
    display:inline-flex;
    align-items:center;
    gap:10px;
    margin-bottom:35px;
    padding:11px 22px;
    border:2px solid #a6ce39;
    border-radius:50px;
    background:#fff;
    color:#0f0e0e;
    font-size:15px;
    font-weight:600;
    letter-spacing:.4px;
}

.join-badge i{
    font-size:14px;
}

.join-content h2{
    margin-bottom:30px;
    color:#222;
    font-size:62px;
    font-weight:800;
    line-height:1.12;
}

.join-description{
    margin-bottom:45px;
    color:#555;
    font-size:22px;
    line-height:1.8;
}

/* Features */

.join-features{
    display:flex;
    flex-direction:column;
    gap:30px;
}

.feature-item{
    display:flex;
    align-items:flex-start;
    gap:18px;
}

.feature-icon{
    display:flex;
    justify-content:center;
    align-items:center;
    flex-shrink:0;
    width:34px;
    height:34px;
    margin-top:5px;
    border-radius:50%;
    background:#10c960;
    color:#fff;
    font-size:14px;
}

.feature-text h4{
    margin-bottom:8px;
    color:#222;
    font-size:26px;
    font-weight:700;
}

.feature-text p{
    color:#555;
    font-size:19px;
    line-height:1.7;
}

/*==================================================
    RESPONSIVE
==================================================*/

@media (max-width:992px){

    .steps{
        flex-wrap:wrap;
        gap:25px;
    }

    .step-card{
        width:220px;
        height:220px;
    }

    .steps-header h2{
        font-size:40px;
    }

    .arrow{
        display:none;
    }

    .join-container{
        flex-direction:column;
        gap:60px;
        text-align:center;
    }

    .join-content{
        max-width:100%;
    }

    .feature-item{
        text-align:left;
    }

}

@media (max-width:768px){

    .account-process{
        margin-top:60px;
        padding:80px 18px;
    }

    .steps{
        flex-direction:column;
        gap:18px;
    }

    .steps-header{
        margin-bottom:45px;
    }

    .steps-header h2{
        font-size:32px;
    }

    .steps-header p{
        font-size:15px;
    }

    .step-card{
        width:100%;
        max-width:330px;
        height:210px;
    }

    .step-card:hover{
        transform:none;
    }

    .join-section{
        padding:70px 0;
    }

    .join-content h2{
        font-size:42px;
    }

    .join-description{
        font-size:18px;
    }
}

@media (max-width:480px){

    .steps-header h2{
        font-size:28px;
    }

    .process-badge{
        padding:10px 22px;
        font-size:12px;
    }

    .step-card{
        max-width:100%;
        height:200px;
    }

    .step-number{
        font-size:40px;
    }

    .step-icon{
        width:55px;
        height:55px;
        font-size:20px;
    }

    .step-card h3{
        font-size:20px;
    }

    .step-card p{
        font-size:14px;
    }

    .join-content h2{
        font-size:34px;
    }

    .feature-text h4{
        font-size:22px;
    }

    .feature-text p{
        font-size:16px;
    }
}/*==================================================
    JOIN BUTTON
==================================================*/

.join-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    margin-top:55px;
    padding:20px 36px;
    border-radius:14px;
    background:#a6ce39;
    color:#fff;
    font-size:20px;
    font-weight:700;
    text-decoration:none;
    transition:.35s ease;
}

.join-btn i{
    font-size:18px;
}

.join-btn:hover{
    background:#778a44;
    transform:translateY(-4px);
    box-shadow:0 18px 35px rgba(0,0,0,.18);
}


/*==================================================
    IMAGE
==================================================*/

.join-image{
    display:flex;
    justify-content:flex-end;
    flex:1;
}

.join-image img{
    display:block;
    width:100%;
    max-width:760px;
    border-radius:32px;
    object-fit:cover;
    box-shadow:0 25px 60px rgba(0,0,0,.12);
    transition:transform .5s ease;
}

.join-image img:hover{
    transform:scale(1.02);
}


/*==================================================
    ANIMATION
==================================================*/

.join-content,
.join-image{
    animation:fadeUp .9s ease;
}

@keyframes fadeUp{

    from{
        opacity:0;
        transform:translateY(35px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}


/*==================================================
    PREMIUM BANK FEATURES
==================================================*/

.bank-features{
    position:relative;
    overflow:hidden;
    padding:110px 20px;
    background:#f7fbff;
}

.bank-container{
    max-width:1380px;
    margin:auto;
}

.features-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:28px;
}


/*==================================================
    FEATURE CARD
==================================================*/

.bank-feature-card{
    position:relative;
    display:flex;
    flex-direction:column;
    overflow:hidden;
    min-height:470px;
    padding:40px;
    background:#fff;
    border:1px solid #e9f0fb;
    border-radius:28px;
    box-shadow:0 12px 35px rgba(18,38,63,.05);
    transition:.45s ease;
}

.bank-feature-card::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(180deg,rgba(166,206,57,.05),transparent);
    opacity:0;
    transition:.45s;
}

.bank-feature-card:hover{
    transform:translateY(-12px);
    border-color:#a6ce39;
    box-shadow:0 35px 70px rgba(18,38,63,.10);
}

.bank-feature-card:hover::before{
    opacity:1;
}


/*==================================================
    ICON
==================================================*/

.bank-icon{
    display:flex;
    align-items:center;
    justify-content:center;
    width:88px;
    height:88px;
    margin-bottom:35px;
    border-radius:24px;
    background:#a6ce39;
    color:#fff;
    font-size:34px;
    box-shadow:0 18px 45px rgba(61,139,255,.30);
    transition:transform .4s ease;
}

.bank-feature-card:hover .bank-icon{
    transform:rotate(-5deg) scale(1.08);
}


/*==================================================
    TEXT
==================================================*/

.bank-feature-card h3{
    margin-bottom:24px;
    color:#17263e;
    font:700 38px/1.22 Georgia,serif;
}

.bank-feature-card p{
    flex:1;
    color:#707b89;
    font-size:19px;
    line-height:1.9;
}


/*==================================================
    LINK
==================================================*/

.feature-link{
    display:inline-flex;
    align-items:center;
    gap:10px;
    margin-top:35px;
    color:#a6ce39;
    font-size:17px;
    font-weight:700;
    text-decoration:none;
    transition:.3s ease;
}

.feature-link i{
    transition:transform .3s ease;
}

.feature-link:hover{
    color:#87b520;
}

.feature-link:hover i{
    transform:translateX(8px);
}


/*==================================================
    RESPONSIVE
==================================================*/

@media (max-width:1500px){

    .join-content h2{font-size:56px;}
    .join-description{font-size:20px;}
    .feature-text h4{font-size:23px;}
    .feature-text p{font-size:18px;}

}

@media (max-width:1400px){

    .bank-feature-card{
        padding:35px;
    }

    .bank-feature-card h3{
        font-size:33px;
    }

    .bank-feature-card p{
        font-size:18px;
    }

}

@media (max-width:1200px){

    .join-container{
        gap:50px;
    }

    .join-content h2{
        font-size:48px;
    }

    .join-description{
        font-size:19px;
    }

    .feature-text h4{
        font-size:22px;
    }

    .feature-text p{
        font-size:17px;
    }

    .join-btn{
        padding:18px 32px;
        font-size:18px;
    }

}

@media (max-width:1100px){

    .features-grid{
        grid-template-columns:repeat(2,1fr);
        gap:24px;
    }

    .bank-feature-card{
        min-height:430px;
    }

}

@media (max-width:992px){

    .join-section{
        padding:70px 0;
    }

    .join-container{
        flex-direction:column-reverse;
        gap:45px;
    }

    .join-content{
        max-width:100%;
    }

    .join-image{
        justify-content:center;
        width:100%;
    }

    .join-image img{
        max-width:100%;
    }

    .join-content h2{
        font-size:42px;
    }

    .join-description{
        font-size:18px;
    }

}

@media (max-width:768px){

    .join-section{
        padding:60px 0;
    }

    .join-container{
        width:92%;
        gap:35px;
    }

    .join-badge{
        padding:10px 18px;
        font-size:13px;
    }

    .join-content h2{
        font-size:35px;
        line-height:1.2;
    }

    .join-description{
        margin-bottom:35px;
        font-size:17px;
        line-height:1.8;
    }

    .feature-item{
        gap:14px;
    }

    .feature-icon{
        width:30px;
        height:30px;
        min-width:30px;
        font-size:12px;
    }

    .feature-text h4{
        font-size:20px;
    }

    .feature-text p{
        font-size:16px;
        line-height:1.6;
    }

    .join-btn{
        width:100%;
        margin-top:40px;
        padding:18px;
        font-size:18px;
    }

    .join-image img{
        border-radius:22px;
    }

    .bank-features{
        padding:80px 18px;
    }

    .features-grid{
        grid-template-columns:1fr;
        gap:20px;
    }

    .bank-feature-card{
        min-height:auto;
        padding:30px;
        border-radius:24px;
    }

    .bank-icon{
        width:76px;
        height:76px;
        margin-bottom:28px;
        font-size:28px;
    }

    .bank-feature-card h3{
        font-size:30px;
    }

    .bank-feature-card p{
        font-size:17px;
    }

    .feature-link{
        margin-top:28px;
    }

}

@media (max-width:576px){

    .join-content h2{font-size:30px;}
    .join-description{font-size:16px;}
    .feature-text h4{font-size:18px;}
    .feature-text p{font-size:15px;}
    .join-btn{font-size:16px;}

}

@media (max-width:480px){

    .bank-features{
        padding:70px 15px;
    }

    .bank-feature-card{
        padding:25px;
        border-radius:22px;
    }

    .bank-icon{
        width:68px;
        height:68px;
        border-radius:20px;
        font-size:25px;
    }

    .bank-feature-card h3{
        margin-bottom:18px;
        font-size:25px;
    }

    .bank-feature-card p{
        font-size:15px;
        line-height:1.8;
    }

    .feature-link{
        font-size:15px;
    }

}

@media (max-width:390px){

    .join-section{
        padding:45px 0;
    }

    .join-content h2{
        font-size:27px;
    }

    .join-description{
        font-size:15px;
    }

    .feature-text h4{
        font-size:17px;
    }

    .feature-text p{
        font-size:14px;
    }

    .join-btn{
        padding:16px;
        font-size:15px;
    }

    .join-badge{
        padding:9px 16px;
        font-size:12px;
    }

}
.fp-premium-section {
    padding: 110px 20px;
    background: #f7f9fc;
    font-family: 'Inter', sans-serif;
}

.fp-container {
    width: 100%;
    max-width: 1400px;
    margin: auto;
}

.fp-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 40px;
    align-items: stretch;
}

/*======================================
    CARD
======================================*/

.fp-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;

    background: #fff;
    border-radius: 24px;

    box-shadow: 0 18px 45px rgba(0, 0, 0, .08);
    transition: .35s ease;
}

.fp-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 28px 70px rgba(0, 0, 0, .14);
}

/*======================================
    IMAGE
======================================*/

.fp-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.fp-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .6s;
}

.fp-card:hover .fp-image img {
    transform: scale(1.08);
}

/*======================================
    ICON
======================================*/

.fp-icon {
    position: absolute;
    left: 35px;
    bottom: -35px;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 78px;
    height: 78px;

    border: 5px solid #fff;
    border-radius: 18px;

    color: #fff;
    font-size: 30px;

    box-shadow: 0 12px 30px rgba(0, 0, 0, .18);
    z-index: 5;
}

.fp-blue {
    background: #08127f;
}

.fp-yellow {
    background: #ffb700;
    color: #111;
}

.fp-green {
    background: #239b39;
}

/*======================================
    CONTENT
======================================*/

.fp-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 60px 35px 35px;
}

.fp-content h3 {
    margin-bottom: 18px;

    color: #08127f;
    font-size: 32px;
    font-weight: 800;
    line-height: 1.25;
}

.fp-content p {
    flex: 1;
    margin-bottom: 35px;

    color: #667085;
    font-size: 18px;
    line-height: 1.8;
}

/*======================================
    BUTTON
======================================*/

.fp-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    width: max-content;
    margin-top: auto;
    padding: 18px 34px;

    border-radius: 14px;

    text-decoration: none;
    font-size: 17px;
    font-weight: 700;

    transition: .35s;
}

.fp-button i {
    transition:
        transform .35s ease,
        box-shadow .35s ease,
        background-color .35s ease,
        color .35s ease;
}

.fp-button:hover {
    transform: translateY(-4px);
}

.fp-button:hover i {
    transform: translateX(6px);
}

.fp-btn-blue {
    color: #fff;
    background: #08127f;
    box-shadow: 0 15px 30px rgba(8, 18, 127, .25);
}

.fp-btn-blue:hover {
    background: #1422a5;
}

.fp-btn-yellow {
    color: #111;
    background: #ffb700;
    box-shadow: 0 15px 30px rgba(255, 183, 0, .28);
}

.fp-btn-yellow:hover {
    background: #eda700;
}

.fp-btn-green {
    color: #fff;
    background: #239b39;
    box-shadow: 0 15px 30px rgba(35, 155, 57, .28);
}

.fp-btn-green:hover {
    background: #1c7f2f;
}

/*======================================
    RESPONSIVE - 1200px
======================================*/

@media (max-width: 1200px) {

    .fp-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 30px;
    }

    .fp-image {
        height: 270px;
    }

}

/*======================================
    RESPONSIVE - 768px
======================================*/

@media (max-width: 768px) {

    .fp-premium-section {
        padding: 80px 18px;
    }

    .fp-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .fp-card {
        border-radius: 22px;
    }

    .fp-image {
        height: 250px;
    }

    .fp-icon {
        left: 28px;
        bottom: -30px;
        width: 68px;
        height: 68px;
        font-size: 25px;
    }

    .fp-content {
        padding: 52px 28px 28px;
    }

    .fp-content h3 {
        font-size: 28px;
    }

    .fp-content p {
        font-size: 17px;
        line-height: 1.75;
    }

    .fp-button {
        width: 100%;
        padding: 18px;
    }

}
/*======================================
    RESPONSIVE - 480px
======================================*/

@media (max-width: 480px) {

    .fp-premium-section {
        padding: 60px 15px;
    }

    .fp-grid {
        gap: 25px;
    }

    .fp-card {
        border-radius: 18px;
    }

    .fp-image {
        height: 220px;
    }

    .fp-icon {
        left: 22px;
        bottom: -26px;
        width: 60px;
        height: 60px;
        border-width: 4px;
        font-size: 22px;
    }

    .fp-content {
        padding: 45px 22px 22px;
    }

    .fp-content h3 {
        font-size: 24px;
        line-height: 1.3;
    }

    .fp-content p {
        margin-bottom: 25px;
        font-size: 15px;
        line-height: 1.7;
    }

    .fp-button {
        width: 100%;
        padding: 16px;
        border-radius: 12px;
        font-size: 15px;
    }

}

/*======================================
    RESPONSIVE - 360px
======================================*/

@media (max-width: 360px) {

    .fp-image {
        height: 190px;
    }

    .fp-icon {
        left: 18px;
        width: 54px;
        height: 54px;
        font-size: 20px;
    }

    .fp-content {
        padding: 40px 18px 18px;
    }

    .fp-content h3 {
        font-size: 21px;
    }

    .fp-content p {
        font-size: 14px;
    }

    .fp-button {
        padding: 15px;
        font-size: 14px;
    }

}

/*======================================
    RESET
======================================*/

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/*======================================
    LIVE BANKING
======================================*/

.live-banking {
    position: relative;
    overflow: hidden;

    padding: 120px 0 180px;

    background: #0b1228;
    background:
        radial-gradient(circle at top left, #162040 0%, #0b1228 55%),
        #0b1228;
}

/*======================================
    GRID
======================================*/

.banking-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 90px;
}

/*======================================
    LEFT CONTENT
======================================*/

.banking-content {
    flex: 1;
    max-width: 670px;
}

.banking-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 35px;
    padding: 11px 22px;

    border: 1px solid rgba(166, 206, 57, .35);
    border-radius: 100px;

    background: rgba(166, 206, 57, .15);

    color: #A6CE39;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.banking-content h1 {
    margin-bottom: 35px;

    color: #fff;
    font-family: Inter, sans-serif;
    font-size: 76px;
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -3px;
}

.banking-content p {
    max-width: 720px;
    margin-bottom: 50px;

    color: #d8deea;
    font-size: 28px;
    line-height: 1.7;
}

/*======================================
    BUTTON
======================================*/

.banking-buttons {
    display: flex;
    align-items: center;
}

.btn-login {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;

    padding: 24px 40px;

    border-radius: 60px;

    background: #FFD21E;
    color: #000;

    text-decoration: none;
    font-size: 22px;
    font-weight: 800;

    box-shadow:
        0 12px 30px rgba(255, 210, 30, .35),
        inset 0 2px 0 rgba(255, 255, 255, .4);

    transition: .35s;
}

.btn-login i {
    font-size: 22px;
    transition: .35s;
}

.btn-login:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(255, 210, 30, .55);
}

.btn-login:hover i {
    transform: translateX(6px);
}

/*======================================
    CARD
======================================*/

.banking-card {
    flex: 0 0 470px;
    display: flex;
    justify-content: center;
}

.activity-card {
    width: 100%;
    padding: 34px;

    border: 8px solid #273653;
    border-radius: 42px;

    background: #111931;

    box-shadow:
        0 45px 80px rgba(0, 0, 0, .45),
        inset 0 1px 0 rgba(255, 255, 255, .04);
}/*==================================
  HEADER
==================================*/

.activity-header{
    display:flex;
    justify-content:space-between;
    align-items:center;

    margin-bottom:25px;
    padding-bottom:18px;

    border-bottom:1px solid rgba(255,255,255,.08);
}

.activity-header h3{
    color:#fff;
    font-size:34px;
    font-weight:800;
}

.live-status{
    display:flex;
    align-items:center;
    gap:10px;

    color:#fff;
    font-size:18px;
}

.live-status span{
    width:14px;
    height:14px;

    border-radius:50%;
    background:#00d55f;
    box-shadow:0 0 12px #00d55f;
}

/*==================================
  ACTIVITY ITEMS
==================================*/

.activity-item{
    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:26px 0;
}

.activity-left{
    display:flex;
    align-items:center;
    gap:20px;
}

.activity-icon{
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;

    width:68px;
    height:68px;

    border-radius:50%;

    color:#fff;
    font-size:24px;
}

.blue{
    background:#223f7b;
}

.green{
    background:#0b6144;
}

.yellow{
    background:#735d14;
}

.activity-info h4{
    margin-bottom:6px;

    color:#fff;
    font-size:30px;
    font-weight:700;
}

.activity-info small{
    color:#9ba8c3;
    font-size:21px;
}

.activity-right{
    text-align:right;
}

.activity-right strong{
    display:block;
    margin-bottom:8px;

    font-size:28px;
    font-weight:800;
}

.activity-right small{
    color:#7d89a3;
    font-size:18px;
}

.expense{
    color:#fff;
}

.income{
    color:#14e87d;
}

/*==================================
  WAVE
==================================*/

.bank-wave{
    position:absolute;
    left:0;
    bottom:-5px;

    width:100%;
    line-height:0;
}

.bank-wave svg{
    display:block;
    width:100%;
    height:170px;
}

.bank-wave path{
    fill:#fff;
}

/*==================================
  RESPONSIVE ≤ 1200px
==================================*/

@media (max-width:1200px){

    .banking-wrapper{
        flex-direction:column;
        text-align:center;
    }

    .banking-content{
        max-width:100%;
    }

    .banking-buttons{
        justify-content:center;
    }

    .banking-card{
        width:100%;
        max-width:550px;
    }

    .banking-content h1{
        font-size:62px;
    }

}

/*==================================
  RESPONSIVE ≤ 768px
==================================*/

@media (max-width:768px){

    .live-banking{
        padding:90px 0 120px;
    }

    .banking-wrapper{
        gap:60px;
    }

    .banking-badge{
        padding:10px 18px;
        font-size:12px;
    }

    .banking-content h1{
        font-size:46px;
        line-height:1.1;
        letter-spacing:-2px;
    }

    .banking-content p{
        font-size:18px;
        line-height:1.7;
    }

    .btn-login{
        width:100%;
        padding:18px 24px;

        font-size:18px;
    }

    .banking-card{
        flex:auto;
    }

    .activity-card{
        padding:24px;

        border-width:6px;
        border-radius:30px;
    }

    .activity-header h3{
        font-size:25px;
    }

    .live-status{
        font-size:14px;
    }

    .activity-icon{
        width:54px;
        height:54px;

        font-size:18px;
    }

    .activity-info h4{
        font-size:19px;
    }

    .activity-info small{
        font-size:14px;
    }

    .activity-right strong{
        font-size:18px;
    }

    .activity-right small{
        font-size:13px;
    }

    .bank-wave svg{
        height:100px;
    }

}

/*==================================
  RESPONSIVE ≤ 480px
==================================*/

@media (max-width:480px){

    .banking-content h1{
        font-size:38px;
    }

}
.activity-item{
    gap:15px;
}

.activity-left{
    gap:14px;
}

.activity-info h4{
    font-size:17px;
}

.activity-info small{
    font-size:13px;
}

/*==================================
  RESPONSIVE ≤ 991px
==================================*/

@media (max-width:991px){

    .live-banking{
        padding:80px 0 120px;
    }

    .banking-wrapper{
        flex-direction:column;
        align-items:center;

        gap:60px;

        text-align:center;
    }

    .banking-content{
        width:100%;
        max-width:100%;
    }

    .banking-badge{
        margin:0 auto 25px;
    }

    .banking-content h1{
        font-size:54px;
        line-height:1.1;
        letter-spacing:-2px;
    }

    .banking-content p{
        max-width:100%;

        font-size:21px;
        line-height:1.7;
    }

    .banking-buttons{
        justify-content:center;
    }

    .banking-card{
        flex:none;
        width:100%;
        max-width:560px;
    }

    .activity-card{
        width:100%;
    }

}

/*==================================
  RESPONSIVE ≤ 768px
==================================*/

@media (max-width:768px){

    .live-banking{
        padding:70px 0 100px;
    }

    .container{
        width:94%;
    }

    .banking-wrapper{
        gap:45px;
    }

    .banking-badge{
        padding:10px 18px;
        font-size:12px;
    }

    .banking-content h1{
        font-size:44px;
        line-height:1.12;
    }

    .banking-content p{
        font-size:18px;
    }

    .btn-login{
        justify-content:center;

        width:100%;
        padding:18px 20px;

        font-size:18px;
    }

    .banking-card{
        max-width:100%;
    }

    .activity-card{
        padding:22px;

        border-width:5px;
        border-radius:28px;
    }

    .activity-header h3{
        font-size:24px;
    }

    .live-status{
        font-size:14px;
    }

    .activity-item{
        padding:18px 0;
    }

    .activity-icon{
        width:52px;
        height:52px;

        font-size:18px;
    }

    .activity-info h4{
        font-size:18px;
    }

    .activity-info small{
        font-size:13px;
    }

    .activity-right strong{
        font-size:18px;
    }

    .activity-right small{
        font-size:13px;
    }

    .bank-wave svg{
        height:90px;
    }

}

/*==================================
  RESPONSIVE ≤ 480px
==================================*/

@media (max-width:480px){

    .live-banking{
        padding:60px 0 80px;
    }

    .container{
        width:92%;
    }

    .banking-wrapper{
        gap:35px;
    }

    .banking-badge{
        padding:9px 16px;
        font-size:11px;
    }

    .banking-content h1{
        font-size:36px;
        line-height:1.15;
        letter-spacing:-1px;
    }

    .banking-content p{
        font-size:16px;
        line-height:1.7;
    }

    .btn-login{
        width:100%;
        padding:16px 20px;

        border-radius:50px;

        font-size:16px;
    }

    .btn-login i{
        font-size:16px;
    }

    .banking-card{
        width:100%;
    }

    .activity-card{
        padding:18px;

        border-width:4px;
        border-radius:22px;
    }

    .activity-header{
        margin-bottom:15px;
        padding-bottom:15px;
    }

    .activity-header h3{
        font-size:20px;
    }

    .live-status{
        gap:6px;
        font-size:12px;
    }

    .live-status span{
        width:10px;
        height:10px;
    }

    .activity-item{
        gap:12px;
        padding:15px 0;
    }

    .activity-left{
        gap:12px;
    }

    .activity-icon{
        width:44px;
        height:44px;

        font-size:15px;
    }

    .activity-info{
        flex:1;
    }

}.activity-info h4{
    margin-bottom:4px;
    font-size:15px;
}

.activity-info small{
    font-size:12px;
    line-height:1.4;
}

.activity-right strong{
    font-size:15px;
}

.activity-right small{
    font-size:11px;
}

.bank-wave svg{
    height:70px;
}

/*==================================
  RESPONSIVE ≤ 360px
==================================*/

@media (max-width:360px){

    .banking-content h1{
        font-size:30px;
    }

    .banking-content p{
        font-size:15px;
    }

    .btn-login{
        padding:15px 16px;
        font-size:15px;
    }

    .activity-card{
        padding:15px;
    }

    .activity-icon{
        width:40px;
        height:40px;
    }

    .activity-info h4{
        font-size:14px;
    }

    .activity-info small{
        font-size:11px;
    }

    .activity-right strong{
        font-size:14px;
    }

}

/*==================================
  FP ICON FIX
==================================*/

.fp-icon{
    position:absolute !important;
    left:35px !important;
    bottom:-35px !important;

    display:flex !important;
    align-items:center !important;
    justify-content:center !important;

    width:78px !important;
    height:78px !important;

    overflow:hidden !important;
    border-radius:18px !important;
    z-index:99999 !important;
}

.fp-icon i{
    position:static !important;

    display:flex !important;
    align-items:center !important;
    justify-content:center !important;

    width:auto !important;
    height:auto !important;

    margin:0 !important;
    padding:0 !important;

    font-size:30px !important;
    line-height:1 !important;

    transform:none !important;
}

.fp-image{
    position:relative !important;
    overflow:visible !important;
}


.live-banking,
.banking-wrapper,
.banking-card,
.activity-card{
    max-width:100%;
    overflow:hidden;
}
/* ==========================================
   HEADER
========================================== */

.site-header{
    position:relative;
    width:100%;
    background:#fff;
    z-index:9999;
}

.main-navigation{
    width:100%;
}

.nav-container{
    max-width:1450px;
    margin:auto;
    padding:20px 50px;

    display:flex;
    align-items:center;
    justify-content:space-between;

    position:relative;
}

/* ==========================================
   LOGO
========================================== */

.brand-logo{
    display:flex;
    align-items:center;
    text-decoration:none;
}

.logo-image{
    width:185px;
    display:block;
}

/* ==========================================
   MENU DESKTOP
========================================== */

.nav-menu{

    list-style:none;

    display:flex;
    align-items:center;

    gap:45px;

    margin:0;
    padding:0;

    position:absolute;
    left:50%;
    transform:translateX(-50%);
}

.nav-item{
    position:relative;
}

.nav-item>a{

    text-decoration:none;

    color:#17202b;

    font-size:16px;
    font-weight:600;

    transition:.3s;
}

.nav-item>a:hover,
.nav-item.active>a{

    color:#a6ce39;

}

/* ==========================================
   DROPDOWN
========================================== */

.dropdown-menu{

    position:absolute;

    top:100%;
    left:50%;

    transform:translateX(-50%);

    width:240px;

    background:#fff;

    padding:15px 0;

    border-radius:12px;

    list-style:none;

    box-shadow:0 18px 40px rgba(0,0,0,.12);

    opacity:0;
    visibility:hidden;

    transition:.35s;

    z-index:1000;
}

.dropdown:hover .dropdown-menu,
.dropdown.open .dropdown-menu{

    opacity:1;
    visibility:visible;

}

.dropdown-menu li a{

    display:block;

    padding:14px 25px;

    color:#222;

    text-decoration:none;

    transition:.3s;
}

.dropdown-menu li a:hover{

    background:#f6f9ef;

    color:#a6ce39;

    padding-left:35px;

}

.dropdown-arrow{

    margin-left:6px;

    transition:.3s;
}

.dropdown:hover .dropdown-arrow,
.dropdown.open .dropdown-arrow{

    transform:rotate(180deg);

}

/* ==========================================
   BOUTON LOGIN
========================================== */

.login-button{

    display:flex;
    align-items:center;
    justify-content:center;

    width:170px;
    height:50px;

    background:#a6ce39;

    color:#fff;

    text-decoration:none;

    border-radius:8px;

    font-weight:600;

    transition:.3s;
}

.login-button:hover{

    background:#90b730;

    transform:translateY(-2px);

}

/* ==========================================
   BURGER
========================================== */

.mobile-menu-button{

    display:none;

    width:45px;
    height:45px;

    border:none;
    background:none;

    cursor:pointer;

    flex-direction:column;
    justify-content:center;

    gap:6px;
}

.mobile-menu-button span{

    width:28px;
    height:3px;

    background:#17202b;

    border-radius:50px;

    transition:.35s;
}

.mobile-menu-button.active span:nth-child(1){

    transform:rotate(45deg) translate(5px,5px);

}

.mobile-menu-button.active span:nth-child(2){

    opacity:0;

}

.mobile-menu-button.active span:nth-child(3){

    transform:rotate(-45deg) translate(5px,-5px);

}

/* ==========================================
   TABLET
========================================== */

@media(max-width:1100px){

.nav-container{

    padding:18px 30px;

}

.nav-menu{

    gap:25px;

}

.logo-image{

    width:160px;

}

}

/* ==========================================
   MOBILE
========================================== */

@media(max-width:991px){

.mobile-menu-button{

    display:flex;

}

.nav-action{

    display:none;

}

.nav-menu{

    position:absolute;

    top:100%;
    left:0;

    transform:none;

    width:100%;

    background:#fff;

    flex-direction:column;

    align-items:stretch;

    gap:0;

    padding:15px 0;

    display:none;

    box-shadow:0 20px 35px rgba(0,0,0,.12);
}

.nav-menu.active{

    display:flex;

}

.nav-item{

    width:100%;

}

.nav-item>a{

    display:flex;

    justify-content:center;

    padding:15px;

}

/* dropdown mobile */

.dropdown-menu{

    position:static;

    width:100%;

    transform:none;

    box-shadow:none;

    border-radius:0;

    display:none;

    opacity:1;

    visibility:visible;

    padding:0;

}

.dropdown.open .dropdown-menu{

    display:block;

}

.dropdown:hover .dropdown-menu{

    display:none;

}

.dropdown-menu li a{

    padding:14px 0;

    text-align:center;

}

}

/* ==========================================
   PETITS MOBILES
========================================== */

@media(max-width:480px){

.nav-container{

    padding:15px;

}

.logo-image{

    width:130px;

}

}

/* ==========================================
 DROPDOWN DESKTOP
========================================== */

@media(min-width:992px){


.dropdown-menu{


    display:block !important;


    opacity:0;

    visibility:hidden;


    position:absolute;


    top:45px;

    left:50%;


    transform:translateX(-50%) translateY(15px);


    transition:.25s ease;


}


.dropdown:hover .dropdown-menu,
.dropdown.open .dropdown-menu{


    opacity:1;

    visibility:visible;


    transform:translateX(-50%) translateY(0);


}


}


@media(max-width:991px){

.dropdown.open .dropdown-menu{

    display:block !important;

    opacity:1 !important;

    visibility:visible !important;

}

}


/*====================================================
        HERO OPEN ACCOUNT
====================================================*/

.hero-open-account{

    position:relative;

    width:100%;

    min-height:540px;

    display:flex;

    align-items:center;

    justify-content:center;

    overflow:hidden;

    padding:90px 20px;

    background:

    repeating-linear-gradient(
    -45deg,
    rgba(255,255,255,.03) 0px,
    rgba(255,255,255,.03) 28px,
    transparent 28px,
    transparent 56px),

    linear-gradient(
    135deg,

    #536b22 0%,

    #71892d 18%,

    #8fa63d 38%,

    #aab94d 55%,

    #b7c05a 70%,

    #98a643 85%,

    #68791d 100%

    );

}


/*================================*/

.hero-overlay{

    position:absolute;

    inset:0;

    background:

    radial-gradient(circle at top left,
    rgba(255,255,255,.18),
    transparent 35%),

    radial-gradient(circle at bottom right,
    rgba(255,255,255,.08),
    transparent 35%);

}

/*================================*/

.hero-container{

    position:relative;

    z-index:5;

    width:100%;

    max-width:980px;

    text-align:center;

}

/*================================*/

.hero-container h1{

    font-size:58px;

    color:white;

    font-weight:800;

    line-height:1.2;

    margin-bottom:35px;

    text-shadow:

    0 5px 18px rgba(0,0,0,.30);

}

/*================================*/

.hero-container p{

    max-width:760px;

    margin:auto;

    font-size:25px;

    line-height:1.7;

    color:rgba(255,255,255,.95);

    margin-bottom:60px;

}

/*================================*/

.hero-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    min-width:620px;

    min-height:82px;

    padding:0 45px;

    border-radius:22px;

    text-decoration:none;

    font-size:27px;

    font-weight:700;

    color:#283500;

    background:

    linear-gradient(
    180deg,

    #ffffff,

    #f5f8e5);

    box-shadow:

    0 25px 60px rgba(0,0,0,.22),

    inset 0 1px 1px rgba(255,255,255,.9);

    transition:.35s;

}

/*================================*/

.hero-btn:hover{

    transform:translateY(-6px);

    box-shadow:

    0 35px 80px rgba(0,0,0,.30);

}

/*================================*/

.hero-btn:active{

    transform:scale(.98);

}

/*================================*/
/*========== TABLETTE ============*/
/*================================*/

@media(max-width:991px){

.hero-open-account{

padding:80px 20px;

min-height:500px;

}

.hero-container h1{

font-size:42px;

}

.hero-container p{

font-size:21px;

}

.hero-btn{

min-width:100%;

font-size:22px;

min-height:72px;

}

}

/*================================*/
/*========== MOBILE ==============*/
/*================================*/

@media(max-width:768px){

.hero-open-account{

padding:65px 18px;

min-height:auto;

}

.hero-container h1{

font-size:33px;

line-height:1.3;

margin-bottom:22px;

}

.hero-container p{

font-size:18px;

margin-bottom:40px;

line-height:1.6;

}

.hero-btn{

width:100%;

min-width:100%;

min-height:64px;

font-size:18px;

padding:18px;

border-radius:18px;

}

}

/*================================*/

@media(max-width:480px){

.hero-container h1{

font-size:27px;

}

.hero-container p{

font-size:16px;

}

.hero-btn{

font-size:16px;

min-height:58px;

}

}

/* ===============================
   FIX SLICK DOTS
=================================*/

.slick-dots{

    position:absolute;
    bottom:25px;
    left:50%;

    transform:translateX(-50%);

    display:flex!important;

    gap:12px;

    list-style:none;

    margin:0;
    padding:0;

    z-index:100;

}



.slick-dots li{

    margin:0;

}



.slick-dots li button{

    width:14px;
    height:14px;

    border-radius:50%;

    border:none;

    background:#ffffff80;

    font-size:0;

    cursor:pointer;

}



.slick-dots li.slick-active button{

    background:#ffffff;

}


.Modern-Slider{
    overflow:hidden;
}

.slick-list{
    overflow:hidden;
}

.slick-track{
    display:flex !important;
}

.slick-slide{
    height:auto;
}
