/*

  Theme Name: UCBI Banking

  Support:

  Description:

  Version: 2.3.0

*/



/* CSS Index

============================

01. Google Fonts

02. Variable CSS start

03. common css

04. common buttons css

05. header top sec css

06. hero section css

07. about section css

08. card section css

09. image section css

10. roadmap section css

11. modal css

12. team section css

13. faq section css

14. footer section css



============================

*/

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

  1. Google Fonts

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

@font-face {

    font-family: "Outfit";

    src: url("../fonts/outfit/Outfit-Regular.ttf") format('truetype');

    font-weight: 400;

    font-style: normal;

}



@font-face {

    font-family: "Outfit";

    src: url("../fonts/outfit/Outfit-Medium.ttf") format('truetype');

    font-weight: 500;

    font-style: normal;

}



@font-face {

    font-family: "Outfit";

    src: url("../fonts/outfit/Outfit-SemiBold.ttf") format('truetype');

    font-weight: 600;

    font-style: normal;

}



@font-face {

    font-family: "Outfit";

    src: url("../fonts/outfit/Outfit-Bold.ttf") format('truetype');

    font-weight: 700;

    font-style: normal;

}



@font-face {

    font-family: "Outfit";

    src: url("../fonts/outfit/Outfit-Black.ttf") format('truetype');

    font-weight: 800;

    font-style: normal;

}

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

2. Variable CSS start

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

:root {

    --font-family: "Outfit", serif;

    /* --body-font-family: "Inter", serif; */

    --primary: #00bcd4;

    --black: #000000;

    --white: #ffffff;

    --body-color:#F3F4FF;

    --menu-color:#111827;

    --font-color: #546b8b;

    --regular-text: 14px;

    --big-heading: 34px;

    --title-color:#112d50;

    --sub-tittle:#132E52;

    --paragraph-color: #546B8B;

    --body-font-size: 16px;

    --small-heading:20px;

    --body-font-weight: 400;

    --section-title-line-height: 1.25em;

    --footer-font-colour: rgba(255, 255, 255, 0.8);

    --transision: all 0.4s ease-in-out;

    --border-colour: #DFE1E7;

}



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

03. common css

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

*{

    margin: 0;

    padding: 0;

    outline: none;

    box-sizing: border-box;

}

body{

    font-family: var(--font-family);

    color: var(--font-color);

    font-size: var(--regular-text);

    background: #ffffff;

    scroll-behavior: smooth;

}





h1,h2,h3,h4,h5,h6{

    font-size: var(--big-heading);

    color: var(--title-color);

    font-weight: 700;

    margin: 0;

    padding: 0;

}

ul{

    margin: 0;

    padding: 0;

}

li{

   list-style: none;

}

.grid {

    grid-column-gap: 35px;

    grid-row-gap: 35px;

    grid-template-rows: auto auto auto;

    grid-template-columns: 1fr 1fr 1fr;

    max-width: 100%;

}

img{

    padding: 0px;

    margin: 0px;

}

a{

    color: var(--font-color);

    font-size: var(--regular-text);

    text-decoration: none;

}

p{

    margin-bottom: 0px;

}

.text_primary{

    color: var(--primary);

}

.small_heading_bold {

    font-family: var(--font-family);

    color: var(--title-color);

    font-size: var(--small-heading);

    margin-top: 0;

    margin-bottom: 0;

    font-weight: 700;

    line-height: 30px;

}

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

04. header_top_sec css

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

.header_sec .mx-auto {

    margin-right: unset!important;

}

.header_sec{

    overflow: hidden;

    background: transparent;

    position: absolute;

    top: 32px;

    left: 0;

    width: 100%;

    z-index: 99;

}

.header_sec .navbar-nav{

    list-style-type: disc;

    color: var(--primary);

}

.header_sec  .menu_content {

    padding-left: 20px;

}

.logo_image {

    width: 150px;
    transition: all 0.4s ease-in-out;

}


.logo_image img {

    height: 100%;

    transition: all 0.4s ease-in-out;
    width: 100%;

}
.logo_image img:hover {
    transform: scale(0.9);
    transition: all 0.4s ease-in-out;
}

.header_sec li.nav-item {

    margin-bottom: 0;

    padding-left: 32px;

    align-items: center;

    height: 48px;

    display: flex;

}

.header_sec li.nav-item .nav-link {

    padding: 0px;

    line-height: 20px;

    color: var(--font-color);

    transition: var(--transision);

    /* text-transform: uppercase; */

}

.header_sec li.nav-item .nav-link:hover{

    color: var(--primary);

    transition: var(--transision);

}

.header_sec ._headbtn {

    padding: 9px 15px;

    font-size: 14px;

    color: #fff;

    font-weight: 400;

    border-radius: 20px;

    font-family: var(--heading-font-family);

    background: #112D50;

    transition: var(--transision);

}

