/* @import url('https://fonts.googleapis.com/css2?family=Cabin:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&family=Maven+Pro:wght@400;500;600;700;800;900&family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&display=swap'); */

@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,500;0,700;1,400;1,500;1,700&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap');

@import url("https://fonts.googleapis.com/css?family=Montserrat:400,400i,700");

body {
    position: relative;
    /* font-family: 'Roboto', sans-serif; */
    /* font-family: 'Open Sans', sans-serif; */
    font-family: 15px/1.8 'Poppins', sans-serif;
}

.pt-70 {
    padding-top: 70px;
}

.pt-60 {
    padding-top: 60px;
}

.pt-50 {
    padding-top: 50px;
}

.pt-40 {
    padding-top: 40px;
}

.pt-30 {
    padding-top: 30px;
}

.pt-20 {
    padding-top: 20px;
}

.pt-10 {
    padding-top: 10px;
}

.pr-70 {
    padding-right: 70px;
}

.pr-60 {
    padding-right: 60px;
}

.pr-50 {
    padding-right: 50px;
}

.pr-40 {
    padding-right: 40px;
}

.pr-30 {
    padding-right: 30px;
}

.pr-20 {
    padding-right: 20px;
}

.pr-10 {
    padding-right: 10px;
}

.pb-70 {
    padding-bottom: 70px;
}

.pb-60 {
    padding-bottom: 60px;
}

.pb-50 {
    padding-bottom: 50px;
}

.pb-40 {
    padding-bottom: 40px;
}

.pb-30 {
    padding-bottom: 30px;
}

.pb-20 {
    padding-bottom: 20px;
}

.pb-10 {
    padding-bottom: 10px;
}

.pl-70 {
    padding-left: 70px;
}

.pl-60 {
    padding-left: 60px;
}

.pl-50 {
    padding-left: 50px;
}

.pl-40 {
    padding-left: 40px;
}

.pl-30 {
    padding-left: 30px;
}

.pl-20 {
    padding-left: 20px;
}

.pl-10 {
    padding-left: 10px;
}

/* margin */

.mt-70 {
    margin-top: 70px;
}

.mt-60 {
    margin-top: 60px;
}

.mt-50 {
    margin-top: 50px;
}

.mt-40 {
    margin-top: 40px;
}

.mt-30 {
    margin-top: 30px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-10 {
    margin-top: 10px;
}

.mr-70 {
    margin-right: 70px;
}

.mr-60 {
    margin-right: 60px;
}

.mr-50 {
    margin-right: 50px;
}

.mr-40 {
    margin-right: 40px;
}

.mr-30 {
    margin-right: 30px;
}

.mr-20 {
    margin-right: 20px;
}

.mr-10 {
    margin-right: 10px;
}

.mb-70 {
    margin-bottom: 70px;
}

.mb-60 {
    margin-bottom: 60px;
}

.mb-50 {
    margin-bottom: 50px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-10 {
    margin-bottom: 10px;
}

.ml-70 {
    margin-left: 70px;
}

.ml-60 {
    margin-left: 60px;
}

.ml-50 {
    margin-left: 50px;
}

.ml-40 {
    margin-left: 40px;
}

.ml-30 {
    margin-left: 30px;
}

.ml-20 {
    margin-left: 20px;
}

.ml-10 {
    margin-left: 10px;
}

section.banner {
    background: linear-gradient(110deg, #8aafd5, #003f74);
    position: relative;
    overflow: hidden;
    padding-top: 15px;
    padding-bottom: 5px;
    z-index: 1;
}

section.banner:after {
    content: "";
    width: 990px;
    height: 990px;
    position: absolute;
    background: url(../images/banner-animation.svg) no-repeat 100% 0/contain;
    left: -15%;
    top: -45%;
    display: block;
    opacity: .05;
    will-change: transform;
    z-index: -1;
    animation: highlight 30s infinite;
}

section.page-info {
    background: linear-gradient(110deg, #00356c, #255d8d);
    position: relative;
    overflow: hidden;
    padding-top: 20px;
    padding-bottom: 20px;
    z-index: 1;
}

section.page-info:after {
    content: "";
    width: 990px;
    height: 990px;
    position: absolute;
    background: url(../images/banner-animation.svg) no-repeat 100% 0/contain;
    left: -15%;
    top: -45%;
    display: block;
    opacity: .05;
    will-change: transform;
    z-index: -1;
    animation: highlight 30s infinite;
}

@keyframes highlight {
    0% {
        transform: rotate(0deg) translate(0) scale(.9) translateZ(0);
        -webkit-transform: rotate(0deg) translate(0) scale(.9) translateZ(0)
    }

    20% {
        transform: rotate(20deg) translateX(20px) scale(1) translateZ(0);
        -webkit-transform: rotate(20deg) translateX(20px) scale(1) translateZ(0)
    }

    40% {
        transform: rotate(30deg) translateY(-10px) scale(1.2) translateZ(0);
        -webkit-transform: rotate(30deg) translateY(-10px) scale(1.2) translateZ(0)
    }

    60% {
        transform: rotate(15deg) translateY(0) scale(1.1) translateZ(0);
        -webkit-transform: rotate(15deg) translateY(0) scale(1.1) translateZ(0)
    }

    80% {
        transform: rotate(5deg) translateY(10px) scale(1) translateZ(0);
        -webkit-transform: rotate(5deg) translateY(10px) scale(1) translateZ(0)
    }

    to {
        transform: rotate(0deg) translate(0) scale(.9) translateZ(0);
        -webkit-transform: rotate(0deg) translate(0) scale(.9) translateZ(0)
    }
}

.banner .banner-item .video-item {
    height: 100%;
    width: 100%;
}

.home-search {
    position: relative;
    box-shadow: 0 0 40px rgba(51, 51, 51, .1);
}

.home-search input {
    height: 45px;
    text-indent: 25px;
    border: 1.5px solid #0e4a7e;
}

.home-search input:focus {
    box-shadow: none;
    border: none;
}

.home-search .fa-search {
    position: absolute;
    top: 20px;
    left: 16px;
}

.home-search button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 4px;
    width: 80px;
    background: #0061b5;
}

.home-search .type-writer {
    margin-left: 5px;
    height: 24px;
    overflow: hidden;
    position: relative;
    width: calc(100% - 110px);
}

.counter-area {
    background-image: url(../images/tia.jpg);
    background-attachment: fixed;
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: cover;
}

.counter-area-bg-color {
    background: #29663f6b;
}

.counter-text {
    font-size: 15px;
    color: #efefef;
}

.achievement-title h2 {
    color: #fff;
    font-size: 34px;
    text-align: center;
    margin-bottom: 30px;
}

.odometer {
    color: #fff;
    font-size: 30px;
}

.counter-item p {
    color: #fff;
    font-size: 13px;
}

.slider-section .owl-nav {
    opacity: 0;
}

.slider-section:hover .owl-nav {
    opacity: 1;
}

.p-12-px {
    padding: 12px;
}

.select-language {
    position: relative;
    width: 52px;
    cursor: pointer;
}

.language-switcher {
    color: #0c487c;
    width: 100%;
    display: block;
    position: relative;
    text-transform: uppercase;
    font-size: 16px;
    pointer-events: none;
    line-height: 30px;
    white-space: nowrap;
    padding: 0px 10px;
    text-overflow: ellipsis;
    overflow: hidden;
}

.language-switcher:after {
    content: "";
    position: absolute;
    width: 5px;
    height: 5px;
    right: 2px;
    top: 10px;
    border-right: 2px solid;
    border-bottom: 2px solid;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    transition: transform .3s;
}

.language-drop-option,
.language-drop-option:after {
    position: absolute;
    border-radius: 3px 0 3px 3px;
}

.language-drop-option {
    z-index: 9;
    width: 320px;
    padding: 8px 0 7px;
    transition: all .3s;
    opacity: 0;
    visibility: hidden;
    right: 0;
    white-space: nowrap;
    margin-top: 5px;
}

.language-drop-option:after {
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    box-shadow: 0 3px 3px 0 hsl(0deg 0% 87% / 50%);
    z-index: -1;
}

.language-drop-option ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    margin: 0 -5px;
    padding: 0 30px 10px;
}

.language-drop-option ul li {
    width: 50%;
    padding: 0 5px;
}

.language-drop-option ul li.is-active a,
.language-drop-option ul li:hover a {
    color: #ee254c;
}

.language-drop-option ul li a {
    color: #444;
    display: block;
    font-size: 14px;
    padding: 5px 0 5px 26px;
    position: relative;
}

.language-drop-option ul li.en a:before {
    background-position: 0 0;
}

.language-drop-option ul li a:before {
    content: "";
    width: 21px;
    height: 13px;
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -5px;
    background-image: url(../images/language-flags.png);
    background-repeat: no-repeat;
    background-size: 42px;
}

.language-drop-option ul li[class^=fr] a:before {
    background-position: -21px 0;
}

.language-drop-option ul li[class^=de] a:before {
    background-position: 0 -52px;
}

.language-drop-option ul li[class^=ja] a:before {
    background-position: 0 -13px;
}

.language-drop-option ul li[class^=ko] a:before {
    background-position: 0 -39px;
}

.language-drop-option ul li[class^=zh] a:before {
    background-position: -21px -13px;
}

.language-drop-option ul li[class^=zh-tw] a:before {
    background-position: -21px -26px;
}

.language-drop-option ul li[class^=ru] a:before {
    background-position: 0 -26px;
}

.language-drop-option ul li[class^=pt] a:before {
    background-position: -21px -39px;
}

.language-drop-option ul li[class^=es] a:before {
    background-position: -21px -52px;
}

.language-switcher-description {
    text-align: center;
    border-top: 1px solid #f2f2f2;
    padding: 7px 10px 0;
    font-size: 12px;
    color: #999;
    display: flex;
    justify-content: flex-end;
    overflow: hidden;
    position: relative;
}

.language-switcher-description .powered-hover {
    display: inline-flex;
}

.language-switcher-description .powered-by {
    transition: all .3s;
    visibility: hidden;
    opacity: 0;
    transform: translateX(-15px);
    display: none;
}

.language-switcher-description .lang-dis-pop {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #efefef;
    color: #b7b4b4;
    font-weight: 600;
    line-height: 20px;
    text-align: center;
    margin-left: 10px;
    transition: all .4s;
}

.language-switcher-description .lang-dis-pop,
.language-switcher-description img {
    display: inline-block;
    vertical-align: middle;
}

.text-justify {
    text-align: justify;
}

#lang-description p {
    margin-bottom: 10px;
}

#lang-description h3 {
    margin-bottom: 5px;
}

