body{
    padding: 0;
    margin: 0;
    position: relative;
    height: 100vh;
    font-family: 'Ubuntu',sans-serif;
}

/*-- Common Style --*/

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

.section{
    padding-top: 45px;
    padding-bottom: 45px;
}

.text-red{
    color: #f58345 !important;
}

.text-green {
    color: #39b65f !important;
}

/*-- Common Buttons --*/

.btn.btn-default{
    margin: 0;
    background-color: #ef7f1a !important;
    font-family: 'Ubuntu',sans-serif;
    letter-spacing: .6px;
    font-size: 14px;
    font-weight: 400;
    transition: all ease-in-out .4s;
    padding: 10px 20px;
    color: #fff !important;
}

.btn.btn-default:hover,
.btn-default:not([disabled]):not(.disabled):active{
    background-color: #1b2d73 !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, .2);
}

.btn.btn-default.btn-white{
    background-color: #fff !important;
    color: #132361 !important;
}

/*-- Common Heading --*/

.heading{
    text-align: center;
    margin-bottom: 35px;
    position: relative;
}

.heading .title{
    margin-bottom: 30px;
    font-size: 24px;
    color: #2b2a29;
    font-weight: 400;
    text-shadow: 0 2px 12px rgba(33, 25, 89, .3);
    position: relative;
}

.heading .title:after{
    content: "";
    position: absolute;
    bottom: -7px;
    left: 50%;
    transform: translateX(-50%);
    width: 35px;
    height: 4px;
    background-color: rgba(239, 127, 26, 0.7);
    border-radius: 5px;
}

.heading .description{
    font-size: 17px;
    letter-spacing: .3px;
    width: 90%;
    margin: 0 auto;
    color: #555;
    font-weight: 400;
}

.heading.heading-left{
    text-align: left;
}

.heading.heading-left .description{
    margin: unset;
}

.heading.heading-left .title:after{
    transform: unset;
    left: 1px;
}

.heading.heading-white{
    margin-bottom: 0;
}

.heading.heading-white .title,
.heading.heading-white .description{
    color: #fff;
}

.heading.heading-white .title:after{
    background-color: rgba(255, 255, 255, .7);
}

.subtitle{
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 15px;
    color: #2b2a29;
    border-bottom: 1px solid rgba(33, 25, 89, .2);
    padding-bottom: 4px;
}

.mt-20{
    margin-top: 20px;
}

/*-- Flex Classes --*/

.flex{
    display: flex;
}

.space-between{
    justify-content: space-between;
}

.v-center > *{
    justify-self: center;
}

/*-- Common Boxes --*/

.box{
    text-align: center;
    padding: 20px;
    border-radius: 3px;
    background-color: rgba(255, 255, 255, .8);
    transition: all ease-in-out .4s;   
}

.box .icon-wrap i{
    font-size: 50px;
    color: #2b2a29;
    margin-bottom: 10px;
    transition: all ease-in-out .4s;
}

.box .content-wrap .title{
    font-size: 22px;
    font-weight: 400;
    position: relative;
    margin-bottom: 15px;
    color: #2b2a29;
    margin-bottom: 15px;
    transition: all ease-in-out .4s;
}

.box .content-wrap .title:after{
    content: "";
    position: absolute;
    bottom: -5px;
    width: 25px;
    height: 3px;
    border-radius: 3px;
    background-color: #2b2a29;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 2px 10px rgba(33, 25, 89, .4);
    transition: all ease-in-out .4s;
}
.values .box{
    min-height: 250px;
}

.box .content-wrap.text-left .title:after{
    left: 0;
    transform: unset;
}

.box .content-wrap p{
    color: #737373;
    letter-spacing:.4px;
    font-weight:  400;
    font-size: 15px;
    margin-bottom: 5px;
    transition: all ease-in-out .4s;
}

.box .content-wrap a{
    display: inline-block;
    transition: all ease-in-out .4s;
    padding: 7px 14px;
    border-radius: 2px;
    margin-top: 10px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 14px;
    background-color: #2b2a29;
}

.box .content-wrap a i{
    margin-left: 5px;
}

.box:hover,
.bod-wrap li:hover .box{
    background: linear-gradient(120deg, rgb(231, 217, 87) 0%, rgb(239, 127, 26) 100%);
    box-shadow: 0 8px 40px rgba(245, 169, 100, .5);
    transform: translateY(-3px);
}

