:root {
    --text: #25303b;
    --green: #4ba300;
    --blue: #003176;
    --bg1: #f2f4f8;
    --black: #000000;
    --white: #ffffff;
    --bg2: #25303b
}

* {
    margin: 0px;
    padding: 0px;
    outline: 0px;
    box-sizing: border-box;
}

*,
*:before,
*:after {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

a {
    text-decoration: none;
    color: var(--text);
    transition: all 0.4s linear 0s;
}

a:hover {
    transition: all 0.4s linear 0s;
    color: #222;
}

a img,
img {
    border: 0px;
    outline: none;
}

img {
    max-width: 100%;
    height: auto;
}

a,
input[type="submit"],
button {
    outline: none;
}

.clear {
    clear: both;
}

::-moz-placeholder {
    opacity: 1;
}

input[type=submit],
button,
select {
    -moz-appearance: none;
    -webkit-appearance: none;
}

input,
select,
button,
textarea {
    font-family: "DM Sans", sans-serif;
    font-weight: normal;
}

input[type=submit],
button {
    cursor: pointer;
    transition: all 0.4s linear 0s;
}

input[type="submit"],
input[type="text"],
input[type="date"],
input[type="time"],
input[type="search"],
button,
input[type="email"],
input[type="tel"],
textarea,
select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0;
    border: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
li,
label,
input,
textarea,
img,
submit,
button,
a {
    margin: 0px;
    padding: 0px;
    outline: none;
    list-style: none;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
tt,
var,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
    order: 0;
    font-size: 100%;
    font-style: inherit;
    font-weight: inherit;
    margin: 0;
    outline: 0;
    padding: 0;
    vertical-align: baseline;
}

html {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 62.5%;
    overflow-y: scroll;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

q {
    -webkit-hyphens: none;
    -moz-hyphens: none;
    -ms-hyphens: none;
    hyphens: none;
    quotes: none;
}

a:focus {
    outline: 0;
    outline: 0;
}

a:hover,
a:active {
    outline: 0;
}

a img {
    border: 0;
}

p {
    margin-bottom: 15px;
}

body {
    color: var(--text);
    font-family: "DM Sans", sans-serif;
    font-weight: normal;
    font-size: 16px;
    line-height: 1.7;
    position: relative;
    font-optical-sizing: auto
}

strong,
b {
    font-weight: 600;
}

h1,
.h1 {
    font-size: 54px;
    font-weight: 600;
    line-height: 1.1;
    font-family: "Oswald", sans-serif;
}

h2,
.h2 {
    font-size: 36px;
    font-weight: 600;
    line-height: 1;
    font-family: "Oswald", sans-serif;
    margin-bottom: 40px;
}

h3,
.h3 {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.2;
    font-family: "Oswald", sans-serif;
}

h4 {
    font-size: 20px;
    font-weight: 900;
    line-height: 1.2;
    font-family: "Oswald", sans-serif;
}

h5 {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.3;
    font-family: "Oswald", sans-serif;
}

h6 {
    font-size: 16px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--green);
    margin: 0 0 10px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    text-transform: uppercase;
}

.white h1,
.white h2 {
    color: var(--white);
}

.blue h1,
.blue h2 {
    color: var(--blue);
}

p:last-child {
    margin-bottom: 0 !important;
}

.btn {
    display: inline-block;
    align-items: center;
    justify-content: center;
    column-gap: 10px;
    min-width: 186px;
    position: relative;
    height: 56px;
    padding: 0 25px;
    background-color: #25303b;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    line-height: 56px;
}

.btn.white {
    min-width: 186px;
    position: relative;
    padding: 0 25px;
    background-color: #fff;
    color: #25303b;
    font-size: 18px;
    font-weight: 500;
    text-align: center;
}

.btn:hover {
    background-color: var(--green);
    color: #fff;
}

.btn:after {
    content: '';
    transition: all 0.3s ease-in-out;
    background: transparent url(../images/icn-arow.png) no-repeat center;
    width: 21px;
    height: 19px;
    display: inline-block;
    position: relative;
    top: 4px;
    left: 7px;
}

.btn.white:after {
    content: '';
    background: transparent url(../images/icn-arow.png) no-repeat center;
}

.btn.black:after {
    content: '';
    background: transparent url(../images/icn-arow-w.png) no-repeat center;
}

.btn:hover:after {
    color: var(--green);
    transition: all 0.3s ease-in-out;
}

.btn.blue {
    background-color: var(--blue);
}

.btn.blue:after {
    color: var(--green);
}

.btn.blue:hover {
    background: var(--green);
}

.btn:before {
    content: '';
    position: absolute;
    border: 1px solid var(--bg2);
    left: 9px;
    right: -9px;
    bottom: -8px;
    width: calc(100% + 0px);
    height: calc(100% + 0px);
    top: 9px;
    z-index: 0;
    transition: all 0.4s linear 0s;
}

.btn.white:before {
    content: '';
    border: 1px solid #fff;
}

.btn:hover:before {
    border-color: var(--green)
}

.btn.small {
    max-width: 270px;
}

.srip {
    position: absolute;
    right: 0;
    bottom: 87px;
    transform: rotate(270deg);
    display: none;
}

.srip a {
    background: #1e61ac;
    color: #fff;
    padding: 5px 10px;
    font-size: 15px;
    height: 180px;
}

a.btn2 {
    min-width: 131px;
    position: relative;
    font-size: 15px;
    font-weight: 500;
    text-align: center;
    border: 1px solid #fff;
    height: 35px;
    display: inline-block;
    line-height: 35px;
    color: #fff;
    transition: all 0.4s linear 0s;
}

.btn2:hover {
    background: var(--green);
    border-color: var(--green)
}

.btn2:after {
    content: '';
    transition: all 0.3s ease-in-out;
    background: transparent url(../images/icn-arow-w.png) no-repeat center;
    width: 21px;
    height: 19px;
    display: inline-block;
    position: relative;
    top: 4px;
    left: 7px;
    background-size: 70%;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    width: 93%;
}

.flex {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.align-top {
    align-items: flex-start;
}

.mt40 {
    margin-top: 40px;
}

.mt60 {
    margin-top: 60px;
}

.btnwrap span {
    display: inline-block;
}

.py100 {
    padding: 100px 0;
}

.center {
    text-align: center;
}

/* Header And Footer Style */
.header {
    width: 100%;
    background: transparent;
    position: fixed;
    z-index: 9;
    padding: 25px 0;
    top: 0;
    left: 0;
    transition: all .5s ease;
}

.header.sticky {
    background: #25303b;
    padding: 16px 0;
}

.menubutton {
    display: none;
}

.logo {
    width: 170px;
}

.logo img {
    display: block;
}

.navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navigation ul {
    display: flex;
    column-gap: 40px;
    padding-right: 60px;
}

.navigation ul li {
    font-weight: 400;
    position: relative
}

.navigation ul li a {
    color: var(--white);
}

.navigation ul li a:hover,
.navigation ul li.current a {
    color: var(--green);
}

.navigation ul li.active:after {
    content: '';
    position: absolute;
    height: 1px;
    left: 0;
    bottom: -3px;
    background: #fff;
    width: 30px;
}

.footer {
    position: relative;
    background: #000 url(../images/bg3.png) no-repeat center;
    background-size: cover;
}

.footer .container {
    position: relative;
    z-index: 1;
}

.footerbg {
    opacity: 0.05;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
}

.footermain {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-bottom: 60px;
    padding-top: 65px;
}

.fcol1 {
    padding-right: 70px;
}

.flogo img {
    display: block;
    max-width: 185px;
}

.fcol1 p {
    margin: 20px 0;
    color: #fff;
    font-size: 16px;
    line-height: 26px;
}

.footermain h5 {
    color: #fff;
    margin: 0 0 20px;
    text-transform: initial;
    font-weight: 400;
}

.fcol2 {
    padding-right: 40px;
    padding-left: 70px;
}

.fcol3 {
    padding-right: 40px;
    padding-left: 70px;
}

.fcol4 {
    padding-left: 60px;
}

.footermain>div {
    width: 25%;
}

.fcol4.text-right {
    text-align: right;
}

.footermain .menu li {
    width: 100%;
    margin: 0 0 18px;
    font-size: 15px;
    line-height: 1;
}

.footermain .menu li a {
    color: #fff;
}

.footermain .menu li a:hover {
    color: var(--green);
}

.footermain .menu li:last-child {
    margin-bottom: 0;
}

.ctinfo div {
    width: 100%;
    display: flex;
    align-items: flex-start;
    margin: 0 0 20px;
    column-gap: 15px;
}

.ctinfo .icon {
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ctinfo label {
    color: #fff;
    font-size: 15px;
    line-height: 1;
}

.ctinfo label a:hover {
    text-decoration: underline;
}

ul.social {
    display: flex;
    column-gap: 10px;
    row-gap: 10px;
    padding-top: 10px;
}

ul.social li a {
    width: 40px;
    height: 40px;
    color: #25303b;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fff;
    font-size: 17px;
}

ul.social li a:hover {
    background: var(--green);
    color: #fff;
}

.footer .disclaimer {
    width: 100%;
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer .disclaimer p {
    font-size: 16px;
    line-height: 26px;
    opacity: 0.6;
    color: #fff;
    margin: 0 0 15px;
}

.footermain .btn:hover {
    background-color: #fff;
    color: var(--green);
}

.copywrite {
    color: #fff;
    text-align: center;
    padding: 22px 0 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Header And Footer Style */
section.homehero {
   /* background: #001229 url(../images/banner.png) no-repeat center; */
    max-height: 860px;
    position: relative;
    background-size: cover;
    height: 100vh;
    min-height: 800px;
}

.homehero .caption {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    width: 100%
}

caption h1 {
    color: var(--white);
    max-width: 640px;
}

.p120 {
    padding: 110px 0;
}

.text-center {
    text-align: center;
}

.w70p {
    width: 70%;
}

.m-center {
    margin: 0 auto;
}

.text-uppercase {
    text-transform: uppercase;
}

.text-init {
    text-transform: initial;
}

.col4-row .col {
    width: calc(25% - 20px);
}

.col4-row {
    column-gap: 20px;
    padding-top: 40px;
}

section.experience {
   /* background: #eee url(../images/bg1.png) no-repeat center; */
    background-size: cover;
	    background-attachment: fixed;
}

.color-white {
    color: var(--white);
}

.experience .counter {
    font-size: 50px;
    font-family: "Oswald", sans-serif;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 26px;
}

.experience h3 {
    font-size: 20px;
    text-transform: initial;
    font-weight: 400;
    margin-bottom: 20px;
}

.experience p {
    line-height: 1.4;
    font-size: 16px;
}

.founder .col-wrap {
    column-gap: 30px;
}

.founder .col-wrap>div,
.row-2-col>div {
    width: calc(50% - 70px);
    position: relative;
}

.investment_strategies {
    /*background: #001229 url(../images/bg2.png) no-repeat center;*/
    background-size: cover;
	 background-attachment: fixed;
}

.accordion-item {
    width: 100%;
    position: relative;
    cursor: pointer;
    border-bottom: 1px solid #fff;
    padding: 20px 0;
}

.accordion-item:last-child {
    margin-bottom: 0;
    border-bottom: 0;
}

.accordion-content {
    display: none;
}

.accordion-content p {
    margin-top: 15px;
}

.accordion-header {
    font-size: 21px;
    font-weight: 500;
}

.accordion-item:first-child {
    padding-top: 0;
}

.style1 li {
    position: relative;
    padding-left: 24px;
}

.style1 li:before {
    content: '\2713';
    font-size: 9px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: transparent;
    color: white;
    border-radius: 50%;
    width: 15px;
    height: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #fff;
}

.slick-track 1 {
    display: flex;
    /* align-items: center; */
    justify-content: space-between;
}

.expertise_list .item {
    padding: 34px 20px;
    background: #f3f4f7;
    border: 10px solid #fff;
    box-shadow: var(--shadow);
    --shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    min-height: 330px;
}

.expertise_list .item h3 {
    margin-bottom: 20px;
    text-transform: initial;
    font-weight: 500;
}

.expertise_list .item p {
    font-size: 15px;
}

.expertise_list .slick-slide>div {
    padding: 10px;
}

.fund_raised .col4-row {
    width: 85%;
    margin: 0 auto;
    margin-top: 15px;
}

.fund_raised .col4-row .col {
    background: #fff;
    border: 1px solid #eee;
    text-align: center;
    padding: 30px 20px;
}

.fund_raised .col4-row h4 {
    font-size: 16px;
    font-weight: 500;
    margin-top: 15px;
}

.fund_raised .figure {
    height: 102px;
}

.bgwhite {
    background: #fff !important;
}

.bggrey {
    background: #f9f9fa;
}

.bgblue {
    background: #25303b;
}

ul.timeline {
    display: flex;
    justify-content: space-between;
    column-gap: 20px;
    border-top: 1px solid #fff;
}

ul.timeline li {
    width: 25%;
    position: relative
}

ul.timeline li h3 {
    font-size: 17px;
    font-weight: 500;
    text-transform: initial;
    margin-bottom: 12px;
}

ul.timeline li p {
    font-size: 14px;
}

ul.timeline li .year {
    font-weight: 400;
    background: #f2f4f826;
    display: inline-block;
    width: 63px;
    text-align: center;
    border-radius: 12px;
    font-size: 13px;
    padding: 2px 8px;
    margin: 25px 0 20px;
}

ul.timeline li:after {
    content: '';
    width: 7px;
    height: 7px;
    background: #fff;
    position: absolute;
    top: -4px;
    left: 4px;
    border-radius: 50%;
}

ul.timeline li:before {
    content: '';
    width: 16px;
    height: 16px;
    background: #ffffff4a;
    position: absolute;
    top: -8px;
    left: -1px;
    border-radius: 50%;
}

.partners {
    margin-top: 70px;
}

.partners h3 {
    padding: 60px 20px 16px
}

.partners .container {
    border-top: 1px solid #313d49;
}

.partners ul {
    display: grid;
    flex-wrap: wrap;
    grid-template-columns: repeat(6, 1fr);
    align-content: space-around;
    justify-content: space-between;
    gap: 10px;
}

.partners ul li {
    /* width: 15%; */
    background: #313d49;
    display: flex;
    align-items: center;
    justify-content: center;
   
}
.partners ul li a {
    width: 100%;
    height: 100%;
    padding: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-list .col {
    width: 150px;
}

.project-list .figure {
   
}



.slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
    background: transparent;
    color: #fff;
    z-index: 1;
}

.slick-next {
    right: 20px;
}

.slick-prev {
    left: 20px;
}

.project-list .figure {
    /* margin: 20px; */
    position: relative;
    overflow: hidden;
    
}
.project-list .slick-slide{margin: 10px;}
.project-list .figure img {
    width: 100%;
    max-width: inherit;
    height: 280px;
}

.project-list .caption {
    background: rgb(37 48 59 / 80%);
    width: 90%;
    padding: 10px 10px;
    text-align: center;
    position: absolute;
    bottom: 0px;
    left: 0;
    right: 0;
    margin: 0 auto;
    opacity: 1;
    line-height: 1.2;
    color: #fff;
    font-size: 17px;
}
.group {
    display: none;
}
.project-list .slick-center .caption {
    opacity: 1;
}

.ctform {
    padding: 12px 100px 40px;
    background: #25303b;
    margin: 40px auto 0px;
    width: 80%;
}

.ctform ul {
    width: 100%;
    display: flex;
    justify-content: space-between;
    row-gap: 20px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.ctform ul li {
    width: 48%;
}

.ctform ul li.w100 {
    width: 100%;
}

.ctform .field {
    width: 100%;
    height: 46px;
    background: transparent;
    border-radius: 0px;
    padding: 5px 15px;
    font-size: 15px;
    color: #fff;
    border: 1px solid #313d49;
}

select option {
    background: #25303b;
    color: #f3f4f7;
}

.ctform label.col {
    color: #abadae;
}

.ctform label:before {
    content: '';
    -webkit-appearance: none;
    background-color: transparent;
    border: 2px solid #313d49;
    /* box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05); */
    padding: 10px;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
    margin-right: 15px;
}

.ctform input:checked+label:after {
    content: '';
    display: block;
    position: absolute;
    top: 2px;
    left: 9px;
    width: 6px;
    height: 14px;
    border: solid #9fa7c0;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.ctform .form-group input {
    padding: 0;
    height: initial;
    width: initial;
    margin-bottom: 0;
    display: none;
    cursor: pointer;
}

.ctform .form-group label {
    position: relative;
    cursor: pointer;
}

.ctform textarea.field {
    height: 100px;
    resize: none;
}

.ctform .btn:hover {}

.ctform .center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.ctform .center span {
    display: inline-block;
    margin: 0 auto;
}

input::placeholder,
textarea::placeholder {
    color: #fff;
}

.social-media .linkedin {
    background: #3577b3;
}

.social-media .instagram {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.social-media a {
    width: 155px;
    height: 48px;
    display: flex;
    text-align: center;
    /* line-height: 60px; */
    font-size: 16px;
    color: #fff;
    align-items: center;
    /* justify-content: space-between; */
    padding: 0px 19px;
    margin: 0 10px;
}

.social-media a i {
    font-size: 27px;
    margin-right: 9px;
}

.social-media {
    display: flex;
    justify-content: center;
    margin-top: 30px;
	    margin-bottom: 60px;
}

.ctinfo label a {
    color: #fff;
}

.slider-buttons {
    text-align: center;
    margin: 57px auto 0px;
    color: #fff;
	display: none;
}

.slider-buttons button {
    width: 65px;
    height: 35px;
    background: #f9f9fa;
    border-radius: 32px;
    color: #25303b;
}

.slider-buttons button:hover {
    background: #25303b;
    color: #fff;
}
.text a {
    color: #25303b;
}
.timeline li a{color:#5555ee}
.border {
    border: 6px solid #001229;
}
.border img{display:block;    filter: grayscale(100%);}
.lb-data .lb-caption{font-size: 17px;
    font-weight: 700;}
	
	.bsicn {
    width: 400px;
    max-width: 90%;
    /* display: flex
; */
    align-items: center;
    justify-content: center;
    margin-top: 31px;
}
.bsicn .insta{background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    color: #fff;}
.bsicn .linked{background: #3577b3; color: #fff;}

.bsicn .social-media {
    justify-content: flex-start;
    margin-top: 20px;
}
.bsicn .social-media a {
    margin-left: 0;
    margin-right: 17px;
}

.success-message {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 4px;
}

.error-message {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 4px;
}
.sicnheader ul.social {
    padding: 0;
    padding-right: 30px;
}
   
/* Home Page Style */
@media(max-width : 1200px) {
    .navigation ul {
        column-gap: 20px;
        padding-right: 30px;
    }

    h1,
    .h1 {
        font-size: 44px;
    }

    h2,
    .h2 {
        font-size: 30px;
    }

    h3,
    .h3 {
        font-size: 20px;
    }

    .accordion-header {
        font-size: 17px;
    }

    .p120 {
        padding: 80px 0;
    }

    .btn,
    .btn.white {
        font-size: 16px;
    }

    .experience .counter {
        font-size: 34px;
    }

    .experience h3 {
        font-size: 18px;
    }

    .experience p {
        font-size: 15px;
    }

    .fund_raised .col4-row h4 {
        font-size: 14px;
    }

    ul.timeline li h3 {
        font-size: 15px;
    }

    ul.timeline li .year {
        font-size: 12px;
        padding: 2px 7px;
    }

    .fcol2 {
        padding-right: 24px;
        padding-left: 16px;
    }

    .fcol3 {
        padding-right: 20px;
        padding-left: 20px;
    }

    .ctinfo label {
        font-size: 14px;
    }

    .ctinfo label {
        color: #fff;
        font-size: 14px;
    }

    .footermain h5 {
        font-size: 17px;
    }
}

@media(max-width : 900px) {
    .logo {
        width: 110px;
    }

    body {
        font-size: 15px;
    }

    .w70p {
        width: 80%;
    }

    h1,
    .h1 {
        font-size: 35px;
    }

    h2,
    .h2 {
        font-size: 25px;
    }

    .p120 {
        padding: 60px 0;
    }

    .experience .counter {
        font-size: 24px;
    }

    .experience h3 {
        font-size: 16px;
    }

    .experience p {
        font-size: 14px;
    }

    .navigation {
        display: none;
        position: absolute;
        left: 0;
        width: 100%;
        top: 68px;
        background: #313d49;
        padding: 20px 30px 32px
    }

    .navigation ul:not(.social) {
        display: block;
        padding-right: 0;
    }
.sicnheader {
    margin-top: 20px;
}
    section.homehero {
        max-height: 600px;
        height: 80vh;
        min-height: 600px;
    }

    .btn {
        height: 48px;
        line-height: 48px;
        padding: 0 21px;
        font-size: 15px;
    }

    .founder .col-wrap>div,
    .row-2-col>div {
        width: 100%;
        margin-bottom: 40px;
    }

    .founder .col-wrap>div:last-child,
    .row-2-col>div:last-child {
        margin-bottom: 0;
    }

    .col4-row .col {
        width: calc(50% - 15px);
    }

    .fund_raised .col4-row {
        row-gap: 30px;
    }

    ul.timeline {
        flex-wrap: wrap;
        border-top: 0;
        border-left: 1px solid #fff;
        padding-left: 26px;
    }

    ul.timeline li {
        width: 100%;
        padding-bottom: 30px;
    }

    ul.timeline li:before {
        left: -35px;
        top: 3px;
    }

    ul.timeline li:after {
        left: -30px;
        top: 7px;
    }

    ul.timeline li .year {
        margin: 0px 0 20px;
    }

    ul.timeline li:last-child {
        padding-bottom: 0;
    }

    .partners ul {
        grid-template-columns: repeat(3, 1fr);
    }

    .ctform {
        margin: 40px auto 48px;
        width: 100%;
        padding: 20px 24px 40px;
    }

    .ctform .field {
        font-size: 14px;
    }

    .social-media a {
        width: 134px;
        height: 38px;
        font-size: 13px;
    }

    .social-media a i {
        font-size: 20px;
        margin-right: 9px;
    }

    .mobileNav {
        display: block;
        width: 26px;
        height: 28px;
        position: relative;
        margin: 1px 0 0;
        transform: rotate(0deg);
        transition: .5s ease-in-out;
        cursor: pointer;
        float: right;
    }

    .mobileNav span {
        display: block;
        position: absolute;
        height: 2px;
        right: 0;
        width: 100%;
        background: var(--white);
        opacity: 1;
        transition: 0.3s ease-in-out;
    }

    .mobileNav span:nth-child(1) {
        top: 3px;
    }

    .mobileNav span:nth-child(2) {
        top: 12px;
        width: 85%;
    }

    .mobileNav span:nth-child(3) {
        top: 21px;
    }

    .mobileNav.open span:nth-child(1) {
        top: 12px;
        transform: rotate(135deg);
    }

    .mobileNav.open span:nth-child(2) {
        opacity: 0;
    }

    .mobileNav.open span:nth-child(3) {
        top: 12px;
        transform: rotate(-135deg);
    }

    .navigation ul li {
        padding: 2px 0;
    }

    .btnwrap {
        display: none;
    }

    .experience .col4-row {
        column-gap: 20px;
        row-gap: 20px;
    }

    .experience .col {
        border: 1px solid #eee;
        text-align: center;
        padding: 30px 20px;
        min-height: 225px;
    }
}

@media(max-width : 767px) {
    section.homehero {
        max-height: 520px;
        height: 80vh;
        min-height: 420px;
    }

    h1,
    .h1 {
        font-size: 28px;
    }

    h2,
    .h2 {
        font-size: 20px;
        margin-bottom: 25px;
    }

    h3,
    .h3 {
        font-size: 18px;
    }

    .footermain>div {
        width: 100%;
        padding: 0;
        margin-bottom: 30px;
    }

    .fcol4.text-right {
        display: none;
    }

    .footermain {
        padding-bottom: 10px;
        padding-top: 39px;
    }

    .footermain .menu li {
        margin: 0 0 10px;
    }

    p:last-child {
        font-size: 14px;
    }

    .btn,
    .btn.white {
        font-size: 14px;
        min-width: 160px;
        height: 42px;
        line-height: 42px;
    }

    .w70p {
        width: 100%;
    }

    .p120 {
        padding: 50px 0;
    }

    .col4-row .col {
        width: 100%;
        margin-bottom: 30px;
    }

    .accordion-header {
        font-size: 16px;
    }

    .mt40 {
        margin-top: 20px;
    }

    .ctform ul li {
        font-size: 14px;
    }

    .ctform label:before {
        padding: 8px;
    }

    .ctform input:checked+label:after {
        op: 4px;
        left: 9px;
        width: 4px;
        height: 12px;
    }

    .fund_raised .col4-row {
        row-gap: 0;
    }

    .investment_strategies .btn {
        display: none;
    }

    .experience .col4-row {
        row-gap: 0px;
    }

    .partners ul {
        grid-template-columns: repeat(2, 1fr);
    }
}