/*
 Theme Name: Habu
 Theme URI: https://psdtowpwork.com/wp/habu/demo
 Author: nsstheme
 Author URI: https://themeforest.net/user/nsstheme
 Description: Habu - Creative Agency WordPress Theme.
 Version: 1.1.1
 License:
 License URI:
 */

/*==================================
 [Table of contents]
 ===================================
 1. All Preset Css
 2. Home 01
 3. Home 02
 4. About Page
 5. Pricing Page
 6. Portfolio Page
 7. Single Blog Page
 8. Faq Page
 9. Contact Page
 10. Career Page
 11. 404 Page
 12. Language switcher
 13. Team Page
*/

/*------------------------------------------------------
/ 1. All Preset Css
/------------------------------------------------------*/
html, body{
    margin: 0;
    padding: 0;
}
body{
    font-family: 'Rubik', sans-serif;
    font-size: 16px;
    line-height: 30px;
    color: #647589;
    letter-spacing: 0;
    font-weight: 400;
    word-break: break-word;
}
h1, h2, h3, h4, h5, h6{
    font-family: 'Poppins', sans-serif;
    color: #223645;
    font-weight: 700;
    letter-spacing: 0;
    margin: 0 0 15px;
    line-height: 1.5;
}
a{
    color: #223645;
    text-decoration: none;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
a:hover{
    color: #1e2a78;
    text-decoration: none;
}
a:focus{
    outline: 0;
    text-shadow: none;
    box-shadow: none;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type=number] {
  -moz-appearance: textfield;
}

/*---- Habu Btn ----*/
.habu-btn{
    display: inline-block;
    height: 60px;
    font-size: 14px;
    line-height: .8;
    color: #fff;
    position: relative;
    z-index: 1;
    text-align: center;
    text-transform: uppercase;
    font-weight: 700;
    border-radius: 5px;
    letter-spacing: 1.4px;
    padding: 25px 53px;
    background: #1e2a78;
    z-index: 1;
    cursor: pointer;
    outline: none;
    overflow: hidden;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
    -webkit-transition-duration: .4s;
    transition-duration: .4s;
    -webkit-transition-property: all;
    transition-property: all;
}
.habu-btn span{
    display: block;
    position: relative;
    z-index: 2;
}
.habu-btn:after{
    position: absolute;
    z-index: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    border-radius: 5px;
    height: 0;
    content: '';
    background: linear-gradient(to bottom, #01beff, #00acff, #0097ff, #007fff, #5461ff);
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
    -webkit-transition-duration: .4s;
    transition-duration: .4s;
    -webkit-transition-property: all;
    transition-property: all;
}
.habu-btn:hover {
    color: #fff;
}
.habu-btn:hover span{
    -webkit-animation-name: nss_btn_effect;
    animation-name: nss_btn_effect;
    -webkit-animation-duration: .4s;
    animation-duration: .4s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}
.habu-btn:hover::after{
    height: 100%;
}
.habu-btn i{
    -webkit-transition-duration: .4s;
    transition-duration: .4s;
}
@-webkit-keyframes nss_btn_effect {
    49% {
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0)
    }
    50% {
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
        opacity: 0
    }
    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        opacity: 1
    }
}

/*---- Section Title ----*/
.sec_titles{
    font-size: 35px;
    line-height: 47px;
    letter-spacing: 1.4px;
    margin-bottom: 12px;
}
.sec_desc{
    font-size: 18px;
    line-height: 31px;
    margin: 0 0 55px;
}
body .elementor-widget:not(:last-child) {
    margin-bottom: 0;
}
/*---- Animation ----*/
@keyframes blinker {
    0% {
        transform: scale(1, 1);
    }
    50% {
        transform: scale(1.1, 1.1);
    }
    100% {
        transform: scale(1, 1);
    }
}
@keyframes halfBounce {
    0%,
    100% {
        transform: scale(.5)
    }
    50% {
        transform: scale(1)
    }
}
@keyframes halfBounce2 {
    0%,
    100% {
        transform: scale(.9)
    }
    50% {
        transform: scale(1)
    }
}
@-webkit-keyframes rotated {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}



/*------------------------------------------------------
/ 2. Home 01
/------------------------------------------------------*/
/*---- Header Topbar ---*/
.topbar{
    position: relative;
    background: #f6f6f6;
    padding: 11px 0 9px;
}
.topbar p{
    font-size: 13px;
    line-height: .8;
    color: #647589;
    font-weight: 500;
    display: inline-block;
    margin: 0 30px 0 0;
}
.topbar p:last-child{
    margin-right: 0;
}
.topbar p i{
    font-size: 16px;
    line-height: .8;
    color: #1e2a78;
    margin-right: 10px;
    position: relative;
    top: 2px;
}
.topbar p i.nss-phone{
    transform: rotateY(180deg);
    display: inline-block;
}
.top-social{
    margin: 0;
    padding: 0;
    text-align: right;
}
.top-social li{
    list-style: none;
    line-height: .8;
    display: inline-block;
    margin: 0 0 0 15px;
}
.top-social li a{
    display: inline-block;
    line-height: .8;
    color: #1e2a78;
    font-size: 16px;
}
.top-social li a:hover{
    color: #647589;
}

