* {
    box-sizing: border-box;
}

.container {
    width: 1170px;
    max-width: 100%;
    position: relative;
    padding: 0;
}

body {
    font-family: 'Kodchasan', sans-serif;
    font-size: 18px;
    color: black;
    overflow-x: hidden;
}

p {
    font-weight: lighter;
    font-size: 14px;
    text-align: justify;
}

h1 {
    font-size: 48px;
    font-weight: bold;
}

h2 {
    font-size: 30px;
    font-weight: bold;
}

h3 {
    font-size: 20px;
    font-weight: bold;
}

h4 {
    font-size: 16px;
    font-weight: bold;
}

.card {
    border: none !important;
    margin: auto;
}

a:hover {
    text-decoration: none !important;
}

.modal-dialog {
    width: 1100px !important;
    position: absolute;
    max-width: 1100px !important;
    margin: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) !important;
}

.modal-content .col-sm-8 {
    padding: 15px 0 18px 10px;
}

.modal-content h4 {
    color: #17469e;
    font-size: 18px;
    margin-bottom: 20px;
}

.modal-content p {
    color: black;
    font-size: 14px;
}

.modal-content button.close {
    margin: 12px 12px 0 0;
}

.flip-card {
    background-color: transparent;
    width: auto;
    height: 215px;
    perspective: 1000px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
    /*box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);*/
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
}

.flip-card-front {
    background-color: transparent;
    color: black;
    z-index: 2;
}

.flip-card-back {
    border-radius: 10px;
    background-color: white;
    color: #185096;
    transform: rotateY(180deg);
    z-index: 1;
}

.flip-card-back h2 {
    font-size: 40px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: 0;
    transform: translate(-50%, -50%);
}


/*---------------------------------------------Header------------------------------------------*/

.doc-header {
    position: fixed;
    background-color: transparent;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 999;
    /* border-bottom: solid 2px; */
    /* border-bottom-color: #f7f7f7; */
    height: 87px;
    transition: all .5s;
}

.doc-header .container a.menu-trigger {
    float: right;
    font-size: 30px;
    padding: 20px 10px;
    display: block;
    transition: all .5s;
}

.doc-header .container a.menu-trigger.onScrollHeader {
    padding: 8px 10px;
}

.doc-header .container a.logo.onScrollHeaderLogo {
    width: 140px;
}

ul.nav-main.onScrollNav {
    top: 58px;
    height: calc(100vh - 57px);
}

.trigger-cross {}

.doc-header .container {
    position: relative;
    height: 100%;
}