.header_sec ._headbtn:hover{

    background: linear-gradient(76.76deg, #00BCD4 13.72%, #112E51 115.77%);

    transition: var(--transision);

}

.nav_custom{

    padding: 0px 14px;

}

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

05.hero_section css

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

.hero_section {

    padding: 100px 0px;

    overflow: hidden;

    height: 900px;

    /*background: url("../images/bg-cover.png");

    background: linear-gradient(#0abab54d, #0abab500);*/

    background-size: cover;

    background-repeat: no-repeat;

    background-position: left center;

}

.hero_content {

    padding-top: 350px;

    position: relative;

    z-index: 99;

}

._button{

    justify-content: space-between;

    align-items: center;

    width: 343px;

    display: flex;

}

._button .fix_width{

    justify-content: center;

    width: 180px;

    display: flex;

}

._button .custom-btn-1 {
    background-color: #112d50;
    transition: var(--transision);
    font-family: var(--font-family);
    border-radius: 64px!important;
    color: #fff;
    font-size: 14px;
    line-height: inherit;
    cursor: pointer;
    padding: 13px 38px;
    margin-top: 20px;
    width: 162px;
}

.custom-btn-1{

    background-color: #112d50;

    transition: var(--transision);

    font-family: var(--font-family);

    border-radius: 20px!important;

    color: #fff;

    font-size: 14px;

    line-height: inherit;

    cursor: pointer;

    padding: 9px 15px;

    margin-top: 20px;

}

._button .custom-btn-3 {
        background-color: #112d50;
    transition: var(--transision);
    font-family: var(--font-family);
    border-radius: 20px !important;
    color: #fff;
    font-size: 14px;
    line-height: inherit;
    cursor: pointer;
    padding: 9px 15px;
    margin-top: 20px;
    margin-top: 17px;
    /* width: 220px; */
}

._button .custom-btn-3:hover {

    background: linear-gradient(76.76deg, #00BCD4 13.72%, #112E51 115.77%);

    transition: var(--transision);



}

._button .custom-btn-1:hover{

    background: linear-gradient(76.76deg, #00BCD4 13.72%, #112E51 115.77%);

    transition: var(--transision);

}

._button .custom-btn-2:hover{

    background-color: #112d50;

    transition: var(--transision);

}

._button .custom-btn-2 {
    background: linear-gradient(76.76deg, #00BCD4 13.72%, #112E51 115.77%);
    transition: var(--transision);
    font-family: var(--font-family);
    border-radius: 38px!important;
    color: #fff;
    font-size: 14px;
    line-height: inherit;
    cursor: pointer;
    padding: 13px 38px;
    margin-top: 20px;
    width: 162px;
}

.heroimg img {

    position: absolute;

    width: 63%;

    max-height: 97%;

    /* margin-left: -333px; */

    /* overflow: hidden; */

    /* margin-bottom: 203px; */

    top: 27px;

    right: 340px;

}

/* .heroimg img{

    overflow: hidden;

    height: 100%;

    width: 100%;

}  */



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

06.about_sec css

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

.about_sec{

    padding-bottom: 50px;

    padding-top: 100px;

    position: relative;

    z-index: 1;

    overflow: hidden;

}

.about_sec:before {

    content: "";

    background: url("../images/bg_blue_2.svg");

    left: -30%;

    top: 1%;

    position: absolute;

    z-index: -1;

    height: 100%;

    width: 100%;

    background-repeat: no-repeat;

    background-position: center center;

    opacity: .7;

}

.about_sec:after {

    content: "";

    background: url("../images/bg_blue_1.svg");

    right: -32%;

    top: 0%;

    position: absolute;

    z-index: -1;

    height: 100%;

    width: 100%;

    background-repeat: no-repeat;

    background-position: center center;

}

.about_sec ._button .custom-btn-1 {

    margin-top: 10px;

}

.about_sec .title{

    margin-bottom: 20px;

}

.about_sec p {
    text-align: justify;
    line-height: 26px;
    margin-bottom: 15px;
    font-size: 14px;
}

.about_sec ._extra.card_style {
    padding-top: 35px;
    padding-bottom: 48px;
    box-shadow: 0 0 10px 1px rgb(80 77 77 / 8%);
    position: relative;
    overflow: hidden;
    border: 1px solid #00bcd45c;
    transition: all 0.4s ease-in-out;
}
.about_sec ._extra.card_style:before {
    content: "";
    position: absolute;
    width: 62%;
    height: 60px;
    background: #00bcd4;
    right: -164px;
    bottom: -43px;
    transform: rotateZ(-37deg);
    transition: all 0.4s ease-in-out;
}
.about_sec ._extra.card_style:hover::before {
    bottom: 0 !important;
    height: 12px !important;
    transform: rotate(0) !important;
    transition: all 0.4s ease-in-out;
}
/*.about_sec ._extra.card_style:after {
    content: "";
    position: absolute;
     background: #00bcd4;
    height: 12px;
    width: 63%;
    bottom: 0;
    left: 114px;
    transition: all 0.4s ease-in-out;
}*/

.about_sec .card_item {
    z-index: 5;
    background-color: #ffffff38;
    border-radius: 10px;
    width: 100%;
    max-width: 100%;
    height: auto;
    margin-bottom: 15px;
    padding: 5px 10px;
    position: relative;
    box-shadow: 0 0 10px 1px rgb(0 0 0 / 8%);
    border: 1px solid #00bcd45c;
}

.about_sec .gif_img {

    margin-top: 35px;

    padding-bottom: 65px;

    padding-top: 65px;

}

.about_sec .card_list_main {

    margin-top: 35px;

    padding-top: 40px;

}

.about_sec .small_heading_bold {

    margin-bottom: 8px;

    font-size: 26px;

    font-weight: 500;

}

.three_card span {

    font-weight: 600;

    color: #00bcd4 !important;

    display: inline-block;

}

.three_card p {

/*    border-left: 2px solid #00bcd4;*/

/*    padding-left: 19px;*/

/*    width: 94%;*/

    margin-top: 23px;

}

.about_sec .small_heading_bold.space_up {

    margin-top: 14px;

}

.about_sec .iteam{

    align-items: center;

    display: flex;

}

.small_cards ul li .text {
    color: #112d50;
    font-size: 15px;
    font-weight: 600;
}

.about_sec .icon_img {

    /* width: 42px; */

    margin-right: 14px;

    /* background: linear-gradient(75.28deg, #47DDF0 17.59%, #06AFC5 80.27%); */

    border-radius: 50%;

    /* height: 42px; */

    /* padding: 9px; */

}

.about_sec img {

    max-width: 100%;

    vertical-align: middle;

    display: inline-block;

}

/*about section two start
=================================
=================================
*/

.about_sec_two{

    padding-bottom: 50px;

    padding-top: 100px;

    position: relative;

    z-index: 1;

    overflow: hidden;

}

/* .about_sec_two:before {

    content: "";

    background: url("../images/bg_blue_2.svg");

    left: -30%;

    top: 1%;

    position: absolute;

    z-index: -1;

    height: 100%;

    width: 100%;

    background-repeat: no-repeat;

    background-position: center center;

    opacity: .7;

}

.about_sec_two:after {

    content: "";

    background: url("../images/bg_blue_1.svg");

    right: -32%;

    top: 0%;

    position: absolute;

    z-index: -1;

    height: 100%;

    width: 100%;

    background-repeat: no-repeat;

    background-position: center center;

} */

.about_left_txt h2 {
    font-size: 34px;
    font-weight: 700;
    font-family: 'Outfit';
    line-height: 40px;
    color: #00bcd4;
    margin-bottom: 30px;
}
.about_left_txt h2 span {
    color: #112d50;
}

.about_left_txt p {
    color: #4E739D;
    font-size: 14px;
    font-family: 'Outfit';
    text-align: justify;
    line-height: 24px;
    margin-bottom: 40px;
}
a{

    transition: all 0.4s ease-in-out;
}
.blue_gradient_btn {
    align-items: center;
    padding: 13px 38px;
    background: linear-gradient(76.76deg, #00BCD4 13.72%, #112E51 115.77%);
    border-radius: 40px;
    display: inline-block;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.4s ease-in-out;
    width: 162px;
    text-align: center;
}
.blue_gradient_btn:hover {
    background: linear-gradient(76.76deg, #00BCD4 70.72%, #112E51 200.77%);
    transition: all 0.4s ease-in-out;
}
.text-right {
    text-align: right;
}
.section_big_img {
    padding-bottom: 60px;
}
.big_three_fest p {
    color: #4E739D;
    font-size: 14px;
    line-height: 24px;
    text-align: justify;
    font-family: 'outfit';
}
.mb-3{
    margin-bottom: 30px !important;
}

.sm_feature {
    /* background: rgb(255 255 255 / 30%); */
    border-radius: 10px;
    padding: 12px;
    transition: all 0.4s ease-in-out;
    width: 350px;
}
.sm_feature span {
    font-size: 14px;
    font-weight: 700;
    font-family: 'Outfit';
    display: inline-block;
    margin-left: 20px;
    color: #112E51;
    transition: all 0.4s ease-in-out;
}
.sm_feature img {
    transition: all 0.4s ease-in-out;
}
.sm_feature:hover img {
    transition: all 0.4s ease-in-out;
}

/* .sm_feature:hover span {
    color: #fff;
    transition: all 0.4s ease-in-out;
} */
/* .sm_feature:hover {
    background: linear-gradient(76.76deg, #00BCD4 13.72%, #112E51 115.77%);
    color: #fff;
    transition: all 0.4s ease-in-out;
} */
.big_three_fest h2 {
    font-size: 29px;
    font-family: 'Outfit';
    font-weight: 700;
    line-height: 43px;
    color: #00bcd4;
    margin-bottom: 30px;
    letter-spacing: -1px;
}
.big_three_fest span {
    color: #112d50;
}
.big_three_fest_img {
    transition: all 0.4s ease-in-out;
}
.big_three_fest_img img {
    transition: all 0.4s ease-in-out;
}
.big_three_fest_img:hover img {
/*    transform: scale(1.2);*/
    transition: all 0.4s ease-in-out;
}
.about_img_rgt {
    transition: all 0.4s ease-in-out;
}
.about_img_rgt img {
    transition: all 0.4s ease-in-out;
}
.about_img_rgt:hover img {
/*    transform: scale(1.1);*/
    transition: all 0.4s ease-in-out;
}

.left__line {
    position: relative;
}
.left__line:before {
    content: "";
    position: absolute;
    height: 4px;
    width: 115px;
    background: #00BCD4;
    bottom: -16px;
    left: 1px;
}
.right__line {
    position: relative;
}
.right__line:before {
    content: "";
    position: absolute;
    height: 4px;
    width: 115px;
    background: #00BCD4;
    bottom: -16px;
    right: 2px;
}

.right_ttx p {
    direction: rtl;
}

.right_ttx {
    text-align: right;
}




/*about section two end
=================================
*/



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

06.video_sec css

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

.video_sec {

    padding: 0 0 35px 0px;

}

.video_div {

    width: 100%;

    height: 500px;

    overflow: hidden;

     border-radius: 50px;

}

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

12. team_section css

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

.team_section {
    /* background: rgba(0, 45, 90, 0.03); */
    padding: 80px 0;
    /* margin-top: -128px; */
    transition: all 0.5s ease-in-out;
}

._member_{

     transition: all 0.5s ease-in-out;



}

.team_section ._social a {

    padding: 18px 20px;

    color: white;

    background: #242537;

    border-radius: 50%;

    font-size: 16px;

     transition: all 0.5s ease-in-out;

}

.team_section ._social a i{

    height: 18px;

    width: 18px;

    line-height: 0px;

     transition: all 0.5s ease-in-out;



}

._member_ .team_main {

    /* padding: 20px; */

    /* margin-right: 20px; */

    /* margin-left: 20px; */

    /* border-radius: 30px; */

    /* padding-top: 0px; */

    /* padding-bottom: 30px; */

    position: relative;

    /* background: white; */

     transition: all 0.5s ease-in-out;

}

.mem_img {

    height: 400px;

    width: 290px;

    position: relative;

    margin: 0 auto;

    z-index: 1;

     transition: all 0.5s ease-in-out;

}

.mem_img:after {

    content: "";

    position: absolute;

    background: linear-gradient(#fff0, #112d50c4);

    left: 0;

    top: 0;

    height: 100%;

    width: 100%;

    /* z-index: -1; */

     transition: all 0.5s ease-in-out;

    border-radius: 49px;

}





.s_media {

    position: absolute;

    left: 30%;

    top: 30%;

    z-index: 999;

     opacity: 0;

     transition: all 0.5s ease-in-out;

}

.mem_img:hover.mem_img:after {

    background: linear-gradient(#040404ad, #0d223ee8);

     cursor: pointer;

    border-radius: 49px;

     transition: all 0.5s ease-in-out;

}



.mem_img:hover .s_media {

    opacity: 1;

     transition: all 0.5s ease-in-out;

}

.team_section  .team_doc {

    position: absolute;

    bottom: 55px;

    left: 48px;

    z-index: 99;

}

.mem_img img {

    width: 100%;

    border-radius: 50px;

    z-index: -1;

    height: 100%;

}

.team_section .team_doc .tittle {

    font-size: 20px;

    font-weight: 700;

    line-height: 30px;

}

.team_section .sub_tittle {

    font-size: 16px;

    font-weight: 400;

    color: #fff;

    font-family: 'Outfit';

}

.team_section .sub_tittle .tittle{

    font-size: 16px;

    font-weight: 400;

    line-height: 32px;

}

.tittle{

    font-size: 30px;

}

.image.clear.team_img {

    padding: 0px 25px;

}

.image.clear.team_img img {

    height: 100%;

    width: 100%;

    border-radius: 16px;

}

.s_media a {

    margin-right: 5px;

    text-align: center;

    width: 117px;

    height: 117px;

    line-height: 114px;

    background: #ffffff57;

    border-radius: 50%;

    padding: 0px;

    transition: var(--transision);

    display: inline-block;

    font-size: 78px;

    color: #00000063;

    background: #f7f7f752;

}

.s_media a img {

    margin-top: 6px;

    margin-left: 7px;

}

.teammm_:after {

    content: "";

    position: absolute;

    left: 0px;

    bottom: -80px;

    height: 75%;

    width: 100%;

/*    background: #112D50;*/

    z-index: -1;

    border-radius: 33px;

}



.social.text-right {

    text-align: right !important;

}

.team_slider ul.slick-dots {

    position: absolute;

    width: 100%;

    text-align: center;

    list-style: none;

    margin-top: 50px;

    border-bottom: 10px;

    bottom: -35px;

    left: 10px;

}

.team_slider ul.slick-dots li {

    display: inline-block;

}

.team_slider ul.slick-dots li.slick-active button {

    background: #00BCD4;

    height: 11px;

    width: 46px;

    border-radius: 6px;

    border: none;

}

.team_slider ul.slick-dots li button {

    height: 10px;

    width: 10px;

    background: transparent;

    font-size: 0;

    background: #546b8b;

    border-radius: 50%;

    margin-right: 5px;

    margin-top: 65px;

    border: none !important;

}

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

06.faq_sec css

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

.faq_sec{

    padding: 35px 0px;

}

/* accordian */

.faq_section .accordion-button:not(.collapsed) {

    background-color: unset;

}

.faq_section .accordion{

    border: none;

}

.faq_section .accordion-button:focus {

    z-index: 3;

    outline: none;

    box-shadow: none;

    border-radius: 24px;

}

.faq_sec .accordion-button:focus {

    box-shadow: none;

}

.faq_sec .accordion-button:not(.collapsed) {

    background-color: unset;

    box-shadow: none;

}

.faq_sec .accordion-item {

    background-color: unset;

    border: none;

    border-bottom: 1px solid #e8e9ec;

    transition: var(--transision);

}

.faq_sec .accordion-item:last-child{

    border-bottom: none;

}

.faq_sec .accordion-item:hover{

    transform: translate(8px);

    transition: var(--transision);

}

.faq_sec .accordion-button {

    background-color: unset;

}

.faq_sec .accordion-button:not(.collapsed)::after {

    background-image: url("../images/plusicon.png");



}

.faq_sec .accordion-button::after {

    background-image: url("../images/plusicon.png");

}

.faq_sec p{

    font-family: var(--font-family);

    /* color: var(--font-color); */

    line-height: 30px;

    color: #546b8b;

}



.accordion-button {

    padding: 12px 0 !important;

}

.accordion-body {

    padding: 12px 0 !important;

}

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

06.footer_sec css

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

.footer_sec{

    padding: 40px 0px;

}

.card_style {

    z-index: 5;

/*    background-color: #ffffff38;*/

    border-radius: 20px;

    width: 100%;

    max-width: 100%;

    padding: 30px 40px;

    position: relative;

/*    box-shadow: 0 0 10px 1px #0000001a;*/

}
.footer_sec .card_style {

    z-index: 5;

/*    background-color: #ffffff38;*/

    border-radius: 50px;

    width: 100%;

    max-width: 100%;

    padding: 36px 0 30px 0;

    position: relative;

/*    box-shadow: 0 0 10px 1px #0000001a;*/

}

.footer_logo {

    width: 120px;

}

.footer_sec .footer_logo img {

    vertical-align: middle;

    max-width: 100%;

    display: inline-block;

}

.footer_sec .footer_left {

    flex-flow: column;

    justify-content: space-between;

    padding-bottom: 20px;

    display: flex;

}

.footer_content {

    display: flex;

    justify-content: end;



}

.footer_sec .social {

    padding-top: 40px;

}

.footer_sec .social_logoes {

    padding-top: 10px;

    transition: opacity .525s;

    /* display: flex; */

}
.fconmain {
    margin-left: 35px;
    margin-top: 13px;
}
.footer_sec ul{
    margin-top: 32px;
}
.footer_sec li {
    align-items: center;
    height: 32px;
    display: flex;
}

.footer_sec .footer_icone {
    width: 28px;
    margin-right: 4px;
}

.footer_bottom{

    display: flex;

    justify-content: space-between;

    padding-top: 35px;

    align-self: center;

}



h1.hero_tittle {

    margin-top: 22px;

}

/* blur color */

.blur_wrapper {

    width: 90vw;

    overflow: hidden;

}

.blur {

    z-index: 0;

    filter: blur(350px);

    border-radius: 100%;

    width: 400px;

    height: 400px;

    position: absolute;

}



.blur.bleu {

    background-color: #00bcd4;

}

.blur.rose {

    background-color: #f0d;

}

.blur.rose._01 {

    z-index: -1;

    filter: blur(450px);

    margin-top: 255px;

}

.blur.bleu._02 {

    z-index: -1;

    filter: blur(300px);

    width: 450px;

    inset: auto 0% -18% auto;

}

.blur.bleu._03 {

    filter: blur(300px);

    width: 500px;

    height: 500px;

    margin-top: 335px;

    margin-left: 282px;

}

.blur.rose._04 {

    filter: blur(400px);

    margin-top: 330px;

    display: none;

    right: 0%;

}



.blur_wrapper.footer {

    width: 98%;

}

.blur.rose._05 {

    filter: blur(380px);

    background: linear-gradient(#ffffff6e, #ffffff6e);

    right: 0;

}

.blur.bleu._06 {

    z-index: -1;

    filter: blur(450px);

    left: 0;

}



/* ticker logo scrooll section */

.section_logo {

    flex-flow: column;

    align-items: center;

    width: 100%;

    display: flex;

    overflow: hidden;

}

.container-default {

    grid-column-gap: 16px;

    grid-row-gap: 16px;

    grid-template-rows: auto auto;

    grid-template-columns: 1fr 1fr;

    grid-auto-columns: 1fr;

    max-width: 1218px;

    padding-left: 24px;

    padding-right: 24px;

}

.group.has-16-gap {

    grid-column-gap: 1em;

    grid-row-gap: 1em;

}

.group {

    grid-template-rows: auto;

    grid-template-columns: 1fr;

    grid-auto-columns: 1fr;

    display: grid;

}

#w-node-_96cefcac-ff38-9131-cb26-fba34422f79a-5232160c, #w-node-_96cefcac-ff38-9131-cb26-fba34422f7a4-5232160c, #w-node-d9186d9d-2457-5f45-192e-486380b0582f-5232160c, #w-node-_5cad6e76-d87e-3245-3550-32ae9ddd9635-5232160c {

    grid-area: span 1 / span 2 / span 1 / span 2;

}

.card-2 {

    grid-column-gap: 1em;

    grid-row-gap: 1em;

    border-radius: 1em;

    flex-flow: column;

    justify-content: center;

    align-items: center;

    max-width: 100%;

    padding-top: 1.5em;

    padding-bottom: 1.5em;

    display: flex;

}

.ticker {

    flex-flow: row;

    justify-content: flex-start;

    align-items: center;

    width: 1218px;

    display: flex;

    position: relative;

    overflow: hidden;

    -webkit-mask-image: linear-gradient(to right, #0000, #000 10% 90%, #0000);

    mask-image: linear-gradient(to right, #0000, #000 10% 90%, #0000);

    -webkit-mask-source-type: alpha;

    mask-mode: alpha;

}

.ticker-content {

    flex: none;

    justify-content: flex-start;

    align-items: center;

    display: flex;

}

.ticker-logo {

    flex: none;

    width: 50px;

    height: 50px;

    margin-left: 30px;

    margin-right: 30px;

}

.ticker.is-reversed {

    justify-content: flex-end;

    align-items: center;

    -webkit-mask-image: linear-gradient(to right, #0000, #000 10% 90%, #0000);

    mask-image: linear-gradient(to right, #0000, #000 10% 90%, #0000);

    -webkit-mask-source-type: alpha;

    mask-mode: alpha;

}



/* ticker slider end */



/* big animation image */

.section_newsletter {

    justify-content: center;

    width: 100%;

    max-width: 100%;

}

.container-default.flex-grow {

    flex-flow: column;

    flex: 1;

    align-items: center;

    margin-left: auto;

    margin-right: auto;

    padding-top: 24px;

    padding-bottom: 24px;

    display: flex;

}

.wrapper_token_annimation {

    flex-flow: column;

    justify-content: center;

    align-items: center;

    max-width: 100%;

    display: flex;

}

.token_annimation {

    width: 65%;

    max-width: 1000px;

    margin-bottom: -308px;

}

.newsletter_wrapper {

    /*background-image: linear-gradient(#fff0, #fff);*/

    flex-flow: column;

    align-items: center;

    width: 96vw;

    padding-top: 100px;

    padding-bottom: 100px;

    display: flex;

    position: relative;

}

.big_heading {

    font-family: Outfit, sans-serif;

    color: #112d50;

    font-size: 34px;

    margin-top: 0;

}

.regular_text {

    font-family: Outfit, sans-serif;

    color:#546b8b;

    font-size: 16px;

}

.regular_text.center_typography {

    text-align: center;

}

.newsletter_form_block {

    margin-top: 15px;

}

.w-form {

    margin: 0 0 15px;

}

.newsletter_form {

    align-items: center;

    display: flex;

}

.w-input, .w-select {

    color: #333;

    vertical-align: middle;

    background-color: #fff;

    border: 1px solid #ccc;

    width: 100%;

    height: 38px;

    margin-bottom: 10px;

    padding: 8px 12px;

    font-size: 14px;

    line-height: 1.42857;

    display: block;

}

.text-field {

    border: .2px solid #546b8b;

    font-family: Outfit, sans-serif;

    font-size: 16px;

    background-color: #fff3;

    border-radius: 20px;

}

.text-field.space_right {

    font-family: Outfit, sans-serif;

    color: #000;

    margin-bottom: 0;

    margin-right: 19px;

}

.w-button {

    color: #fff;

    line-height: inherit;

    cursor: pointer;

    background-color: #3898ec;

    border: 0;

    border-radius: 0;

    padding: 9px 15px;

    text-decoration: none;

    display: inline-block;

}

.button_01 {

    background-color: #112d50;

    font-family: Outfit, sans-serif;

    border-radius: 20px;

    transition: background-color .4s;

}



input.w-button {

    -webkit-appearance: button;

}

.button_01.fix_width {

    justify-content: center;

    width: 180px;

    display: flex;

}

.w-form-done {

    text-align: center;

    background-color: #ddd;

    padding: 20px;

    display: none;

}

.w-form-fail {

    background-color: #ffdede;

    margin-top: 10px;

    padding: 10px;

    display: none;

}





.animate1 {

    position: relative;

    animation-name: animate1;

    animation-duration: 2s;

    animation-iteration-count: infinite;

    animation-direction: alternate;

    animation-timing-function: ease-in-out;

}



@keyframes animate1 {

    0% {

        transform: translateY(0px);

    }

    100% {

        transform: translateY(-20px);

    }

}



/* team section */

.team_section {
    justify-content: center;
    width: 100%;
    /* padding-top: 50px; */
    z-index: 9999 !important;
    position: relative;
}

.div-block-2 {

    justify-content: center;

    align-items: center;

    display: flex;

    position: relative;

    top: -171px;

}

.big_heading {

    font-family: var(--_couleurs-ucbi---font);

    color: var(--_couleurs-ucbi---bleu-nuit);

    font-size: var(--_size-ucbi---big_heading);

    margin-top: 0;

}

.blue_background_rectangle {

    background-color: #112d50;

    border-radius: 50px;

    justify-content: center;

    width: 100%;

    height: 350px;

    display: flex;

}

.slider-wrapper {

    background-color: #0000;

    width: 80%;

    height: 130%;

    margin-top: -168px;

    overflow: hidden;

}

.w-slider {

    text-align: center;

    clear: both;

    -webkit-tap-highlight-color: #0000;

    tap-highlight-color: #0000;

    background: #ddd;

    height: 300px;

    position: relative;

}

.slider-mask-width-390px {

    width: 30%;

    height: 100%;

    overflow: visible;

}

.w-slider-mask {

    z-index: 1;

    white-space: nowrap;

    height: 100%;

    display: block;

    position: relative;

    left: 0;

    right: 0;

    overflow: hidden;

}

.slide-item-mg {

    margin-right: 17%;

}

.w-slide {

    vertical-align: top;

    white-space: normal;

    text-align: left;

    width: 100%;

    height: 100%;

    display: inline-block;

    position: relative;

}

.card {

    z-index: 5;

    background-color: #ffffff38;

    border-radius: 50px;

    width: 100%;

    max-width: 100%;

    padding: 40px;

    position: relative;

    box-shadow: 0 0 10px 1px #0000001a;

}

.card.team {

    background-image: linear-gradient(#fff0, #112d50c4);

    justify-content: flex-start;

    align-items: flex-end;

    height: 400px;

    display: flex;

}

.card.team.rachid {

    background-image: linear-gradient(#fff0, #112d50c4), url("../images/Rachid-Wadii_02.png");

    background-position: 0 0, 50%;

    background-size: auto, cover;

}

.small_heading_bold {

    font-family: Outfit, sans-serif;

    color: #112d50;

    font-size: 18px;

    margin-top: 0;

    margin-bottom: 0;

    font-weight: 700;

    line-height: 30px;

}

.small_heading_bold.team_name {

    color: #00bcd4;

}

.regular_text.team_title {

    color: #fff;

}

.overlay_team {

    background-color: #00000087;

    border-radius: 50px;

    width: 100%;

    height: 100%;

    position: absolute;

    inset: 0% auto auto 0%;

}

.team_link {

    border-radius: 50px;

    justify-content: center;

    align-items: center;

    width: 100%;

    height: 100%;

    display: flex;

}

.linkedin_team {

    opacity: .38;

    width: 100px;

    max-width: 50%;

}

.card.team.romuald {

    background-image: linear-gradient(#fff0, #112d50c4), url("../images/Romuald-Ouattara.png");

    background-position: 0 0, 50%;

    background-size: auto, cover;

}



.coin {
    width: 486px;
    height: 530px;
    background-image: url('../images/coin.png');
    background-size: cover;
    background-position: center;
    transform: rotateX(80deg);
    transition: transform 0.4s ease-in-out;
    margin: 0 auto;
}


.subscriber_section{

    padding-bottom: 100px;

}

.subscriber__area {

    text-align: center;

    margin-top: -148px;

    z-index: 1002 !important;

    position: relative ;

}

.susbscriber_form  {

    margin-top: 15px;

}

.susbscriber_form input {

    border: 1px solid #29b2cf;

    border-radius: 33px;

    padding: 6px 15px;

    margin-right: 10px;

    background: rgb(255 255 255 / 30%);

    width: 298px;

}

.susbscriber_form button {

    border-radius: 30px;

    background: #112d50;

    color: #fff;

    padding: 6px 23px;

    border: 1px solid #112d50;

    transition: all 0.4s ease-in-out;

}

.susbscriber_form button:hover {

    background: #2ab2cf;

    border: 1px solid #2ab2cf;

    transition: all 0.4s ease-in-out;

}

.three_card {
    background: #ffffff2e;
    padding: 30px 38px;
    border-radius: 15px;
    box-shadow: 0 0 10px 1px #0000001a;
    position: relative;
    overflow: hidden;
    border: 1px solid #00bcd454;
    transition: all 0.4s ease-in-out;
}
.three_card:before {
    content: "";
    position: absolute;
    height: 47px;
    width: 62%;
    background: #00bcd4;
    transform: rotate(0);
    bottom: -10px;
    right: -89px;
    /* border-radius: 0 0 10px 42px; */
    transform: rotate(-38deg);
    transition: all 0.4s ease-in-out;
}
.three_card:hover::before {
    bottom: 0 !important;
    height: 12px !important;
    transform: rotate(0) !important;
    transition: all 0.4s ease-in-out;
}
.card_list_main.card_style{
    padding: 0 !important;
    background: none !important;
    box-shadow: none !important;
    transition: all 0.4s ease-in-out;
}


/* animation moving background */

.wrapper {

    opacity: 0.1;

}

  .wrapper span {

  position: fixed;

  bottom: -180px;

  height: 44px;

  width: 44px;

  border-radius: 50%;

  padding: 12px;

  z-index: -1;

  background: url("../images/UCBI_Banking.png");

  background-size: cover;

  /* box-shadow: 0 0 50px #0072ff, 0 0 100px #0072ff, 0 0 150px #0072ff, 0 0 200px #0072ff; */

  animation: animate 10s linear infinite;

  overflow: hidden;

  display: inline-block;

  opacity: 0;

}

.wrapper span:nth-child(1) {

  left: 60px;

  animation-delay: 0.6s;

}

.wrapper span:nth-child(2) {

  left: 10%;

  animation-delay: 3s;

  width: 48px;

  height: 48px;

}

.wrapper span:nth-child(3) {

  left: 20%;

  animation-delay: 2s;

}

.wrapper span:nth-child(4) {

  left: 30%;

  animation-delay: 5s;

  width: 52px;

  height: 52px;

}

.wrapper span:nth-child(5) {

  left: 40%;

  animation-delay: 1s;

}

.wrapper span:nth-child(6) {

  left: 50%;

  animation-delay: 7s;

}

.wrapper span:nth-child(7) {

  left: 60%;

  animation-delay: 6s;

  width: 55px;

  height: 55px;

}

.wrapper span:nth-child(8) {

  left: 70%;

  animation-delay: 8s;

}

.wrapper span:nth-child(9) {

  left: 80%;

  animation-delay: 6s;

  width: 60px;

  height: 60px;

}

.wrapper span:nth-child(10) {

  left: 90%;

  animation-delay: 4s;

}

@keyframes animate {

  0% {

      transform: translateY(0);

      opacity: 1;

  }

  80% {

      opacity: .7;

  }

  100% {

      transform: translateY(-800px) rotate(360deg);

      opacity: 0;

  }

}



/* animation moving ends */





/*

::::::::::::::::::::::::::

PRELOADER AREA CSS

::::::::::::::::::::::::::

*/

.preloader {

  position: fixed;

  top: 0;

  left: 0;

  right: 0;

  bottom: 0;

  z-index: 1000;

  background-color: #fff;

  display: flex;

  align-items: center;

  justify-content: center;

}



.preloader.preloader2 {

  position: fixed;

  top: 0;

  left: 0;

  right: 0;

  bottom: 0;

  z-index: 1000;

  background-color: #000000;

  display: flex;

  align-items: center;

  justify-content: center;

}



.loading-container,

.loading {

  height: 140px;

  position: relative;

  width: 140px;

  border-radius: 100%;

}



.loading-container {

  margin: 40px auto;

}



.loading {

  border: 1px solid transparent;

  border-color: transparent #5A65F5 transparent #5A65F5;

  animation: rotate-loading 1.5s linear 0s infinite normal;

  transform-origin: 50% 50%;

}



.loading.loading2 {

  border: 1px solid transparent;

  border-color: transparent #C0FF3A transparent #C0FF3A !important;

  animation: rotate-loading 1.5s linear 0s infinite normal;

  transform-origin: 50% 50%;

}



.loading.loading3 {

  border: 1px solid transparent;

  border-color: transparent #EE64FE transparent #EE64FE;

  animation: rotate-loading 1.5s linear 0s infinite normal;

  transform-origin: 50% 50%;

}



.loading.loading4 {

  border: 1px solid transparent;

  border-color: transparent #F69434 transparent #F69434;

  animation: rotate-loading 1.5s linear 0s infinite normal;

  transform-origin: 50% 50%;

}



.loading-container:hover .loading,

.loading-container .loading {

  transition: all 0.5s ease-in-out;

}



#loading-icon {

  position: absolute;

  top: 50%;

  left: 50%;

  width: 90px;

  transform: translate(-50%, -50%);

}



@keyframes rotate-loading {

  0% {

    transform: rotate(0deg);

  }

  100% {

    transform: rotate(360deg);

  }

}

/*

::::::::::::::::::::::::::

 PRELOADER AREA CSS

::::::::::::::::::::::::::

*/





/* #Progress

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

.progress-wrap {

  position: fixed;

  right: 30px;

  bottom: 30px;

  height: 56px;

  width: 56px;

  cursor: pointer;

  display: block;

  border-radius: 50px;

  box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.1);

  z-index: 1;

  opacity: 0;

  visibility: hidden;

  transform: translateY(15px);

  transition: all 200ms linear;

}



.progress-wrap.active-progress {

  opacity: 1;

  visibility: visible;

  transform: translateY(0);

  z-index: 999;

}



.progress-wrap::after {

  position: absolute;

  font-family: "FontAwesome";

  content: "\f062";

  text-align: center;

  line-height: 56px;

  font-size: 18px;

  color: #03256c;

  left: 0;

  top: 0;

  height: 56px;

  width: 56px;

  cursor: pointer;

  display: block;

  z-index: 1;

  transition: all 200ms linear;

}



.progress-wrap:hover::after {

  opacity: 0;

}



.progress-wrap::before {

  position: absolute;

  font-family: "FontAwesome";

  content: "\f062";

  text-align: center;

  line-height: 56px;

  font-size: 18px;

  opacity: 0;

  left: 0;

  top: 0;

  height: 56px;

  width: 56px;

  cursor: pointer;

  display: block;

  z-index: 2;

  transition: all 200ms linear;

}



.progress-wrap:hover::before {

  opacity: 1;

}



.progress-wrap svg path {

  fill: none;

}



.progress-wrap svg.progress-circle path {

  stroke: #03256c;

  stroke-width: 4;

  box-sizing: border-box;

  transition: all 200ms linear;

}



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

++++PAGE-PROGRESS-END+++++

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


.subscriber__area h4 {
  font-size: 28px;
}


/*new team*/
/* .team_sider_main {
  display: flex;
  justify-content: center;
  width: 962px;
  margin: 0 auto;
} */
.team_item_uc {
  width: 290px !important;
  height: 400px;
  overflow: hidden;
  border-radius: 50px;
  margin-right: 15px;
  margin-left: 15px;
  position: relative;
  transition: all 0.4s ease-in-out;
}
.team_img_r {
  position: relative;
  height: 400px;
  width: 290px;
  overflow: hidden;
  transition: all 0.4s ease-in-out;
}
.team_img_r img {
  width: 100%;
  height: 100%;
  transition: all 0.4s ease-in-out;
}

.team_img_r:before {
  content: "";
  background: linear-gradient(#fff0, #112d50c4);
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  transition: all 0.4s ease-in-out;
}
.owl-item {
  transition: all 0.4s ease-in-out;
}

.team_text_area {
  position: absolute;
  margin-top: -140px;
  left: 40px;
  bottom: 43px;
  z-index: 999;
  transition: all 0.4s ease-in-out;
}
.team_text_area h4 {
  color: #00bcd4;
  font-size: 20px;
  font-weight: 700;
  font-family: 'Outfit';
  transition: all 0.4s ease-in-out;
}
.team_text_area span {
  color: #fff;
  font-family: 'Outfit';
  font-size: 16px;
  transition: all 0.4s ease-in-out;
}
.team_sider_main .owl-dots .owl-dot {
  background: #546b8b !important;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-left: 12px;
}
.team_sider_main .owl-dots .owl-dot.active {
  background: #00bcd4 !important;
  height: 11px;
  width: 46px;
  border-radius: 20px;
}
.owl-dots {
  text-align: center;
  margin-top: 20px;
}
.ss_media {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 999;
  background: linear-gradient(#040404ad, #0d223ee8);
  height: 100%;
  width: 100%;
  text-align: center;
  line-height: 100px;
  z-index: revert-layer;
  display: none;
  transition: all 0.4s ease-in-out;
}

.ss_media a {
  display: inline-block;
  height: 120px;
  width: 120px;
  background: #f7f7f752;
  border-radius: 50%;
  line-height: 120px;
  font-size: 59px;
  color: #00000063;
  margin-top: 125px;
  text-align: center;
  transition: all 0.4s ease-in-out;
}
.team_item_uc:hover .ss_media {
  display: block;
  transition: all 0.4s ease-in-out;
  cursor: pointer;
}

/* team 2 design*/
.team_area .item {
    overflow: hidden;
    width: 270px;
    box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    border-radius: 12px;
}
.t_text {
    text-align: center;
}
.t_text h6 {
    color: #00BCD4;
    font-size: 22px;
    margin-top: 24px;
}
.t_text p {
    font-size: 18px;
    color: #112E51;
    margin-top: 13px;
    padding-bottom: 18px;
}



.t_img {
    width: 270px;
    height: 355px;
    overflow: hidden;
    position: relative;
}
.t_img::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(#fff0, rgb(17 45 80 / 72%));
}
.t_img img {
    width: 100% !important;
    height: 100%;
}
.t_img a {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 50px;
    width: 61px;
    background: rgb(0 188 212 / 48%);
    text-align: center;
    color: #fff;
    line-height: 54px;
    display: inline-block;
    font-size: 32px;
    border-radius: 0px 5px 0 0;
}

/* team seciton small modify */
.team_area {
    width: 871px;
    margin: 0 auto;
}
.owl-item.active{
    width: 270px !important;
    margin-right: 30px;
}
/* responsive media query start */

@media (min-width: 1920px) {
    .heroimg img {

        left: 365px ;
    }
}

@media (min-width: 1400px) {
    .heroimg img {

        right: 104px;
    }

    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {

        max-width: 1170px !important;

        padding: 0 !important;

    }

    .blur.rose._05 {

    filter: blur(600px);

    right: 15vw;

}

.blur.bleu._06 {

    filter: blur(400px);

    left: 15vw;

}

.card.team.rachid {

    background-image: linear-gradient(#fff0, #112d50c4), url("../images/Rachid-Wadii_02.png");

    background-position: 0 0, 50% 25%;

}

}

@media (min-width: 1200px) {

    .container, .container-lg, .container-md, .container-sm, .container-xl {

        max-width: 1170px !important;

        padding: 0 !important;

    }

    .heroimg img {
        top: 53px;
        right: 67px;
    }

}

@media (min-width: 1024px){

    .heroimg img {

        right: 13px;
    }
}



@media screen and (min-width: 768px) and (min-height:1024px) {
    .sm_feature {

    width: 100%;
}

    .about_img_rgt img {
        width: 100%;
    }
    .big_three_fest_img img {
        width: 100%;
    }
    .section_big_img img {
        height: 100%;
    }

    .section_big_img {
        width: 100%;
        height: 250px;
        overflow: hidden;
    }


    .blur.bleu._03 {

    width: 100%;

    margin-left: 0;

}



/* .heroimg img {

    width: 100%;

    max-height: 100%;

    top: 128px;

    right: 61px;

} */



h1.hero_tittle {

    margin-top: 22px;

    font-size: 26px;

}

.header_sec .navbar-nav {

    background: #fff;

    border-radius: 30px;

    padding-bottom: 13px;

    margin-top: 12px;

    position: relative;

    z-index: 9999!important;

}

.about_sec ._extra.card_style {

    margin-bottom: 20px;

}

.video_div {

    height: 200px;

}

.teammm_:after {

    left: 4px;

}

.footer_content {

    display: block;

}



.header_sec {

    position: relative;

}

/* .hero_section {

    height: 100%;

} */



.coin {

    width: 200px;

    height: 200px;

}

.subscriber__area {

    margin-top: -6px;

}

.susbscriber_form input {

    margin-bottom: 15px;

}

/* .hero_section {

    margin-top: -65px;

} */

.footer_content {

    padding-right: 0;

}

.footer_bottom {
    display: block;
}
.copyright {
    margin-bottom: 12px;
}
._button {
    width: 316px;
}
._button .fix_width {
    width: 150px;
}

.team_sider_main {
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 0 auto;
}

}



@media screen and (max-width: 508px) {
     .sm_feature {

    width: 100%;
}

    .about_img_rgt img {
        width: 100%;
    }
    .big_three_fest_img img {
        width: 100%;
    }
    .section_big_img img {
        height: 100%;
    }

    .section_big_img {
        width: 100%;
        height: 250px;
        overflow: hidden;
    }


     .blur.bleu._03 {

    width: 100%;

    margin-left: 0;

}



.heroimg img {

    width: 100%;

    max-height: 100%;

    top: 128px;

    right: 61px;

}



h1.hero_tittle {

    margin-top: 22px;

    font-size: 26px;

}



.header_sec .navbar-nav {

    background: #fff;

    border-radius: 30px;

    padding-bottom: 13px;

    margin-top: 12px;

    position: relative;

    z-index: 9999!important;

}



.about_sec ._extra.card_style {

    margin-bottom: 20px;

}

.video_div {

    height: 200px;

}

.teammm_:after {

    left: 4px;

}

.footer_content {

    display: block;

}

.header_sec {

    position: relative;

}

.hero_section {

    height: 100%;

}

.coin {

    width: 200px;

    height: 200px;

}

.subscriber__area {

    margin-top: -6px;

}

.susbscriber_form input {

    margin-bottom: 15px;

}

.hero_section {

    margin-top: -65px;

}

.footer_content {

    padding-right: 0;

}

.footer_bottom {
    display: block;
}
.copyright {
    margin-bottom: 12px;
}
._button {
    width: 316px;
}
._button .fix_width {
    width: 150px;
}
.team_sider_main {
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 0 auto;
}

}



/* responsive media query ends */