/*---- Header 01 ---*/
.header-01{
    position: relative;
    background: #fff;
}
.navbar.navbar-expand-lg .habu-btn{
    margin-left: 60px;
}
.navbar.navbar-expand-lg{
    position: relative;
    margin: 0 0;
    padding: 28px 0;
    transition: all 0.3s ease-out;
}
.navbar-brand{
    position: relative;
    padding: 0 0;
    margin: 0;
    text-align: center;
}
.navbar-brand img{
    max-width: 100%;
    height: auto;
}
.navbar-brand span{
    display: block;
    font-size: 30px;
    line-height: 30px;
    color: #1e2a78;
    font-weight: 600;
    letter-spacing: 1px;
}
.header-02 .navbar-brand span{
    color: #fff;
}
.navbar .navbar-collapse{
    justify-content: flex-end;
}
.navbar-expand-lg .navbar-nav{
    position: relative;
    margin: 0;
    padding: 0;
}
.navbar-expand-lg .navbar-nav li{
    position: relative;
    list-style: none;
    display: inline-block;
    margin: 0 0 0 42px;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.navbar-expand-lg .navbar-nav li:first-child{
    margin-left: 0;
}
.navbar-expand-lg .navbar-nav li > a{
    display: block;
    font-size: 14px;
    line-height: 18px;
    color: #647589;
    text-transform: uppercase;
    font-weight: 500;
    padding: 18px 0 20px;
    position: relative;
}
.navbar-expand-lg .navbar-nav li:hover > a{
    color: #223645;
}
.navbar-expand-lg .navbar-nav li .sub-menu {
    background: #fff;
    width: 200px;
    z-index: 9;
    text-align: left;
    padding: 0;
    display: block;
    left: -25px;
    margin: auto;
    position: absolute;
    padding: 0 0;
    visibility: hidden;
    opacity: 0;
    top: 100%;
    z-index: 9;
    -webkit-box-shadow: 0px 5px 20px 0px rgba(150, 176, 203, 0.15);
    -moz-box-shadow: 0px 5px 20px 0px rgba(150, 176, 203, 0.15);
    box-shadow: 0px 5px 20px 0px rgba(150, 176, 203, 0.15);
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    border: none;
    border-radius: 0;
    color: inherit;
    font-size: inherit;
    transform: scaleY(0);
    -webkit-transform: scaleY(0);
    -o-transform: scaleY(0);
}
.navbar-expand-lg .navbar-nav li .sub-menu li{
    display: block;
    padding: 0;
    margin: 0;
    border-bottom: 1px solid #F6F6F6;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.navbar-expand-lg .navbar-nav li .sub-menu li a{
    padding: 9px 25px;
    margin: 0;
    color: #647589;
    line-height: 26px;
    text-transform: capitalize;
    font-weight: 400;
    font-size: 14px;
    width: 100%;
    display: block;
    position: relative;
}
.navbar-expand-lg .navbar-nav li .sub-menu li:hover > a{
    color: #1e2a78;
}
.navbar-expand-lg .navbar-nav li:hover .sub-menu{
    visibility: visible;
    opacity: 1;
    transform: scaleY(1);
    -webkit-transform: scaleY(1);
    -o-transform: scaleY(1);
}
.navbar-expand-lg .navbar-nav li .sub-menu li a:before{
    display: none;
}
.navbar-expand-lg .navbar-nav li .sub-menu li .sub-menu{
    position: absolute;
    left: 110%;
    right: auto;
    top: 0;
    visibility: hidden;
    opacity: 0;
}
.navbar-expand-lg .navbar-nav li .sub-menu li:hover .sub-menu{
    visibility: visible;
    opacity: 1;
    left: calc(100% + 2px);
}
.submenu-toggler{
    display: none;
}
/*---- Header 02 ---*/
.header-02{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    background: transparent;
    z-index: 9;
}
.logged-in .header-02{
    top: 30px;
}
.header-02 .habu-btn{
    background: #fff;
    color: #1e2a78;
}
.header-02 .habu-btn:hover{
    color: #fff;
}
.header-02 .navbar-expand-lg .navbar-nav li > a{
    color: #fff;
}
.header-02 .navbar-expand-lg .navbar-nav li:hover > a{
    color: #647589;
}
.header-02 .navbar-expand-lg .navbar-nav li .sub-menu li a{
    color: #647589;
}
.header-02 .navbar-expand-lg .navbar-nav li .sub-menu li:hover > a{
    color: #1e2a78;
}
.fix-header {
    background: #fff;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    z-index: 999;
    transition: all 0.1s ease-out;
    box-shadow: 0 2px 5px rgba(30, 42, 130, 0.05);
    -webkit-box-shadow: 0 2px 5px rgba(30, 42, 130, 0.05);
    -moz-box-shadow: 0 2px 5px rgba(30, 42, 130, 0.05);
}
.logged-in .fix-header{
    top: 30px;
}
.fix-header .navbar.navbar-expand-lg{
    padding: 15px 0;
    transition: all 0.3s ease-out;
}
.header-02.fix-header{
    background: #1e2a78;
}

/*---- Banner ---*/
.banner-01{
    position: relative;
    background: #f6f6f6;
    padding: 180px 0;
    overflow: hidden;
}
.banner-01 .container{
    position: relative;
    z-index: 2;
}
.b-overlay:after{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: '';
    background: rgba(1, 9, 62, .8);
}
.banner-content{
    position: relative;
    z-index: 2;
    padding-right: 50px;
}
.banner-content h3{
    font-size: 48px;
    line-height: 64px;
    color: #1e2a78;
    margin: 0 0 30px;
}
.banner-content p{
    font-size: 22px;
    line-height: 34px;
    color: #647589;
    margin: 0 0 45px;
}
.layer-thumb{
    z-index: 2;
    position: relative;
}
.layer-thumb.v-layer{
    position: absolute;
}
.layer-thumb:after{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: '';
    background: transparent;
}
.v-layer .popup-video{
    position: absolute;
    display: block;
    right: 0;
    bottom: 0;
    left: 0;
    top: 0;
    margin: auto;
    z-index: 3;
    width: 68px;
    text-align: center;
    height: 68px;
}
.v-layer .popup-video i{
    z-index: 5;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #1e2a78;
    color: #fff;
    text-align: center;
    padding: 0 20px;
    font-size: 34px;
    line-height: 68px;
    display: block;
}
.v-layer .popup-video:after {
    width: 150px;
    height: 150px;
    left: -41px;
    top: -41px;
    background: rgba(255, 255, 255, .80);
    position: absolute;
    content: '';
    z-index: -1;
    border-radius: 50%;
    animation-fill-mode: both;
    animation: blinker 1.5s ease-in-out infinite;
    -webkit-animation: blinker 1.5s ease-in-out infinite;
    -moz-animation: blinker 1.5s ease-in-out infinite;
}
.v-layer .popup-video:before {
    width: 220px;
    height: 220px;
    left: -76px;
    top: -76px;
    background: rgba(255, 255, 255, .75);
    position: absolute;
    content: '';
    z-index: -1;
    border-radius: 50%;
    animation-fill-mode: both;
    animation: blinker 3s ease-in-out infinite;
    -webkit-animation: blinker 3s ease-in-out infinite;
    -moz-animation: blinker 3s ease-in-out infinite;
}
.elementor .layer-thumb img{
    max-width: none;
}
.layer-thumb{
    animation-delay: 3s;
    animation-name: zoomIn;
}
.banner-content h3 {
    animation-delay: 2.2s;
    animation-name: fadeInDown;
}
.banner-content p {
    animation-delay: 1.7s;
    animation-name: fadeInDown;
}
.banner-content .habu-btn {
    animation-delay: 1.3s;
    animation-name: fadeInDown;
}
.water-text{
    writing-mode: tb-rl;
    position: absolute;
    left: 5%;
    margin: auto;
    text-align: center;
    top: 50%;
    transform: translateY(-50%) rotate(180deg);
    font-size: 190px;
    line-height: 68px;
    color: rgba(30, 42, 120, .2);
    font-weight: 800;
    height: 100%;
    display: block;
    font-family: 'Poppins', sans-serif;
    inline-size: fit-content;
}
.water-text{
    animation-delay: 3s;
    animation-name: fadeIn;
}
.shape_1{
    position: absolute;
    right: 0;
    bottom: 85px;
    z-index: 1;
    webkit-animation: movebounce 2s linear infinite;
    animation: movebounce 2s linear infinite;
}
@keyframes movebounce {
    0% {
        transform: translateY(0px); }
    50% {
        transform: translateY(15px); }
    100% {
        transform: translateY(0px); }
}
.shape_2{
    position: absolute;
    right: -180px;
    top: -40px;
    z-index: 1;
    animation: halfBounce 4s infinite;
}
.shape_3{
    position: absolute;
    left: 0;
    top: -20px;
    z-index: 1;
    animation: rotated 15s infinite linear;
}
.tri-angle{
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    margin: 0 auto;
    text-align: center;
    display: inline-block;
    z-index: 1;
}
.scrollDown{
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    bottom: 30px;
    z-index: 2;
    display: inline-block;
    text-align: center;
    font-size: 48px;
    color: #1e2a78;
    line-height: 48px;
    width: 50px;
}

/*--- Icon Box ---*/
.icon-box-1{
    position: relative;
    padding-left: 128px;
    margin-bottom: 30px;
}
.box-number{
    position: absolute;
    left: -3px;
    top: 23px;
    font-family: 'Poppins', sans-serif;
    font-size: 100px;
    line-height: 30px;
    color: rgba(100, 117, 137, .1);
    font-weight: 800;
}
.icon-box-1 i{
    font-size: 50px;
    line-height: 50px;
    display: block;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(to bottom, #01beff, #00acff, #0097ff, #007fff, #5461ff);
    margin: 0 0 20px;
}
.icon-box-1 h3{
    font-size: 28px;
    line-height: 30px;
    margin-bottom: 10px;
}
.icon-box-1 h3 a{
    color: inherit;
}
.icon-box-1 p{
    line-height: 28px;
    margin-bottom: 0;
}
.icon_in_right{
    padding-left: 0;
    padding-right: 50px;
}
.icon_in_right .box-number{
    font-size: 230px;
    left: auto;
    right: 20px;
    top: 65px;
}

/*---- Client Logo ---*/
.client_sliders.owl-carousel{
    position: relative;
}
.cs_item {
    position: relative;
    display: block;
    width: 100%;
    text-align: center;
    transition: all ease 300ms;
    -moz-transition: all ease 300ms;
    -webkit-transition: all ease 300ms;
    -ms-transition: all ease 300ms;
    -o-transition: all ease 300ms;
}
.client_sliders.owl-carousel .cs_item a{
    display: inline-block;
    text-align: center;
}
.client_sliders.owl-carousel img{
    max-width: 100%;
    height: auto;
    width: auto;
    display: inline-block;
}
.grayscale img {
    filter: grayscale(100%);
    -o-filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.grayscale:hover img {
    filter: grayscale(0);
    -o-filter: grayscale(0);
    -webkit-filter: grayscale(0);
}

/*--- Service Box ---*/
.service-item-1{
    position: relative;
    background: #fff;
    border-radius: 5px;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    -webkit-box-shadow: 0px 5px 20px 0px rgba(150, 176, 203, 0.15);
    -moz-box-shadow:    0px 5px 20px 0px rgba(150, 176, 203, 0.15);
    box-shadow:         0px 5px 20px 0px rgba(150, 176, 203, 0.15);
    padding: 39px 20px 42px 115px;
    margin-bottom: 30px;
}
.service-item-1 i{
    font-size: 55px;
    line-height: 55px;
    display: block;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(to bottom, #01beff, #00acff, #0097ff, #007fff, #5461ff);
    position: absolute;
    left: 35px;
    top: 40px;
}
.service-item-1 h3{
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 4px;
}
.service-item-1 h3 a{
    color: inherit;
}
.service-item-1 p{
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 0;
}
.ib_icon_in_right{
    padding: 39px 115px 42px 20px;
}
.ib_icon_in_right i{
    right: 35px;
    left: auto;
}
.ib_icon_on_top i{
    position: relative;
    left: 0;
    top: 0;
    margin: 0 0 15px;
}
.ib_icon_on_top{
    padding-right: 20px;
    padding-left: 30px;
}

/*--- Folio Box ---*/
.foliopage-section{
    position: relative;
    padding: 120px 0;
}
.shaf_filter{
    position: relative;
    margin: 0 0 54px;
    padding: 0;
}
.shaf_filter li{
    list-style: none;
    display: inline-block;
    cursor: pointer;
    font-size: 18px;
    line-height: 31px;
    color: #647589;
    font-weight: 400;
    margin-right: 30px;
    text-transform: capitalize;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.shaf_filter li:last-child{
    margin-right: 0;
}
.shaf_filter li:hover,
.shaf_filter li.active{
    color: #1e2a78;
}
.folio-item-1{
    position: relative;
    overflow: hidden;
}
.folio-item-1 img{
    max-width: 100%;
    height: auto;
}
.folio-item-1:after{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: '';
    background: #1e2a78;
    opacity: 0;
    -webkit-transform: scale(.7);
    -moz-transform: scale(.7);
    transform: scale(.7);
    -webkit-transition: -webkit-transform .4s cubic-bezier(.34,.66,.79,.58),opacity .3s cubic-bezier(.165,.84,.44,1);
    -moz-transition: -webkit-transform .4s cubic-bezier(.34,.66,.79,.58),opacity .3s cubic-bezier(.165,.84,.44,1);
    transition: transform .4s cubic-bezier(.34,.66,.79,.58),opacity .3s cubic-bezier(.165,.84,.44,1);
}
.folio-item-1:hover:after{
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    transform: scale(1);
}
.folio-item-1 a{
    display: inline-block;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    width: 100%;
    text-align: center;
    padding: 0 15px;
    z-index: 2;
    font-size: 18px;
    line-height: .8;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .72px;
    opacity: 0;
    -webkit-transform: scale(.8);
    -moz-transform: scale(.8);
    transform: scale(.8);
    -webkit-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    transition: all 0.6s ease;
}
.folio-item-1 a i{
    display: inline-block;
    font-size: 15px;
    padding-left: 4px;
}
.folio-item-1:hover a{
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    transform: scale(1);
}
.mb_30 .folio-item-1{
    margin-bottom: 30px;
}
.noPadding{
    padding: 0;
}
.noPadding .folio-item-1{
    margin: -1px;
}
.noPadding .folio-item-1 img{
    width: 100%;
}

/*--- Counter Box ---*/
.counter-item-1{
    position: relative;
    padding: 44px 0 36px 0;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.counter-item-1 i{
    font-size: 50px;
    line-height: 50px;
    display: block;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(to bottom, #01beff, #00acff, #0097ff, #007fff, #5461ff);
    margin: 0 0 12px;
}
.counter-item-1 h3{
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 3px;
}
.counter-item-1 p{
    font-size: 16px;
    line-height: 28px;
    color: #333333;
    margin-bottom: 0;
}

/*--- List Item ---*/
.listing{
    margin: 0;
    padding: 0;
}
.listing li{
    list-style: none;
    display: block;
    font-size: 16px;
    line-height: 31px;
    color: #647589;
    margin: 0 0 6px;
}
.listing li i{
    font-size: 24px;
    line-height: 31px;
    position: relative;
    top: 3px;
    margin: 0 5px 0 0;
    display: inline-block;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(to bottom, #01beff, #00acff, #0097ff, #007fff, #5461ff);
}

/*--- Blog Post ---*/
.blog-post{
    position: relative;
    background: #fff;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    -webkit-box-shadow: 0px 5px 20px 0px rgba(150, 176, 203, 0.05);
    -moz-box-shadow:    0px 5px 20px 0px rgba(150, 176, 203, 0.05);
    box-shadow:         0px 5px 20px 0px rgba(150, 176, 203, 0.05);
    margin: 0 0 30px;
}
.post_thumb{
    position: relative;
}
.post_thumb img{
    width: auto;
    height: auto;
    max-width: 100%;
}
.blog-post .post_thumb img{
    width: 100%;
}
.post_thumb .popup-video{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    text-align: center;
    display: inline-block;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    background: #fff;
    color: #1e2a78;
    font-size: 16px;
    line-height: 53px;
    z-index: 2;
    letter-spacing: -3px;
    animation: waveBtn2 2.5s infinite;
}
@keyframes waveBtn2 {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, .9)
    }
    50% {
        box-shadow: 0 0 0 40px transparent
    }
    100% {
        box-shadow: 0 0 0 0 transparent
    }
}
.postCarousel{
    position: relative;
}
.postCarousel img{
    width: 100%;
    height: auto;
}
.postCarousel .carousel-control{
    position: absolute;
    left: 0;
    top: 45%;
    z-index: 2;
    width: 45px;
    height: 45px;
    background: #fff;
    color: #1e2a78;
    font-size: 16px;
    line-height: 47px;
    text-align: center;
    border-radius: 0 30px 30px 0;
}
.postCarousel .right{
    right: 0;
    left: auto;
    border-radius: 30px 0 0 30px;
}
.post_content{
    position: relative;
    padding: 27px 28px 0;
}
.cats{
    display: inline-block;
    height: 23px;
    background: #1e2a78;
    border-radius: 3px;
    color: #fff;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    line-height: 23px;
    padding: 0 12px;
    margin: 0 6px 8px 1px;
}
.cats:hover{
    color: #fff;
}
.post_content h3{
    font-size: 22px;
    line-height: 32px;
    font-weight: 600;
    margin: 7px 0 9px;
}
.post_content h3 a{
    color: inherit;
}
.post_content h3 a:hover{
    color: #1e2a78;
}
.post_content p{
    margin: 0 0 24px;
}
.bp_meta{
    border-top: 1px solid #f6f6f6;
    position: relative;
    padding: 15px 0 20px;
}
.bp_meta span{
    display: inline-block;
    font-size: 14px;
    color: #647589;
    line-height: 24px;
}
.bp_meta a{
    display: inline-block;
    float: right;
    font-size: 13px;
    line-height: 28px;
    color: #333333;
    font-weight: 700;
    text-transform: capitalize;
    font-family: 'Poppins', sans-serif;
}
.bp_meta a i{
    font-size: 15px;
    padding-right: 5px;
    position: relative;
    top: 2px;
}
.bp_meta a:hover{
    color: #1e2a78;
}

/*--- Testimonial ---*/
.testi_wrap{
    position: relative;
}
.aver_rating{
    display: flex;
    justify-content: center;
    position: relative;
    margin: 0 0 60px;
}
.aver_rating p{
    font-size: 14px;
    line-height: 30px;
    color: #647589;
    font-family: 'Poppins', sans-serif;
    margin: 5px 19px 0 0;
}
.av-rate-box{
    height: 40px;
    background: #1e2a78;
    color: #fff;
    text-align: center;
    display: inline-block;
    border-radius: 3px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 40px;
    padding: 0 28px;
}
.av-rate-box i{
    color: #ffc107;
    font-size: 15px;
    margin-left: 4px;
}
.testimonial_item{
    position: relative;
    border: 1px solid rgba(30, 42, 120, .07);
    padding: 77px 35px 0 40px;
    text-align: center;
    -webkit-box-shadow: 0px 10px 20px 0px rgba(150, 176, 203, 0.05);
    -moz-box-shadow:    0px 10px 20px 0px rgba(150, 176, 203, 0.05);
    box-shadow:         0px 10px 20px 0px rgba(150, 176, 203, 0.05);
}
.testimonial_item p{
    font-size: 16px;
    line-height: 26px;
    text-align: left;
    color: #647589;
    position: relative;
    margin: 0 0 16px;
}
.testimonial_item p:before{
    position: absolute;
    font-family: "habu-icon";
    content: "\f113";
    font-size: 30px;
    line-height: 30px;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(to bottom, #01beff, #00acff, #0097ff, #007fff, #5461ff);
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    position: absolute;
    left: 0;
    top: -40px;
}
.testimonial_item p:after{
    position: absolute;
    font-family: "habu-icon";
    content: "\f113";
    font-size: 30px;
    line-height: 30px;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(to bottom, #01beff, #00acff, #0097ff, #007fff, #5461ff);
    position: absolute;
    right: 0;
    bottom: -25px;
}
.testimonial_item .av-rate-box{
    border-radius: 30px;
    text-align: center;
    position: relative;
    top: 20px;
    z-index: 4;
}
.testi-author{
    position: relative;
    background: #f6f6f6;
    width: calc(100% + 75px);
    left: -40px;
    text-align: left;
    padding: 28px 30px 21px 155px;
}
.testimonial_slider.owl-carousel img{
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: inline-block;
    position: absolute;
    left: 65px;
    top: 0;
    bottom: 0;
    margin: auto;
}
.testi-author h5{
    font-size: 18px;
    color: #223645;
    line-height: 30px;
    margin: 0 0 2px;
}
.testi-author span{
    display: block;
    font-size: 14px;
    color: #647589;
    line-height: .8;
    font-weight: 300;
}
.testimonial_slider.owl-carousel .owl-nav button{
    width: 40px;
    height: 40px;
    background: #f6f6f6;
    text-align: center;
    font-size: 20px;
    position: relative;
    line-height: 42px;
    z-index: 2;
    color: #1e2a78;
    border: none;
    outline: none;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
}
.testimonial_slider.owl-carousel .owl-nav button.owl-prev{
    position: absolute;
    left: -100px;
    top: 50%;
}
.testimonial_slider.owl-carousel .owl-nav button.owl-next{
    position: absolute;
    right: -100px;
    top: 50%;
}
.testimonial_slider.owl-carousel .owl-nav button:after {
    position: absolute;
    z-index: 0;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    margin: auto;
    z-index: -1;
    width: 0;
    border-radius: 0;
    height: 0;
    content: '';
    background: #1e2a78;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
}
.testimonial_slider.owl-carousel .owl-nav button:hover{
    color: #fff;
}
.testimonial_slider.owl-carousel .owl-nav button:hover:after{
    height: 100%;
    width: 100%;
}
/*--- Footer ---*/
.footer{
    position: relative;
    padding: 113px 0 63px;
    background: #f6f6f6;
}
.footer .widget{
    margin: 0 0 40px;
    padding: 0;
}
.footer .widget .widget-title{
    font-size: 20px;
    line-height: 30px;
    color: #1e2a78;
    margin: 0 0 36px;
}
.footer .widget ul{
    margin: 0;
    padding: 0;
}
.footer .widget ul li{
    list-style: none;
    display: block;
    font-size: 17px;
    line-height: 36px;
    color: #647589;
    position: relative;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
}
.footer .widget ul li a:after,
.footer .widget_recent_comments ul li::after{
    position: absolute;
    left: 0;
    top: 0;
    content: "\e9ef";
    font-size: 11px;
    color: #777777;
    line-height: 36px;
    font-family: 'nss-theme';
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
}
.footer .widget ul li a{
    color: inherit;
    padding-left: 25px;
    position: relative;
    display: inline-block;
}
.footer .widget_recent_comments ul li a{
    padding: 0;
}
.footer .widget ul li a:hover{
    color: #1e2a78;
}
.footer .widget ul li a:hover:after{
    left: 5px;
}
.src_post{
    position: relative;
    padding-left: 120px;
    margin: 0 0 20px;
    min-height: 120px;
}
.src_post img{
    position: absolute;
    left: 0;
    top: 0;
    width: 100px;
    height: 120px;
}
.src_post > a{
    display: inline-block;
    font-size: 15px;
    line-height: 22px;
    color: #223645;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    margin: -4px 0 13px;
}
.src_post p{
    font-size: 12px;
    line-height: .8;
    color: #9fa4af;
    margin: 0;
}
.src_post p a{
    color: inherit;
}
.src_post > a:hover,
.src_post p a:hover{
    color: #1e2a78;
}
.footer .src_post{
    min-height: 80px;
    padding-left: 100px;
}
.footer .src_post img{
    height: 80px;
    width: 80px;
}
.habu_contact_widget{
    position: relative;
}
.habu_contact_widget p{
    color: #647589;
    line-height: 36px;
    font-size: 17px;
    margin: 0;
}
.habu-mailchimp p{
    font-size: 16px;
    line-height: 28px;
    color: #647589;
    margin: 0 0 28px;
}
.habu-mailchimp input[type="email"] {
    width: 100%;
    height: 40px;
    border: 1px solid #e0e0e0;
    border-radius: 3px;
    background: transparent;
    outline: none;
    font-size: 14px;
    line-height: 40px;
    color: #647589;
    font-weight: 400;
    padding: 0 20px;
}
.habu-mailchimp input[type="email"]::-moz-placeholder{
    color: #647589;
    opacity: 1;
}
.habu-mailchimp input[type="email"]::-ms-input-placeholder{
    color: #647589;
    opacity: 1;
}
.habu-mailchimp input[type="email"]::-webkit-input-placeholder{
    color: #647589;
    opacity: 1;
}
.habu-mailchimp form{
    position: relative;
}
.habu-mailchimp input[type="submit"]{
    height: 40px;
    position: absolute;
    right: 0;
    top: 0;
    font-weight: 700;
    color: #fff;
    line-height: 40px;
    text-align: center;
    font-size: 14px;
    background: #1e2a78;
    padding: 0 20px;
    text-transform: uppercase;
    border-radius: 0 3px 3px 0;
    border: none;
    outline: none;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
}
.habu-mailchimp input[type="submit"]:hover{
    background: #223645;
}
.mail_chimp_form{
    position: relative;
}
.mail_chimp_form input[type="email"] {
    width: 100%;
    height: 60px;
    border: 1px solid #1e2a78;
    border-radius: 3px;
    background: #ffffff;
    outline: none;
    font-size: 13px;
    line-height: 60px;
    color: #b7b9c8;
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 1.3px;
    padding: 0 130px 0 30px;
}
.mail_chimp_form input[type="email"]::-moz-placeholder{
    color: #b7b9c8;
    opacity: 1;
}
.mail_chimp_form input[type="email"]::-ms-input-placeholder{
    color: #b7b9c8;
    opacity: 1;
}
.mail_chimp_form input[type="email"]::-webkit-input-placeholder{
    color: #b7b9c8;
    opacity: 1;
}
.mail_chimp_form form{
    position: relative;
}
.mail_chimp_form input[type="submit"]{
    height: 60px;
    position: absolute;
    right: 0;
    top: 0;
    font-weight: 700;
    color: #fff;
    line-height: 60px;
    text-align: center;
    font-size: 13px;
    letter-spacing: 1.3px;
    background: #1e2a78;
    padding: 0 30px;
    text-transform: uppercase;
    border-radius: 0 3px 3px 0;
    border: none;
    outline: none;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
}
.mail_chimp_form input[type="submit"]:hover{
    background: #223645;
}
.wid-social{
    position: relative;
    margin: 25px 0 0;
}
.wid-social a{
    display: inline-block;
    font-size: 16px;
    line-height: 18px;
    color: #1e2a78;
    margin-right: 10px;
}
.wid-social a.fac:hover{
    color: #395693;
}
.wid-social a.twi:hover{
    color: #109AEA;
}
.wid-social a.beh:hover{
    color: #1666F7;
}
.wid-social a.ins:hover{
    color: #030104;
}
.wid-social a.lin:hover{
    color: #0072AE;
}
.wid-social a.you:hover{
    color: #F70000;
}
.wid-social a.sna:hover{
    color: #F7F400;
}
.wid-social a.red:hover{
    color: #F74300;
}
.wid-social a.pin:hover{
    color: #C62026;
}
.wid-social a.tum:hover{
    color: #000000;
}
.wid-social a.xing:hover{
    color: #000000;
}
.wid-social a.dri:hover{
    color: #F06292;
}
.copyright{
    position: relative;
    background: #fff;
    padding: 25px 0;
}
.copyright p{
    font-size: 14px;
    color: #647589;
    line-height: 30px;
    margin: 0;
}
/*------------------------------------------------------
/ 3. Home 02
/------------------------------------------------------*/

/*---- Hero Slider Section ------*/
.hero-slider-section{
    position: relative;
    overflow: hidden;
}
.hero-slider{
    position: relative;
}
.hero-slider .bg-img{
    background-position: center center;
    background-size: cover;
    position: relative;
    z-index: 5;
    height: 950px;
}
.hero-slider.anim_class .bg-img{
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: -webkit-transform 10000ms ease;
    transition: -webkit-transform 10000ms ease;
    transition: transform 10000ms ease;
    transition: transform 10000ms ease,
    -webkit-transform 10000ms ease;
}
.hero-slider.anim_class .owl-item.active .bg-img{
    -webkit-transform: scale(1.15);
    transform: scale(1.15);
}
.hero-slider .bg-img:after{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: '';
    background: rgba(1, 9, 62, .8);
}
.slider-content{
    position: relative;
    z-index: 9;
    padding: 0 0;
}
.slider-content .popup-video {
    position: relative;
    display: inline-block;
    z-index: 3;
    width: 80px;
    text-align: center;
    height: 80px;
    margin: 0 0 50px;
}
.slider-content .popup-video i{
    position: relative;
    z-index: 5;
    display: block;
    width: 100%;
    text-align: center;
    height: 100%;
    background: #fff;
    border-radius: 50%;
    font-size: 30px;
    line-height: 82px;
    color: #1E2A78;
    padding: 0 28px;
}
.slider-content .popup-video:after {
    width: calc(100% + 40px);
    height: calc(100% + 40px);
    left: -20px;
    top: -20px;
    background: rgba(255, 255, 255, .50);
    position: absolute;
    content: '';
    z-index: -1;
    border-radius: 50%;
    animation-fill-mode: both;
    animation: blinker 1.5s ease-in-out infinite;
    -webkit-animation: blinker 1.5s ease-in-out infinite;
    -moz-animation: blinker 1.5s ease-in-out infinite;
}
.slider-content h3{
    font-size: 48px;
    line-height: 64px;
    color: #fff;
    margin: 0 0 20px;
}
.slider-content p {
    font-size: 22px;
    line-height: 34px;
    color: #fff;
    font-weight: 400;
    margin: 0 0 30px;
}
.slider-content .habu-btn{
    color: #1E2A78;
    background: #FFFFFF;
}
.slider-content .habu-btn:hover{
    color: #fff;
}
.hero-slider .owl-dots{
    position: absolute;
    left: 0;
    right: 0;
    bottom: 30px;
    margin: auto;
    text-align: center;
    z-index: 3;
}
.hero-slider .owl-dots button{
    width: 10px;
    height: 10px;
    border-radius: 50%;
    outline: none;
    margin: 0 5px;
    background: rgba(255, 255, 255, .5);
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.hero-slider .owl-dots button.active,
.hero-slider .owl-dots button:hover{
    background: rgba(255, 255, 255, 1);
}
.hero-slider .owl-dots button span{
    display: none;
}
.hero-slider.owl-carousel .owl-nav button{
    right: 50px;
    left: auto;
    position: absolute;
    outline: none;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    -moz-transform: translateY(-50%) rotate(-90deg);
    -webkit-transform: translateY(-50%) rotate(-90deg);
    text-align: center;
    z-index: 5;
    font-size: 30px;
    line-height: 30px;
    color: rgba(255, 255, 255, .5);
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.hero-slider.owl-carousel .owl-nav button.owl-prev{
    right: auto;
    left: 50px;
    transform: translateY(-50%) rotate(90deg);
    -moz-transform: translateY(-50%) rotate(90deg);
    -webkit-transform: translateY(-50%) rotate(90deg);
}
.hero-slider.owl-carousel .owl-nav button:hover{
    color: rgba(255, 255, 255, 1);
}
.hero-slider .owl-item.active .slider-content h3 {
    animation-delay: 1.2s;
    animation-name: fadeInLeft;
}
.hero-slider .owl-item.active .slider-content p{
    animation-delay: 1.2s;
    animation-name: fadeInRight;
}
.hero-slider .owl-item.active .slider-content .habu-btn{
    animation-delay: 1.3s;
    animation-name: fadeInUp;
}
.hero-slider .owl-item.active .slider-content .popup-video{
    animation-delay: 1.3s;
    animation-name: fadeInDown;
}
/*--- Skill Bar ---*/
.habu_circle_skill{
    position: relative;
}
.habu_sk{
    display: inline-block;
    position: relative;
}
.habu_circle_skill strong{
    font-size: 24px;
    line-height: 24px;
    z-index: 4;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(to bottom, #01beff, #00acff, #0097ff, #007fff, #5461ff);
}
.habu_circle_skill h5{
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
    margin: 15px 0 0;
}

/*--- Tesimonial Slider ----*/
.testimonial_slider_two.owl-carousel .testi_img{
    width: 75px;
    height: 75px;
    text-align: center;
    position: relative;
    padding: 10px;
    border: 2px solid rgba(30, 42, 120, .07);
    border-radius: 50%;
    margin: -72px 0 18px;
    z-index: 3;
    background: #fff;
}
.testimonial_slider_two.owl-carousel img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}
.testimonial_item_two{
    position: relative;
    padding: 30px 30px 25px 40px;
    margin: 50px 0;
    border: 2px solid rgba(30, 42, 120, .07);
}
.testimonial_item_two .testi-author {
    position: relative;
    background: transparent;
    width: 100%;
    left: 0;
    text-align: left;
    padding: 0;
    display: flex;
    justify-content: flex-start;
}
.testimonial_item_two .testi-author h5{
    font-size: 16px;
    font-weight: 500;
}
.testimonial_item_two .testi-author span{
    position: relative;
    line-height: 30px;
    padding-left: 30px;
}
.testimonial_item_two .testi-author span:after{
    position: absolute;
    left: 10px;
    width: 10px;
    height: 1px;
    background: linear-gradient(to bottom, #01beff, #00acff, #0097ff, #007fff, #5461ff);
    top: 0;
    bottom: 0;
    margin: auto;
    content: '';
}
.testimonial_item_two .av-rate-box{
    height: auto;
    background: transparent;
    padding: 0;
    font-weight: normal;
    border-radius: 0;
}
.testimonial_item_two .av-rate-box i{
    font-size: 14px;
    letter-spacing: 2px;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(to bottom, #01beff, #00acff, #0097ff, #007fff, #5461ff);
}
.testimonial_item_two p{
    position: relative;
    font-size: 16px;
    line-height: 28px;
    margin: 0;
}
.testimonial_item_two p:after {
    position: absolute;
    font-family: "habu-icon";
    content: "\f113";
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(to bottom, #01beff, #00acff, #0097ff, #007fff, #5461ff);
    opacity: .1;
    font-size: 150px;
    line-height: 150px;
    position: absolute;
    right: 0;
    top: -70px;
}
.testimonial_slider_two.owl-carousel .owl-nav{
    position: relative;
    line-height: .8;
    text-align: center;
}
.testimonial_slider_two.owl-carousel .owl-nav button{
    width: 40px;
    height: 40px;
    background: #1e2a78;
    text-align: center;
    font-size: 20px;
    position: relative;
    line-height: 42px;
    z-index: 2;
    margin: 0 7px;
    color: #fff;
    border: none;
    outline: none;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
}
.testimonial_slider_two.owl-carousel .owl-nav button:after {
    position: absolute;
    z-index: 0;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    margin: auto;
    z-index: -1;
    width: 0;
    border-radius: 0;
    height: 0;
    content: '';
    background: linear-gradient(to bottom, #01beff, #00acff, #0097ff, #007fff, #5461ff);
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
}
.testimonial_slider_two.owl-carousel .owl-nav button:hover:after{
    width: 100%;
    height: 100%;
}

/*------------------------------------------------------
/ 4. About Page
/------------------------------------------------------*/
.page_banner{
    position: relative;
    padding: 60px 0 90px;
    background-color: #f6f6f6;
}
.pb_title{
    font-size: 80px;
    line-height: 84px;
    color: rgba(30, 42, 120, .50);
    font-weight: 800;
    margin-bottom: 12px;
}
.single_blog_banner .pb_title{
    font-size: 60px;
    line-height: 70px;
}
.page_crumb{
    font-size: 20px;
    line-height: 28px;
    color: #647589;
    font-weight: 500;
    margin: 0;
}
.page_crumb a{
    color: inherit;
    font-weight: 400;
}
/*--- Team Member ----*/
.single-team{
    position: relative;
    /* padding: 35px 20px;
    margin: 0 0 30px; */
    -webkit-box-shadow: 0px 5px 20px 0px rgba(150, 176, 203, 0.15);
    -moz-box-shadow: 0px 5px 20px 0px rgba(150, 176, 203, 0.15);
    box-shadow: 0px 5px 20px 0px rgba(150, 176, 203, 0.15);
}
.teahm-thumb{
    position: relative;
    display: inline-block;
}
.elementor .teahm-thumb img,
.teahm-thumb img{
    width: 170px;
    height: 170px;
    border-radius: 50%;
}
.team-details{
    position: relative;
    padding: 18px 0 0;
}
.team-details h5{
    font-size: 18px;
    line-height: 28px;
    color: #223645;
    margin: 0 0 0px;
}
.team-details h5 a{
    color: inherit;
}
.team-details p{
    font-size: 16px;
    line-height: 30px;
    color: #647589;
    margin: 0 0 13px;
}
.team-details ul{
    margin: 0;
    padding: 0;
}
.team-details ul li{
    list-style: none;
    display: inline-block;
    margin: 0;
}
.team-details ul li a{
    display: inline-block;
    width: 30px;
    height: 30px;
    background: #223645;
    border-radius: 3px;
    text-align: center;
    line-height: 34px;
    font-size: 14px;
    color: #fff;
}
.team-details ul li a i:before {
    display: inline-block;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.team-details ul li a:hover i:before {
    animation: iconTranslateY 0.4s forwards;
}
@keyframes iconTranslateY {
    49% {
        transform: translateY(100%)
    }
    50% {
        opacity: 0;
        transform: translateY(-100%)
    }
    51% {
        opacity: 1
    }
}

/*------------------------------------------------------
/ 5. Pricing Page
/------------------------------------------------------*/
.price-item{
    position: relative;
    padding: 40px 30px 40px;
    margin: 0 0 30px;
    -webkit-box-shadow: 0px 5px 20px 0px rgba(150, 176, 203, 0.15);
    -moz-box-shadow: 0px 5px 20px 0px rgba(150, 176, 203, 0.15);
    box-shadow: 0px 5px 20px 0px rgba(150, 176, 203, 0.15);
}
.price-item > i {
    font-size: 55px;
    line-height: 55px;
    display: block;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(to bottom, #01beff, #00acff, #0097ff, #007fff, #5461ff);
    margin: 0 0 10px;
}
.price-item h4{
    font-size: 22px;
    line-height: 35px;
    margin: 0 0 19px;
}
.price{
    display: inline-block;
    background: #1e2a78;
    padding: 12px 22px;
    color: #fff;
    font-weight: 700;
    line-height: .8;
    font-family: 'Poppins', sans-serif;
    text-align: center;
    font-size: 20px;
    border-radius: 3px;
    margin: 0 0 36px;
}
.price-item ul{
    margin: 0;
    padding: 16px 0;
    border-top: 1px solid #f6f6f6;
    border-bottom: 1px solid #f6f6f6;
}
.price-item ul li{
    list-style: none;
    display: block;
    position: relative;
    color: #647589;
    font-size: 16px;
    line-height: 28px;
    margin: 10px 0;
}
.price-item ul li i {
    font-size: 14px;
    line-height: 28px;
    margin-right: 9px;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(to bottom, #01beff, #00acff, #0097ff, #007fff, #5461ff);
}
.price-item .habu-btn{
    margin-top: 35px;
    height: 45px;
    padding: 17px 31px;
}

/*------------------------------------------------------
/ 6. Portfolio Page
/------------------------------------------------------*/
.porfolio-detail{
    position: relative;
    padding: 120px 0;
}
.folio-area{
    position: relative;
    margin-right: 15px;
}
.fa-left{
    margin-right: 0;
    margin-left: 15px;
}
.fa_fl{
    margin: 0 7px;
}
.folio-area .col-lg-5{
    -ms-flex: 0 0 45%;
    flex: 0 0 45%;
    max-width: 45%;
}
.folio-area .col-lg-7{
    -ms-flex: 0 0 55%;
    flex: 0 0 55%;
    max-width: 55%;
}
.fs-thumb{
    position: relative;
}
.fs-thumb img{
    width: 100%;
    height: auto;
}
.folio-meta{
    position: relative;
    background: #fff;
    padding: 50px 30px 30px;
    -webkit-box-shadow: 0px 5px 20px 0px rgba(150, 176, 203, 0.15);
    -moz-box-shadow: 0px 5px 20px 0px rgba(150, 176, 203, 0.15);
    box-shadow: 0px 5px 20px 0px rgba(150, 176, 203, 0.15);
}
.folio-meta h5{
    font-size: 17px;
    line-height: 28px;
    color: #223645;
    font-weight: 600;
    margin: 0 0 18px;
    width: 33%;
    display: inline-block;
    float: left;
}
.folio-meta h5 span{
    font-family: 'Rubik', sans-serif;
    font-size: 16px;
    margin: 3px 0 0;
    color: #9fa4af;
    font-weight: 400;
    display: block;
}
.folio-meta h5 span{
    color: inherit;
}
.folio-area > h2{
    font-size: 35px;
    line-height: 47px;
    color: #223645;
    letter-spacing: 1.4px;
    margin: 0 0 42px;
}
.social-share{
    position: relative;
    display: flex;
    justify-content: flex-start;
    margin: 0 0 44px;
}
.social-share h6{
    font-size: 12px;
    color: #223645;
    line-height: 20px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin: 0 0 0 0;
}
.social-share a{
    display: inline-block;
    font-size: 16px;
    color: #647589;
    line-height: .8;
    margin-left: 25px;
}
.social-share a:hover{
    color: #223645;
}
.fs-sdesc{
    position: relative;
    border: 1px solid #f4f4f8;
    margin-top: 30px;
    padding: 40px;
}
.fs-sdesc p{
    font-size: 17px;
    color: #647589;
    line-height: 31px;
    margin: 0 0 31px;
}
.fs-sdesc h4{
    font-size: 19px;
    line-height: 29px;
    margin: 58px 0 42px;
}
.tags{
    position: relative;
    color: #647589;
    line-height: 20px;
    margin: 69px 0 37px;
}
.tags h5{
    font-size: 12px;
    color: #223645;
    line-height: 20px;
    display: inline-block;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin: 0 0 0 0;
}
.tags a{
    display: inline-block;
    font-size: 12px;
    color: #647589;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    line-height: 20px;
    text-transform: uppercase;
    margin-left: 3px;
}
.tags a:hover{
    color: #223645;
}
.post-pagination{
    position: relative;
    border: 1px solid #f4f4f8;
    padding: 40px;
}
.post-pagination a{
    display: inline-block;
    font-size: 14px;
    color: #647589;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    line-height: .8;
    letter-spacing: 1.4px;
}
.post-pagination a i{
    margin-right: 5px;
    display: inline-block;
    position: relative;
    top: 1px;
}
.post-pagination a:hover{
    color: #1e2a78;
}
.post-pagination a.nextpost i{
    margin-right: 0;
    margin-left: 5px;
}
.habu-sidebar{
    position: relative;
}
.habu-sidebar .widget{
    position: relative;
    margin: 0 0 63px;
}
.habu-sidebar .widget .widget-title{
    font-size: 20px;
    color: #223645;
    line-height: 30px;
    margin: 0 0 23px;
}
.search-form{
    position: relative;
}
.woocommerce-product-search{
    position: relative;
}
.search-form [type=search],
.woocommerce-product-search [type=search]{
    width: 100%;
    font-size: 14px;
    font-weight: 400;
    line-height: 26px;
    background: transparent;
    font-family: 'Rubik', sans-serif;
    color: #a1a1a1;
    border: none;
    outline: none;
    border-bottom: 1px solid #ebebeb;
}
.woocommerce-product-search button:before {
    content: "\ed7c";
    font-family:'nss-theme' !important;
    text-align: center;
    display: inline-block;
    font-size: 18px;
    transition: all ease 300ms;
    -moz-transition: all ease 300ms;
    -webkit-transition: all ease 300ms;
}
.woocommerce-product-search button {
    position: absolute;
    font-size: 0px;
    background-color: #f6f6f6;
    color: #a1a1a1;
    border: 0;
    border-radius: 20px 0 0 20px;
    top: -4px;
    right: 0px;
    height: 0px;
    outline: 0;
}
.search-form [type=search]::-moz-placeholder,
.woocommerce-product-search [type=search]::-moz-placeholder{
    color: #a1a1a1;
    opacity: 1;
}
.search-form [type=search]::-ms-input-placeholder,
.woocommerce-product-search [type=search]::-ms-input-placeholder{
    color: #a1a1a1;
    opacity: 1;
}
.search-form [type=search]::-webkit-input-placeholder,
.woocommerce-product-search [type=search]::-webkit-input-placeholder{
    color: #a1a1a1;
    opacity: 1;
}
.search-form button{
    font-size: 18px;
    border: none;
    outline: none;
    background: transparent;
    color: #a1a1a1;
    line-height: 26px;
    position: absolute;
    right: 0;
    top: 0;
    transition: all ease 300ms;
    -moz-transition: all ease 300ms;
    -webkit-transition: all ease 300ms;
}
.search-form button:hover,
.woocommerce-product-search button:hover:before{
    color: #223645;
}
.habu-sidebar .widget ul{
    margin: 0;
    padding: 0;
}
.habu-sidebar .widget ul li{
    display: block;
    list-style: none;
    font-size: 14px;
    line-height: 36px;
    color: #9fa4af;
    position: relative;
}
.habu-sidebar .widget ul li a{
    display: inline-block;
    color: inherit;
    position: relative;
    padding-left: 20px;
}
.habu-sidebar .widget #recentcomments li a{
    padding: 0;
}
.widget.woocommerce ul.product_list_widget li a {
    font-weight: 400;
}
.habu-sidebar .widget ul li a:after{
    position: absolute;
    left: 0;
    top: 0;
    line-height: 36px;
    content: "\ea2f";
    color: #9fa4af;
    font-family: 'nss-theme';
    font-size: 10px;
    transition: all ease 300ms;
    -moz-transition: all ease 300ms;
    -webkit-transition: all ease 300ms;
}
.habu-sidebar .widget ul li a:hover:after{
    left: 5px;
}
.habu-sidebar .widget ul li a:hover{
    color: #223645;
}
.habu-sidebar .widget ul .children li{
    padding-left: 15px;
}
.habu-sidebar .widget ul ul.sub-menu li{
    padding-left: 15px;
}
.widget_recent_comments ul li a:after,
.habu-sidebar .widget ul li.recentcomments a:after{
    display: none;
}
.widget_recent_comments ul li{
    position: relative;
    padding-left: 20px;
}
.widget_recent_comments ul li:after{
    position: absolute;
    left: 0;
    top: 0;
    line-height: 36px;
    content: "\ea2f";
    color: #9fa4af;
    font-family: 'nss-theme';
    font-size: 10px;
    transition: all ease 300ms;
    -moz-transition: all ease 300ms;
    -webkit-transition: all ease 300ms;
}
.widget_recent_comments ul li:hover:after{
    left: 5px;
}
.widget_rss ul li a:after,
.habu-sidebar .widget ul li a.rsswidget:after{
    display: none;
}
.widget_rss ul li a,
.habu-sidebar .widget ul li a.rsswidget{
    padding-left: 0;
}
.rss-date{
    text-transform: uppercase;
    display: block;
}
.widget_rss ul li cite {
    display: block;
    color: #232931;
    font-weight: 500;
}
.textwidget img {
    max-width: 100%;
    height: auto;
    margin: 15px 0;
}
.tagcloud{
    position: relative;
}
.tagcloud a{
    display: inline-block;
    height: 30px;
    background: #f4f4f4;
    font-size: 14px !important;
    color: #8d8d8d;
    border-radius: 3px;
    text-align: center;
    padding: 0 18px;
    margin: 0 6px 10px 0;
}
.tagcloud a:hover{
    background: #223645;
    color: #fff;
}
.ads_widget{
    position: relative;
    overflow: hidden;
}
.ads_widget img{
    width: 100%;
    height: auto;
    transition: all ease 400ms;
    -moz-transition: all ease 400ms;
    -webkit-transition: all ease 400ms;
}
.ads_widget:after{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: '';
    background: rgba(0, 0, 0, .5);
}
.ad_con{
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
    z-index: 99;
    background: #c20000;
    width: 130px;
    padding: 70px 10px;
}
.ad_con h4{
    font-size: 18px;
    line-height: 30px;
    color: #fff;
    margin: 0;
    text-transform: uppercase;
}
.ads_widget:hover img {
    -webkit-transform: scale(1.02);
    -moz-transform: scale(1.02);
    -ms-transform: scale(1.02);
    -o-transform: scale(1.02);
    transform: scale(1.02);
}

/*------------------------------------------------------
/ 7. Single Blog Page
/------------------------------------------------------*/
.blogpage-section{
    position: relative;
    padding: 120px 0;
}
.habu-pagination{
    position: relative;
    margin-top: 23px;
}
.habu-pagination a,
.habu-pagination .current{
    width: 40px;
    height: 40px;
    background: #f6f6f6;
    text-align: center;
    font-size: 20px;
    position: relative;
    display: inline-block;
    line-height: 42px;
    margin: 0 3px;
    z-index: 2;
    color: #1e2a78;
    border: none;
    outline: none;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
}
.habu-pagination a:after,
.habu-pagination .current:after {
    position: absolute;
    z-index: 0;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    margin: auto;
    z-index: -1;
    width: 0;
    border-radius: 0;
    height: 0;
    content: '';
    background: #1e2a78;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
}
.habu-pagination .current,
.habu-pagination a:hover {
    color: #fff;
}
.habu-pagination a:hover:after,
.habu-pagination .current:after{
    height: 100%;
    width: 100%;
}
.habu-pagination .pagination{
    display: block;
}
.habu-pagination .screen-reader-text{
    display: none;
}
.habu-pagination .dots{
    text-align: center;
    font-size: 20px;
    position: relative;
    display: inline-block;
    line-height: 42px;
    margin: 0 3px;
    z-index: 2;
    color: #1e2a78;
}
.singleblog-section{
    position: relative;
    padding: 120px 0 80px;
}
.single_blog{
    margin-right: 55px;
    position: relative;
}
.single_blog.left-bar{
    margin-right: 0;
    margin-left: 55px;
}
.single_blog.no-bar{
    margin: 0;
}
.sb-top{
    position: relative;
    margin: 0 0 36px;
}
.sb-top h3{
    font-size: 35px;
    line-height: 47px;
    color: #223645;
    letter-spacing: 1.4px;
    margin: 0 0 35px;
}
.meta_wrapper{
    position: relative;
    display: flex;
    justify-content: space-between;
}
.meta-left{
    position: relative;
    display: flex;
    justify-content: flex-start;
    font-size: 18px;
    line-height: 28px;
    color: #9fa4af;
    min-width: 100%;
    margin-bottom: 35px;
}
.meta-left.no-social{
    min-width: 55%;
    margin-bottom: 0;
}
.post-author{
    position: relative;
    padding-left: 65px;
    margin-right: 8px;
}
.post-author img{
    position: absolute;
    left: 0;
    top: -10px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
}
.post-author a{
    display: inline-block;
    color: inherit;
    text-transform: capitalize;
}
.post-author a:hover{
    color: #1e2a78;
}
.meta-left .cate{
    margin: 0 8px;
}
.meta-left .cate a{
    color: inherit;
}
.meta-left .cate a:hover{
    color: #1e2a78;
}
.meta-left .date{
    margin-left: 8px;
}
.sb_thumb{
    position: relative;
}
.sb_thumb img{
    max-width: 100%;
    width: auto;
    height: auto;
}
.sb_thumb .popup-video{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    text-align: center;
    display: inline-block;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    background: #fff;
    color: #1e2a78;
    font-size: 16px;
    line-height: 53px;
    z-index: 2;
    letter-spacing: -3px;
    animation: waveBtn2 2.5s infinite;
}
.bl_gallery{
    position: relative;
}
.bl_gallery img{
    width: 100%;
    height: auto;
}
.bl_gallery  .carousel-control{
    position: absolute;
    left: 0;
    top: 45%;
    z-index: 2;
    width: 45px;
    height: 45px;
    background: #fff;
    color: #1e2a78;
    font-size: 16px;
    line-height: 47px;
    text-align: center;
    border-radius: 0 30px 30px 0;
}
.bl_gallery .right{
    right: 0;
    left: auto;
    border-radius: 30px 0 0 30px;
}
.sb_details{
    position: relative;
    border: 1px solid #f4f4f8;
    margin-top: -1px;
    padding: 52px 40px 23px;
}
.sb_details p{
    font-size: 16px;
    line-height: 29px;
    color: #647589;
    margin: 0 0 30px;
}
.sb_details p a{
    color: #1e2a78;
}
.sb_details .heading{
    font-size: 18px;
    line-height: 28px;
    color: #223645;
    font-weight: 600;
    margin: 54px 0 40px;
}
.sb_details .wp-block-image .aligncenter figcaption{
    display: block;
} 
.comment-area{
    position: relative;
    margin: 83px 0 0;
}
.comment-area > h6{
    font-size: 18px;
    line-height: 28px;
    color: #223645;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    margin: 0 0 40px;
}
.comment-list{
    margin: 0;
    padding: 0;
}
.comment-list li{
    list-style: none;
}
.comment-list .children{
    margin: 0 0 0 65px;
    padding: 0;
}
.single-comment{
    position: relative;
    padding-left: 65px;
    margin: 0 0 40px;
}
.single-comment .cm-author{
    width: 45px;
    height: 45px;
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 50%;
}
.single-comment h6{
    font-size: 14px;
    color: #223645;
    line-height: 18px;
    margin: 0 0 9px;
}
.single-comment h6 span{
    font-weight: 300;
    font-family: 'Rubik', sans-serif;
    display: inline-block;
    color: #647589;
    font-size: 12px;
    font-style: italic;
    margin: 0 0 0 17px;
}
.comment{
    font-size: 14px;
    color: #647589;
    line-height: 24px;
    margin: 0 0 11px;
}
.comment p{
    margin: 0;
}
.comment img{
    max-width: 100%;
    margin: 10px 0;
}
.single-comment .comment-reply-link{
    display: inline-block;
    font-size: 12px;
    color: #1e2a78;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2.4px;
}
.single-comment .comment-reply-link:hover{
    color: #223645;
}
.comment-form{
    position: relative;
}
.comment-form h6{
    font-size: 16px;
    color: #223645;
    line-height: 48px;
    margin: 0 0 19px;
    text-transform: uppercase;
    letter-spacing: 1.6px;
}
.commentForm{
    position: relative;
    margin-bottom: 40px;
}
.commentForm input[type="text"],
.commentForm input[type="email"],
.commentForm textarea{
    width: 100%;
    height: 50px;
    border: none;
    border-bottom: 1px solid #e0e0e0;
    border-radius: 0;
    background: transparent;
    outline: none;
    font-size: 14px;
    line-height: 50px;
    color: #647589;
    font-weight: 400;
    padding: 0 7px;
    margin: 0 0 49px;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
}
.commentForm textarea{
    resize: none;
    line-height: 49px;
    margin-bottom: 40px;
}
.commentForm input[type="text"]::-moz-placeholder,
.commentForm input[type="email"]::-moz-placeholder,
.commentForm textarea::-moz-placeholder{
    color: #647589;
    opacity: 1;
}
.commentForm input[type="text"]::-ms-input-placeholder,
.commentForm input[type="email"]::-ms-input-placeholder,
.commentForm textarea::-ms-input-placeholder{
    color: #647589;
    opacity: 1;
}
.commentForm input[type="text"]::-webkit-input-placeholder,
.commentForm input[type="email"]::-webkit-input-placeholder,
.commentForm textarea::-webkit-input-placeholder{
    color: #647589;
    opacity: 1;
}
.commentForm input[type="text"]:focus,
.commentForm input[type="email"]:focus,
.commentForm textarea:focus{
    color: #000;
    border-color: #000;
}
.commentForm input[type="text"]:focus::-moz-placeholder,
.commentForm input[type="email"]:focus::-moz-placeholder,
.commentForm textarea:focus::-moz-placeholder{
    color: #223645;
    opacity: 1;
}
.commentForm input[type="text"]:focus::-ms-input-placeholder,
.commentForm input[type="email"]:focus::-ms-input-placeholder,
.commentForm textarea:focus::-ms-input-placeholder{
    color: #223645;
    opacity: 1;
}
.commentForm input[type="text"]:focus::-webkit-input-placeholder,
.commentForm input[type="email"]:focus::-webkit-input-placeholder,
.commentForm textarea:focus::-webkit-input-placeholder{
    color: #223645;
    opacity: 1;
}
.commentForm input[type="submit"]{
    height: 60px;
    background: #1e2a78;
    border-radius: 3px;
    text-transform: uppercase;
    text-align: center;
    font-size: 13px;
    color: #fff;
    line-height: 60px;
    font-weight: 500;
    outline: none;
    border: none;
    letter-spacing: 1.3px;
    padding: 0 32px;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
}
.commentForm input[type="submit"]:hover {
    background: #223645;
}
.comment-respond h6{
    font-size: 16px;
    color: #223645;
    line-height: 48px;
    margin: 0 0 19px;
    text-transform: uppercase;
    letter-spacing: 1.6px;
}
.comment-respond h6 .cancel_reply_btn{
    font-weight: 300;
    font-family: 'Rubik', sans-serif;
    display: inline-block;
    color: #647589;
    font-size: 12px;
    font-style: italic;
    margin: 0 0 0 25px;
}
.comment-respond h6 .cancel_reply_btn:hover{
    color: #1e2a78;
}
.featured_post {
    background: rgba(30, 42, 120, .10);
    padding: 0 15px;
    border:1px solid rgba(0,0,0,.1);
}
.habu-sidebar .screen-reader-text{
    display: none;
}
.habu-sidebar select{
    width: 100%;
    height: 60px;
    border: none;
    border-radius: 0;
    background: #fff;
    outline: none;
    font-size: 14px;
    line-height: 60px;
    color: #647589;
    font-weight: 400;
    letter-spacing: .56px;
    padding: 0 30px;
    margin: 0 0 30px;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    -webkit-box-shadow: 0px 0px 20px 8px rgba(150, 176, 203, 0.15);
    -moz-box-shadow: 0px 0px 20px 8px rgba(150, 176, 203, 0.15);
    box-shadow: 0px 0px 20px 8px rgba(150, 176, 203, 0.15);
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
}
.habu-sidebar .widget table {
    width: 100%;
    border: 1px solid #f6f6f6;
}
.habu-sidebar .widget table caption {
    font-size: 14px;
    color: #223645;
    font-weight: 600;
    line-height: .8;
    caption-side: top;
    padding: 16px 5px;
    text-align: center;
    border: 1px solid #f6f6f6;
    border-bottom: none;
    text-transform: uppercase;
}
.habu-sidebar .widget table thead tr th {
    font-size: 12px;
    color: #223645;
    font-weight: 700;
    text-align: center;
    border-bottom: 1px solid #f6f6f6;
    padding: 3px 2px;
    border-right: 1px solid #f6f6f6;
}
.habu-sidebar .widget table tbody tr td {
    font-size: 12px;
    color: #647589;
    font-weight: 400;
    text-align: center;
    border-bottom: 1px solid #f6f6f6;
    border-right: 1px solid #f6f6f6;
    padding: 3px 2px;
}
.habu-sidebar .wp-calendar-nav a{
    color: #223645;
}
.habu-sidebar .wp-calendar-nav a:hover{
    color: #1e2a78;
}

footer .screen-reader-text{
    display: none;
}
footer select{
    width: 100%;
    height: 60px;
    border: none;
    border-radius: 0;
    background: #fff;
    outline: none;
    font-size: 14px;
    line-height: 60px;
    color: #647589;
    font-weight: 400;
    letter-spacing: .56px;
    padding: 0 30px;
    margin: 0 0 30px;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    -webkit-box-shadow: 0px 5px 20px 0px rgba(150, 176, 203, 0.15);
    -moz-box-shadow: 0px 5px 20px 0px rgba(150, 176, 203, 0.15);
    box-shadow: 0px 5px 20px 0px rgba(150, 176, 203, 0.15);
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
}
footer .widget table {
    width: 100%;
    border: 1px solid #e0e0e0;
}
footer .widget table caption {
    font-size: 14px;
    color: #223645;
    font-weight: 600;
    line-height: .8;
    caption-side: top;
    padding: 16px 5px;
    text-align: center;
    border: 1px solid #e0e0e0;
    border-bottom: none;
    text-transform: uppercase;
}
footer .widget table thead tr th {
    font-size: 12px;
    color: #223645;
    font-weight: 700;
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
    padding: 3px 2px;
    border-right: 1px solid #e0e0e0;
}
footer .widget table tbody tr td {
    font-size: 12px;
    color: #647589;
    font-weight: 400;
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
    border-right: 1px solid #e0e0e0;
    padding: 3px 2px;
}
footer .wp-calendar-nav a{
    color: #223645;
}
footer .wp-calendar-nav a:hover{
    color: #1e2a78;
}
footer .tagcloud a{
    background: #fff;
}
footer .widget ul li a.rsswidget {
    padding-left: 0;
}
.footer .widget ul .sub-menu li,
.footer .widget ul .children li{
    padding-left: 15px;
}
.single_blog code{
    color: #1e2a78;
    font-size: 16px;
    line-height: 29px;
}
.wp-block-button__link{
    color: #fff !important;
    margin-bottom: 10px;
}
.is-style-outline .wp-block-button__link{
    color: #647589 !important;
}
.wp-block-button.is-style-squared a {
    border-radius: 0px;
}
.has-text-align-center.has-large-font-size,
.has-text-align-left.has-large-font-size {
    font-size: 30px;
    line-height: 40px;
    color: #647589;
}
.wp-calendar-nav-next{
    float: right;
}
.wp-block-calendar a{
    text-decoration: none;
}
.wp-block-image,
.sb_details .wp-block-cover{
    margin-bottom: 15px !important;
}
.widget caption,
.sb_details caption{
    caption-side: top;
    font-size: 18px;
    color: #223645;
    line-height: 30px;
    padding: 0;
    margin: 0 0 23px;
}
.wp-block-latest-comments__comment-date{
    display: block;
    margin: 5px 0;
}
.sb_details .wp-calendar-nav .wp-calendar-nav-prev{
    float: left;
}
.sb_details .wp-calendar-nav{
    width: 100%;
    display: block;
    margin: 0 0 15px;
}
.sb_details .wp-calendar-nav a{
    text-decoration: none;
    color: #223645;
}
.sb_details ol, .sb_details ul {
    margin: 25px 0;
    padding: 0;
}
.sb_details ul.blocks-gallery-grid{
    margin-bottom: 0;
    margin-top: 0;
}
.sb_details .blocks-gallery-caption{
    margin-top: 10px;
    margin-bottom: 30px;
}
.wp-block-media-text.alignfull {
    margin-bottom: 30px;
}
.sb_details .wp-block-media-text img{
    margin-bottom: 0;
}
.sb_details ol li, .sb_details ul li {
    list-style-position: inside;
    margin: 0 0 10px;
    line-height: 24px;
}
.sb_details ol ol, .sb_details ul ul {
    padding-left: 15px;
    margin: 8px 0 0;
}
.sb_details ol li, .sb_details ul li {
    list-style-position: inside;
    margin: 0 0 10px;
    line-height: 24px;
}
.wp-block-audio audio{
    min-width: 100%;
}
.wp-block-embed iframe{
    min-width: 100% !important;
}
.sb_details .screen-reader-text{
    display: none;
}
.sb_details select{
    width: 100%;
    height: 60px;
    border: none;
    border-radius: 0;
    background: #fff;
    outline: none;
    font-size: 14px;
    line-height: 60px;
    color: #647589;
    font-weight: 400;
    letter-spacing: .56px;
    padding: 0 30px;
    margin: 0 0 30px;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    -webkit-box-shadow: 0px 0px 20px 8px rgba(150, 176, 203, 0.15);
    -moz-box-shadow: 0px 0px 20px 8px rgba(150, 176, 203, 0.15);
    box-shadow: 0px 0px 20px 8px rgba(150, 176, 203, 0.15);
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
}
.PaginInner{
    margin: 20px 0;
    color: #223645;
}
.PaginInner .current,
.PaginInner a{
    width: 30px;
    height: 30px;
    background: #f6f6f6;
    color: #1e2a78;
    font-size: 14px;
    line-height: 32px;
    text-align: center;
    display: inline-block;
    margin: 0 3px;
}
.PaginInner .current,
.PaginInner a:hover{
    background: #1e2a78;
    color: #fff;
}
.comment_paginations{
    margin: 20px 0;
}
.comment_paginations .current,
.comment_paginations a{
    width: 30px;
    height: 30px;
    background: #f6f6f6;
    color: #1e2a78;
    font-size: 14px;
    line-height: 32px;
    text-align: center;
    display: inline-block;
    margin: 0 3px;
}
.comment_paginations .current,
.comment_paginations a:hover{
    background: #1e2a78;
    color: #fff;
}
.sb_details pre {
    max-height: 300px;
    overflow: scroll;
    max-width: 100%;
    background: #f6f6f6;
    padding: 20px;
    margin: 25px 0;
    color: #647589;
}
blockquote {
    background: transparent;
    border: none;
    border-left: 2px solid #f6f6f6;
    padding: 25px 10px 28px 40px;
    position: relative;
    margin: 41px 0 40px;
}
blockquote p{
    font-size: 16px;
    color: #647589;
    font-weight: 500;
    line-height: 24px;
    font-family: 'Poppins', sans-serif;
    margin: 0 0 0;
}
.sb_details blockquote p{
    margin: 0;
    color: #223645;
}
.comment table, 
.sb_details table {
    width: 100%;
    margin: 38px 0;
}
.comment table tbody tr th, 
.sb_details table thead tr th {
    font-weight: 500;
    font-size: 14px;
    color: #223645;
    padding: 8px 15px;
    border: 1px solid #f6f6f6;
    background: transparent;
}
.comment table tbody tr td, 
.sb_details table tbody tr th, 
.sb_details table tbody tr td {
    border: 1px solid #f6f6f6;
    color: #647589;
    font-size: 14px;
    padding: 8px 15px;
    line-height: 20px;
    font-weight: 400;
}
.comment table tbody tr td a, 
.sb_details table tbody tr th a {
    color: inherit;
    font-weight: 500;
    color: #223645;
}
.comment table tbody tr td a:hover, 
.sb_details table tbody tr th a:hover{
    color: #1e2a78;
}
.sb_details dt{
    color: #223645;
}
.sb_details cite,
.sb_details code {
    color: #1e2a78;
    font-weight: 400;
    margin: 10px 0;
    display: block;
}
.sb_details img{
    max-width: 100%;
    height: auto;
    margin: 0 0 10px;
}
.sb_details .alignnone,
.sb_details .aligncenter{
    margin: auto;
    text-align: center;
    display: block;
    width: auto !important
}
.sb_details .alignleft{
    margin: 0 15px 10px 0;
    float: left;
}
.sb_details .alignright{
    margin: 10px 0 10px 15px;
    float: right;
}
.sb_details figure{
    max-width: 100%;
}
.sb_details input[type="password"]{ 
    width: 250px;
    height: 60px;
    border: none;
    border-radius: 0;
    background: #fff;
    outline: none;
    font-size: 14px;
    line-height: 60px;
    color: #647589;
    font-weight: 400;
    letter-spacing: .56px;
    padding: 0 30px;
    margin: 10px 0 ;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    -webkit-box-shadow: 0px 5px 20px 0px rgba(150, 176, 203, 0.15);
    -moz-box-shadow: 0px 5px 20px 0px rgba(150, 176, 203, 0.15);
    box-shadow: 0px 5px 20px 0px rgba(150, 176, 203, 0.15);
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    display: block;
}
.sb_details fieldset form input[type="text"],
.sb_details form input[type="search"],
.sb_details fieldset form select,
.sb_details fieldset input[type="password"],
.sb_details fieldset form textarea{
    border: none;
    border-radius: 0;
    background: #fff;
    outline: none;
    font-size: 14px;
    line-height: 60px;
    color: #647589;
    font-weight: 400;
    letter-spacing: .56px;
    padding: 0 30px;
    margin: 10px 0 ;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    -webkit-box-shadow: 0px 0px 20px 8px rgba(150, 176, 203, 0.15);
    -moz-box-shadow: 0px 0px 20px 8px rgba(150, 176, 203, 0.15);
    box-shadow: 0px 0px 20px 8px rgba(150, 176, 203, 0.15);
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    display: block;
    width: 100%;
}
.sb_details form input[type="search"]{
    margin:0;
}
.sb_details input[type="submit"],
.sb_details button[type="submit"],
.sb_details input[type="reset"]{
    height: 60px;
    background: #1e2a78;
    border: none;
    outline: none;
    color: #fff;
    padding: 0 35px;
    font-size: 16px;
    line-height: 60px;
    font-weight: 500;
    margin: 0 8px 0 0;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
}
.sb_details input[type="submit"]:hover{
    background: #223645;
}
form.wp-block-search {
    margin-bottom: 15px;
}
.comment ol, .comment ul {
    margin: 25px 0;
    padding: 0;
}
.comment-list .comment ol li, .comment-list .comment ul li {
    list-style-position: inside;
    margin: 0 0 10px;
    line-height: 24px;
    list-style: inside;
    list-style-type: inherit;
}
.comment ol ol, .comment ul ul {
    padding-left: 15px;
    margin: 8px 0 0;
}
.comment pre {
    max-height: 300px;
    overflow: scroll;
    max-width: 100%;
    background: #f6f6f6;
    padding: 20px;
    margin: 25px 0;
    color: #647589;
}
.sb_details address,
.comment address {
    max-width: 100%;
    background: #f6f6f6;
    padding: 20px;
    margin: 20px 0;
    color: #647589;
}
.single-comment.pingbackcomments {
    padding-left: 0;
}
.single-comment.pingbackcomments .date{
    margin-top: 5px;
}
.sb_details iframe{
    max-width: 100%;
}
.sb_details blockquote cite{
    font-size: 14px;
    color: #1e2a78;
}
.meta-left .cate {
    margin: 0 8px;
    max-width: calc(100% - 280px);
}
/*------------------------------------------------------
/ 8. Faq Page
/------------------------------------------------------*/
.singleFaq{
    position: relative;
    margin: 0 0 30px;
}
.singleFaq .card-header{
    padding: 0;
    margin: 0;
    border: none;
    border-radius: 0;
    background: transparent;
}
.singleFaq .card-header .btn{
    font-family: 'Rubik', sans-serif;
    font-size: 18px;
    color: #fff;
    font-weight: 500;
    text-transform: uppercase;
    margin: 0;
    text-decoration: none;
    border-radius: 0;
    position: relative;
    width: 100%;
    text-align: left;
    padding: 20px 60px 19px 28px;
    background: #223645;
    border-color: #223645;
}
.singleFaq .card-header .btn:after{
    position: absolute;
    right: 28px;
    top: 0;
    line-height: 68px;
    content: "\f2b3";
    font-size: 25px;
    display: block;
    color: #fff;
    font-family: 'nss-theme';
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
}
.singleFaq .card-header .btn.collapsed:after{
    content: "\f324";
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(to bottom, #01beff, #00acff, #0097ff, #007fff, #5461ff);
}
.singleFaq .card-header .btn.collapsed{
    background: transparent;
    border: 2px solid #909aa2;
    color: #647589;
}
.singleFaq .card-body{
    margin: 0;
    padding: 23px 30px 24px;
    border: 2px solid #909aa2;
    border-top: none;
    font-size: 18px;
    line-height: 28px;
    color: #647589;
    letter-spacing: .72px;
}

/*------------------------------------------------------
/ 9. Contact Page
/------------------------------------------------------*/
.habu_map{
    position: relative;
    line-height: .8;
}
.habu_map iframe{
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 600px;
    line-height: .8;
}
.grayscale iframe{
    -webkit-filter: grayscale(100%); 
    -moz-filter: grayscale(100%); 
    -ms-filter: grayscale(100%); 
    filter: grayscale(100%);
}
.grayscale.habu_map_two{
    -webkit-filter: grayscale(100%); 
    -moz-filter: grayscale(100%); 
    -ms-filter: grayscale(100%); 
    filter: grayscale(100%);
}
.habu_map_two{
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 600px;
    line-height: .8;
}
.icon-single i{
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(to bottom, #01beff, #00acff, #0097ff, #007fff, #5461ff);
    font-size: 60px;
    line-height: 60px;
}
.contact-form{
    position: relative;
}
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="url"],
.contact-form input[type="tel"],
.contact-form select,
.contact-form textarea{
    width: 100%;
    height: 60px;
    border: none;
    border-radius: 0;
    background: #fff;
    outline: none;
    font-size: 14px;
    line-height: 60px;
    color: #647589;
    font-weight: 400;
    letter-spacing: .56px;
    padding: 0 30px;
    margin: 0 0 30px;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    -webkit-box-shadow: 0px 5px 20px 0px rgba(150, 176, 203, 0.15);
    -moz-box-shadow: 0px 5px 20px 0px rgba(150, 176, 203, 0.15);
    box-shadow: 0px 5px 20px 0px rgba(150, 176, 203, 0.15);
}
.contact-form textarea{
    resize: none;
    height: 300px;
    line-height: 30px;
    padding-top: 18px;
}
.contact-form input[type="text"]::-moz-placeholder,
.contact-form input[type="email"]::-moz-placeholder,
.contact-form input[type="url"]::-moz-placeholder,
.contact-form input[type="tel"]::-moz-placeholder,
.contact-form select::-moz-placeholder,
.contact-form textarea::-moz-placeholder{
    color: #647589;
    opacity: 1;
}
.contact-form input[type="text"]::-ms-input-placeholder,
.contact-form input[type="email"]::-ms-input-placeholder,
.contact-form input[type="url"]::-ms-input-placeholder,
.contact-form input[type="tel"]::-ms-input-placeholder,
.contact-form select::-ms-input-placeholder,
.contact-form textarea::-ms-input-placeholder{
    color: #647589;
    opacity: 1;
}
.contact-form input[type="text"]::-webkit-input-placeholder,
.contact-form input[type="email"]::-webkit-input-placeholder,
.contact-form input[type="url"]::-webkit-input-placeholder,
.contact-form input[type="tel"]::-webkit-input-placeholder,
.contact-form select::-webkit-input-placeholder,
.contact-form textarea::-webkit-input-placeholder{
    color: #647589;
    opacity: 1;
}
.contact-form input[type="submit"]{
    display: inline-block;
    height: 60px;
    font-size: 14px;
    line-height: .8;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    font-weight: 700;
    border-radius: 5px;
    letter-spacing: 1.4px;
    padding: 25px 53px;
    background: #1e2a78;
    z-index: 1;
    cursor: pointer;
    outline: none;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
}
.contact-form input[type="submit"]:hover {
    background: #223645;
}
.contact-form .select select{
    resize: none;
    -webkit-appearance: none;
    cursor: pointer;
}
.contact-form .select{
    position: relative;
}
.contact-form .select:after{
    position: absolute;
    right: 30px;
    top: 0;
    content: "\ea2d";
    font-size: 14px;
    color: #cccccc;
    line-height: 60px;
    font-family: 'nss-theme';
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
}

/*------------------------------------------------------
/ 10. Career Page
/------------------------------------------------------*/
.vacancy-item{
    position: relative;
    padding: 40px 35px 15px;
    margin: 0 0 30px;
    -webkit-box-shadow: 0px 5px 20px 0px rgba(150, 176, 203, 0.15);
    -moz-box-shadow: 0px 5px 20px 0px rgba(150, 176, 203, 0.15);
    box-shadow: 0px 5px 20px 0px rgba(150, 176, 203, 0.15);
}
.vacancy-top{
    position: relative;
    margin: 0 0 7px;
    display: flex;
    justify-content: space-between;
}
.vacancy-top i{
    font-size: 50px;
    line-height: 50px;
    display: block;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(to bottom, #01beff, #00acff, #0097ff, #007fff, #5461ff);
}
.vacancy-top p{
    font-size: 18px;
    line-height: 28px;
    color: #647589;
    margin: 13px 0 0;
}
.vacancy-top p span{
    display: inline-block;
    font-weight: 700;
}
.vacancy-item h4{
    font-size: 25px;
    line-height: 35px;
    margin: 0 0 16px;
}
.vacancy-item ul{
    margin: 0;
    padding: 0;
}
.vacancy-item ul li{
    list-style: none;
    font-size: 18px;
    line-height: 28px;
    color: #223645;
    font-weight: 500;
    position: relative;
    border-top: 2px solid #f6f6f6;
    padding-top: 22px;
    padding-bottom: 21px;
    padding-left: 42px;
}
.vacancy-item ul li > span{
    display: block;
    font-weight: 400;
    font-size: 16px;
    color: #9fa4af;
    margin-top: 2px;
}
.vacancy-item ul li i{
    position: absolute;
    left: 0;
    top: 18px;
    font-size: 19px;
    line-height: 34px;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(to bottom, #01beff, #00acff, #0097ff, #007fff, #5461ff);
}
.vacancy-item .habu-btn{
    height: 40px;
    font-size: 13px;
    text-transform: capitalize;
    letter-spacing: 0;
    color: #fff;
    padding: 15px 16px;
    margin: 7px 0 0;
    position: absolute;
    right: 0;
    top: 29px;
}

/*------------------------------------------------------
/ 11. 404 Page
/------------------------------------------------------*/
.section-404{
    position: relative;
    padding: 120px 0;
    background: #fff;
}
.content_404{
    position: relative;
}
.content_404 img{
    max-width: 100%;
    height: auto;
    margin: 0 0 32px;
}
.content_404 h2{
    font-size: 200px;
    font-weight: 800;
    display: block;
    margin: 0 0 5px;
    line-height: 200px;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(to bottom, #01beff, #00acff, #0097ff, #007fff, #5461ff);
}
.content_404 p{
    font-size: 22px;
    line-height: 34px;
    color: #647589;
    font-weight: 400;
    margin: 0 0 50px
}
.content_404 .habu-btn{
    margin: 0 0 50px;
}
.content_404 .search-form{
    width: 400px;
    height: 60px;
    background: #f6f6f6;
    border-radius: 30px;
    position: relative;
    display: inline-block;
}
.content_404 .search-form [type=search]{
    border: none;
    width: 100%;
    height: 100%;
    padding: 0 30px;
    color: #1e2a78;
}
.content_404 .search-form [type=search]::-moz-placeholder{
    color: #1e2a78;
    opacity: 1;
}
.content_404 .search-form [type=search]::-ms-input-placeholder{
    color: #1e2a78;
    opacity: 1;
}
.content_404 .search-form [type=search]::-webkit-input-placeholder{
    color: #1e2a78;
    opacity: 1;
}
.content_404 .search-form button{
    height: 50px;
    width: 50px;
    background: #1e2a78;
    border-radius: 50%;
    text-align: center;
    color: #fff;
    line-height: 56px;
    font-size: 18px;
    position: absolute;
    right: 5px;
    top: 5px;
}
.content_404 .search-form button:hover{
    background: #223645;
    color: #fff;
}
.searchtitle{
    font-size: 30px;
    line-height: 30px;
    margin: 0 0 20px;
}
#backtotop{
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 40px;
    height: 40px;
    background: #1e2a78;
    border-radius: 50%;
    text-align: center;
    display: block;
    color: #fff;
    line-height: 44px;
    animation: waveBtn 2.5s infinite;
    font-size: 16px;
    opacity: 0;
    visibility: hidden;
    z-index: 999;
}
#backtotop:hover{
    color: #fff;
}
@keyframes waveBtn {
    0% {
        box-shadow: 0 0 0 0 rgba(30, 42, 120, .3);
    }
    50% {
        box-shadow: 0 0 0 40px transparent;
    }
    100% {
        box-shadow: 0 0 0 0 transparent;
    }
}
/**********************
 12. Language switcher
***********************/
.top-social{
    display: inline-block;
}
.language{
    text-align: right;
    display: inline-block;
    position: relative;
    padding-left: 15px;
    border-left: 1px solid #e0e0e0;
    margin-left: 17px;
}
.currency-lang {
    position: absolute;
    left: 0;
    top: calc(100% + 10px);
    min-width: 100px;
    background: #FFF;
    -webkit-box-shadow: 0px 0px 10px 0px rgba(35, 47, 62, 0.1);
    -moz-box-shadow:    0px 0px 10px 0px rgba(35, 47, 62, 0.1);
    box-shadow:         0px 0px 10px 0px rgba(35, 47, 62, 0.1);
    padding: 5px 0px;
    z-index: 999;
    text-align: center;
    display: none;
}
.currency-lang ul{
    margin: 0;
    padding: 0;
}
.currency-lang ul li{
    list-style: none;
    display: block;
    border-bottom: 1px solid #E2EEFF;
    padding: 0 0 5px;
    margin-bottom: 5px;
}
.currency-lang ul li:last-child{
    border: none;
    margin-bottom: 0;
    padding-bottom: 0;
}
.currency-lang ul li a{
    display: inline-block;
    font-size: 14px;
    font-weight: 400;
    color: #223645;
    line-height: 30px;
}
.currency-lang ul li a:hover{
    color: #1e2a78;
}
.language .select{
    position: relative;
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    line-height: 30px;
    color: #1e2a78;
}
.language .select i {
    font-size: 12px;
    letter-spacing: 0;
    margin-left: 8px;
    position: relative;
    top: 1px;
}
/**********************
 13. Team Page
***********************/
.team-top-level {
    margin-top: 50px;
}
.team-content-details{
    position: relative;
}
.team-content-details h2{
    font-family: 'Poppins', sans-serif;
    font-size: 35px;
    line-height: 45px;
    font-weight: 700;
    color: #1e2a78;
}
.team-content-details h4{
    font-family: 'Rubik',sans-serif;
    font-size: 25px;
    line-height: 35px;
    font-weight: 400;
    color: #647589;
}
.team-content-details h5{
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    line-height: 28px;
    font-weight: 700;
    color: #1e2a78;
}
.team-content-details .nss-star{
    color: #ffc107;
}
.team-content-details p{
    font-family: 'Rubik',sans-serif;
    font-size: 18px;
    line-height: 35px;
    font-weight: 400;
    color: #647589;
}
.special h3{
    font-family: 'Poppins',sans-serif;
    font-size: 20px;
    line-height: 30px;
    font-weight: 500;
    color: #1e2a78;
}
.special ul{
    padding: 0;
}
.special ul li{
    display: flex;
    list-style: none;
    font-size: 16px;
    line-height: 32px;
    font-weight: 400;
    color:#647589;
}
.special ul li i{
    font-size: 25px;
    line-height: 40px;
    display: inline-block;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(to bottom, #01beff, #00acff, #0097ff, #007fff, #5461ff);
    margin: -5px 6px 10px 0;
}
.team-designation {
    position: relative;
    border-bottom: 2px solid #7a7a7a;
    border-top: 2px solid #7a7a7a;
    background: #f6f6f6;
    padding: 110px 0 80px;
    margin: 100px auto;
}
.team-designation ul{
    padding: 0;
    text-align: center;
}
.team-designation ul li{
    position: relative;
    display: inline-block;
    list-style: none;
    width: 24%;
}
.team-designation ul li::before {
    content: '';
    position: absolute;
    left: 50%;
    right: -50%;
    bottom: 53px;
    border: 1px solid #013148;
}
.team-designation ul li::after {
    content: '';
    position: absolute;
    left: 48%;
    bottom: 47px;
    border: 1px solid #013148;
    background: #fff;
    width: 16px;
    height: 16px;
    border-radius: 40px;
}
.team-designation h3{
    font-size: 17px;
    color:#013148;
}
.team-designation .point {
    position: absolute;
    border: 3px solid #013148;
    left: 133px;
    top: 63%;
    border-radius: 20px;
    z-index: 11;
}
.team-designation ul li:last-child:before{
    content: '';
    position: absolute;
    border:none;
}
.skills{
    margin-bottom: 100px;
}
.skill-main p {
    width: 48%;
}
.single-skill {
    position: relative;
    margin-top: 36px;
}
.single-skill h4 {
    font-size: 20px;
    line-height: .8;
    font-weight: 500;
    margin: 0 0 14px;
}
.ss_parent {
    position: relative;
    background: #1c1c25;
    height: 10px;
    border-radius: 0 20px 20px 0;
    width: 100%;
}
.ss_child {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    border-radius: 0 30px 30px 0;
    background: linear-gradient(0deg, #1969DA 0%, #1A96F6 100%);
}
.ss_parent span {
    position: absolute;
    left: -5px;
    top: -25px;
    display: block;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: .8;
    margin: 0 0 0 -20px;
    color: #1c1c25;
}
.s2team-item{
    text-align: center;
    margin-bottom: 30px;
    border-bottom: 1px solid #00acff;
}
.s2team-item p{
    font-size: 12px;
    line-height: 24px;
    margin: 15px 0 0 0;
}
.s2team-item h5{
    margin:0px auto 10px;
}
.s2team-item h6{
    font-size: 14px;
    font-weight: 500;
    line-height: 28px;
}
.s2team-item h6 span {
    margin-right: 10px;
}
.s2team-item h6 i {
    margin-left: 10px;
    margin-right: 10px;
    font-size: 15px;
    position: relative;
    top: 2px;
}
.s2team-item ul{
    padding: 0 0 15px 0;
    margin: 0;
}
.s2team-item ul li{
    list-style: none;
    display: inline-block;
}
.s2team-item ul li a{
    border-radius: 3px;
    text-align: center;
    margin:0 3px;
    font-style: normal;
}
.s2team-item ul li a i{
    font-size: 22px;
    font-weight: 400;
    line-height: 32px;
}