#lang-description .modal-body {
    padding: 15px 20px;
}

.home-tab-block {
    margin-top: 10px;
    background: #fff;
    padding: 10px;
    border-radius: 5px;
}

#main-home-tab-content {
    margin-top: 5px;
    height: 380px;
    overflow: hidden;
    overflow-y: scroll;
}

.custom-scroll::-webkit-scrollbar {
    width: 2px;
    margin-right: 3px;
}

/* Track */
.custom-scroll::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
.custom-scroll::-webkit-scrollbar-thumb {
    background: var(--ibn-red);
}

/* Handle on hover */
.custom-scroll::-webkit-scrollbar-thumb:hover {
    background: var(--ibn-gray);
}


#main-home-tab {
    border: none;
}

#main-home-tab li {
    margin-right: 10px;
}

#main-home-tab li button.nav-link {
    border: 1px solid var(--ibn-darkblue);
    border-radius: 2px 2px 0 0;
    padding: 7px 17px;
    font-size: 15px;
    color: var(--ibn-darkblue);
    font-weight: 600;
    margin-right: 0;
    position: relative;
}

#main-home-tab li button.nav-link.active {
    background: var(--ibn-darkblue);
    color: #fff;
    border: 1px solid transparent;
}

#main-home-tab-content h3.main-tab-title {
    font-size: 17px;
    line-height: 20px;
    margin-bottom: 5px;
    margin-top: 10px;
    font-weight: 600;
    border-bottom: 1px solid #cfcfcf;
}

#main-home-tab-content h3.main-tab-title a {
    cursor: pointer;
    text-decoration: none;
    display: block;
    color: var(--ibn-darkbluetext);
    margin-bottom: 2px;
    font-size: 13px;
}

#main-home-tab-content h3.main-tab-title p.published-date {
    font-size: 12px;
    line-height: 14px;
    margin-top: 0px;
    margin-bottom: 8px;
    color: #555;
    font-weight: normal;
}

#main-home-tab-content h3.main-tab-title a.news-group {
    font-size: 12px;
    line-height: 14px;
    margin-top: 8px;
    margin-bottom: 8px;
    color: #bd009d;
}

.text-left {
    text-align: left;
}

.investment-sector-area {
    background-color: #efefef;
    position: relative;
}

.investment-sector-area .investment-sector-shape {
    z-index: -1;
}

.investment-sector-area .investment-sector-shape img {
    position: absolute;
}

.investment-sector-area .investment-sector-shape img:nth-child(1) {
    top: 0;
    left: 0;
    -webkit-animation: service-ani-one 3s linear infinite;
    animation: service-ani-one 3s linear infinite;
}

.investment-sector-area .investment-sector-shape img:nth-child(2) {
    right: 0;
    bottom: 0;
    -webkit-animation: service-ani-one 3s linear infinite;
    animation: service-ani-one 3s linear infinite;
}

.investment-title,
.news-title {
    margin-bottom: 10px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.investment-title .sub-title,
.news-title .sub-title {
    display: block;
    color: #e93c05;
    margin-bottom: 3px;
    font-weight: 600;
}

.investment-title h2 {
    margin-bottom: 0;
    font-size: 38px;
}

.investment-title.two {
    margin-top: -5px;
}

.investment-title.two .sub-title {
    color: #fb2448;
}

.investment-title.three .sub-title {
    color: #355efc;
}

.investment-sector-area .investment-title h2 {
    margin-bottom: 8px;
    text-align: left;
}

.investment-sector-area .investment-title p {
    margin-bottom: 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.news-title .sub-title {
    font-size: 20px;
}

@-webkit-keyframes service-ani-one {
    0% {
        opacity: 1;
    }

    50% {
        opacity: .20;
    }

    100% {
        opacity: 1;
    }
}

@keyframes service-ani-one {
    0% {
        opacity: 1;
    }

    50% {
        opacity: .20;
    }

    100% {
        opacity: 1;
    }
}

.investment-sector-item {
    margin-bottom: 30px;
    position: relative;
    background-color: #fff;
    padding: 25px;
    z-index: 1;
    -webkit-transition: 0.5s all ease;
    transition: 0.5s all ease;
}

.investment-sector-item:hover {
    -webkit-transform: translate(0, -10px);
    transform: translate(0, -10px);
}

.investment-sector-item .icon {
    position: absolute;
    left: 40px;
    top: 60px;
    color: #e93c05;
    font-size: 35px;
    line-height: 35px;
    z-index: 1;
    text-align: center;
}

.investment-sector-item .icon:after {
    position: absolute;
    content: '';
    width: 60px;
    height: 60px;
    left: -15px;
    right: 0;
    top: -13px;
    margin-left: auto;
    margin-right: auto;
    background-color: #feebe4;
    z-index: -1;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.investment-sector-item h3 {
    margin-bottom: 10px;
    font-size: 24px;
}

.investment-sector-item h3 a {
    color: #e93c05;
}

.investment-sector-item h3 a:hover {
    color: #011a41;
}

.investment-sector-item p {
    margin-bottom: 14px;
}

.investment-sector-item .investment-sector-btn {
    margin-left: -5px;
}

.investment-sector-item .investment-sector-btn i {
    display: inline-block;
    font-size: 21px;
    position: relative;
    top: 4px;
}

.investment-sector-item .investment-sector-btn a {
    display: inline-block;
    font-weight: 600;
    color: #011f4c;
    border-bottom: 1px solid #e93c05;
    text-transform: uppercase;
}

.investment-sector-item .investment-sector-btn a:hover {
    color: #e93c05;
}

.investment-sector select,
.investment-sector select:focus {
    font-size: 20px;
    color: var(--ibn-darkbluetext);
}

.stat-counter ul {
    display: flex;
    flex-direction: row;
    justify-content: center;
    list-style: none;
}

.stat-counter ul li {
    padding: 7px;
    width: 25%;
}

.stat-counter ul li h3 {
    text-align: center;
    margin-bottom: 5px;
}

.stat-counter .odometer {
    font-size: 20px;
}

.stat-counter ul li p {
    font-size: 12px;
    text-align: center;
}

/*success stories*/
.success-stories-block {
    padding-left: 25px;
    padding-right: 25px;
    height: 100%;
}

.success-stories-item {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 15px;
    border-bottom: 1px solid #e3e3e3;
    padding-bottom: 15px;
}

.success-stories-item img {
    flex: 1;
    width: 110px;
    height: 110px;
    padding: 2px;
    border-radius: 5px 0 0 5px;
    margin-right: 10px;
    border-left: 1px solid var(--ibn-green);
    border-top: 1px solid var(--ibn-green);
    border-bottom: 1px solid var(--ibn-green);
}

.success-stories-info {
    display: flex;
    flex-direction: column;
    flex: 4;
    line-height: 18px;
}

.success-stories-info .published-date {
    font-size: 15px;
    margin-bottom: 5px;
    color: #9b0000;
}

.success-stories-info .success-stories-title {
    display: block;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--ibn-darkbluetext);
}

.success-stories-info .posted-by {
    font-size: 15px;
    margin-bottom: 5px;
}

.success-stories-info .posted-by span {
    color: var(--ibn-pink-red);
}

.success-stories-box {
    height: 450px;
    overflow: hidden;
    overflow-y: scroll;
}

/*success stories*/

/*investment-process*/
.investment-process-block {
    position: relative;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(17%, 1fr));
    grid-template-rows: auto;
    grid-gap: 0 20px;
}

.investment-process-block .process-box {
    position: relative;
    height: 100%;
    padding: 0px;
    background: rgba(255, 255, 255, 0.0);
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #000;
}

.process-box .process-content {
    position: relative;
    padding: 70px 20px 20px;
    background: #00355a;
    color: #FFF;
    width: 100%;
    height: 100%;
}

.investment-process-block .process-box:before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    bottom: -1px;
    right: -1px;
    background: #FFF;
    transform: skew(1deg, 1deg);
    z-index: 0;
}

