/*RESET.CSS*/
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,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{border:0;font-size:100%;font:inherit;vertical-align:baseline;margin:0;padding:0;}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}body{line-height:1}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:none}table{border-collapse:collapse;border-spacing:0}

/*----- Framework -----*/

body{
	padding: 0;
    margin: 0;
	background: #fff;
    font-family: proximaregular;
    font-size: 15px;
}

a, a:hover{
	text-decoration:none;
}

img{
	border:0;
	vertical-align:middle;
}

.bg_none{
	background: none ! important
}

.bg-grey {
    background: #e3e3e3;
}

.clearfix{
	 height: 0;
	 clear: both;
	 visibility: hidden;
}

.section-space {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

p {
    font-size: 21px;
    line-height: 1.5;
}

.white {
    color: #fff;
}

/*----- Framework Ends -----*/

/*----- Typography -----*/

h1,h2,h3,h4,h5,h6{
    font-family: proximasemibold;
    margin-bottom: 20px;
}

h1 {
    font-size: 3rem;
}
h2 {
    font-size: 2.5rem;
}
h3 {
    font-size: 2rem;
}
h4 {
    font-size: 1.75rem;
}
h5 {
    font-size: 1.5rem;
}

@font-face {
    font-family: proximaregular;
    src: url(../fonts/ProximaNova-Regular.woff2) format("woff2");
}

@font-face {
    font-family: proximabold;
    src: url(../fonts/ProximaNova-Bold.woff2) format("woff2");
}

@font-face {
    font-family: proximasemibold;
    src: url(../fonts/ProximaNova-Semibold.woff2) format("woff2");
}

.list-circle {
    margin: 0 0 0 20px;
    padding: 0;
}

.list-circle li {
    font-size: 19px;
    padding-left: 25px;
    background-size: 17px;
    margin-bottom: 20px;
    background-image: url('../images/list-circle.svg');
    background-position: left 4px;
    background-repeat: no-repeat;
    line-height: 27px;
}

/*----- Typography Ends -----*/

.cen-header {
    padding: 15px 0;
}

.cen-header img {
	height: 115px;
    transition: height 0.3s ease-in-out;
}

.cen-header .investor {
	font-size: 25px;
}

#navigation {
    transition: padding-top 0.3s ease-in-out, padding-bottom 0.3s ease-in-out;
}

.header-fixed {
    padding: 10px 0;
    background: #fff;
    box-shadow: 0 -1px 3px 0 #000;
    position: fixed;
    width: 100%;
    z-index: 1;
}

.header-fixed.cen-header img {
    height: 75px;
}

.cen-header .investor {
	font-size: 19px;
    background: #003000;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    transition: 0.3s;
}

.disruptive-section {
    background: url('../images/disruptive-bg.jpg') no-repeat center right;
    background-size: cover;
}
.disruptive-section h1 {
    font-family: proximabold;
}

.disruptive-section p {
    font-size: 27px;
}

.blockchain-section {
    background: #003000;
    border-radius: 5px;
    padding: 20px 25px;
    margin-top: -100px;
    margin-bottom: 35px;
}

.blockchain-section p {
    color: #fff;
    font-size: 23px;
}

.philo-text {
    font-size: 27px;
}

.dots-bg {
    background-image: url('../images/corner-dots.svg');
    background-repeat: no-repeat;
    background-position: left bottom;
}

.contact-us {
    background: url('../images/contact-bg.svg') no-repeat center center;
    background-size: contain;
}

.contact-us .hear-text {
    font-size: 23px;
}

.form-group {
    margin-bottom: 25px;
}

.form-control {
    background: rgb(229 229 229 / 60%);
    border-radius: 0;
    border: 1px solid #ccc;
    padding: 10px 15px;
}

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

.form-group textarea {
    resize: none;
    max-height: 115px;
}

.btn-primary, .btn-primary:hover {
    color: #fff;
    background-color: #003000;
    border-color: #003000;
    font-size: 19px;
}

.btn-check:focus + .btn-primary, .btn-primary:focus {
    color: #fff;
    background-color: #003000;
    border-color: #003000;
    box-shadow: none;
}

.banner-section {
    display: flex;
    min-height: 300px;
    align-items: center;
    justify-content: center;
}

.privacy-section p {
    margin-bottom: 20px;
}

.footer {
    background: #003000;
    padding: 20px 0;
}

.footer-copy {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    color: #fff;
}

.footer-copy li {
    flex-grow: 1;
    flex-basis: auto;
    padding: 0 17px;
    position: relative;
}

.footer-copy li:before {
    content: "";
    height: 15px;
    border-left: 1px solid #fff;
    position: absolute;
    left: 0;
    top: 0;
    border-width: thin;
}

.footer-copy li:first-child:before {
    border-left: 0;
}

.footer-copy li a, .footer-copy li a:hover {
    color: #fff;
}

@media screen and (max-width: 767px) {
    .cen-header {
        border-bottom: 1px solid #ccc;
        margin-bottom: 15px;
    }
    .footer-copy li {
        padding: 0 10px;
    }
}