/*
  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;
}

/*inter font*/

@font-face {
    font-family: "Inter";
    src: url("../fonts/inter/Inter_18pt-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "Inter";
    src: url("../fonts/inter/Inter_18pt-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: "Inter";
    src: url("../fonts/inter/Inter_18pt-SemiBold.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: "Inter";
    src: url("../fonts/inter/Inter_18pt-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: "Inter";
    src: url("../fonts/inter/Inter_18pt-Black.ttf") format("truetype");
    font-weight: 800;
    font-style: normal;
}

/*overpass font*/

@font-face {
    font-family: "Overpass";
    src: url("../fonts/overpass/Overpass-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "Overpass";
    src: url("../fonts/overpass/Overpass-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: "Overpass";
    src: url("../fonts/overpass/Overpass-SemiBold.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: "Overpass";
    src: url("../fonts/overpass/Overpass-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: "Overpass";
    src: url("../fonts/overpass/Overpass-Black.ttf") format("truetype");
    font-weight: 800;
    font-style: normal;
}



/*=============================
2. Variable CSS start
===============================*/
:root {
    --heading-font-family: "Outfit", serif;
    --body-font-family: "Inter", serif;
    --primary: #00BCD4;
    --black: #000000;
    --white: #ffffff;
    --body-color:#F3F4FF;
    --menu-color:#111827;
    --font-color: #112d50;
    --sub-tittle:#132E52;
    --paragraph-color: #546B8B;
    --body-font-size: 16px;
    --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; 
}
body{
    font-family: var(--body-font-family);
    background: var(--body-color);
    scroll-behavior: smooth;
}

/* .container{
    width: 1180px;
} */
h1,h2,h3,h4,h5,h6{
    color: var(--font-color);
    font-family: var(--heading-font-family);
    margin: 0;
    padding: 0;
}
ul{
    margin: 0;
    padding: 0;
}
/* li{
   list-style: none;
} */

img{
    padding: 0px;
    margin: 0px;
    /* height: 100%;
    width: 100%; */
}
a{
    font-family: var(--body-font-family);
    text-decoration: none;
    color: var(--black);
    transition: var(--transision);
}
p{
    font-family: var(--body-font-family);
    font-size: var(--body-font-size);
    color: var(--paragraph-color);
    line-height: 155%;
    margin: 0;
    padding: 0;
}
.mt-1{
    margin-top: 10px!important;
}
.mt-2{
    margin-top:20px!important;
}
.mt-3{
    margin-top:30px!important;
}
.mt-4{
    margin-top:40px!important;
}
.mb-1{
    margin-bottom:10px!important;
}
.mb-2{
    margin-bottom:20px!important;
}
.mb-3{
    margin-bottom:30px!important;
}
.mb-4{
    margin-bottom:40px!important;
}
.ml-5{
    margin-left:50px!important;
}
.mr-2{
    margin-right: 20px!important;
}
.menu_active{
    color: var(--primary)!important;
    transition: var(--transision);
}
.clear{
    overflow: hidden;
}
.sec_bg{
    background: var(--section-background);
}
.text_primary{
    color: var(--primary)!important;
}
.text_dark{
    color: var(--font-color);
}
.text_upercase{
    text-transform: uppercase;
}
.tag_btn{
    color: var(--font-color);
    padding: 8px 18px;
    background: var(--white);
    font-size: 14px;
    font-weight: 600;
    border: 1px solid var(--border-colour);
    border-radius: 34px;
}

.ptb_80{
    padding: 80px 0px;
}
/* =================================
04. common buttons css
=====================================*/
.hero_section ._button{
    display: flex;
}
._button .common_btn {
    background-color: var(--primary);
    border-radius: 18px;
    display: inline-block;
    color: var(--white);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 16px;
    transition: var(--transision);
    height: 64px;
    width: 198px;
    line-height: 65px;
    text-align: center;
}
 


._button .common_btn img{
    margin-right: 8px;
}
.marker{
    position: relative;
}
._button .common_btn:hover{
    background: var(--sub-tittle);
    transition: var(--transision);
}
.marker::after {
    content: "";
    position: absolute;
    background-image: url("../images/marker.svg");
    background-repeat: no-repeat;
    width: 36px;
    height: 89px;
    left: -1px;
    top: 22px;
}
/* =================================
05. header_top_sec css
=====================================*/
.header_sec{
    background: transparent; 
    position: absolute;
    top: 28px;
    left: 0;
    width: 100%;
    z-index: 99; 
}
.header_sec .navbar-nav{
    list-style-type: disc;
    color: var(--primary);
}
.header_sec .navbar-nav li.nav-item:first-child{
    list-style-type: none;
}
.header_sec .menu_area {
    background: var(--white);
    border-radius: 18px;
    box-shadow: 0px 5px 14px 0px rgba(0, 0, 0, 0.08);
    min-height: 84px;
}
.header_sec  .menu_content {
    padding-left: 20px;
}
.logo_image {
    margin-left: 16px;
    width: 57px;
    height: 57px;
}
.logo_image a{
    display: flex;
}
.logo_image a span {
    font-size: 26px;
    margin-left: 10px;
    color: var(--font-color);
    font-weight: 600;
    margin-top: 8px;
}
.header_sec li.nav-item {
    margin-right: 20px;
}
.header_sec li.nav-item .nav-link{
    color: var(--menu-color);
    font-size: 16px;
    line-height: 24px;
    display: block;
    font-weight: 500;
    padding: 8px 20px;
    transition: var(--transision);
    text-transform: uppercase;
}
.header_sec li.nav-item .nav-link:hover{
    color: var(--primary);
    transition: var(--transision);
}
.button .theme_btn{
    text-align: center;
    margin-right: 16px;
    border-radius: 18px;
    background: var(--primary);
    padding: 18px 28px;
    color: var(--white);
    overflow: hidden;
    font-weight: 500;
    font-size: 16px;
    transition: var(--transision); 
    box-shadow: -6px 24px 37.9px rgba(0, 188, 212, 0.14);
}
.header_sec .button .theme_btn{
    padding: 16px 28px;
    font-size: 18px;
}
.header_sec .button{
    position: relative;
}
.button .theme_btn:hover{
    background: var(--sub-tittle);
    transition: var(--transision);
}
.button .theme_btn .arrow_icon{
    position: absolute;
    height: 18px;
    width: 18px;
    right: 38px;
    top: -1px;
}
/* =================================
06. hero_section css
=====================================*/
.hero_section{
    padding-top: 200px;
}
.hero_section{
    width: 100%;
    position: relative;
}
 
.hero_section .hero_tittle {
    font-size: 62px;
    font-weight: 400;
    line-height: 121%;
    color: var(--font-color);
}
.hero_section .hero_content .sub_tittle{
    color: var(--sub-tittle);
    font-weight: 400;
    font-family: var(--body-font-family);
    font-size: 20px;
    line-height: 30px;
}
/* =================================
07. about_section css
=====================================*/ 
.about_section .tittle{
    font-size: 48px;
}
/* =================================
08. card_section css
=====================================*/ 
.card_section .card_main{
    text-align: center;
    background: var(--white);
    padding: 50px 30px;
    border-radius: 24px;
    transition: var(--transision);
}
.card_section .card_main .tittle{
    font-size: 22px;
    font-weight: 500;
    line-height: 140%;
    color: var(--sub-tittle);
    transition: var(--transision);
}
.card_section .card_main:hover .tittle{
   color: var(--primary);
   transition: var(--transision);
}
.card_section .card_main .icon_image img{
    transition: var(--transision);
}
.card_section .card_main:hover img{
    transform: scale(1.2);
    transition: var(--transision);
}

/* =================================
09. image_section css
=====================================*/ 
.image_section .row>* {
    padding-right: 0px;
    padding-left: 0px;
}
/* =================================
10. roadmap_section css
=====================================*/
.roadmap_section {
    padding-top: 15px;
}
.roadmap_section .roadmap_main {
    background-image: url("../images/Steps.png");
    /* background-size: cover; */
    background-repeat: no-repeat;
    background-position: center center;
    padding-top: 40px;
}
.roadmap_section .card {
    padding: 40px;
    border: none;
    border-radius: 27px;
    background: rgba(255, 255, 255, 0.61) !important;
    border: 2px solid #fff;
    backdrop-filter: blur(8.4652px);
    -webkit-backdrop-filter: blur(8.4652px);
    -moz-backdrop-filter: blur(8.4652px);
    -o-backdrop-filter: blur(8.4652px);
}
 

.one,
.two,
.three{
    position: relative;
}
.one::before {
    content: "";
    position: absolute;
    background-image: url("../images/one.svg");
    width: 36px;
    height: 89px;
    left: -55px;
    top: 95px;
}
.two::before {
    content: "";
    position: absolute;
    background-image: url("../images/two.svg");
    width: 62px;
    height: 89px;
    left: -78px;
    top: 12px;
}
.three::before {
    content: "";
    position: absolute;
    background-image: url("../images/three.svg");
    width: 64px;
    height: 90px;
    left: -72px;
    top: 115px;
}
.roadmap_section .content p{
    font-size: 14px;
}
.roadmap_section .content span{
    font-size: 15px;
}
.roadmap_section .card .tittle {
    font-size: 16px;
    font-weight: 700;
} 
/* =================================
11. modal css
=====================================*/ 
.new_mod.modal {
    border-radius: 16px;
}
.new_mod .modal-body {
    padding: 0px;
}
.team_member_main {
    background: #ffffff;
    border-radius: 16px;
}
.new_mod .image_area {
    position: relative;
    /* height: 385px; */
    border-radius: 7px 7px 0px 0px;
    background: url("../images/bg.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding-bottom: 10px;
    padding: 35px;
}
.custom_btn button {
    position: absolute;
    right: 20px;
    top: 20px;
    height: 35px;
    width: 35px;
    border-radius: 20px!important;
    background: rgb(255 255 255 / 86%);
    border: none;
}
.new_mod .image_area .image {
    height: 200px;
    width: 200px;
    margin: 0 auto;
    border: 10px solid #ffffff;
    border-radius: 50%;
    overflow: hidden;
}
.new_mod .image_area .image img {
    height: 100%;
    width: 100%;
}
.team_info_main {
    text-align: center;
    padding: 10px 20px;
    margin-top: 10px;
}
.member_info .title {
    font-size: 26px;
    font-weight: 700;
    line-height: 18px;
    color: #112D50;
    margin-bottom: 10px;
    text-transform: capitalize;
}
.member_info .sub_title {
    text-transform: capitalize;
}
.member_info .sub_title, .team_info_main .description {
    font-size: 14px;
    font-weight: 500;
    line-height: 18px;
    color: #282627;
}
.new_mod .social {
    margin-top: 10px;
}
.new_mod .social i {
    height: 30px;
    width: 30px;
    line-height: 30px;
    color: #247cb5;
    /* border: 2px solid #112D50; */
    border-radius: 50%;
    transition: 0.4s ease-in-out;
    margin: 7px 2px;
    background: #ececec;
    font-size: 16px;
}
.team_info_main .description {
    margin-top: 1px;
    font-weight: 400;
    text-align: justify;
    font-size: 16px;
    line-height: 25px;
    padding-bottom: 12px;
}
/* =================================
12. team_section css
=====================================*/ 
.team_section {
    background: rgba(0, 45, 90, 0.03);
    padding: 90px 0;    
    margin-top: -128px;
}

.team_section ._social a {
    padding: 18px 20px;
    color: white;
    background: #242537;
    border-radius: 50%;
    font-size: 16px;
}
.team_section ._social a i{
    height: 18px;
    width: 18px;
    line-height: 0px;

}
.team_main {
    transition: var(--transision);
    cursor: pointer;
}
.team_main:hover{
    transform: translateY(-10px);
    transition: var(--transision);
}
.team_section .team_doc .tittle{
    font-size: 20px;
}
.team_section .sub_tittle .tittle{
    font-size: 16px;
    font-weight: 400;
    line-height: 32px;
}
.tittle{
    font-size: 42px;
}
/* =================================
13. faq_section css
=====================================*/ 
.faq_section .image_left, .faq_section .image_right{
    position: absolute;
    width: 64px;
    left: 500px;
}
.faq_section .image_right {
    left: 681px;
    top: 0px;
}
.faq_section  .tag_main {
    position: relative;
}
/* 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_section .accordion-button {
    padding: 26px 24px;
    font-size: 18px;
    font-weight: 700;
    color: var(--black);
    border-radius: 24px;
    border: none;
}
.faq_section .acc_head {
    position: relative;
}
.faq_section .acc_head .accordion-button::after {
    content: "";
    background-image: url("../images/plus.svg");
    background-repeat: no-repeat;
    background-position: center;
    width: 50px;
    height: 50px;
    border-radius: 5px;
    transform: unset;
    position: absolute;
    right: 5px;
}
.faq_section .acc_head button.accordion-button.collapsed,
.faq_section .acc_head button.accordion-button{
    position: relative;
    font-size: 18px;
    font-weight: 700;
    color: var(--sub-tittle);
}
.faq_section .acc_head .accordion-button:not(.collapsed)::after {
    background-image: url("../images/minus.svg");
}
.faq_section .accordion-item:first-of-type,
.faq_section .accordion-item:not(:first-of-type) {
    border-radius: 24px;
    border: none;
    padding: 10px 20px;
}
.faq_section .accordion-item:first-of-type>.accordion-header .accordion-button,
.faq_section  .accordion-item:last-of-type>.accordion-header .accordion-button.collapsed {
    border-radius: 24px;
    border: none!important;
}
.faq_section .accordion-button:not(.collapsed) {
    box-shadow: none;
}
.faq_section .accordion-body p {
    border-top: 1px solid var(--border-colour);
    padding-top: 28px;
    padding-bottom: 8px;
}
/* =================================
14. footer_section css
=====================================*/ 
.footer_section {
    padding-top: 80px;
    padding-bottom: 40px;
}
.footer_section .footer_main{
    border-bottom: 2px dashed var(--border-colour);
    padding-bottom: 60px;
}
/* .footer_section .top_btn a {
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    padding: 10px 2px;
} */
.footer_section .top_btn a{
    display: block;
    text-align: center;
    width: 48px;
    height: 48px;
    line-height: 48px;
    background: var(--primary);
    border-radius: 50%;
    color: var(--white);
    padding: 0px;
    transition: var(--transision);
}
.footer_section .top_btn i {
    text-align: center;
    /* height: 71px; */
    /* width: 38px;
    line-height: 38px; */
    font-size: 18px;
}
.footer_section .menu_list li{
    list-style: none;
}
.footer_section .logo_image {
    margin-left: 0px;
}
.footer_section .copy_right {
    font-size: 14px;
}
.footer_section .menu_list .title {
    font-size: 16px;
    font-weight: 600;
    color: var(--sub-tittle);
    margin-bottom: 10px;
}
.footer_section .menu_list ul li,.footer_section .menu_list ul li a {
    font-size: 14px;
    font-weight: 400;
    color: var(--sub-tittle);
    padding: 10px 0px;
    transition: var(--transision);
    font-family: var(--heading-font-family);
}
.footer_section .menu_list ul li:hover,
.footer_section .menu_list ul li a:hover{
    color: var(--primary);
    transition: var(--transision);
}
.footer_contact{
    justify-content: space-between;
}
.footer_section input#email {
    min-height: 48px;
    padding-left: 40px;
    font-size: 12px;
}
.footer_section input::placeholder {
    color: #DBDBDB; 
    opacity: 0.9;
}
._envelop{
    position: relative;
}
._envelop::before {
    position: absolute;
    content: "";
    background: url("../images/sms.svg");
    background-repeat: no-repeat;
    left: 16px;
    height: 20px;
    width: 20px;
    top: 16px;
}
.footer_section .form-control {
    background-color: var(--sub-tittle);
    color: var(--white);
    border-radius: 50px;
}
.footer_section .form-control:focus{
    background-color: var(--font-color);
    color: var(--white);
    box-shadow: none;
}
.footer_section .email button {
    position: absolute;
    top: 6px;
    right: 10px;
    color: var(--white);
    background: var(--primary);
    padding: 5px 15px;
    border-radius: 50px;
    border: none;
}
.footer_section .tittle {
    font-size: 18px;
    font-weight: 600;
    font-family: "Overpass", serif;
}
.footer_section .social a {
    margin-right: 5px; 
    text-align: center;
    width: 38px;
    height: 38px;
    line-height: 35px;
    border: 1px solid rgba(19, 46, 82, 0.12);
    background: var(--white);
    border-radius: 50%;
    color: var(--sub-tittle);
    padding: 0px;
    transition: var(--transision);
    display: inline-block;
}

.footer_section .social a:hover{
    background: var(--primary);
    transition: var(--transision);
}
.footer_section .social span{
    margin-top: 2px;
    margin-right: 10px;
    font-family: "Overpass", serif;
    color: var(--sub-tittle);
    font-size: 18px;
    font-weight: 600;
}

/*
::::::::::::::::::::::::::
 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+++++
  =============================*/



/*bootstrap custom css */
.container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: 1200px;
}

/*boostrap custom css end*/

.social.text-right {
    text-align: right !important;
}

/*responsive css*/
@media screen and (min-width: 768px) and (min-height:1024px) {
    .hero_section .image img{
        width: 100%; 
        display: none;
    }

    .video video {
        height: 570px;
    }
    .social.text-right {
        text-align: left !important;
    }
}


@media screen and (max-width: 508px) {
    .hero_section .hero_tittle {
        font-size: 40px; 
    }
    .hero_section .hero_content .sub_tittle { 
        font-size: 16px; 
    }
    .hero_content {
        margin-bottom: 30px;
    }
    .hero_section .image img{
        width: 100%; 
        display: none;
    }
    ._image img{
        width: 100%;
    }
    ._button .common_btn {    
        font-size: 12px; 
        height: 50px;
        width: 150px;
        line-height: 53px; 
    }
    .marker::after { 
        left: -1px;
        top: 14px;
    }
    .header_sec .menu_area { 
        padding: 15px 10px;
    }
    .header_sec .button .theme_btn {
        padding: 6px 15px;
        font-size: 16px;
    }

    .tittle {
        font-size: 30px;
    }
    .about_section .tittle {
        font-size: 30px;
    }

    .video video {
        height: 220px;
    }

    .social.text-right {
        text-align: left !important;
    }
    .header_sec li.nav-item { 
        list-style: none;
    }
    .team_section { 
        margin-top: -14px;
    }
  }