.box:hover .content-wrap .title,
.box:hover .icon-wrap i,
.box:hover .content-wrap p{
    color: #fff;
}

.box:hover .content-wrap .title:after{
    background-color: #fff;
}

.box:hover .content-wrap a{
    background-color: #fff;
    color: #2b2a29;
}

.box.no-hover:hover{
    background: #fff;
    box-shadow: 0 8px 10px rgba(54, 4, 141, .2);
    transform: unset;
}

.box.no-hover:hover .content-wrap .title,
.box.no-hover:hover .icon-wrap i,
.box.no-hover:hover .content-wrap p{
    color: #2b2a29;
}

.box.no-hover:hover .content-wrap .title:after{
    background-color: #2b2a29;
}

.box.no-hover:hover .content-wrap a{
    background-color: #fff;
    color: #2b2a29;
}

/*-- Common Card --*/

.card{
    margin-bottom: 20px;
    background-color: rgba(255, 255, 255, .9);
    box-shadow: 0 10px 30px rgba(33, 25, 89, .1);
    overflow: hidden;
    border-radius: 2px !important;
}

.card .card-header{
    padding: 8px 15px;
    border: 0;
    font-size: 15px;
    font-weight: 400;
    color: #2b2a29;
    background-color: #eae9ef;
    letter-spacing: .6px;
}

/*-- Common Input --*/

