/*
  Theme Name: UCBI Banking
  Support: 
  Description:   
  Version: 1.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: 16px;
    --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.3s ease-out 0s;
    --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: var(--body-color);
    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;
}
.logo_image img {
    height: 100%;
    width: 100%;
}
.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: var(--primary);
    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-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: 375px;
    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: 20px!important;
    color: #fff;
    font-size: 14px;
    line-height: inherit;
    cursor: pointer;
    padding: 9px 15px;
    margin-top: 20px;
}
._button .custom-btn-1:hover{
    background-color: var(--primary);
    transition: var(--transision);
}
._button .custom-btn-2:hover{
    background-color: var(--menu-color);
    transition: var(--transision);
}
._button .custom-btn-2{
    background-color: var(--primary);
    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;
}
.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;
}
.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;
}
.about_sec ._extra.card_style {
    padding-top: 60px;
    padding-bottom: 70px;
    box-shadow: 0 0 10px 1px rgb(80 77 77 / 8%);
}
.about_sec .card_item {
    z-index: 5;
    background-color: #ffffff38;
    border-radius: 48px;
    width: 100%;
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
    padding: 5px 10px 5px 5px;
    position: relative;
    box-shadow: 0 0 10px 1px rgb(0 0 0 / 8%);
}
.about_sec .gif_img {
    margin-top: 35px;
    padding-bottom: 65px;
    padding-top: 65px;
}
.about_sec .card_list_main {
    margin-top: 35px;
    margin-left: 10px;
}
.about_sec .small_heading_bold {
    margin-bottom: 8px;
}
.about_sec .small_heading_bold.space_up {
    margin-top: 14px;
}
.about_sec .iteam{
    align-items: center;
    display: flex;
}
.small_cards ul li .text {
    color: #3e3c4f;
}
.about_sec .icon_img {
    width: 42px;
    margin-right: 14px;
    background: #d3ebf0;
    border-radius: 50%;
    height: 42px;
    padding: 9px;
}
.about_sec img {
    max-width: 100%;
    vertical-align: middle;
    display: inline-block;
}
/* =================================
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: 150px 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: 280px;
    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: 50px;
    width: 100%;
    max-width: 100%;
    padding: 30px 40px;
    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: space-between;
    padding-right: 70px;
}
.footer_sec .social {
    padding-top: 40px;
}
.footer_sec .social_logoes {
    padding-top: 10px;
    transition: opacity .525s;
    /* display: flex; */
}
.footer_sec li {
    align-items: center;
    height: 48px;
    display: flex;
}
.footer_sec .footer_icone {
    width: 40px;
    padding-right: 8px;
}
.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: 130px;
}
.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: 20px;
    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: 720px;
    height: 720px;
    background-image: url('../images/coin.png'); /* Your coin image */
    background-size: cover;
    background-position: center;
    transform: rotateX(80deg); /* Starts flat */
    transition: transform 0.4s ease-in-out;
    margin:0 auto;
}

.subscriber_section{
    padding-bottom: 100px;
}
.subscriber__area {
    text-align: center;
    margin-top: -196px;
    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;
}

/* responsive media query start */

@media (min-width: 1400px) {
    .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;
    }
}

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

    .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;
}

}

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

     .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;
} 

}

/* responsive media query ends */


/* 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+++++
  =============================*/