.investment-process-block .process-box:nth-child(1):before {
    background: yellow;
    background: linear-gradient(315deg, #ff0057, #e64a19)
}

.investment-process-block .process-box:nth-child(2):before {
    background: red;
    background: linear-gradient(315deg, #59A600, #008A9C)
}

.investment-process-block .process-box:nth-child(2):hover:before {
    background: linear-gradient(315deg, #89ff00, #00E2FF)
}

.investment-process-block .process-box:nth-child(3):before {
    background: lime;
    background: linear-gradient(315deg, #e91e63, #5d02ff)
}

.investment-process-block .process-box:nth-child(4):before {
    background: blue;
    background: linear-gradient(315deg, #ff0000, #ffc107)
}

.investment-process-block .process-box:nth-child(5):before {
    background: blue;
    background: linear-gradient(315deg, #cc7755, #ff2aa3)
}

.investment-process-block .process-tape {
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 0, 0.0);
}

.investment-process-block .process-tape:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 50%;
    margin-left: 25%;
    background: rgba(255, 255, 255, 0.03);
    background: rgba(0, 0, 0, 0.1);
    pointer-events: none;
    transform: skew(41deg);
    overflow: hidden;
    transition: 0.25s;
}

.process-box:hover .process-tape:after {
    width: 100%;
    margin-left: 0%;
    transform: skew(0deg);
}

.process-box .process-content h2 {
    position: absolute;
    top: 0px;
    right: 10px;
    margin: 0;
    padding: 0;
    font-size: 5em;
    color: rgba(255, 255, 255, 0.25);
    transition: 0.25s;
}

.process-box:hover .process-content h2 {
    top: -20px;
    color: rgba(255, 255, 255, 0.45);
}

.process-box .process-content h3 {
    margin: 0 0 10px;
    padding: 0;
    font-size: 18px;
    font-weight: bold;
    color: var(--ibn-green);
}

.process-box .process-content h4 {
    margin: 0 0 10px;
    padding: 0;
    font-size: 16px;
    font-weight: bold;
    color: #918ead;
}

.process-box .process-content p {
    margin: 0;
    padding: 0;
    color: #DEDEDE;
    font-size: 16px;
}

.process-box .process-content a {
    position: relative;
    margin: 20px 0 0 0;
    padding: 10px 20px;
    text-decoration: none;
    border: 1px solid #fff;
    color: #FFF;
    display: inline-block;
    transition: 0.5s;
    visibility: hidden;
    transform: translateY(10px);
    opacity: 0;
}

.process-box:hover .process-content a {
    visibility: visible;
    opacity: 1;
    transform: translateY(0px);
}

.process-box .process-content a:hover {
    background: rgba(255, 255, 255, 0.95);
    color: #222;
}

/*investment-process ends*/


/*home news box*/
.news-section-box {
    height: 550px;
    overflow: hidden;
    overflow-y: scroll;
}

.news-block {
    padding-left: 25px;
    padding-right: 25px;
    height: 100%;
}

.news-item {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 15px;
    border-bottom: 1px solid #e3e3e3;
    padding-bottom: 15px;
}

.news-item img {
    flex: 1;
    width: 120px;
    height: 120px;
    padding: 3px;
    border-radius: 5px 0 0 5px;
    margin-right: 10px;
    box-shadow: 0 0 8px #cbcbcb;
}

.news-info {
    display: flex;
    flex-direction: column;
    flex: 4;
    line-height: 18px;
    justify-content: center;
    align-items: flex-start;
}

.news-info .published-date {
    font-size: 15px;
    margin-bottom: 5px;
    color: #9b0000;
}

.news-info .news-title {
    display: block;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--ibn-darkbluetext);
    text-align: left;
}

.news-info .posted-by {
    font-size: 15px;
    margin-bottom: 5px;
}

.news-info .posted-by span {
    color: var(--ibn-pink-red);
}

.news-box {
    height: 450px;
    overflow: hidden;
    overflow-y: scroll;
}

.about-area {
    background: #e9ecff;
}

/*home news box*/

.investment-process {
    background: #effaffe0;
}


/*resource documents*/
/* .document-area {
    background-color: #3fa9ff38;
} */

.document-area .area-title {
    color: #efefef !important;
}


.resource-documents:before {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    left: 5px;
    background-image: url(../images/document-bg/Flower-Donut-plain.svg);
    background-size: contain;
    opacity: .4;
    z-index: -1;
    background-repeat: no-repeat;
    background-position: right;
}

.resource-documents {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    background: #001b3045;
    padding: 10px 10px;
    padding-bottom: 20px;
    border-radius: 10px;
}

.resource-cover {
    width: 125px;
    height: 165px;
    margin-right: 20px;
    position: relative;
}

.resource-cover a {
    display: block;
}

.resource-cover img {
    width: 125px !important;
    height: 165px;
    border-radius: 5px;
    z-index: 3;
    position: relative;
    border: 1px solid #8f8f8f;
}

.resource-cover::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    background: #fff;
    width: 130px;
    height: 170px;
    z-index: 0;
    border-radius: 7px 14px 5px 15px;
}


.resource-info {
    display: flex;
    flex-direction: column;
    line-height: 18px;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
}

.resource-info h3,
.resource-info h3 a {
    color: #fff;
    font-size: 16px;
    margin-bottom: 15px;
}

.resource-info p {
    color: #fff;
    font-size: 15px;
    margin-bottom: 5px;
}

.resource-info .resource-download {
    background: #fff;
    color: var(--ibn-pink-red);
    padding: 5px 10px;
    border-radius: 3px;
    font-weight: 600;
    margin-bottom: 5px;
    margin-top: 5px;
}

/*resource documents*/

.btn-block-100 {
    display: block;
    width: 100%;
}

.footer-item .office-name {
    color: #fff;
    margin-bottom: 10px;
    font-weight: 500;
}

.site-visited-counter {
    color: #00f3ff;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 6px;
    text-shadow: 0 0 3px #ccc;
    margin-bottom: 0;
    margin-top: 0;
}

.last-updated {
    color: #9cf6ff;
    font-size: 11px;
    font-weight: 600;
}

.last-updated-date {
    color: #fff;
    font-weight: normal;
    font-size: 15px;
    letter-spacing: 1px;
}

.vertical-bottom {
    vertical-align: bottom !important;
}

.e-app-box {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    border-bottom: 1px solid #ccc;
}

.e-app-box .e-app-link {
    font-size: 15px;
    padding-top: 15px;
    padding-bottom: 15px;
    border-radius: 5px;
    color: #1e1e1e;
    font-weight: 600;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.e-app-box .e-app-link i {
    font-size: 25px;
    margin-right: 7px;
    color: #007c57;
}

.hide {
    display: none;
}

.process-box {
    display: flex;
    justify-content: space-between;
    flex: auto;
}

.step-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.step-box {
    width: 50px;
    height: 50px;
    border: 1px solid #0064db;
    background: #eee;
    padding: 2px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.step-box .step {
    font-size: 28px;
    font-weight: 600;
    /* padding: 10px; */
    background-color: #fff;
    border-radius: 50%;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.step-box .step a {
    color: #222;
}

.step-info .info {
    font-size: 14px;
}

.border-pink-light {
    border: 2px solid #ff979b;
}

.border-red-light {
    border: 2px solid #ff232b;
}

.border-purple-light {
    border: 2px solid #6224ff;
}

.page-info .page-sub-title>h3 {
    position: relative;
    font-size: 18px;
    color: #ffe35b;
    margin-bottom: 5px;
    font-weight: 600;
    line-height: 1.3;
    display: block;
    letter-spacing: 1.5px;
    padding-left: 40px;
}

.page-info .page-sub-title>h3:before {
    display: block !important;
    content: "";
    width: 25px;
    height: 2px;
    background: #ffe35b;
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.page-info .page-main-title>h1 {
    color: #fff;
    font-size: 30px;
    font-weight: 600;
    margin: 5px 0;
    letter-spacing: 1px;
}

.page-subscribe-form {
    height: auto;
    border: 1px solid #284f50;
    border-radius: 10px;
    background-image: linear-gradient(-34deg, #3e527e5c, #3193d9);
    box-shadow: 0 4px 13px 0 rgb(26 24 29 / 0%);
    position: relative;
    z-index: 9;
    padding: 10px 15px 15px;
    overflow: hidden;
}

.page-subscribe-form .subscribe-title {
    color: #ffffff;
    margin-bottom: 6px;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
}

.page-subscribe-form .subscribe-title i {
    font-size: 17px;
}

.page-subscribe-form .subscribe-form {
    position: relative;
}

.page-subscribe-form .subscribe-form .form-text {
    width: 100%;
    line-height: 33px;
    border: 1px solid #d3d6de;
    background: #fff;
    border-radius: 4px;
    height: 36px;
    font-size: 13px;
    color: #777;
    padding: 0 135px 0 15px;
    font-weight: 500;
    margin: 0;
}

.page-subscribe-form .subscribe-form .form-text:focus,
.page-subscribe-form .subscribe-form .form-text:focus-visible {
    border: none;
    outline: none;
}

.page-subscribe-form .subscribe-form .button {
    position: absolute;
    right: 0;
    top: 0;
    left: auto;
    background: var(--ibn-pink-red);
    border-radius: 0 4px 4px 0;
    width: 108px;
    text-align: center;
    height: 36px;
    letter-spacing: 1px;
    min-width: 0;
    padding: 0;
    box-shadow: none;
    -webkit-appearance: none;
    border: none;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
}

.inside-image-cover {
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.inside-color-cover {
    padding: 50px 20px 140px;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
}

/* .inside-image-cover:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0px;
    left: 0px;
    background-color: rgb(255 255 255 / 80%);
} */

/* project highlisht */

.project-highlight .project-highlight-box {
    background: #fff;
    padding-top: 30px;
    padding-left: 15px;
    padding-right: 15px;
    box-shadow: 0 0 17px #ccc;
}

.project-highlight-text {
    font-size: 18px;
    letter-spacing: 1px;
    color: #222;
    margin-bottom: 10px;
}


#project-info-tab {
    border-bottom: none;
    margin-bottom: 20px;
    transition: all 0.1s ease;
}

#project-info-tab.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link {
    border-left: none;
    border-top: none;
    border-right: none;
    font-weight: 600;
    text-align: left;
    padding-left: 0;
    margin-right: 20px;
}

#project-info-tab.nav-tabs .nav-item {
    position: relative;
    padding-bottom: 3px;
    border-bottom: 1px solid #b5b5b5;
}

#project-info-tab.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active,
#project-info-tab.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link:hover {
    color: #ee254c;
    border-color: transparent;
}

#project-info-tab.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active:after,
#project-info-tab.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link:hover:after {
    content: '';
    /* width: 100%; */
    height: 3px;
    background: #32d5dd;
    position: absolute;
    left: -1px;
    right: -1px;
    bottom: -1px;
    opacity: 1;
    transition: all 0.4s ease;
    /* -webkit-transform: translateY(-4px); */
    /* transform: translateY(-4px);*/
}

#project-tab-content {
    padding: 0 20px 20px;
}

.project-info-box {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 10px;
    border-bottom: 1px dashed #dcdcdc;
}

.project-info-title {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-left: 10px;
}


.project-info-title .project-link {
    font-size: 15px;
    border-radius: 5px;
    color: #1e1e1e;
    font-weight: 600;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.project-info-title .project-group {
    font-size: 13px;
    margin-bottom: 5px;
    color: var(--ibn-pink-red);
}

.project-info-icon i {
    font-size: 25px;
    margin-right: 7px;
    color: #007c57;
}


.project-stat-div,
.project-sector-div {
    padding: 20px 20px 20px;
    background: #fff;
    border-radius: 6px;
    text-align: center;
    box-shadow: -19px 0px 81px 0px rgb(85 88 114 / 30%);
    min-height: 160px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.project-stat-div i {
    font-size: 36px;
    color: #007c57;
}

.project-stat-div h2 {
    word-break: break-word;
    font-size: 20px;
    margin-top: 5px;
    margin-bottom: 5px;
}

.project-stat-div p {
    font-size: 12px;
    line-height: 1.3;
    padding-bottom: 0;
    margin-bottom: 5px;
}

.project-sector-div img.icon {
    width: 50px;
    height: 50px;
    border: 2px solid var(--ibn-red);
    border-radius: 50%;
    padding: 3px;
}

.project-sector-div h2 {
    font-size: 18px;
    margin-top: 10px;
}

.p-relative {
    position: relative;
}

.basic-feature-title h3 {
    font-size: 22px;
    margin-bottom: 20px;
}

.basic-feature-details {
    padding-bottom: 14px;
}

.tab-center #project-info-tab {
    justify-content: center;
}


/* project timeline */
.project-timeline {
    position: relative;
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 15px 0;
}

.project-timeline::after {
    content: '';
    position: absolute;
    width: 2px;
    background: #006E51;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
}

.timeline-block {
    padding: 15px 30px;
    position: relative;
    background: inherit;
    width: 50%;
}

.timeline-block:nth-child(odd) {
    left: 0;
    text-align: right;
}

.timeline-block:nth-child(even) {
    left: 50%;
    text-align: left;
}

.timeline-block::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    top: calc(50% - 8px);
    right: -8px;
    background: #ffffff;
    border: 2px solid #006E51;
    border-radius: 16px;
    z-index: 1;
}

.timeline-block:nth-child(even)::after {
    left: -8px;
}

.timeline-block::before {
    content: '';
    position: absolute;
    width: 50px;
    height: 2px;
    top: calc(50% - 1px);
    right: 8px;
    background: #006E51;
    z-index: 1;
}

.timeline-block:nth-child(even)::before {
    left: 8px;
}

.timeline-block .date {
    position: absolute;
    display: inline-block;
    top: calc(50% - 8px);
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    color: #006E51;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 1;
}

.timeline-block:nth-child(odd) .date {
    right: -75px;
}

.timeline-block:nth-child(even) .date {
    left: -75px;
}

.timeline-block .icon {
    position: absolute;
    display: inline-block;
    width: 40px;
    height: 40px;
    padding: 9px 0;
    top: calc(50% - 20px);
    background: #F6D155;
    border: 2px solid #006E51;
    border-radius: 40px;
    text-align: center;
    font-size: 18px;
    color: #006E51;
    z-index: 1;
}

.timeline-block:nth-child(odd) .icon {
    right: 56px;
}

.timeline-block:nth-child(even) .icon {
    left: 56px;
}

.timeline-block .content {
    padding: 30px 90px 30px 30px;
    background: #F6D155;
    position: relative;
    border-radius: 0 500px 500px 0;
}

.timeline-block:nth-child(even) .content {
    padding: 30px 30px 30px 90px;
    border-radius: 500px 0 0 500px;
}

.timeline-block .content h2 {
    margin: 0 0 10px 0;
    font-size: 18px;
    font-weight: 700;
    color: #006E51;
}

.timeline-block .content h4 {
    font-size: 16px;
    font-weight: 600;
    color: #00251b;
}

.timeline-block .content p {
    margin: 0;
    font-size: 16px;
    line-height: 22px;
    color: #000000;
}

@media (max-width: 767.98px) {
    .project-timeline::after {
        left: 90px;
    }

    .timeline-block {
        width: 100%;
        padding-left: 120px;
        padding-right: 30px;
    }

    .timeline-block:nth-child(even) {
        left: 0%;
    }

    .timeline-block:nth-child(odd)::after,
    .timeline-block:nth-child(even)::after {
        left: 82px;
    }

    .timeline-block:nth-child(odd)::before,
    .timeline-block:nth-child(even)::before {
        left: 100px;
        border-color: transparent #006E51 transparent transparent;
    }

    .timeline-block:nth-child(odd) .date,
    .timeline-block:nth-child(even) .date {
        right: auto;
        left: 15px;
    }

    .timeline-block:nth-child(odd) .icon,
    .timeline-block:nth-child(even) .icon {
        right: auto;
        left: 146px;
    }

    .timeline-block:nth-child(odd) .content,
    .timeline-block:nth-child(even) .content {
        padding: 30px 30px 30px 90px;
        border-radius: 500px 0 0 500px;
    }
}

/* project timeline ends */
.project-map-info>div {
    margin-bottom: 15px;
}

.project-map-info label {
    cursor: pointer;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.project-map-info-details {
    font-size: 18px;
}

.key-accomplishment h4 {
    font-size: 16px;
    font-weight: 600;
    color: #111;
    margin-bottom: 10px;
}

.key-accomplishment h4 i {
    font-size: 18px;
    color: var(--ibn-darkbluetext);
    margin-right: 10px;
}

.side-buttons {
    padding: 0px;
    margin: 0px;
    position: fixed;
    width: 350px;
    z-index: 999999;
    top: 50%;
    transform: translateY(-50%);
    right: -310px;
    background: transparent;
}

.side-buttons>ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.side-buttons>ul>li {
    transition: all 0.25s ease-in-out;
}

.side-buttons>ul>li>a {
    color: #fff;
    background: #3c0c70;
    display: flex;
    padding: 5px;
    padding-left: 12px;
    margin: 0px 0px 1px 0px;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
    cursor: pointer;
    justify-content: flex-start;
    align-items: center;
    flex-direction: row;
    font-size: 18px;
    line-height: 30px;
}

.side-buttons>ul>li>a>i {
    margin-right: 10px;
    font-size: 20px;
}

.side-buttons>ul>li>a:hover {
    margin-left: -280px;
}

.navbar-area .main-nav .navbar .navbar-nav .nav-item .dropdown-menu .nav-item a {
    padding: 7px 10px;
}

.header-social a {
    background: #fff;
    padding: 2px 5px;
    border-radius: 5px;
    margin-right: 5px;
    cursor: pointer;
    color: #3c0c70;
    font-size: 13px;
}

.header-social a i {
    color: #3c0c70 !important;
    font-size: 13px !important;
    margin-left: 0 !important;
}

.change-language {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.change-language>a {
    padding: 0 10px;
    display: inline-block;
    color: #fff !important;
    cursor: pointer !important;
    background: transparent;
}

.change-language>.change-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 20px;
}

.change-language>.change-switch>input {
    opacity: 0;
    width: 0;
    height: 0;
}

.change-language>.change-switch>input:checked+.switcher {
    background-color: #0d6efd;
}

.change-language>.change-switch>.switcher.round {
    border-radius: 24px;
}

.change-language>.change-switch>.switcher {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.change-language>.change-switch>input:checked+.switcher:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

.change-language>.change-switch>.switcher.round:before {
    border-radius: 50%;
}

.change-language>.change-switch>.switcher:before {
    position: absolute;
    content: "";
    height: 15px;
    width: 15px;
    left: 5px;
    bottom: 3px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

/* 
label {
    display: block;
}

.label-bold label {
    font-weight: bold;
} */

.vip-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 15px 5px;
}

.vip-card h3 {
    text-align: center;
    border-bottom: 1px dashed #3c0c70;
    padding-bottom: 5px;
    width: 100%;
    font-size: 16px;
}

.vip-card img {
    width: 150px;
    height: 160px;
    border: 1px solid #ccc;
    padding: 3px;
}

.vip-card .full-name {
    font-size: 15px;
    text-align: center;
    margin: 5px 0;
    color: var(--ibn-darkbluetext);
    font-weight: 600;
}

.vip-card .post-dtl {
    font-size: 13px;
    text-align: center;
    margin: 0;
    color: var(--ibn-darkblue);
    font-weight: 600;
}

.banner-slider .banner-item .d-table-cell {
    position: relative;
}

.banner-slider .banner-item .banner-text {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 50px;
}

.banner-slider .banner-item .banner-text h1 {
    font-size: 35px;
    font-weight: 500;
    color: #ffffff;
    text-shadow: 0 0 5px #000;
}

.dropdown-menu li {
    position: relative;
}

.dropdown-menu .dropdown-submenu {
    display: none;
    position: absolute;
    left: 100%;
    top: -7px;
}

.dropdown-menu .dropdown-submenu-left {
    right: 100%;
    left: auto;
}

.dropdown-menu>li:hover>.dropdown-submenu {
    display: block;
}

.page-title {
    padding-top: 40px;
    padding-bottom: 40px;
}

.vip-intro {
    border-radius: 150px 150px 0 0;
    background: #1a3660;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px;
    margin-bottom: 15px;
}

.vip-img {
    background: #fff;
    width: 220px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    border-radius: 50%;
    margin-bottom: 20px;
}

.vip-img>img {
    width: 100%;
    border-radius: 50%;
    border: 1px dashed #b1b1b1;
    height: auto;
}

.vip-details {
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.vip-details.bio h3 {
    font-size: 16px;
}

.vip-details h3 {
    color: #fff;
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 18px;
}

.vip-details h4 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #fff;
    font-weight: 500;
}

.vip-details h5 {
    font-size: 14px;
    margin-bottom: 0;
    color: #fff;
    font-weight: 500;
}

.custom-link-button-blue {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 10px 15px;
    text-decoration: none;
    cursor: pointer;
    background: #1a3660;
    color: #fff;
    font-size: 15px;
}

a.custom-link-button-blue:hover {
    color: #fff;
    background: #0c2852;
}

.board-member {
    margin-bottom: 20px;
    box-shadow: 0 0 3px #c1c1c1;
    padding-top: 15px;
    padding-bottom: 15px;
}

.board-member img {
    margin-top: 10px;
    border-radius: 50%;
    border: 1px solid #aeaeae;
    padding: 2px;
}

.board-member .view-details {
    border-radius: 25px;
    background: var(--ibn-pink-red);
    padding: 2px 10px;
    cursor: pointer;
    margin-top: 15px;
    font-size: 13px;
    color: #fff;
}

.faq-box,
.flex-title-button {
    display: flex;
    flex-direction: row;
    margin-bottom: 20px;
}

.flex-title-button {
    border-bottom: 1px solid;
}

.faq-box .main-title,
.flex-title-button .main-title {
    flex: 3;
    text-align: left;
}

.faq-box .inside-page-link,
.flex-title-button .inside-page-link {
    flex: 1;
    text-align: end;
}

.faq-box .view-details,
.view-all,
.flex-title-button .view-details {
    border-radius: 25px;
    background: #0044ab;
    color: #fff;
    padding: 5px 10px;
    cursor: pointer;
    margin-top: 15px;
    font-size: 13px;
}

.faq-box .view-details:hover,
.flex-title-button .view-details:hover,
.view-all:hover,
.read-more-button:hover {
    color: #fff;
    background: #0044ab;
}

.why-choose-section .why-choose-text .accordions {
    max-width: 100%;
}

.position-relative {
    position: relative;
}

/*news tab*/
.notice-block h4 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 2px;
    color: #003c70;
}

.notice-block p {
    margin-bottom: 2px;
}

.published-at {
    font-size: 14px;
}

.read-more-button {
    border-radius: 25px;
    background: #004b8e;
    color: #fff;
    padding: 2px 10px;
    cursor: pointer;
    margin-top: 15px;
    font-size: 13px;
}

/*news tab end*/
/*project slider*/
.ibn-project .section-title {
    margin-bottom: 15px;
}

.ibn-project h2 {
    font-size: 30px;
    text-align: left;
    padding-bottom: 5px;
}

.ibn-project-items p {
    margin-bottom: 2px;
}

.ibn-project-slider .owl-nav {
    margin-top: 2px;
}

/*project slider ends*/

/* documents html css  */
.page-title {
    padding-top: 40px;
    padding-bottom: 40px;
}

.td-none {
    text-decoration: none;
}

/* categories */
.wor {
    width: 74%;
}

.seac {
    width: 80%;
}

.search1 {
    padding-right: 7px;
}

.wor1 {
    width: 70%;
    min-height: 1.5rem;
    margin-left: 12px;
}

.wor2 {
    width: 33%;
    margin: 0 10px 0 15px;
    height: 1.5rem;
}

/* list-group customization  */
.list-group-item {
    padding: 15px 41px;
    background: #412263;
    color: #fff;
    border: 3px solid #fff;
    font-size: 21px;
    cursor: pointer;
}

.list-group-item a {
    color: #fff;
    display: block;
}

.list-group-item:hover {
    background: #1d013b;
}

.list-group-item:hover .for-ward {
    transform: scale(1.8);
    transition: 0.3s;
}

.reset {
    padding: 0px 29px 20px 0px;
}

.filter,
.show {
    padding: 0px 5px 20px 0px;
}

/* table */
.t-head1 {
    text-decoration: none;
    color: darkblue;
}

.mrgn-1 {
    margin-top: 2.5rem;
}

.for-ward {
    width: 34px;
    height: 24px;
    margin-left: -20px;
    margin-right: 10px;
}

.btn-primary {
    width: 99px;
    padding: 3px;
}

.reset1 {
    text-decoration: none;
}

.fa-undo {
    padding-right: 3px;
}

/* news custom css  */
/* categories */
.wor {
    width: 74%;
}

.seac {
    width: 80%;
}

.search1 {
    padding-right: 7px;
}

.wor1 {
    width: 70%;
    min-height: 1.5rem;
    margin-left: 12px;
}

.wor2 {
    width: 33%;
    margin: 0 10px 0 15px;
    height: 1.5rem;
}

.reset {
    padding: 0px 29px 20px 0px;
}

.filter,
.show {
    padding: 0px 5px 20px 0px;
}

.cat-resources {
    background: #412263;
    padding: 40px 0px 40px 400px;
}

.fs-40 {
    font-size: 40px;
}

.c-white {
    color: #fff;
}

.act-white {
    color: #fff !important;
}

.fs-14 {
    font-size: 14px;
}

/* list-group customization  */
.list-group-item {
    padding: 15px 41px;
    background: #412263;
    color: #fff;
    border: 3px solid #fff;
    font-size: 21px;
    cursor: pointer;
}

.list-group-item:hover {
    background: #1d013b;
}

.list-group-item:hover .for-ward {
    transform: scale(1.8);
    transition: 0.3s;
}

/* table */
.t-head1 {
    text-decoration: none;
    color: darkblue;
}

.mrgn-1 {
    margin-top: 2.5rem;
}

.for-ward {
    width: 34px;
    height: 24px;
    margin-left: -20px;
    margin-right: 10px;
}

.btn-primary {
    width: 99px;
    padding: 3px;
}

.reset1 {
    text-decoration: none;
}

.fa-undo {
    padding-right: 3px;
}

/* date customization */
.date {
    border: 1px solid #007ad1;
    width: 110px;
}

.c-date {
    background: #007ad1;
    color: #fff;
    text-align: center;
}

.c-month {
    background: #fff;
    color: #412263;
    text-align: center;
    font-size: 16px;
}

/* table content right  */
.vdetails {
    text-decoration: none;
    font-size: 15px;
}

/* news-details css  */
/* table */
.mrgn-1 {
    margin-top: 2.5rem;
}

.for-ward {
    width: 34px;
    height: 24px;
    margin-left: -20px;
    margin-right: 10px;
}

.btn-primary {
    width: 99px;
    padding: 3px;
}

.reset1 {
    text-decoration: none;
}

.fa-undo {
    padding-right: 3px;
}

/* published */
.published {
    color: #999;
    font-size: 14px;
}

.text-c {
    color: #000;
    font-weight: 700;
}

/* list-group customization  */
.list-group-item {
    padding: 15px 41px;
    background: #412263;
    color: #fff;
    border: 3px solid #fff;
    font-size: 21px;
    cursor: pointer;
}

.list-group-item:hover {
    background: #1d013b;
}

.list-group-item:hover .for-ward {
    transform: scale(1.8);
    transition: 0.3s;
}

/* title oof content */
.title-of-con {
    text-align: justify;
    font-size: 35px;
    font-weight: 700;
}

/* news details */
.news-details {
    font-size: medium;
    text-align: justify;
}

/* button customization */
.btn-colr {
    background: #412263;
    color: #fff;
    width: 100px;
}

.btn-colr:hover {
    background: #1d013b;
    color: #fff;
}

/* view / download */
.view {
    margin-left: 12px;
}

.download {
    margin-left: 7px;
}

/* contact-feedback css  */
/* card customization  */
.border-btm {
    border-bottom: 1px solid #412263;
}

.rewser {
    margin-top: 3.9rem;
}

.card-title {
    font-size: 1.4rem;
    font-weight: 600;
}

.card-text {
    font-size: large;
}

/* icon customization */
.icon {
    margin: 0px 8px;
    color: #1d013b;
}

.icon1 {
    margin: 6px 8px 0px 8px;
    color: #1d013b;
}

/* feedback customization */
.feedback {
    font-weight: 600;
    font-size: 2.5rem;
    text-align: center;
    color: #1d013b;
}

/* head of box  */
.head-of-box {
    font-size: 17px;
}

.name-box {
    width: 100%;
    background: #f2f2f2;
    border: 1px solid #dddddd;
    outline: medium none;
    padding: 10px;
}

.message-box {
    width: 100%;
    background: #f2f2f2;
    height: 220px;
    border: 1px solid #dddddd;
    outline: medium none;
    padding: 10px;
    text-align: start;
}

/* send button  */
.btn-send {
    border: 2px solid #412263;
    width: 6.3rem;
    height: 2.3rem;
    background: #fff;
    color: #412263;
}

.btn-send:hover {
    background: #1d013b;
    color: #fff;
    transition: 0.5s;
}

/* image gallery customization  */
/* image customization  */
.image-gallery-box {
    position: relative;
}

.image-gallery-box:hover {
    transform: scale(1.1);
    transition: 0.4s;
}

.image-gallery-box>a {
    display: block;
    width: 100%;
    height: 100%;
}

.image-gallery-box>a>img {
    display: block;
    width: 100%;
    height: 250px;
    border: 2px solid #000;
    overflow: hidden;
}

.image-gallery-caption {
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    position: absolute;
    bottom: 0;
    left: 5%;
    width: 90%;
    padding: 10px;
}

/* video galleries css  */
/* image customization  */
.video-gallery-box {
    position: relative;
}

.video-gallery-box>a {
    display: block;
    width: 100%;
    height: 100%;
}

.video-gallery-box>a>.play-icon {
    position: absolute;
    display: none;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    color: #000;
    background-color: rgba(255, 255, 255, 0.6);
}

.video-gallery-box>a:hover .play-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: calc(1.5s);
}

.video-gallery-box>a>img {
    display: block;
    width: 100%;
    height: 250px;
    border: 2px solid #000;
    overflow: hidden;
}

.video-gallery-caption {
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    position: absolute;
    bottom: 0;
    left: 5%;
    width: 90%;
    padding: 10px;
}

/* components-implimentations css  */
/* basic features customizations */
/* project map customizations  */
.implimentations-project-map {
    width: 60%;
    display: block;
    height: 20%;
}

/* timeline customization */
.implimentation-timeline-heading {
    font-size: 17px;
}

.implimentation-timeline-dates {
    font-size: 13px;
}

ul.timeline {
    list-style-type: none;
    position: relative;
}

ul.timeline:before {
    content: ' ';
    background: #d4d9df;
    display: inline-block;
    position: absolute;
    left: 29px;
    width: 2px;
    height: 100%;
    z-index: 400;
}

ul.timeline>li {
    margin: 20px 0;
    padding-left: 20px;
}

ul.timeline>li:before {
    content: ' ';
    background: rgb(158, 145, 145);
    display: inline-block;
    position: absolute;
    border-radius: 50%;
    border: 3px solid #161616;
    ;
    left: 20px;
    width: 20px;
    height: 20px;
    z-index: 400;
}

/* external news css  */
/* left side customization */
.for-ward {
    width: 34px;
    height: 24px;
    margin-left: -20px;
    margin-right: 10px;
}

/* list-group customization  */
.list-group-item {
    padding: 10px 15px;
    background: #00356c;
    color: #fff;
    border: 3px solid #fff;
    font-size: 18px;
    cursor: pointer;
}

.list-group-item i {
    margin-right: 10px;
}

.list-group-item:hover {
    background: #01283b;
}

.list-group-item.current {
    background: #001a26;
}

.list-group-item:hover .for-ward {
    transform: scale(1.8);
    transition: 0.3s;
}

/* right side customization */
.image-external-news {
    width: 100%;
    height: 100%;
}

.external-news-topic a {
    display: block;
}

.external-news-topic a h2 {
    font-size: 17px;
    color: var(--ibn-darkbluetext);
    margin-bottom: 2px;
}

.external-news-published {
    color: rgb(126, 123, 123);
    font-size: 13px;
    margin-bottom: 2px;
}

.external-news-published-date {
    color: #16121a;
    font-size: 12px;
}

.external-news-description {
    font-size: 18px;
}

.external-news-links {
    font-size: 11px;
}

.external-news-links>span>a {
    text-decoration: none;
}

.external-news-links>span>a:hover {
    color: #c1acd8;
}

.external-news-horizontal-line {
    border-bottom: 1px solid rgb(10, 10, 10);
}

.main-title-of-page {
    font-size: 20px;
    font-weight: bold;
    color: var(--ibn-darkbluetext);
    border-bottom: 2px solid #4b97f7;
    padding-bottom: 5px;
    margin-bottom: 15px;
}

.news-share-button {
    display: flex;
}

.news-share-button a {
    margin: 2px;
    color: #fff;
    background: #0067ff;
    padding: 2px 5px;
    font-size: 12px;
    line-height: 16px;
}

.pt-50 {
    padding-top: 50px;
}

.pb-50 {
    padding-bottom: 50px;
}

.company-section {
    margin-top: 0px;
}

.company-logo a {
    padding: 10px;
    border-radius: 20px;
    display: block;
    color: #fff;
    background: #190231;
    text-align: center;
}

.office-hours {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hours-title {
    font-size: 26px;
    color: #fff;
    border-bottom: 1px solid #fff;
    padding-bottom: 5px;
}

.office-hours-time {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    margin-top: 20px;
}

.office-hours-time h4 {
    font-size: 18px;
    margin-bottom: 2px;
}

.office-hours-time hr {
    background: #fff;
    width: 100%;
}

.footer-vip {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.footer-vip img {
    width: 120px;
    height: 130px;
    padding: 2px;
    border: 2px solid #ccc;
    margin-bottom: 10px !important;
}

.footer-vip .footer-vip-info {
    text-align: center;
}

.footer-vip .footer-vip-info h4,
.footer-vip .footer-vip-info h5 {
    margin-bottom: 3px;
    color: #fff;
}

.footer-vip .footer-vip-info h4 {
    font-size: 16px;
}

.footer-vip .footer-vip-info h5 {
    font-size: 14px;
}

.footer-contact-title {
    font-size: 21px;
    color: #fff;
    margin-bottom: 10px;
    display: block;
}

.accordion-title.active-title a {
    color: #fff;
}


.border-rad {
    border-top-right-radius: 28px;
    border-bottom-right-radius: 28px;
    color: #fff;
    background-color: #3c0c70;
    border-color: #3c0c70;
}

.border-rad:hover {
    background-color: #3c0c70;
    border-color: #3c0c70;
}

.text-bold {
    font-weight: bold;
}

.p-date {
    font-size: 14px;
}


.nav-item.dropdown.dropdown-mega {
    position: static;
}

.nav-item.dropdown.dropdown-mega>.dropdown-menu {
    width: 50% !important;
    top: auto;
    left: 5%;
}



/* .nav-item .nav-link.dropdown-toggle:after {
    content: "\ea17" !important;
    font-family: 'boxicons' !important;

} */

/* 
.download-timeline {
    margin: 0;
    padding: 20px;
    height: 350px;
    overflow: hidden;
    overflow-y: scroll;
} */

.text-right {
    text-align: right;
}


.accordion-header {
    background-color: #bae5ff;
    margin-top: 10px;
}

.accordion-header i {
    font-size: 18px;
    margin-right: 15px;
}

.accordion-header button {
    font-weight: bold;
    margin-bottom: 0;
}

.accordion-body ul {
    margin-left: 20px;
    padding-left: 20px;
}

.accordion-collapse {
    border: none;
}

.accordion-button:not(.collapsed) {
    color: #ffffff;
    background-color: #004099;
}

.why-invest-text img {
    text-align: center;
    width: 110px !important;
    height: 110px;
    margin-bottom: 10px;
}

.why-invest-text .why-invest-content {
    text-align: center;
}

.why-invest-text ul {
    padding-left: 20px;
    text-align: justify;
}

.youtube,
.linkedin {
    text-align: center;
    display: block;
    padding: 4px 10px;
    line-height: 18px;
}

.youtube i,
.linkedin i {
    font-size: 40px;
    text-shadow: 0 0 5px #fff;
}

.youtube i {
    color: #b10000;
}

.linkedin i {
    color: #0016b1;
}


/* contact */
.contact-area #contactForm {
    padding: 20px;
}

.contact-area #contactForm textarea {
    padding-left: 10px;
}

.contact-area #contactForm textarea {
    border: 0;
}

.office-name-contact-us {
    font-weight: 700;
    font-size: 17px;
    color: #535762;
}

.office-location-contact-us {
    color: #535762;
    font-size: 15px;
}

.email-contact-us,
.phone-contact-us {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.location-section {
    font-size: 15px;
}

.contact-section {
    flex: 1;
    padding: 35px 40px;
    border-right: solid 1px #d3d6de;
    background-color: #fff;
    border-radius: 6px 0 0 6px;
    box-shadow: -22px 35px 45px 0px rgb(85 88 114 / 16%);
}

.contact-card-section {
    background-color: #fff;
    border-radius: 0;
    border-left: 1px solid #ccc;
    padding-left: 40px;
}

.contact-area {
    background-image: none;
}

.contact-area label {
    color: #4a4a4a;
    font-weight: 600;
    font-size: 14px;
}

.form-contact-us {
    border: solid 1px #d3d6de !important;
    padding: 10px;
    width: 100%;
    border-radius: 4px !important;
    font-size: 15px !important;
    color: #2e2d2d;
    line-height: 1.3;
    height: auto;
    margin: 0;
    background: #fff;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}

.message-field {
    border: solid 1px #d3d6de !important;
    padding: 10px;
    width: 100%;
    border-radius: 4px !important;
    font-size: 15px !important;
    color: #2e2d2d;
    line-height: 1.3;
    height: auto;
    margin: 0;
    background: #fff;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}

.contact-area:before {
    background-color: #fff !important;
}

.with-errors ul li {
    color: red;
}

/* contact ends */

.testimonials-item .top a.video-link {
    display: flex;
    justify-content: center;
    align-items: center;
}

.testimonials-item .bottom {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.testimonials-item .bottom .name-info {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
}

.testimonial-text {
    cursor: pointer;
    display: block;
    width: 100%;
    height: 80px;
    overflow: hidden;
    transition: all .5s ease;
    color: #002440;
}

.investment-process-title {
    color: #004178;
}

.document-area {
    position: relative;
}

.document-area .owl-prev,
.document-area .owl-next {
    /* visibility: hidden; */
    position: absolute;
    top: 50%;
    width: 35px;
    height: 35px;
    font-size: 18px !important;
    border-radius: 50% !important;
    color: #001770 !important;
    border: 1px solid #001978 !important;
    -webkit-transition: 0.5s all ease;
    transition: 0.5s all ease;
    transform: translateY(-50%);
    background: rgb(255 255 255 / 56%) !important;
}

.document-area:hover .document-area .owl-prev,
.document-area:hover .document-area .owl-next {
    visibility: visible;
}

.document-area .owl-prev {
    left: 0;
}

.document-area .owl-next {
    right: 0;
}

.document-area .owl-prev i {
    line-height: 35px;
}

.document-area .owl-prev:hover {
    color: #fff !important;
    background: #355efc !important;
}


.document-area .owl-next i {
    line-height: 35px;
}

.document-area .owl-next:hover {
    color: #fff !important;
    background: #355efc !important;
}


/* notice page */
/* notice inner custom css here  */
.main-title-of-page {
    font-size: 25px;
    font-weight: bold;
    color: var(--ibn-darkbluetext);
    padding-bottom: 5px;
    margin-bottom: 15px;
    border-bottom: 1px solid #4b97f7;
}

.p-date {
    font-size: 14px;
    color: red;
}

.published-date-medias {
    padding-bottom: 5px;
    margin-bottom: 15px;
}

.mini-title-of-page {
    font-size: 15px;
    color: #000;
    font-weight: 500;
    margin-bottom: 14px;
}

.more-notices-head {
    background: #2460B9;
    color: #fff;
    padding: 10px 10px;
    font-weight: 700;
    margin-top: 8px;
    font-size: 20px;
    margin-bottom: 10px;
}

.more-notices-section>ul>li {
    list-style: none;
    margin-left: 10px;
    border-bottom: 1px solid #ccc;
    margin-bottom: 10px;
    padding-bottom: 8px;
}

.more-notices-section>ul>li>a {
    font-size: 15px;
    font-weight: 600;
    color: #2460B9;
}

.more-notices-section>ul>li>a:hover {
    color: red;
}

.more-notices-section>ul>li>div {
    font-size: 13px;
    color: red;
}

/* social-media */
.social-media {
    background: url(../images/social-left-img.jpg) no-repeat;
    background-size: 100% 100%;
    padding-bottom: 160px;
    margin-bottom: 40px;
    min-height: 450px;
}

.social-medias>a {
    color: #fff;
    margin-right: 5px;
    position: relative;
    top: 0;
    transition: top ease 0.3s;
}

.social-medias>a:hover {
    top: -7px;
}

.social-facebook {
    background: #3B5998;
    padding: 6px;
}

.social-twitter {
    background: #1DA1F2;
    padding: 6px;
}

.social-messenger {
    background: #0084FF;
    padding: 6px;
}

.social-envelope {
    background: #848484;
    padding: 6px;
}

.social-gmail {
    background: #DB4437;
    padding: 6px;
}

/* social-media ends */

/* notices section custom css here  */
.btn-action {
    width: 35px !important;
}

/* notice page ends */

.notice-title {
    font-weight: bold;
    color: #005095;
    font-size: 14px;
    line-height: 14px;
}

.related-notice-title {
    display: block;
    color: #005095;
    font-size: 14px;
}


.related-notice-title:hover {
    color: #005095 !important;
}


/*faq*/
ul.accordion-list {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    padding: 20px;
    margin: 0;
    list-style: none;
    background-color: #f9f9fa;
}

ul.accordion-list>li {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    background-color: #fff;
    padding: 20px;
    margin: 0 auto 15px auto;
    border: 1px solid #eee;
    border-radius: 5px;
    cursor: pointer;
}

ul.accordion-list>li.active h3:after {
    transform: rotate(45deg);
}

ul.accordion-list>li h3 {
    font-weight: 700;
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    padding: 0 0 0 0;
    margin: 0;
    font-size: 15px;
    letter-spacing: 0.01em;
    cursor: pointer;
}

ul.accordion-list>li h3:after {
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    margin-left: auto;
    content: "";
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-size: 1.25rem;
    transition: transform .2s ease-in-out;
}

ul.accordion-list>li div.answer {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    cursor: pointer;
}

ul.accordion-list>li div.answer p {
    position: relative;
    display: block;
    font-weight: 300;
    padding: 10px 0 0 0;
    cursor: pointer;
    line-height: 150%;
    margin: 0 0 15px 0;
    font-size: 14px;
}

div.answer ul {
    margin-left: 20px;
}


/* new navigation */
.main-nav {
    background: #0059A1;
    border-top: 1px solid #ccc;
}

.main-nav nav .navbar-nav .nav-item a {
    color: #fff;
}

.language-switcher {
    color: #fff;
}

.investment-nepal-img-box {
    width: 210px;
    margin-right: 30px;
}

.show-flag-img-box {
    width: 120px;
}

@media (min-width: 992px) {
    .navbar .megamenu .col-megamenu h6.title {
        margin-left: 15px;
        padding-top: 10px;
    }
}

.main-nav nav .navbar-nav .nav-item a:hover {
    border-bottom: none;
}

.main-nav nav .navbar-nav .nav-item a:hover,
.main-nav nav .navbar-nav .nav-item a:focus,
.main-nav nav .navbar-nav .nav-item a.active {
    color: #d9fdff;
}

.main-nav nav .navbar-nav .nav-item a:focus,
.main-nav nav .navbar-nav .nav-item a.active {
    /* border-bottom: 2px solid #5bf7ff; */
    transition: transform 250ms ease-in-out;
    /* margin-top: -2px; */
}

.nav-uppercase {
    text-transform: uppercase;
}

.main-nav nav .navbar-nav .nav-item a:hover,
.main-nav nav .navbar-nav .nav-item a.active {
    color: #fff;
}

.main-nav nav .navbar-nav .nav-item:hover a {
    color: #fff;
}

.main-nav nav .navbar-nav {
    position: relative;
    color: #fff;
    transition: all 300ms cubic-bezier(0.075, 0.82, 0.165, 1);
    margin-left: 0;
    margin-right: 0;
}

.main-nav .navbar-nav>li {
    padding: 10px !important;
}

.main-nav .navbar-nav>li>a {
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding: 0 !important;
}

.main-nav .navbar-nav>li:after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    display: block;
    transition: all 0.3s ease;
    bottom: 25%;
}

.main-nav .navbar-nav>li:hover::after {
    width: 50%;
    height: 2px;
    background-color: #5bf7ff;
}

/* new navigation ends*/


/* footer top */
.top-footer-area {
    background-color: #0047747d;
    position: relative;
}

.top-footer-section .container {
    border-bottom: 1px solid #ccc;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.footer-logo-top {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.footer-logo-top img {
    background: transparent;
    margin-right: 5px;
}

.footer-logo-top h2 {
    color: #fff;
    font-size: 20px;
    letter-spacing: 1px;
    margin: 0 0 0 5px;
}

.footer-logo-top h2 small {
    font-size: 15px;
}

.newsletter-form label {
    text-align: right;
    width: 100%;
    font-size: 14px;
    margin-bottom: 5px;
    color: #ddd;
}


.sticky-top {
    position: sticky;
    top: 0;
    z-index: 1020;
    left: 0;
    right: 0;
    background: rgb(255, 255, 255);
}

.sticky-top .header-div {
    transition: all 0.6s ease-in;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sticky-top.set-logo-in-middle .header-div {
    padding-left: 220px;
    padding-right: 220px;
}

.sticky-top.set-logo-in-middle .header-div .scorllable-img {
    width: 75%;
}

.footer-content {
    list-style: none;
}

.footer-content .footer-content-item {
    margin-bottom: 10px;
    line-height: 20px;
}

.footer-content .footer-content-item a {
    text-decoration: none;
    color: #efefef;
    font-size: 13px;
    display: block;
}

.footer-content .footer-content-item a:hover {
    color: #fff;
}

.footer-content.break-li-2-column {
    -moz-column-count: 2;
    -moz-column-gap: 20px;
    -webkit-column-count: 2;
    -webkit-column-gap: 20px;
    column-count: 2;
    column-gap: 20px;
}

.investment-img img {
    width: 100%;
}

.bg-vector-ibn {
    background-image: url("../images/vector-for-ibn-footer.png");
}

.bg-transparent-blue {
    background: #0059a1c7;
}


/* investment-partners */
.testimonial-area-block .section-title {
    text-align: right;
}

.testimonial-area-block .section-title h2 {
    color: #002440;
}

.testimonial-area-block .owl-prev,
.testimonial-area-block .owl-next {
    opacity: 0 !important;
}

.testimonial-area-block:hover .owl-prev,
.testimonial-area-block:hover .owl-next {
    opacity: 1 !important;
}

.investors-in-nepal {
    background-image: url(../images/nepal-sampada.svg);
    background-attachment: fixed;
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: auto;
}

.investors-in-nepal-color {
    display: block;
    background-color: #ffffffc4;
}

.investors-in-nepal-title {
    border-bottom: 1px solid #b1b1b1;
}

.investors-in-nepal-title h2 {
    color: var(--ibn-darkblue);
}

.investment-partner .partner-item .logo-img a img {
    height: 75px;
}

.investment-partner .partner-item .logo-img a {
    overflow: hidden;
    display: inline-block;
    position: relative;
    transition: all 0.3s ease-in-out;
}

.investment-partner .partner-item .logo-img a .hover-logo {
    transition: all 0.3s ease-in-out;
    display: block;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    visibility: hidden;
    filter: grayscale(100%);
}

.investment-partner .partner-item .logo-img a .main-logo {
    /* filter: grayscale(100%); */
    transition: all 0.3s ease-in-out;
    display: block;
}

.investment-partner .partner-item .logo-img a:hover .hover-logo {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    display: block;
    opacity: 3;
    visibility: visible;
    -webkit-transform: translateY(0%);
    -moz-transform: translateY(0%);
    -ms-transform: translateY(0%);
    -o-transform: translateY(0%);
    transform: translateY(0%);
    filter: grayscale(0%);
}

.investment-partner .partner-item .logo-img a:hover .main-logo {
    display: block;
    visibility: hidden;
    -webkit-transform: translateY(100%);
    -moz-transform: translateY(100%);
    -ms-transform: translateY(100%);
    -o-transform: translateY(100%);
    transform: translateY(100%);
    filter: grayscale(100%);
}

/* investment-partners ends */


/* recent-news */
.recent-news {
    /*border-bottom: 1px solid #ccc;
    border-top: 1px solid #ccc;*/
    background-color: #dadada;
}

.recent-news .title-box {
    background-color: #e95d57;
    /* background-color: #0f6849; */
    color: white;
    text-align: center;
}

.recent-news .marquee-title {
    font-size: 16px;
    padding: 10px 0;
    line-height: 20px;
    color: #ffffff;
}


.recent-news a {
    background-color: #dadada;
    color: #000;
}

.recent-news-box {
    padding: 6px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.recent-news-box li {
    display: inline;
    margin-right: 10px;
}

.recent-news-box li a {
    color: #999999;
    font-size: 13px;
}

.recent-news-box li p {
    display: inherit;
    font-weight: 600;
    font-size: 13px;
    color: #001e36;
    margin: 0;
}

/* recent-news ends */

/* oss-platform */
.oss-platform {
    background-image: url(../images/oss-bg.jpg);
    background-attachment: fixed;
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: auto;
}

.oss-platform-color {
    display: block;
    background-color: #0059a1bd;
}

.oss-platform-title-section {
    display: block;
    text-align: center;
}

.oss-platform-title-section img {
    text-align: center;
    margin-bottom: 5px;
    width: 80px;
    height: 80px;
}

.oss-platform-title {
    margin-bottom: 20px;
}

.oss-platform-title h2 {
    font-size: 30px;
    color: #e7feff
}

.oss-platform-title p {
    color: #fff;
    margin-top: 10px;
    margin-bottom: 20px;
    font-size: 17px;
}

.oss-services-link {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    margin-top: 40px;
    gap: 10px;
}


.oss-services-link .e-app-link {
    background: linear-gradient(180deg, #00815e, #009f75);
    padding: 15px 10px;
    font-size: 16px;
    color: #fff;
    border-radius: 10px;
}

.oss-services-link .e-app-link:hover {
    box-shadow: 0 3px 9px #333;
    background: linear-gradient(180deg, #009f75, #00815e)
}

/* oss-platform ends */


/* infographic investment process */
.investment-process-circle-infographic {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    transition: all 0.3s ease-in-out;
    font-family: Montserrat, sans-serif;
}

.investment-process-circle-infographic .center-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 250px;
    min-height: 250px;
    background-color: #ffffff;
    border-radius: 50%;
    margin-right: -125px;
    z-index: 1;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
    position: relative;
}

.investment-process-circle-infographic .center-circle .content {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    /* border: 5px solid rgba(0, 0, 0, 0.1); */
    box-shadow: inset 0px 0px 30px rgb(0 0 0 / 20%);
    padding: 0;
    margin: 0;
}

.investment-process-circle-infographic .center-circle .content h2 {
    margin: 0px;
    font-size: 1.5rem;
    /* color: #C70039; */
}

.investment-process-circle-infographic .center-circle .content p {
    margin: 0px;
    font-weight: bold;
}

@media (max-width: 767px) {
    .investment-process-circle-infographic {
        transform: scale(0.9);
    }
}

@media (max-width: 480px) {
    .investment-process-circle-infographic {
        transform: scale(0.6);
        margin-left: -85px;
    }
}

.investment-process-circle-container {
    min-width: 520px;
    padding: 30px 0px;
    overflow: hidden;
    position: relative;
}

.investment-process-circle-container .investment-process-circle {
    width: 500px;
    height: 500px;
    border-radius: 50%;
    margin-left: -250px;
    position: relative;
    overflow: hidden;
}

.investment-process-circle-container .circle-section {
    position: absolute;
    width: 500px;
    height: 500px;
    box-shadow: inset 0px 0px 15px rgba(0, 0, 0, 0.4);
}

.investment-process-circle-container .circle-section:nth-child(1) {
    background-color: #900C3E;
    left: 250px;
}

.investment-process-circle-container .circle-section:nth-child(2) {
    background-color: #C70039;
    transform: rotate(30deg) translate(50%, -50%);
}

.investment-process-circle-container .circle-section:nth-child(3) {
    background-color: #FF5733;
    transform: rotate(60deg) translate(50%, -50%);
}

.investment-process-circle-container .circle-section:nth-child(4) {
    background-color: #57c9ff;
    transform: rotate(90deg) translate(50%, -50%);
}

.investment-process-circle-container .circle-section:nth-child(5) {
    background-color: #2e8cff;
    transform: rotate(120deg) translate(50%, -50%);
}

.investment-process-circle-container .circle-section:nth-child(6) {
    background-color: #00911f;
    transform: rotate(150deg) translate(50%, -50%);
}

.investment-process-circle-container .inner-circle-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0%;
}

.investment-process-circle-container .inner-circle-container .inner-circle {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    background: #ffffff;
    border-radius: 50%;
    border: 2px solid;
    font-weight: bold;
    font-size: 1.5rem;
    box-shadow: 0px 0px 5px rgb(0 0 0 / 50%);
    transform: translate(-50%, -50%);
    transition: all 0.2s ease-in-out;
    cursor: pointer;
}

.investment-process-circle-container .inner-circle-container .inner-circle:hover {
    transform: translate(-50%, -50%) scale(1.2);
}

.investment-process-circle-container .inner-circle-container .process-text {
    position: absolute;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

.investment-process-circle-container .inner-circle-container .inner-circle:nth-of-type(1) {
    left: 13%;
    top: 8%;
    border-color: #900C3E;
    color: #900C3E;
}

.investment-process-circle-container .inner-circle-container .process-text:nth-of-type(1) {
    left: 22%;
    top: 5%;
    color: #900C3E;
}

.investment-process-circle-container .inner-circle-container .inner-circle:nth-of-type(2) {
    left: 34%;
    top: 19%;
    border-color: #C70039;
    color: #C70039;
}

.investment-process-circle-container .inner-circle-container .process-text:nth-of-type(2) {
    left: 43%;
    top: 16%;
    color: #C70039;
}

.investment-process-circle-container .inner-circle-container .inner-circle:nth-of-type(3) {
    left: 47%;
    top: 40%;
    border-color: #FF5733;
    color: #FF5733;
}

.investment-process-circle-container .inner-circle-container .process-text:nth-of-type(3) {
    left: 56%;
    top: 35%;
    color: #FF5733;
}

.investment-process-circle-container .inner-circle-container .inner-circle:nth-of-type(4) {
    left: 47%;
    top: 61%;
    border-color: #1990c9;
    color: #1990c9;
}

.investment-process-circle-container .inner-circle-container .process-text:nth-of-type(4) {
    left: 56%;
    top: 56%;
    color: #1990c9;
}


.investment-process-circle-container .inner-circle-container .inner-circle:nth-of-type(5) {
    left: 34%;
    top: 81%;
    border-color: #2e8cff;
    color: #2e8cff;
}

.investment-process-circle-container .inner-circle-container .process-text:nth-of-type(5) {
    left: 43%;
    top: 77%;
    color: #2e8cff;
}

.investment-process-circle-container .inner-circle-container .inner-circle:nth-of-type(6) {
    left: 13%;
    top: 93%;
    border-color: #00911f;
    color: #00911f;
}

.investment-process-circle-container .inner-circle-container .process-text:nth-of-type(6) {
    left: 22%;
    top: 92%;
    color: #00911f;
}

.anim {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 10px;
    -webkit-animation: spin 20s forwards infinite;
    -moz-animation: spin 20s forwards infinite;
    animation: spin 20s forwards infinite;
    background-color: red;
}

@keyframes spin {
    from {
        transform: rotate(98deg) translate(-100px) rotate(0deg);
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    to {
        transform: rotate(260deg) translate(-100px) rotate(-260deg);
        opacity: 0;
    }
}

/* infographic investment process ends */

.animate__animated {
    --animate-delay: 0.9s;
    --animate-duration: 1s;
}

.testimonial-area-block {
    /* background: #f8f9fd; */
    border-radius: 10px;
}

/* why-invest-in-nepal */


.why-invest-in-nepal .section-title {
    text-align: center;
    margin: 10px 0;
    font-size: 24px;
    text-shadow: 1px 1px 3px #c5c5c5;
    color: #0070cb;
    /* color: #cd362f; */
}

.why-invest-in-nepal .ranking-box {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid #ccc;
}

.why-invest-in-nepal .ranking {
    background-image: url(../images/why-invest-in-nepal/bala-logo.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 200px;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 40px;
    text-align: center;
}

.why-invest-in-nepal .ranking .position {
    margin-bottom: 5px;
}

.why-invest-in-nepal .ranking p {
    font-size: 14px;
    line-height: 17px;
}

.human-resource-section .human-resource-box {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 15px;
    margin-top: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid #ccc;
}

.human-resource-box .human-resource {
    display: flex;
    justify-content: center;
    align-items: center;
}

.human-resource-box .human-resource img {
    width: 170px;
    margin-right: 15px;
}

.human-resource-box .human-resource .human-resource-info h3,
.member-of-box h3 {
    line-height: 22px;
    font-size: 18px;
}

.human-resource-box .human-resource .human-resource-info p {
    font-size: 18px;
    line-height: 22px;
}


.member-of-section .member-of-box {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding-bottom: 15px;
    margin-top: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid #ccc;
}

.member-of-section .member-of-box img {
    margin-bottom: 5px;
}

.why-invest-text-section {
    margin-top: 15px;
}