.input-effect {
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.footer-box .input-effect{
    margin-bottom: 20px;
}

.input-effect .form-control {
    background-color: transparent;
    border: 0;
    box-shadow: none;
    outline: none;
    border-bottom: .5px solid #aca7a7;
    color: #132361;
    border-radius: 0;
    font-weight: 400;
}

.control-effect ~ .focus-border {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background-color: #132361;
    transition: 0.4s;
}

.control-effect:focus ~ .focus-border,
.has-content.control-effect ~ .focus-border {
    width: 100%;
    transition: 0.4s;
    left: 0;
}

.has-content.control-effect ~ .focus-border {
    width: 100%;
    transition: 0.4s;
    left: 0;
}

.control-effect ~ label {
    position: absolute;
    left: 10px;
    width: 100%;
    top: 8px;
    color: #6c6c6c;
    transition: 0.3s;
    z-index: -1;
    letter-spacing: 0.5px;
    font-weight: 400;
    font-family: 'Ubuntu', sans-serif;
}

.control-effect:focus ~ label,
.has-content.control-effect ~ label {
    top: -10px;
    left: 10px;
    font-size: 12px;
    color: #132361;
    transition: 0.3s;
    font-weight: 500;
}

select.form-control{
    border: 0;
    border-bottom: .5px solid #aca7a7;
    border-radius: 0;
}

select.form-control:focus{
    border-color: #132361;
    box-shadow: none;
}

/*-- Header --*/

header{
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
    box-shadow: 0 10px 30px rgba(43, 42, 41, .5);
}

header .navbar{
    background-color: #2b2a29;
    /*background-color: #2b2a29;*/
    box-shadow: none;
    padding: 5px;
}

header .logo{
    max-height: 50px;
}

header .navbar.navbar-dark .navbar-nav .nav-item .nav-link{
    color: #d4edfc;
    letter-spacing: .4px;
    border-radius: 1px;
    margin: 0 5px;
    font-size: 14px;
}

.market-values{
    display: flex;
}

.market-values p{
    color: #fff;
    display: block;
    margin-bottom: 0;
    padding: 5px 10px;
    border-radius: 2px;
    background-color: rgba(255, 255, 255, .1);
    font-size: 14px;
    letter-spacing: .4px;
}

.market-values p i{
    margin-right: 5px;
}

.market-values p span{
    font-size: 13px;
    color: #dadada;
}

.market-values li{
    margin-right: 15px;
}

.market-values li:last-child{
    margin-right: 0;
}

/*-- Carousel --*/
.view .mask{
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background-attachment: fixed;
    right: 0;
    opacity: .5;
    overflow: hidden;
    background-color: black;
}

.view .mask:after{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    /*background: url(../images/bg-pattern.png);*/
    background-size: cover;
    background-repeat: no-repeat;
}

.carousel-control-prev,
.carousel-control-next{
    width: 5%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon{
    width: 50px !important;
    height: 50px !important;
}

.carousel-caption{
    bottom: unset;
    top: 50%;
    transform: translateY(-50%);
    left: 30%;
    right: 30%;
}

.carousel-caption:after{
    content: "";
}
.slidercaptiontext{
    font-size: 50px;
    margin-bottom: 30px;
    font-weight: 500;
}
.slidecaptionptag{
    font-family:Lora;
    font-style:italic;
    font-size:1.5rem
}
.carousel-caption h3{
    font-size: 30px;
    padding: 5px;
    position: relative;
    margin-bottom: 30px;
    color: #2b2a29;
    font-weight: 500;
}

.carousel-caption h3:after{
    content: "";
    position: absolute;
    width: 50px;
    height: 4px;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #2b2a29;
    border-radius: 5px;
    box-shadow: 0 4px 20px #2b2a29;
}

.carousel-indicators{
    justify-content: flex-end;
}

.carousel-caption p{
    color: #eee;
    letter-spacing: .8px;
    font-size: 18px;
}

/*-- Business Area --*/

.business-areas-section,
.news-section{
    position: relative;
}

.business-areas-section:after,
.news-section:after{
    content: "";
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    /*background: url(../images/bg-pattern2.png);*/
    background-size: contain;
    background-repeat: no-repeat;
    filter: opacity(.2);
    background-position-x: -325px;
}

.news-section:after{
    background-position-x: 1300px;
}

/*-- Chairmans Quote --*/

.pl-0{
    padding-left: 0;
}

.pr-0{
    padding-right: 0;
}

.chairmans-corner,
.company-group-wrap,
footer{
    overflow: hidden;
}

.chairmans-corner .chariman-quotes-wrap,
.company-group-wrap .companies-slider-wrap,
footer .footer-blue,
footer .footer-yellow{
    position: relative;
}

.chairmans-corner .chariman-quotes-wrap:after,
.company-group-wrap .companies-slider-wrap:after,
footer .footer-blue:after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 140%;
    height: 100%;
    z-index: -1;
    background-color: #2b2a29;
    background: -webkit-linear-gradient(30deg, rgb(43, 42, 41) 0%, rgb(239, 127, 26) 100%);
    background: -o-linear-gradient(30deg, rgb(43, 42, 41) 0%, rgb(239, 127, 26) 100%);
    background: linear-gradient(120deg, rgb(43, 42, 41) 0%, rgb(239, 127, 26) 100%);
    transform: skewX(-7deg);
}

footer .footer-blue:after{
    left: -10%;
    right: 0;
    width: 110%;
}

.company-group-wrap .companies-slider-wrap{
    overflow: visible;
}

.chairmans-corner .chariman-quotes-wrap .bg-text{
    position: absolute;
    font-size: 150px;
    color: rgba(255, 255, 255, .1);
    top: -20px;
    left: 50px;
    z-index: 1;
}

.chairmans-corner .item{
    padding: 0 50px;
}

.chairmans-corner .item .details{
    font-size: 16px;
    color: #fff;
    line-height: 28px;
    text-align: center;
    font-weight: 100;
    letter-spacing: 1px;
}

.chairmans-corner .item .info{
    position: relative;
    padding: 25px 0 0;
    text-align: center;
}

.chairmans-corner .item .info .separator{
    position: absolute;
    width: 80px;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.7);
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
}

.chairmans-corner .item .info .name{
    font-size: 20px;
    line-height: 22px;
    text-align: center;
    font-weight: 300;
    letter-spacing: 1px;
    color: #fff;
    margin-bottom: 5px;
}

.chairmans-corner .item .info .position{
    font-size: 14px;
    font-family: "Ubuntu condensed",sans-serif;
    color: #fff;
    text-transform: uppercase;
    line-height: 1.714;
    text-align: center;
    margin-bottom: 0;
    letter-spacing: .4px;
}

.chairmans-corner .title-wrap,
.company-group-wrap .title-wrap{
    position: relative;
}