.doc-header.onScrollContainer {
    height: 75px !important;
    /* background: #2D85C0; */
    background-image: linear-gradient(to right, #2D85C0, #8FC8E6);
    border-bottom: solid 1px;
    border-bottom-color: #2D85C0;
}

.doc-header.onScrollContainerr {
    height: 75px !important;
    /* background: #2D85C0; */
    background-image: linear-gradient(to right, #2D85C0, #8FC8E6);
    border-bottom: solid 1px;
    border-bottom-color: #2D85C0;
}

.doc-header .container a.menu-trigger {
    float: right;
    font-size: 30px;
    padding: 50px 10px;
    display: none;
}

.doc-header .container a.logo {
    width: 160px;
    display: inline-block;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(0%, -50%);
    -webkit-transform: translate(0%, -50%);
    -moz-transform: translate(0%, -50%);
    -o-transform: translate(0%, -50%);
    -ms-transform: translate(0%, -50%);
    transition: all .5s;
}

.doc-header .container ul.nav {
    float: right;
    overflow: hidden;
    display: inline-block;
    margin: 0px 0px;
}

.doc-header .container ul.nav li {
    float: left;
    padding: 20px 12px;
    list-style-type: none;
}

.doc-header .container ul.nav li a {
    display: block;
    color: white;
    font-size: 14px;
    text-align: center;
    text-decoration: none;
    padding: 10px 10px;
}

.doc-header .container a.logo img {
    width: 100%;
}

.main-header-logo-text {
    position: absolute;
    top: 50%;
    left: 52%;
    transform: translate(-50%, -50%);
    font-size: 20px;
    color: #17469E;
    font-weight: 500;
}

ul.nav-main {
    /*display: none;*/
    display: block;
    position: fixed;
    background-color: white;
    min-width: 400px;
    height: calc(100vh - 83px);
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    right: 0;
    margin-right: -415px;
    top: 83px;
    transition: all .5s;
    padding: 0;
}

ul.nav-main li {
    position: relative;
    float: none;
    /*padding: 12px 16px;*/
    text-decoration: none;
    display: block;
    text-align: left;
    margin: 0;
    border-bottom: 1px solid #eeeeee;
}

ul.nav-main li a {
    display: block;
    color: #17469e;
    font-weight: 500;
    padding: 15px 0px 15px 30px;
    text-decoration: none;
    text-align: left;
}

ul.nav-main li:hover {
    background-color: #008fd5;
}

ul.nav-main li:hover a {
    color: white;
}

ul.nav-main li:hover .sub-nav a {
    color: #17469e;
}

ul.nav-main li .sub-nav li:hover a {
    color: white;
}

ul.nav-main li a:hover,
ul.nav-main li a:focus {
    background-color: transparent;
}

.sub-nav {
    display: none;
    min-width: 329px;
    background: white;
    color: #17469e;
    padding-left: 0;
    transition: all .5s;
}

ul.nav-main li .sub-nav a {
    padding: 15px 0px 15px 60px;
    font-weight: 400;
    color: black !important;
    font-size: 15px;
}

.active {
    display: block !important;
}

.doc-header .container a.menu-trigger .doc-header .container ul.nav {
    display: block;
}


/*----------------------------------Main banner----------------------------------*/

.main-banner {
    position: relative;
    padding: 0px 0px;
    color: white;
    height: 100vh;
}

.main-banner .banner {
    height: 100vh;
}

.bg-banner {
    background-size: cover !important;
    background-position: center;
    background-repeat: no-repeat;
    height: 100%;
}

.main-banner .banner .container {
    height: 100%;
}

.main-banner .banner .row {
    height: 100%;
    margin: 0;
}

.main-banner .banner .col-sm-6 {
    height: 100%;
    padding: 0;
}

.main-banner .banner .col-sm-5 {
    height: 100%;
    padding: 0;
}

.main-banner .banner .col-sm-7 {
    height: 100%;
    padding: 0;
}

.main-banner .banner .col-lg-4,
.main-banner .banner .col-lg-8,
.main-banner .banner .col-md-6,
.main-banner .banner .col-12 {
    height: 100%;
    padding: 0;
}

.main-banner .banner .banner-text {
    position: absolute;
    left: 23%;
    top: 53%;
    right: 10%;
    max-width: 480px;
    transform: translate(0, -50%);
}

.main-banner .banner .banner-text .main-banner-read-more {
    color: #008fd5;
    font-size: 14px;
    margin-top: 15px
}

.main-banner .banner .banner-text .main-banner-read-more:hover {
    text-decoration: none;
}

.main-banner .banner .banner-text .main-banner-read-more:focus {
    text-decoration: none;
    outline: none;
}

.main-banner .banner .container .banner-text span {
    font-size: 17px;
}

.main-banner .arrow-right {
    position: absolute;
    display: block;
    font-size: 30px;
    line-height: 24px;
    color: white;
    top: 53%;
    right: 5%;
    transform: translate(0, -50%);
    text-decoration: none;
    margin-bottom: 16px;
}

.main-banner .arrow-left {
    position: absolute;
    display: block;
    font-size: 30px;
    line-height: 24px;
    color: white;
    top: 53%;
    left: 5%;
    transform: translate(0, -50%);
    text-decoration: none;
    margin-bottom: 16px;
    z-index: 999;
    writing-mode: lr-tb;
}

.main-banner .slick-dots {
    padding-left: 0;
    position: absolute;
    left: 50%;
    bottom: 5px;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
}

.main-banner .slick-dots li {
    display: inline-block;
}

.main-banner .slick-dots li button {
    height: 10px;
    width: 10px;
    margin: 0px 2px;
    border-radius: 50%;
    padding: 0;
    font-size: 0;
    border: 0;
}

.main-banner .slick-active button {
    background-color: #abaea1;
}

hr {
    margin: 0;
    display: block;
    border-style: solid;
    border-width: 1px;
    color: #eaeaea;
}


/*---------------------------------what we do-------------------------------------------*/

.what-we-do {
    background-image: linear-gradient(to right, #ebebeb, #fbfbfb);
    padding: 50px 0;
    text-align: center;
}

.what-we-do .card {
    box-shadow: 0px 2px 17px -3px #888888;
    position: relative;
    border-radius: 10px;
    min-height: 400px;
    background-position: top;
    background-size: cover;
    background-repeat: no-repeat;
    cursor: pointer;
    transition: all 0.5s;
}

.what-we-do .card:hover {
    transform: scale(1.04);
}

.what-we-do .card:hover .shadow {
    display: none;
}

.what-we-do .card .shadow {
    position: absolute;
    top: 0;
    left: 0;
    background-color: #00000066;
    ;
    height: 100%;
    width: 100%;
    border-radius: 10px;
}

.what-we-do .card .card-text {
    position: absolute;
    bottom: 0;
    width: 100%;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    color: white;
    padding: 20px;
    background-color: rgba(0, 143, 213, .8);
    font-size: 18px;
    font-weight: 500;
}

.what-we-do .card .card-text span {
    display: inline-block;
}


/*--------------------------------------counters-----------------------------------------------------*/

.display-counter-none {
    display: block;
    height: 400px;
    background-image: url('../../assets/images/line-01.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.display-counter {
    font-weight: 600;
    display: none;
}

.display-counter .circle {
    position: relative;
    height: 100px;
    width: 100px;
    border: 5px solid #5376b6;
    background: transparent;
    margin: 20px auto 0;
    border-radius: 50%;
}

.display-counter .circle.one {
    border: 5px solid #5376b6;
    color: #5376b6;
}

.display-counter .circle.two {
    border: 5px solid #5376b6;
    color: #5376b6;
}

.display-counter .circle.three {
    border: 5px solid #178fd1;
    color: #178fd1;
}

.display-counter .circle.four {
    border: 5px solid #51abdd;
    color: #51abdd;
}

.display-counter .circle.five {
    border: 5px solid #5376b6;
    color: #5376b6;
}

.display-counter .circle .circle-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 14px;
    font-weight: 600;
    color: #5376b6;
}

.counters {
    position: relative;
    padding: 50px 0;
    text-align: center;
}

.counters .counter-disclamer {
    position: absolute;
    right: 40px;
    bottom: 15px;
    color: #5376b6;
    font-size: 12px;
    font-weight: 500;
}

.counters img {
    width: 100%;
    background: white;
}

.counters .val {
    width: 160px;
    text-align: center;
    font-size: 24px;
    font-weight: 600;
}

.counters .val1 {
    color: #5376b6;
    position: absolute;
    display: inline-block;
    top: 28%;
    left: 4.6%;
}

.counters .val2 {
    color: #5376b6;
    position: absolute;
    display: inline-block;
    top: 28%;
    left: 37.5%;
}

.counters .val3 {
    color: #178fd1;
    position: absolute;
    display: inline-block;
    top: 28%;
    left: 69.8%;
}

.counters .val4 {
    color: #51abdd;
    position: absolute;
    display: inline-block;
    top: 65%;
    left: 21.5%;
}

.counters .val5 {
    color: #5376b6;
    position: absolute;
    display: inline-block;
    top: 65%;
    left: 53.8%;
}

.counters .val1-text {
    color: #5376b6;
    position: absolute;
    display: inline-block;
    top: -3%;
    left: 8.6%;
    font-weight: 600
}

.counters .val2-text {
    color: #5376b6;
    position: absolute;
    display: inline-block;
    top: -3.4%;
    left: 38.5%;
    font-weight: 600
}

.counters .val3-text {
    color: #178fd1;
    position: absolute;
    display: inline-block;
    top: -4%;
    left: 69.8%;
    font-weight: 600
}

.counters .val4-text {
    color: #51abdd;
    position: absolute;
    display: inline-block;
    top: 96%;
    left: 22.5%;
    font-weight: 600
}

.counters .val5-text {
    color: #5376b6;
    position: absolute;
    display: inline-block;
    top: 95.8%;
    left: 53%;
    font-weight: 600
}


/*--------------------------------------News Events-----------------------------------------------------*/

.news-events {
    background-image: linear-gradient(to right, #1083b9, #194f95);
    padding: 50px 0;
    text-align: center;
}

.news-events a:hover {
    text-decoration: none;
}

.news-events .card {
    position: relative;
    text-align: left !important;
    box-shadow: 0px 2px 17px -3px #17599c;
    /*border-radius: 10px;*/
    transition: all .2s ease-in-out;
    cursor: pointer;
}

.news-events .card:hover {
    transform: scale(1.05);
}


/*.news-events .card:hover img, .news-events .card:hover card-text {
    !*transform: scale(1.03, 1.06);    *!
    opacity: .4;
}*/

.news-events .onHoverBackground {
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(21, 69, 159, 0.5);
    width: 100%;
    height: 100%;
    display: none;
    /*border-radius: 10px;*/
}

.news-events .card:hover .onHover,
.news-events .card:hover .onHoverBackground {
    display: block;
}

.news-events .card .onHover {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
    background-color: white;
    color: #15459f;
    opacity: 1;
    z-index: 99999999999;
    font-size: 18px;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 5px;
}

.news-events .card img {
    width: 100%;
}

.news-events .card .card-text {
    width: 100%;
    /*border-bottom-left-radius: 10px;*/
    /*border-bottom-right-radius: 10px;*/
    color: #989797;
    padding: 20px;
    background-color: white;
    font-size: 12px;
    font-weight: 400;
    max-height: 290px;
    min-height: 290px;
}

.news-events .card h4 {
    color: #000;
    font-size: 20px;
    font-weight: 500;
}

.news-events .card h5 {
    font-size: 18px;
    font-weight: 500;
}

.news-events .card p {
    line-height: 1.7;
    font-size: 12px;
}

.news-events .card .event-tag {
    position: absolute;
    top: -2px;
    left: 0px;
    border-top-left-radius: 10px;
    color: white;
    padding: 8px 12px;
    font-size: 12px;
    font-weight: 500;
}

.news-events .card .event-tag.event {
    background-color: #15459f;
}

.news-events .card .event-tag.news {
    background-color: #1370ac;
}

.news-events .arrow-right {
    position: absolute;
    top: -7%;
    right: 1%;
    display: block;
    width: 25px;
    font-size: 30px;
    line-height: 24px;
    color: white;
    text-decoration: none;
    margin-bottom: 16px;
}

.news-events .arrow-right img,
.news-events .arrow-left img {
    width: 100%;
}

.news-events .arrow-left {
    position: absolute;
    top: -7%;
    right: 5%;
    display: block;
    width: 25px;
    font-size: 30px;
    line-height: 24px;
    color: white;
    text-decoration: none;
    margin-bottom: 16px;
    z-index: 999;
    writing-mode: lr-tb;
}

.news-events .slick-dots {
    padding-left: 0;
    position: absolute;
    left: 50%;
    bottom: -40px;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
}

.news-events .slick-dots li {
    display: inline-block;
}

.news-events .slick-dots li button {
    height: 10px;
    width: 10px;
    margin: 0px 2px;
    border-radius: 50%;
    padding: 0;
    font-size: 0;
    border: 0;
}

.news-events .slick-active button {
    background-color: #abaea1;
}


/*----------------------------Shareholders----------------------------------------------------------*/

.shareholders {
    position: relative;
    padding: 50px 0;
    text-align: center;
}

.shareholders .shareholder-disclamer {
    position: absolute;
    right: 40px;
    bottom: 15px;
    display: inline-block;
    color: #5376b6;
    font-size: 12px;
    font-weight: 500;
}

.shareholder-img {
    height: 215px;
    cursor: pointer;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    -webkit-transition: width 2s;
    /* For Safari 3.1 to 6.0 */
    transition: all .2s ease-in-out;
}

.shareholder-img:hover {
    transform: scale(1.12, 1.15);
}


/*
.shareholder1 {
    background-image: url('../../assets/images/shareholder1.png');
}

.shareholder2 {
    background-image: url('../../assets/images/shareholder2.png');
}

.shareholder3 {
    background-image: url('../../assets/images/shareholder3.png');
}*/

.shareholder1 {
    background-image: url('../../assets/images/shareholder1-color.png');
}

.shareholder2 {
    background-image: url('../../assets/images/shareholder2-color.png');
}

.shareholder3 {
    background-image: url('../../assets/images/shareholder3-color.png');
}

.shareholder1-grey {
    background-image: url('../../assets/images/shareholder1.png');
}

.shareholder2-grey {
    background-image: url('../../assets/images/shareholder2.png');
}

.shareholder3-grey {
    background-image: url('../../assets/images/shareholder3.png');
}


/*-------------------------------Get In Touch---------------------------------------------------------*/

.get-in-touch {
    /*background-color: #102850;*/
    background-image: linear-gradient(to right, #1083b9, #194f95);
    padding: 50px 0 25px;
    text-align: center;
}

.get-in-touch input {
    background: transparent;
    color: white;
    border: 1px solid #8f9bad;
    padding: 13px 40px;
    border-radius: 4px;
    width: 100%;
    font-size: 14px;
}

.get-in-touch input::placeholder {
    color: #8f9bad;
}

.get-in-touch input:focus {
    outline: none;
}

.get-in-touch .social {
    padding-top: 60px
}

.get-in-touch .subscribe-btn {
    background-color: #102850;
    color: white;
    border: none;
    padding: 11px 40px;
    font-size: 14px;
    width: 100%;
}

.get-in-touch ul {
    color: white;
    padding: 0;
    text-align: left;
    display: inline-block;
}

.get-in-touch ul li {
    padding: 8px 0;
    list-style: none;
}

.get-in-touch ul li a {
    color: white;
    /*margin: 0 5px;*/
}

.get-in-touch ul li a img {
    transition: 0.3s all;
}

.get-in-touch ul li a img:hover {
    transform: translateY(-8px);
}

.get-in-touch ul li a:hover {
    text-decoration: none;
}

.get-in-touch .social-media-icons img {
    margin-right: 4px;
}

.copyright {
    position: relative;
    border-top: 1px solid #8f9bad;
    text-align: center;
    /*background-color: #102850;*/
    background-image: linear-gradient(to right, #1083b9, #194f95);
    padding: 30px 0;
    color: white;
    font-size: 14px;
}

.copyright .social-icons {
    width: 35px;
}

.copyright .last-motify {
    position: absolute;
    right: 40px;
    bottom: 15px;
    color: white;
    display: inline-block;
    font-size: 12px;
    font-weight: 500;
}

.service-desk {
    text-align: center;
    padding: 50px 0;
}

.service-desk img {
    width: 700px;
}


/*--------------------------------------About Banner-----------------------------------------------------*/

.about-banner {
    background-size: cover !important;
    background-position: top;
    background-repeat: no-repeat;
    text-align: center;
    color: white;
    padding: 120px 0 110px 0;
    /* margin-top: 60px; */
}


/*--------------------------------------Company Profile-----------------------------------------------------*/

.company-profile {
    position: relative;
    /*background-image: linear-gradient(white, #cacaca);*/
    max-height: 398px;
}

.company-profile .profile {
    background: #fff;
    position: relative;
    top: -36px;
    padding: 16px 35px 35px;
    box-shadow: 0px -4px 6px -3px #888888;
    border-top: 4px solid #0F8DC0;
}

.company-profile .profile-text h4 {
    margin-bottom: 20px;
    color: #17479f;
}

.company-profile .profile-text p {
    font-weight: 500;
}


/*--------------------------------------Financing Solutions-----------------------------------------------------*/

.financing-solutions {
    position: relative;
    background-image: linear-gradient(white, #cacaca);
    max-height: 540px;
}

.financing-solutions .responsive-show {
    display: none;
}

.financing-solutions .responsive-hide {
    display: flex;
}

.financing-solutions .row {
    text-align: center;
}

.financing-solutions .card {
    background: #F8F8F8;
    padding: 20px;
    min-height: 172px;
    margin: 10px 0;
    display: block;
    border: none;
}

.financing-solutions .card:hover p {
    color: white;
}

.financing-solutions .card:hover {
    background: #1187BC;
}

.financing-solutions .card .financing-img {
    width: 80px;
    height: 70px;
    margin: auto;
    background-size: auto;
    background-position: center;
    background-repeat: no-repeat;
}

.financing-solutions .card:hover .financing-img.f1 {
    background-image: url('../../assets/images/financing/1-icon.png') !important;
}

.financing-solutions .card:hover .financing-img.f2 {
    background-image: url('../../assets/images/financing/2-icon.png') !important;
}

.financing-solutions .card:hover .financing-img.f3 {
    background-image: url('../../assets/images/financing/3-icon.png') !important;
}

.financing-solutions .card:hover .financing-img.f5 {
    background-image: url('../../assets/images/financing/5-icon.png') !important;
}

.financing-solutions .card:hover .financing-img.f6 {
    background-image: url('../../assets/images/financing/6-icon.png') !important;
}

.financing-solutions .col-sm-4 {
    padding: 0 5px;
}

.financing-solutions .col-sm-6 {
    padding: 0 30px;
}

.financing-solutions .card p {
    font-size: 12px;
    margin-top: 10px;
    font-weight: 500;
    text-align: center;
}

.financing-solutions .profile {
    background: #fff;
    position: relative;
    top: -36px;
    padding: 16px 35px 35px;
    border-top: 4px solid #0F8DC0;
    box-shadow: 0px -4px 10px -3px #888888;
}

.profile:before,
.profile:after {
    content: "";
    position: absolute;
    background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0F8DC0), to(transparent));
    background-image: -webkit-linear-gradient(#0F8DC0, transparent);
    background-image: -moz-linear-gradient(#0F8DC0, transparent);
    background-image: -o-linear-gradient(#0F8DC0, transparent);
    background-image: linear-gradient(#0F8DC0, transparent);
    top: -3px;
    bottom: -3px;
    width: 3px;
}

.profile:before {
    left: -3px;
}

.profile:after {
    right: -3px;
}

.financing-solutions h4 {
    margin-bottom: 20px;
    color: #17479f;
    text-align: left;
}

.financing-solutions .profile-text p {
    font-weight: 500;
}

.financing-solutions ul {
    font-size: 13px;
    font-weight: 500;
    border-bottom: 1px solid #f2f2f2;
}

.financing-solutions li {
    margin-bottom: 0;
    list-style: none;
}

.financing-solutions .nav-item .nav-link {
    color: #cdcbcb;
}

.financing-solutions .nav-item .nav-link.show {
    color: #218fc0;
    border-bottom: 2px solid #218fc0;
}


/*
.financing-solutions li:before {
    content: url(../images/strategic-list-style.png);
    position: absolute;
    left: 35px;
}
*/

.financing-solutions .profile-text input {
    background: transparent;
    color: black;
    border: 1px solid #c4cddac7;
    padding: 13px 32px;
    border-radius: 4px;
    width: 100%;
    height: 55px;
    font-size: 14px;
    margin-top: 15px;
}

.financing-solutions .profile-text textarea {
    background: transparent;
    color: black;
    border: 1px solid #c4cddac7;
    padding: 13px 32px;
    border-radius: 4px;
    width: 100%;
    font-size: 14px;
    margin-top: 15px;
}

.financing-solutions .profile-text input:focus,
.financing-solutions .profile-text textarea:focus {
    outline: none;
}

.financing-solutions .profile-text .contact-submit {
    background-color: #0090d2;
    padding: 14px 75px;
    font-size: 18px;
    color: white;
    font-weight: 500;
    border: none;
    width: 100%;
    margin-top: 15px;
}

.financing-solutions .apply-job {
    display: block;
    width: 100%;
    background-color: #0090d2 !important;
    padding: 8px 10px;
    font-size: 14px;
    color: white !important;
    font-weight: 500;
    border: none;
    cursor: pointer;
}

.financing-solutions .view-detail {
    background-color: #b0b0b0;
    width: 100%;
    padding: 8px 30px;
    font-size: 14px;
    color: white;
    font-weight: 500;
    border: none;
    margin-top: 8px;
    cursor: pointer;
}

.financing-solutions .job-card {
    position: relative;
    width: 100%;
    padding: 28px 40px;
    box-shadow: 0px 0px 11px -6px #888888;
}

.financing-solutions .job-card .job-btn {
    display: inline-block;
    width: 160px;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translate(0, -50%);
}


/*--------------------------------------Microfinance Products-----------------------------------------------------*/

.microfinance-products {
    position: relative;
    background-image: linear-gradient(white, #cacaca);
    max-height: 846px;
}

.microfinance-products .profile {
    background: #fff;
    position: relative;
    top: -36px;
    padding: 16px 35px 35px;
    border-top: 4px solid #0F8DC0;
    box-shadow: 0px -4px 10px -3px #888888;
}

.microfinance-products .microfinance-img {}

.microfinance-products .microfinance-img img {
    width: 100%;
}

.microfinance-products .card {
    box-shadow: 0px 0px 15px -8px #888888;
}

.microfinance-products .card:hover {
    box-shadow: 0px 0px 15px -4px #888888;
}

.microfinance-products .microfinance-text {
    position: relative;
    padding: 33px 20px 20px;
    min-height: 117px;
}

.microfinance-products .microfinance-text img {
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translate(-50%, 0);
}

.microfinance-products .microfinance-text p {
    font-weight: 500;
    font-size: 16px;
}

.microfinance-products .profile-text h4 {
    margin-bottom: 20px;
    color: #17479f;
}

.microfinance-products .profile-text p {
    font-weight: 500;
    text-align: center;
}

.microfinance-products ul {
    font-size: 14px;
    font-weight: 500;
}

.microfinance-products li {
    margin-bottom: 25px;
    list-style: none;
}

.microfinance-products li:before {
    content: url(../images/strategic-list-style.png);
    position: absolute;
    left: 35px;
}


/*--------------------------------------Partners Impacts-----------------------------------------------------*/

.partners-impact {
    position: relative;
    background-image: linear-gradient(white, #cacaca);
    max-height: 483px;
}

.partners-impact .profile {
    border-top: 4px solid #0F8DC0;
}

.partners-impact .row {
    margin-top: 30px;
}

.partners-impact .row .col-sm-4 {
    /*cursor: pointer;*/
    transition: all .5s;
}


/*.partners-impact .row .col-sm-4:hover {
    transform: scale(1.08) translate(30px, 0);
}*/

.partners-impact .row .impact-images {
    width: 12%;
    height: auto;
    vertical-align: middle;
}

.partners-impact .profile {
    background: #fff;
    position: relative;
    top: -36px;
    padding: 16px 35px 35px;
    box-shadow: 0px -4px 10px -3px #888888;
}

.partners-impact h4 {
    margin-bottom: 20px;
    color: #17479f;
}

.partners-impact .profile-text p {
    font-weight: 600;
    font-size: 16px;
    line-height: 1.5;
    text-align: left;
    margin-left: 15px !important;
}

.partners-impact .profile-text .card {
    width: 28rem;
    margin: auto;
}

.partners-impact .profile-text .card img {
    width: 68%;
    margin: auto;
    display: inherit;
}

.partners-impact ul {
    font-size: 14px;
    font-weight: 500;
}

.partners-impact li {
    margin-bottom: 25px;
    list-style: none;
}

.partners-impact li:before {
    content: url(../images/strategic-list-style.png);
    position: absolute;
    left: 16px;
}


/*--------------------------------------Core values-----------------------------------------------------*/

.core-values {}

.core-values .card {
    width: 200px;
    padding: 15px;
    height: max-content;
    background: white;
    transition: all .5s;
}

.core-values .card:hover {
    box-shadow: 0 0 17px -6px #888888;
}

.core-values img {
    width: 100%;
}

.core-values h4 {
    color: #1343A1;
    margin-top: 6px
}

.core-values p {
    color: #000;
    font-size: 12px;
    font-weight: 500;
    text-align: left;
}


/*--------------------------------------Thematic Areas-----------------------------------------------------*/

.company-profile-thematic {
    position: relative;
    background-image: linear-gradient(white, #cacaca);
    max-height: 424px;
}

.thematic-areas {
    position: relative;
    top: -36px;
    padding: 16px 35px 35px;
    background: #F9F9F9;
    /*border-top: 4px solid #0F8DC0;*/
    /*box-shadow: 0px -4px 10px -3px #888888;*/
}


/*.thematic-areas:before, .thematic-areas:after {
    content: "";
    position: absolute;
    background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0F8DC0), to(transparent));
    background-image: -webkit-linear-gradient(#0F8DC0, transparent);
    background-image: -moz-linear-gradient(#0F8DC0, transparent);
    background-image: -o-linear-gradient(#0F8DC0, transparent);
    background-image: linear-gradient(#0F8DC0, transparent);
    top: -3px;
    bottom: -3px;
    width: 3px;
}

.thematic-areas:before {
    left: -3px;
}

.thematic-areas:after {
    right: -3px;
}*/

.thematic-areas h3 {
    color: #15459f;
    text-align: center;
    /*margin-bottom: 55px;*/
    margin-bottom: 35px;
}

.thematic-areas .card {
    transition: 0.5s all;
}

.thematic-areas .card:hover {
    box-shadow: 0 0 17px -6px #888888;
    transform: scale(1.02) translateY(-5px);
}

.thematic-areas .thematic-img {
    position: relative;
}

.thematic-areas .thematic-img img {
    width: 100%;
}

.thematic-areas .thematic-text {
    border-top: 0;
    border-left: 2px solid #F6F6F6;
    border-right: 2px solid #F6F6F6;
    border-bottom: 2px solid #F6F6F6;
    padding: 10px 12px 2px;
    background: #F9F9F9;
}

.thematic-areas .thematic-text h4 {
    margin-bottom: 20px;
    color: #17479f;
}

.thematic-areas .thematic-text p {
    font-weight: 500;
    font-size: 11px;
    text-align: left;
}

.thematic-areas .thematic-img .card-text {
    position: absolute;
    bottom: 0;
    width: 100%;
    color: white;
    padding: 8px 20px;
    background-color: #008fd5d1;
    font-size: 14px;
    font-weight: 600;
}

.thematic-areas .thematic-img .card-text span {
    display: inline-block;
}


/*--------------------------------------Strategic goals-----------------------------------------------------*/

.company-profile-strategic {
    position: relative;
    /*background: #fff;*/
    max-height: 528px;
    background-image: linear-gradient(white, #cacaca);
}

.strategic {
    position: relative;
    top: -36px;
    padding: 16px 35px 35px;
    background: #008CC2;
    /*border-top: 4px solid #0F8DC0;*/
    /*box-shadow: 0px -4px 10px -3px #888888;*/
}


/*

.strategic:before, .strategic:after {
    content: "";
    position: absolute;
    background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0F8DC0), to(transparent));
    background-image: -webkit-linear-gradient(#0F8DC0, transparent);
    background-image: -moz-linear-gradient(#0F8DC0, transparent);
    background-image: -o-linear-gradient(#0F8DC0, transparent);
    background-image: linear-gradient(#0F8DC0, transparent);
    top: -3px;
    bottom: -3px;
    width: 3px;
}

.strategic:before {
    left: -3px;
}

.strategic:after {
    right: -3px;
}
*/

.strategic .row {
    margin-top: 80px;
}

.strategic .card {
    position: relative;
    padding: 55px 20px 20px;
    transition: 0.5s all;
    background: #008CC2;
    border: 2px solid #4f96b6de !important;
    color: white;
    min-height: 167px;
}

.strategic .card:hover {
    box-shadow: 0 0 17px -6px #888888;
    transform: scale(1.02) translateY(-5px);
    border: 2px solid #F6F6F6 !important;
    background: white;
    color: #000;
}

.strategic .card p {
    font-size: 12px;
    font-weight: 500;
    text-align: center;
}

.strategic .card .strategic-img {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translate(-50%, 0);
}

.strategic h3 {
    color: white;
    text-align: center;
    margin-bottom: 55px;
}

.strategic ul {
    font-size: 14px;
    font-weight: 500;
    text-align: justify;
}

.strategic li {
    margin-bottom: 25px;
    list-style: none;
    position: relative;
}

.strategic li:before {
    content: url(../images/strategic-list-style.png);
    position: absolute;
    left: -30px;
    top: 2px;
}


/*--------------------------------------Salient Features-----------------------------------------------------*/

.company-profile-salient {
    position: relative;
    background: #fff;
    max-height: 397px;
}

.salient {
    background: #fff;
    position: relative;
    top: -36px;
    /*padding: 16px 35px 35px;*/
    /*box-shadow: 0px -4px 10px -3px #888888;*/
}

.salient h3 {
    color: #0086BE;
    text-align: center;
    margin-bottom: 55px;
}

.salient .card {
    position: relative;
    padding: 20px 20px 20px 100px;
    border: 1px solid #3ea1d117 !important;
    transition: all 0.5s;
}

.salient .card:hover {
    box-shadow: 0 0 17px -6px #888888;
}

.salient .card img {
    position: absolute;
    left: 26px;
    top: 50%;
    transform: translate(0, -50%);
}

.salient .card p {
    margin: 0;
    font-size: 12px;
    font-weight: 500;
}

.salient ul {
    font-size: 14px;
    font-weight: 500;
    text-align: justify;
}

.salient li {
    margin-bottom: 25px;
    list-style: none;
    position: relative;
}

.salient.site-map ul {
    position: relative;
    text-align: justify;
    ;
}

.salient.site-map li {
    margin-bottom: 20px;
    margin-top: 15px;
    list-style: none;
}

.salient.site-map li a {
    color: #000;
}

.salient li:before {
    content: url(../images/strategic-list-style.png);
    position: absolute;
    left: -30px;
    top: 2px;
    /*transform: translate(0,-50%);*/
}


/*--------------------------------------Shareholders-----------------------------------------------------*/

.company-profile-share-holder {
    position: relative;
    background: #fff;
    max-height: 883px;
    background-image: linear-gradient(white, #cacaca);
}

.share-holder {
    background: #fff;
    position: relative;
    top: -36px;
    padding: 16px 35px 35px;
    border-top: 4px solid #0F8DC0;
    box-shadow: 0px -4px 10px -3px #888888;
}

.share-holder:before,
.share-holder:after {
    content: "";
    position: absolute;
    background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0F8DC0), to(transparent));
    background-image: -webkit-linear-gradient(#0F8DC0, transparent);
    background-image: -moz-linear-gradient(#0F8DC0, transparent);
    background-image: -o-linear-gradient(#0F8DC0, transparent);
    background-image: linear-gradient(#0F8DC0, transparent);
    top: -3px;
    bottom: -3px;
    width: 3px;
}

.share-holder:before {
    left: -3px;
}

.share-holder:after {
    right: -3px;
}


/*
.share-holder img{
    height: auto;
    width: 360px;
}*/

.share-holder h3 {
    color: #15459f;
    text-align: center;
    margin-bottom: 26px;
}

.share-holder h4 {
    text-align: left;
    color: #15459f;
    margin: 30px 0 10px;
}

.share-holder p {
    text-align: justify;
}

.share-holder ul {
    font-size: 14px;
    font-weight: 500;
    text-align: justify;
}

.share-holder li {
    margin-bottom: 25px;
    list-style: none;
    position: relative;
}

.share-holder li:before {
    content: url(../images/strategic-list-style.png);
    position: absolute;
    left: -30px;
    top: 50%;
    transform: translate(0, -50%);
}


/*------------------------------------------About Images-------------------------------------------------*/

.about-images {
    height: 380px;
}

.about-images .col-sm-4,
.about-images .row {
    height: 100%;
    background-position: top;
    background-size: cover;
    background-repeat: no-repeat;
}


/*--------------------------------------Project Overview-----------------------------------------------------*/

.project-overview {
    position: relative;
    background: #fff;
    max-height: 312px;
}

.project-overview .profile {
    background: #fff;
    position: relative;
    top: -36px;
    padding: 16px 35px 35px;
    border-top: 4px solid #0F8DC0;
    box-shadow: 0px -4px 10px -3px #888888;
}

.project-overview .profile-text h3 {
    margin: 0;
    color: #17479f;
}

.project-overview .profile-text p {
    font-weight: 500;
    margin: 0;
}

.project-overview .story-images {
    /*padding-left: 5px;*/
    /*padding-right: 5px;*/
    padding: 0 1px;
}

.project-overview .story-images img {}

.project-overview .story-images img:hover {}


/*--------------------------------------Project Results-----------------------------------------------------*/

.project-results {
    padding: 50px 0;
    background-color: #f9f9f9;
}

.project-results h3 {
    color: #15459f;
    margin-bottom: 40px;
}

.project-results p {
    font-weight: 500;
}


/*--------------------------------------Conclusion-----------------------------------------------------*/

.conclusion {
    padding: 40px 0;
    position: relative;
    background: #fff;
}

.conclusion .profile-text h3 {
    margin-bottom: 35px;
    color: #17479f;
}

.conclusion .profile-text p {
    font-weight: 500;
}


/*-------------------------------------Our team-----------------------------------------------------*/

.our-team {
    position: relative;
    background-image: linear-gradient(white, #cacaca);
    max-height: 1212px;
}

.our-team .profile {
    background: #fff;
    position: relative;
    top: -36px;
    padding: 16px 35px 35px;
    border-top: 4px solid #0F8DC0;
    box-shadow: 0px -4px 10px -3px #888888;
    width: 100%;
}

.our-team .profile-text h3 {
    margin-bottom: 40px;
    color: #17479f;
}

.our-team .profile-text p {
    font-weight: 500;
}

.our-team .card {
    position: relative;
    text-align: left !important;
    box-shadow: 0px 2px 6px -3px #dbdbdb;
    ;
    border-radius: 10px;
    transition: all .2s ease-in-out;
    cursor: pointer;
}

.our-team .card img {
    width: 100%;
}

.our-team .card .card-img {
    position: relative;
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
}

.our-team .card .card-img .card-hover {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 99;
    background: rgba(60, 60, 60, 0.4);
    color: white;
    font-size: 12px;
    text-align: justify;
    width: 100%;
    height: 100%;
}

.our-team .card:hover .card-hover {
    display: none;
}

.our-team .card .card-text {
    width: 100%;
    color: #989797;
    padding: 12px 20px;
    background-color: white;
    font-size: 12px;
    font-weight: 400;
    max-height: 90px;
}

.our-team .profile .col-sm-4,
.our-team .profile .col-sm-3 {
    padding: 2px;
}

.our-team .card .card-text h4 {
    text-align: center;
    color: #17469e;
}

.our-team .card .card-text p {
    color: #a5a9ac;
    text-align: center;
}


/*-------------------------------------team-management----------------------------------------------------*/

.our-team-members {
    position: relative;
    background-image: linear-gradient(white, #cacaca);
    max-height: 3769px;
}

.our-team-members.financial {
    max-height: 1601px;
}

.our-team-members.publications {
    max-height: 1910px;
}

.our-team-members.events-news {
    /*max-height: 2305px;*/
    max-height: 2366px;
}

.our-team-members.financial a {
    text-decoration: none;
}

.team-management {
    background: #f9f9f9;
    position: relative;
    top: -36px;
    padding: 16px 35px 35px;
    border-top: 4px solid #0F8DC0;
    box-shadow: 0px -4px 10px -3px #888888;
    width: 100%;
}

.team-management:before,
.team-management:after {
    content: "";
    position: absolute;
    background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0F8DC0), to(transparent));
    background-image: -webkit-linear-gradient(#0F8DC0, transparent);
    background-image: -moz-linear-gradient(#0F8DC0, transparent);
    background-image: -o-linear-gradient(#0F8DC0, transparent);
    background-image: linear-gradient(#0F8DC0, transparent);
    top: -3px;
    bottom: -3px;
    width: 3px;
}

.team-management:before {
    left: -3px;
}

.team-management:after {
    right: -3px;
}

.team-management h3 {
    color: #15459f;
    margin-bottom: 40px;
}

.team-management .card .event-tag {
    border-top-left-radius: 0;
    top: 4px;
}

.team-management .card {
    position: relative;
    text-align: left !important;
    box-shadow: 0px 2px 6px -3px #dbdbdb;
    ;
    border-radius: 10px;
    transition: all .2s ease-in-out;
    cursor: pointer;
}

.team-management .card:focus {
    outline: none !important;
}

.team-management .card img {
    width: 100%;
}

.team-management .card {
    position: relative;
    text-align: left !important;
    box-shadow: 0px 2px 6px -3px #dbdbdb;
    ;
    border-radius: 10px;
    transition: all .2s ease-in-out;
    cursor: pointer;
}

.team-management .card img {
    width: 100%;
}

.team-management .card .card-img {
    position: relative;
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
}

.team-management .card .card-img .card-hover {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 99;
    background: rgba(60, 60, 60, 0.4);
    color: white;
    font-size: 12px;
    text-align: justify;
    width: 100%;
    height: 100%;
}

.team-management .card:hover .card-hover {
    display: none;
}

.team-management .card .card-text {
    width: 100%;
    color: #989797;
    padding: 12px 20px;
    background-color: white;
    font-size: 12px;
    font-weight: 400;
    max-height: 100px;
    min-height: 100px;
}

.team-management .profile .col-sm-4 {
    padding: 2px;
}

.team-management .card .card-text h4 {
    color: #17469e;
    text-align: center;
}

.team-management .card .card-text p {
    color: #a5a9ac;
    text-align: center;
}

.team-management .card .card-text.financial {
    min-height: 90px;
}

.team-management .col-sm-4,
.team-management .col-sm-6,
.team-management .col-sm-3 {
    padding: 2px;
}

.team-management .row {
    padding: 0 15px;
}

.team-management .arrow-right {
    position: absolute;
    display: block;
    font-size: 30px;
    line-height: 24px;
    color: white;
    top: 53%;
    right: -5%;
    transform: translate(0, -50%);
    text-decoration: none;
    margin-bottom: 16px;
}

.team-management .arrow-left {
    position: absolute;
    display: block;
    font-size: 30px;
    line-height: 24px;
    color: white;
    top: 53%;
    left: -5%;
    transform: translate(0, -50%);
    text-decoration: none;
    margin-bottom: 16px;
    z-index: 999;
    writing-mode: lr-tb;
}

.team-management .slick-dots {
    padding-left: 0;
    position: absolute;
    left: 50%;
    bottom: -55px;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
}

.team-management .slick-dots li {
    display: inline-block;
}

.team-management .slick-dots li button {
    height: 10px;
    width: 10px;
    margin: 0px 2px;
    border-radius: 50%;
    padding: 0;
    font-size: 0;
    border: 0;
}

.team-management .slick-dots li button:focus {
    outline: none;
}

.team-management .slick-active button {
    background-color: #abaea1;
}


/*--------------------------------------News Events Detail-----------------------------------------------------*/

.news-events-detail {
    position: relative;
    top: -36px;
    background-image: url('../../assets/images/event-detail-background.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    /*background: #fff;*/
    /*max-height: 800px;*/
}

.news-events-detail .profile-img {
    position: relative;
}

.event-tag {
    position: absolute;
    top: 1px;
    left: 0px;
    border-top-left-radius: 10px;
    color: white;
    padding: 8px 12px;
    font-size: 12px;
    font-weight: 500;
}

.event-tag.event {
    background-color: #15459f;
}

.event-tag.news {
    background-color: #1370ac;
}

.news-events-detail .profile-img img {
    width: 100%;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.news-events-detail .profile-img iframe {
    width: 100%;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.news-events-detail .profile {
    background: #fff;
    position: relative;
    padding: 15px 15px 0;
    border-top: 4px solid #0F8DC0;
    box-shadow: 0px -4px 14px -6px #888888;
}

.news-events-detail .profile-text {
    padding: 20px 15px 30px;
}

.news-events-detail .profile-text h3 {
    margin-bottom: 40px;
    color: #17479f;
}

.news-events-detail .profile-text p {
    font-weight: 500;
}


/*--------------------------------------Project Overview-----------------------------------------------------*/

.contact-us {
    position: relative;
    background-image: linear-gradient(white, #cacaca);
    max-height: 611px;
}

.contact-us .profile {
    background: #fff;
    position: relative;
    top: -36px;
    border-top: 4px solid #0F8DC0;
    box-shadow: 0px 1px 15px -6px #888888;
}

.contact-us h3 {
    margin-bottom: 40px;
    color: black;
}

.contact-us .address span {
    font-size: 17px;
    font-weight: 600;
    color: black;
    display: inline-block;
}

.contact-us p {
    font-weight: 400;
    color: black;
    display: inline;
    padding-left: 6px;
}

.contact-us ul {
    padding: 25px 0px 25px 40px;
    margin-bottom: 0;
}

.contact-us li {
    position: relative;
    list-style: none;
    margin-bottom: 30px;
}

.contact-us li img {
    position: absolute;
    left: -40px;
    top: 0;
}

.contact-us li:last-child {
    margin-bottom: 0;
}

.contact-us input {
    background: transparent;
    color: black;
    border: 1px solid #c4cddac7;
    padding: 13px 32px;
    border-radius: 4px;
    width: 49%;
    height: 55px;
    font-size: 14px;
    margin-top: 15px;
}

.contact-us textarea {
    background: transparent;
    color: black;
    border: 1px solid #c4cddac7;
    padding: 13px 32px;
    border-radius: 4px;
    width: 99%;
    font-size: 14px;
    margin-top: 15px;
    resize: none;
}

.contact-us input:focus {
    outline: none;
}

.contact-us .contact-submit {
    width: 99%;
    background-color: #0090d2;
    margin-top: 18px;
    padding: 16px;
    font-size: 18px;
    color: white;
    font-weight: 500;
    border: none;
}

.modal-dialog {
    max-width: 1000px !important;
}

.modal-dialog.less-width {
    max-width: 500px !important;
}


/*-------------------------------------------------------------------------------------------*/


/*MEdia tags*/


/*
@media (max-width: 3200px) {
    .counters .val {
        width: 300px;
    }
}
@media (max-width: 2500px) {
    .counters .val {
        width: 208px;
    }
}
@media (max-width: 2000px) {
    .counters .val {
        width: 188px;
    }
}
@media (max-width: 1700px) {
    .counters .val {
        width: 160px;
    }
}

@media (max-width: 1299px) {
    .counters .val {
        width: 135px;
    }
}*/

@media (max-width: 1199px) {
    .doc-header .container a img {
        width: 150px;
        padding-left: 10px;
    }
    .main-banner .banner .banner-text {
        position: relative;
        left: 12%;
        padding: 0px 12px;
        max-width: 444px;
    }
    .our-team {
        max-height: max-content;
    }
    .project-overview {
        max-height: max-content;
    }
    .company-profile {
        max-height: max-content;
    }
    .company-profile-thematic {
        max-height: max-content;
    }
    .company-profile-salient {
        max-height: max-content;
    }
    .company-profile-strategic {
        max-height: max-content;
    }
    .financing-solutions {
        max-height: max-content !important;
    }
    .microfinance-products {
        max-height: max-content !important;
    }
    .partners-impact {
        max-height: max-content;
    }
    .news-events-detail {
        max-height: max-content;
    }
    .our-team-members.financial {
        max-height: max-content;
    }
    .our-team-members.publications {
        max-height: max-content;
    }
    .our-team-members.events-news {
        max-height: max-content;
    }
    .our-team-members {
        max-height: max-content;
    }
    .contact-us {
        max-height: max-content;
    }
}

@media (max-width: 1030px) {
    .doc-header .container span {
        display: none !important;
    }
}

@media (max-width: 1000px) {
    .container {
        padding: 0px 30px;
    }
    .main-banner .banner .banner-text {
        left: 10%;
    }
    .doc-header .container ul.nav {
        min-width: 50%;
        right: -10%;
    }
    .financing-solutions .responsive-show {
        display: flex;
    }
    .financing-solutions .responsive-hide {
        display: none;
    }
}

@media (max-width: 830px) {
    .financing-solutions .job-card .job-btn {
        margin-top: 10px;
        position: relative;
        top: auto;
        right: auto;
        transform: none;
    }
}

@media (max-width: 768px) {
    .display-counter-none {
        display: none;
    }
    .display-counter {
        display: block;
    }
    .get-in-touch input {
        margin-top: 20px;
    }
    .contact-us input,
    .contact-us textarea {
        margin-top: 20px;
    }
    .get-in-touch .subscribe-btn,
    .contact-us .contact-submit {
        margin-top: 30px;
    }
    .get-in-touch ul {
        text-align: center;
    }
    .get-in-touch .social {
        padding-top: 30px
    }
    .get-in-touch .social .get-in-touch-logo {
        margin-bottom: 30px;
        width: 50%;
    }
    .about-images {
        display: none;
    }
    ul.nav {
        min-width: 380px;
    }
    .strategic li:before {
        left: -20px;
    }
    .salient li:before {
        left: -20px;
    }
    .thematic-areas,
    .strategic,
    .salient {
        padding: 25px 0;
    }
    /*    .doc-header .container ul.nav {
            margin-left: 265px;
        }

        #mainBanner {
            margin-right: 0;
        }*/
}

@media (max-width: 700px) {
    .service-desk img {
        width: 500px;
    }
    .what-we-do {
        padding: 30px 0;
    }
    .what-we-do .row {
        padding-top: 30px !important;
    }
    .what-we-do .card {
        margin-top: 15px;
    }
    .news-events {
        padding: 30px 0 50px 0;
    }
    .news-events .row {
        padding-top: 30px !important;
    }
    .financing-solutions .responsive-show {
        display: inline-block;
        min-width: -webkit-fill-available;
    }
}

@media (max-width: 370px) {
    ul.nav-main {
        min-width: 330px;
    }
}

@media (max-width: 450px) {
    .financing-solutions .col-sm-6 {
        padding: 0;
    }
    .modal-dialog {
        max-width: 350px !important;
    }
    ul.nav-main {
        min-width: 370px;
    }
    .container {
        padding: 0px 15px;
    }
    p {
        font-size: 12px;
    }
    h1 {
        font-size: 38px;
    }
    h2 {
        font-size: 28px;
    }
    h3 {
        font-size: 16px;
    }
    /*----------------------------------Main banner----------------------------------*/
    .main-banner .banner .container {
        /*height: 100%;*/
        padding: 0px 15px;
    }
    .main-banner .banner .banner-text {
        position: relative;
        left: 1%;
        padding: 0px 12px;
    }
    .main-banner .banner .banner-text span {
        font-size: 17px;
    }
    .service-desk img {
        width: 320px;
    }
    .service-desk {
        padding: 29px 0
    }
}


/*----------------------GRID PHOTOS---------------------------*/

#photos {
    margin-top: 50px;
    /* Prevent vertical gaps */
    line-height: 0;
    -webkit-column-count: 5;
    -webkit-column-gap: 0px;
    -moz-column-count: 5;
    -moz-column-gap: 0px;
    column-count: 3;
    column-gap: 0px;
}

#photos .img {
    position: relative;
    padding: 0;
    display: inline-block;
}

.img {
    position: relative;
    padding: 0;
    display: inline-block;
}

#photos .img .text-on-portfolio-img {
    display: none;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    text-align: center;
    padding: 55px;
    z-index: 99;
    transition: all 1.2s;
    cursor: pointer;
    /*background: #25215B;*/
    background: linear-gradient(transparent, #25215B);
}

#photos .img .text-on-portfolio-img p {
    color: white;
    font-size: 16px;
    margin: auto;
}

#photos .img:hover .text-on-portfolio-img {
    display: block;
}


/*#photos .img img {
    !* Just in case there are inline attributes *!
    width: 100% !important;
    height: auto !important;
    cursor: pointer;

}*/


/*#photos .img:hover {
    !*-ms-transform: scale(1.03); !* IE 9 *!
    -webkit-transform: scale(1.03); !* Safari 3-8 *!
    transform: scale(1.03);*!
    -moz-box-shadow: 0px 1px 1px #404040;
    -webkit-box-shadow: 0px 1px 1px #404040;
    box-shadow: 0px 0px 30px #404040;
}*/

@media (max-width: 1200px) {
    #photos {
        -moz-column-count: 4;
        -webkit-column-count: 4;
        column-count: 4;
    }
}

@media (max-width: 1000px) {
    #photos {
        -moz-column-count: 3;
        -webkit-column-count: 3;
        column-count: 3;
    }
}

@media (max-width: 800px) {
    #photos {
        -moz-column-count: 2;
        -webkit-column-count: 2;
        column-count: 2;
    }
}

@media (max-width: 400px) {
    #photos {
        -moz-column-count: 1;
        -webkit-column-count: 1;
        column-count: 1;
    }
}


/*----------------------GRID PHOTOS---------------------------*/

.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    background-color: #008FD5 !important;
}

.mem-card {
    /* background: #cacaca; */
    padding: 20px;
}

.mem-card:hover {
    box-shadow: 0 0 17px -6px #888888;
    background: #cacaca0d;
    /* background: #fff; */
}

.fade:not(.show) {
    opacity: 1 !important;
}

@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
    .card {
        display: block !important;
    }
}

.conf {
    width: 100%;
    cursor: pointer;
}

ul.footer-dowwak {
    font-size: 14px;
}

ul.footer-dowwak li {
    margin: 5px 0;
}

@media (max-width: 580px) {
    .card {
        margin: 18px auto;
    }
}


/*-----------------------------------------ABOVE FOOTER AREA-----------------------------------------*/

@media (max-width:768px) {
    #storeLogo img {
        margin-left: 65px;
    }
    .pr-3 li {
        text-align: center;
    }
}


/*------------------------------------------FEATURES-----------------------------------------*/

@media (min-width: 450px) {
    #mobile3 {
        display: block;
        margin: 0 auto;
    }
}

@media (min-width: 380px) {
    #mobile3 {
        display: block;
        margin: 0 auto;
    }
}


/*MEdia tags*/

@media (min-width: 1096px) {
    .doc-header .container ul.nav {
        display: block !important;
    }
}

@media (max-width: 1095px) {
    /*---------------------------------------------Header------------------------------------------*/
    .doc-header .container a.menu-trigger {
        display: block;
        width: 45px;
        padding: 20px 10px 15px 10px;
        text-decoration: none;
        font-size: 30px;
        color: white;
    }
    .doc-header .container a img {
        width: 150px;
        padding-left: 10px;
    }
    .doc-header .container ul.nav {
        display: none;
    }
    .doc-header .container a.logo {
        max-width: 180px;
    }
    .doc-header .container ul.nav {
        display: none;
        position: absolute;
        background-color: #f9f9f9;
        min-width: 160px;
        box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
        z-index: 1;
        right: 12px;
        top: 78px;
    }
    .doc-header .container ul.nav li {
        float: none;
        color: black;
        /*padding: 12px 16px;*/
        text-decoration: none;
        display: block;
        text-align: left;
        margin: 0;
    }
    .doc-header .container ul.nav li a {
        display: block;
        color: black;
        padding: 8px 0px 8px 12px;
        text-decoration: none;
        font-weight: normal;
        border-bottom: 1px solid #eeeeee;
        text-align: left;
    }
    .doc-header .container ul.nav li:hover {
        background-color: #ddd;
    }
    .doc-header .container a.menu-trigger .doc-header .container ul.nav {
        display: block;
    }
}

@media (max-width: 767px) {
    .card {
        margin: 18px auto;
    }
}