.chairmans-corner .title-wrap:after,
.company-group-wrap .title-wrap:after{
    content: "";
    position: absolute;
    top: 0;
    z-index: -1;
    transform: skewX(-7deg);
    width: 150%;
    left: -20%;
    height: 100%;
    background-color: #ef7f1a;
    background: -webkit-linear-gradient(30deg, rgb(239, 127, 26) 0%, #e7d957 100%);
    background: -o-linear-gradient(30deg, rgb(239, 127, 26) 0%, #e7d957 100%);
    background: linear-gradient(120deg, rgb(239, 127, 26) 0%, #e7d957 100%);
}

footer .footer-yellow:after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 150%;
    height: 100%;
    transform: skewX(-7deg);
    z-index: -1;
    background-color: #f9f9f9;
}

/*-- News and Events Section --*/

.news-section .news-wrap{
    position: relative;
}

.news-section .news-wrap:after{
    content: "";
    position: absolute;
    right: -15px;
    top: 50%;
    height: 100%;
    width: 1px;
    background-color: rgba(33, 25, 89, .2);
    transform: translateY(-50%);
}

.news-section .news-wrap.no-border:after{
    content: none;
}

.news-carousel{
    margin-bottom: 30px;
}

.news-carousel .box-inline{
    margin-bottom: 15px;
}

.news-carousel .owl-dots{
    display: none;
}

.news-carousel .owl-item{
    padding-left: 10px;
}

.news-carousel .owl-nav button{
    display: inline-block;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background-color: #211a59 !important;
    color: #fff !important;
    font-size: 25px !important;
    line-height: 25px !important;
    opacity: .4;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.news-carousel .owl-nav button:hover{
    opacity: .7;
    box-shadow: 0 5px 10px rgba(33, 26, 89, 0.7);
}

button:focus{
    outline: none !important;
}

.news-carousel .owl-nav button.owl-prev{
    left: -30px;
}

.news-carousel .owl-nav button.owl-next{
    right: -30px;
}

.box-inline{
    display: flex;
}

.box-inline .icon-wrap i,
.box-inline .icon-wrap img{
    height: 40px;
    font-size: 40px;
    margin-right: 15px;
    color: #2b2a29;
}

.item-meta li{
    font-size: 14px;
    color: #777;
    font-weight: 400;
    padding-right: 15px;
    margin-right: 15px;
    border-right: 1px solid #d9d9d9;
}

.item-meta li i{
    margin-right: 5px;
}

.item-meta li:last-child{
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

.box-inline .content-wrap .title{
    margin-bottom: 5px;
    color: #2b2a29;
    font-weight: 400;
    font-size: 15px;
    line-height: 20px;
    letter-spacing: .4px;
    display: block;
}

.box-inline .content-wrap .description{
    margin-bottom: 0;
    font-size: 14px;
    color: #444;
    font-weight: 400;
    letter-spacing: .4px;
}

.box-inline .content-wrap .description a{
    color: #2b2a29;
    text-decoration: underline;
}

.news-section .news-list > li{
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e4e4e4;
}

.news-section .news-list > li:last-child{
    border-bottom: none;
    padding-bottom: 0;
}

.std-link,.std-link:hover{
    color: #2b2a29;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: .4px;
    margin-bottom: 5px;
    display: inline-block;
}

.company-group-wrap .companies-slider-wrap .group-slider{
    transform: translateX(-70px);
}

.company-group-wrap .companies-slider-wrap .group-slider .box{
    padding: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .2);
    margin: 20px 10px;
    background-color: #fff;
    min-height: 70px;
    display: block;
    position: relative;
}

.company-group-wrap .companies-slider-wrap .group-slider .box img{
    max-width: 140px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.company-group-wrap .companies-slider-wrap .group-slider .box .title{
    margin: 0;
    padding: 0;
    font-size: 18px;
    background-color: #fff;
    text-transform: unset;
}

.company-group-wrap .companies-slider-wrap .group-slider .box .title:after{
    content: unset;
}

.group-slider .owl-nav button{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: all ease-in-out .3s;
}

.group-slider .owl-nav > button.owl-prev{
    left: -30px;
}

.group-slider .owl-nav > button.owl-next{
    right: -30px;
}

.group-slider:hover .owl-nav button{
    opacity: 1;
}

.group-slider .owl-dots{
    display: none;
}

.group-slider .owl-nav > button{
    font-size: 30px !important;
    color: #fff !important;
    width: 30px;
    text-align: center;
    height: 30px;
    line-height: 20px !important;
    border-radius: 50%;
    background-color: rgba(33, 25, 89, .7) !important;
    box-shadow: 0 10px 30px rgba(33, 25, 89, .4);
}

.group-slider .owl-nav > button:focus{
    box-shadow: unset;
    outline: unset;
}

.group-slider .owl-nav > button span{
    display: block;
    margin-top: -5px;
}

/*-- Footer --*/

.social-wrap{
    padding: 15px 0;
    border-top: 1px solid rgba(212, 212, 212, .4);
}

.social-wrap a{
    display: inline-block;
    text-align: center;
    padding: 10px 18px;
    font-size: 22px;
    border-radius: 2px;
    transition: all ease-in-out .4s;
}

.social-wrap a:hover{
    color: #fff !important;
}

.social-wrap a.twitter{
    color: #1da1f2;
}

.social-wrap a.twitter:hover{
    background-color: #1da1f2;
    box-shadow: 0 10px 30px rgba(29, 161, 242, .5);
}

.social-wrap-inner{
    display: flex;
    justify-content: space-around;
    margin: 0 auto;
}

.social-wrap-inner .newsletter-wrap{
    flex: 2;
    display: flex;
}

.social-wrap-inner .newsletter-wrap > *,
.social-wrap-inner .social-media-wrap > *{
    align-self: center;
    margin: 0 10px;
}

.social-wrap-inner .newsletter-wrap p,
.social-wrap-inner .social-media-wrap p{
    margin-bottom: 0;
    font-size: 18px;
    letter-spacing: .4px;
    font-weight: 400;
    color: #132460;
}

.social-wrap-inner .social-media-wrap{
    flex: 1;
    display: flex;
    justify-content: center;
}

footer .footer-blue{
    padding: 40px;
}

footer .footer-box{
    margin-bottom: 15px;
}

footer .footer-box .footer-title{
    color: #fff;
    font-size: 20px;
    letter-spacing: .4px;
    font-weight: 400;
    position: relative;
    margin-bottom: 25px;
}

footer .footer-box .footer-title:after{
    content: "";
    position: absolute;
    bottom: -7px;
    left: 0;
    width: 30px;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 3px;
}

footer .footer-box a{
    display: inline-block;
    padding: 4px 0;
    color: #fff;
    font-size: 15px;
    transition: all ease-in-out .3s;
    letter-spacing: .4px;
}

footer .footer-box a i{
    margin-right: 5px;
    width: 15px;
    text-align: center;
}

footer .footer-box a:hover{
    color: #fff;
}

footer .footer-yellow .footer-box{
    width: 80%;
    margin: -5px auto 0;
}

footer .footer-yellow .footer-title{
    color: #2b2a29;
}

footer .footer-yellow .footer-title:after{
    background-color: #2b2a29;
}

/*-- About us --*/

/*-- Page header --*/

.page-header{
    position: relative;
    overflow: hidden;
    min-height: 200px;
    background: -webkit-linear-gradient(30deg, rgb(239, 127, 26) 0%, #e7d957 100%);
    background: -o-linear-gradient(30deg, rgb(239, 127, 26) 0%, #e7d957 100%);
    background: linear-gradient(120deg, rgb(239, 127, 26) 0%, #e7d957 100%);
}

.page-header:before{
    content: "";
    background: linear-gradient(to right, rgba(239, 127, 26, 0.9), #e7d957), url(../images/JoelKart_Backgrounds/about-us.png);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    animation: fade-in 1.7s cubic-bezier(1, -0.53, 1, 3.39) 1;
    animation-fill-mode: forwards;
}

.page-header.business-page:before{
    background: linear-gradient(to right, rgba(239, 127, 26, 0.9), #e7d957), url(../images/JoelKart_Backgrounds/Business-Area.png);
}
.page-header.investor-page:before{
    background: linear-gradient(to right, rgba(239, 127, 26, 0.9), #e7d957), url(../images/JoelKart_Backgrounds/Investors.png);
}
.page-header.business-to-business:before{
    background: linear-gradient(to right, rgba(239, 127, 26, 0.9), #e7d957), url(../images/JoelKart_Backgrounds/Business-to-Business.png);
}
.page-header.social-care-page:before{
    background: linear-gradient(to right, rgba(239, 127, 26, 0.9), #e7d957), url(../images/JoelKart_Backgrounds/Social-Care.png);
}


.page-header:after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(239, 127, 26, 1);
    animation: img-loader 1.5s ease-in-out 1;
    animation-fill-mode: forwards;
}

@-webkit-keyframes img-loader {
    0% {
        left: 50%;
    }
    50% {
        left: 0%;
        width: 50%;
    }
    100% {
        width: 0;
    }
}
@keyframes img-loader{
    0% {
        left: 50%;
    }
    50% {
        left: 0%;
        width: 50%;
    }
    100% {
        width: 0;
    }
}

@-webkit-keyframes fade-in{
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@keyframes fade-in{
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.page-header .heading{
    animation: fade-in 1.7s cubic-bezier(1, -0.53, 1, 3.39) 1;    
}

/*-- Inner Page Scrolling navigation --*/

.inner-page-scroll{
    position: relative;
    overflow-x: hidden;
}

.inner-page-scroll .navbar{
    padding: 0;
    z-index: 999 !important;
    box-shadow: 0 10px 30px rgba(33, 25, 89, 0.2);
}

.inner-page-scroll .navbar .navbar-nav{
    width:  100%;
    display:  flex;
}

.inner-page-scroll .navbar .navbar-nav>*{
    flex:  1;
    text-align:  center;
}

.inner-page-scroll .navbar .navbar-nav .nav-link{
    white-space: nowrap;
    background-color: #2b2a29;
    color: #d4edfc !important;
    letter-spacing: .4px;
    font-weight: 400;
    padding: 8px 14px;
    transition: all ease-in-out .4s;
}

.inner-page-scroll .navbar .navbar-nav .nav-link:hover{
    background-color: rgba(239, 127, 26, 0.5);
}

.inner-page-scroll .navbar .navbar-nav .nav-link.active{
    background-color: #fff;
    color: #2b2a29 !important;
}

.inner-page-scroll .navbar.sticky{
    position: fixed;
    top: 76px;
    width: 100%;
    box-shadow: 0 10px 30px rgba(33, 25, 89, .5);
}

.description,
.description p{
    font-size: 15px;
    letter-spacing: .4px;
    font-weight: 400;
    color: #737373;
}

.description ul li{
    margin-bottom: 5px;
    position: relative;
    vertical-align: text-top;
    padding-left: 15px;
}

.description ul li:before{
    position: absolute;
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: #2b2a29;
    top: 7px;
    line-height: 7px;
    left: 0;
}

/*.description ul li p{
    padding-left: 15px;
}*/

.description p:last-child{
    margin-bottom: 5px;
}

.inner-page-section{
    width: 94%;
    position: relative;
}

.inner-page-section.bg-darker:after{
    content: "";
    position: absolute;
    left: -10%;
    top: 0;
    width: 120%;
    height: 100%;
    background-color: #f6f9fc;
    z-index: -1;
}

.inner-page-section.business-areas-section.bg-darker:after{
    background-color: rgba(33, 25, 89, .2);
    background-position-x: -100%;
    filter: opacity(.1);
}

.bod-wrap {
    text-align: center;
    margin-bottom: 20px;
}

.bod-wrap li{
    display: inline-block;
    width: 33%;
    padding-left: 10px;
    padding-right: 10px;
    position: relative;
    margin-bottom: 22px;
}

.bod-wrap li .user-details{
    position: absolute;
    width: 100%;
    text-align: left;
    background-color: #fff;
    padding: 20px;
    z-index: 2;
    opacity: 0;
    visibility: hidden;
    border-radius: 2px;
    transition: all ease-in-out .4s;
    transform: translateY(-20px);
    box-shadow: 0 10px 30px rgba(33, 25, 89, .5);
}

.bod-wrap li:hover .user-details{
    visibility: visible;
    opacity: 1;
    transform: translateY(10px);
}

.bod-wrap .bod-item{
    display: flex;
    padding: 12px 20px;
    background-color: #fff;
    border-radius: 3px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(33, 25, 90, .1);
    transition: all ease-in-out .4s;
}

.bod-wrap .bod-item i{
    font-size: 30px;
    margin-right: 20px;
    line-height: 55px;
    color: #2b2a29;
}

.bod-wrap .bod-item .content .name{
    margin-bottom: 0;
    font-size: 18px;
    font-weight: 400;
    color: #2b2a29;
    text-align: left;
    letter-spacing: .4px;
}

.bod-wrap .bod-item .content .position{
    margin-bottom: 0;
    font-family: 'Ubuntu Condensed',sans-serif;
    color: #676767;
    letter-spacing: .4px;
    font-size: 16px;
    text-align: left;
}

.bod-wrap li:hover .bod-item i,
.bod-wrap li:hover .bod-item .name,
.bod-wrap li:hover .bod-item .position{
    color: #fff;
}

.commitee-members li{
    border-bottom: 1px solid #d9d9d9;
    margin-bottom: 7px;
    padding: 2px 10px;
}

.commitee-members li .name{
    margin-bottom: 4px;
    font-size: 16px;
    color: #221959;
    font-weight: 400;
}

.commitee-members li .position{
    margin-bottom: 4px;
    font-size: 15px;
    color: #676767;
    font-family: 'Ubuntu Condensed',sans-serif;
}

/*-- Timeline --*/

.timeline-wrap .timeline-head{
    display: block;
    padding: 15px 0;
    background: -webkit-linear-gradient(30deg, rgb(99, 27, 224) 0%, rgb(34, 24, 91) 100%);
    background: -o-linear-gradient(30deg, rgb(99, 27, 224) 0%, rgb(34, 24, 91) 100%);
    background: linear-gradient(120deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 100%);
    border-radius: 2px;
    box-shadow: 0 10px 30px rgba(33, 25, 89, .5);
    margin: 0 auto;
    width: 180px;
    text-align: center;
    margin-bottom: 15px;
}

.timeline-wrap .timeline-head img{
    margin: 0 auto;
    height: 100px;
}

.timeline-wrap .timeline-inner{
    position: relative;
    padding: 10px 0;
}

.timeline-wrap .timeline-inner:after{
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    height: 100%;
    width: 4px;
    background-color: #2b2a29;
    border-radius: 5px;
    z-index: -1;
}

.timeline-wrap .timeline-inner .timeline-year{
    padding: 5px 0 0;
    text-align: center;
}

.timeline-wrap .timeline-inner .timeline-year .year{
    text-align: center;
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 0;
    display: inline-block;
    background-color: #EF8136;
    padding: 2px 14px;
    border-radius: 2px;
    color: #fff;
    outline: 5px solid #fff;
    background: -webkit-linear-gradient(30deg, rgb(231, 217, 87) 0%, rgb(239, 127, 26) 100%);
    background: -o-linear-gradient(30deg, rgb(231, 217, 87) 0%, rgb(239, 127, 26) 100%);
    background: linear-gradient(120deg, rgb(231, 217, 87) 0%, rgb(239, 127, 26) 100%);
}

.timeline-wrap .timeline-inner .timeline-item{
    position: relative;
    display: table;
    width: 100%;
    margin: 0;
}

.timeline-wrap .timeline-inner .timeline-item .item-inner{
    display: block;
    padding: 12px 20px;
    position: relative;
    width: 50%;
}

.timeline-wrap .timeline-inner .timeline-item .item-inner .description{
    margin-bottom: 0;
}

.timeline-wrap .timeline-inner .timeline-item .item-inner:after{
    content: "";
    position: absolute;
    top: 50%;
    right: 28px;
    background-color: #fff;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 3px solid #21195a;
    animation: heartbeats 1s cubic-bezier(1, -0.53, 1, 3.39) infinite alternate;
    transform:  translateY(-50%);
}

@keyframes heartbeats{
    0% {
        box-shadow: 0 0 0 #2b2a29;
    }
    100% {
        box-shadow: 0 0 10px #2b2a29;
    }
}

.timeline-wrap .timeline-inner .timeline-item .item-inner:before{
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    background-color: #21195a;
    width: 30px;
    height: 3px;
    transform:  translateY(-50%);
}

.timeline-wrap .timeline-inner .timeline-item .item-inner.left{
    text-align: right;
    padding-right: 70px;
    float: left;
}

.timeline-wrap .timeline-inner .timeline-item .item-inner .title{
    font-size: 18px;
    font-weight: 400;
    color: #555;
    margin-bottom:  0;
}

.timeline-wrap .timeline-inner .timeline-item .item-inner.right{
    float: right;
    padding-left: 70px;
    text-align: left;
}

.timeline-wrap .timeline-inner .timeline-item .item-inner.right:before{
    right: unset;
    left: 0;
}

.timeline-wrap .timeline-inner .timeline-item .item-inner.right:after{
    right: unset;
    left: 28px;
}

.ventures .box,
.values .box{
    margin-bottom: 20px;
}

.select-data{
    margin-left: 50px;
    padding: 5px 8px;
    border: none;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    background-color: #211a59;
    color: #fff;
    border-radius: 3px;
    font-size: 14px;
    cursor: pointer;
    transition: all ease-in-out .4s;
}

.select-data:hover{
    box-shadow: 0 8px 20px rgba(33, 26, 89, .3);
}

select:focus{
    outline: 0;
}

/*-- Files Lists --*/

.files-list{
    padding-left: 15px;
}

.files-list li{
    width: 31%;
    display: inline-block;
    margin-right: 15px;
    margin-bottom: 10px;
    vertical-align: text-top;
}

.files-list .file-item{
    display: flex;
    padding: 0;
    margin-bottom: 15px;
    overflow: hidden;
    background-color: transparent;
    border-radius: 3px;
    transition: all ease .3s;
    box-shadow: 0 10px 30px rgba(33, 25, 89,.05);
}

.files-list .file-item:hover{
    box-shadow: 0 10px 30px rgba(33, 25, 89, .1);
}

.files-list .file-item .file-meta{
    text-align: left;
    flex: 1;
}

.files-list .file-item .file-meta .type{
    font-size: 14px;
    margin-bottom: 5px;
}

.files-list .file-item >* {
    justify-self: center;
}

.files-list .file-item .file-icon{
    position: relative;
    padding: 10px;
    font-size: 30px;
    background-color: #de4e45;
    color: #fff;
    min-width: 55px;
    border-radius: 1px;
    margin-right: 15px;
    text-align: center;
}

.files-list .file-item .file-icon i{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
}

a, a.disabled:hover, a:disabled:hover,a:hover{
    color: #091a59;
}

.files-list .file-item .file-icon.word{
    background-color: #2a5699;
}

.files-list .file-item .file-icon.xl{
    background-color: #207347;
}

.files-list .file-item .file-meta .name{
    font-size: 14px;
    margin-bottom: 0;
    font-weight: 400;
    margin-top: 5px;
    color: #2b2a29;
    line-height: 18px;
}

.copy-right-section{
    padding: 8px 15px;
    display: flex;
    justify-content: space-between;
}

.copy-right-section ul{
    display: flex;
}

.copy-right-section p span a{
    color: #132361;
    margin-left: 10px;
    border-bottom: 1px solid #132460;
}

.copy-right-section p,
.copy-right-section a{
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: .4px;
    color: #6f6f6f;
    line-height: 22px;
    display: inline-block;
}

.copy-right-section a{
    text-decoration: underline;
    margin: 0 10px;
}

.copy-right-section ul{
    margin-top: -2px;
}

.footer-box address{
    color: #fff;
    font-size: 14px;
    letter-spacing: .6px;
}

.accordion .card .card-header{
    padding: 0;
}

.accordion .card .card-header .card-link{
    padding: 8px 15px;
    display: block;
    position: relative;
    transition: all ease-in-out .4s;
}

.accordion .card .card-header .card-link:hover{
    background-color: #211a59;
    color: #fff;
}

.accordion .card .card-header .card-link:hover i{
    color: #fff;
}

.accordion .card .card-header .card-link i{
    float: right;
    color: rgba(33, 26, 89, .7);
    transition: all ease-in-out .4s;
}

.accordion .card .card-header .card-link.collapsed i{
    transform: rotateZ(180deg) translateY(-4px);
}

.simple-box-wrap{
    margin-bottom: 15px;
}

.simple-box-wrap .title{
    margin-bottom: 5px;
    font-weight: 400;
    color: #211a5a;
    font-size: 18px;
}

.simple-box-wrap address{
    font-size: 14px;
    letter-spacing: .4px;
    font-weight: 400;
    margin-bottom: 0;
    line-height: 22px;
    color: #5f5f5f;
}

/*-- Table Common --*/

.table-common{
    background-color: #fff;
    border-radius: 2px;
    margin-bottom: 0;
    overflow: hidden;
}

.table-common .thead-dark th{
    text-align: left;
    background-color: #2a3062;
    border-color: #2a3062;
    font-family: 'Ubuntu Condensed', sans-serif;
    letter-spacing: .8px;
    font-weight: 500;
    font-size: 16px;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 10px;
}

.table-common td,.table-common p{
    margin-bottom: 0;
    color: #8a8a8a;
    font-weight: 400;
    font-size: 14px;
    padding: 8px 10px !important;
}

.table-common td a{
    color: #211a59;
}

.span15{
    width: 15%;
}