*{
    margin: 0 auto;
    padding: 0;
    font-family: 'Montserrat', Helvetica, Arial, sans-serif;
    outline: none;
    scroll-behavior: smooth;
}
header{
    width: 100%;
    height: 100vh;
    position: relative;
    background: rgb(8,14,30);
    background: linear-gradient(90deg, rgba(8,14,30,1) 0%, rgba(5,24,61,1) 50%);
}
.header_back{
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: changer 19s infinite linear;
}
.background_header{

    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 2;
    animation: move 19s infinite linear alternate;
}
@keyframes move{
    0%{
        backdrop-filter: blur(0);   
    }100%{
        backdrop-filter: blur(3px);
    }
}
@keyframes changer{
    0%{
        opacity: 1;  
    }99%{
        opacity: 1;  
    }100%{
        opacity: 0;  
    }
}
.header_wrapper{
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 3;
}
.header_logo{
    width: 100%;
    padding: 5px 0;
}
.header_logo img{
    height: 90px;
    display: block;
}
.header_title{
    width: 100%;
    height: calc(100vh - 120px);
    display: flex;
    align-items: center;
}
.header_center{
    width: 70%;
    height: 85%;
}
.header_center h1{
    color: white;
    text-align: center;
    font-size: 22px;
    width: 80%;
    padding-bottom: 35px;
    font-weight: 400;
}
.header_grid{
    width: 100%;
    height: 550px;
    display: grid;
    grid-template-columns: 65% 30%;
    column-gap: 5%;
}
.header_grid_block{
    width: 100%;
}
.header_grid_block:last-child{
    background-color: white;
    border-radius: 25px;
    box-sizing: border-box;
    padding: 30px 20px;
    height: 500px;
    position: relative;
}

.header_grid_block iframe{
    width: 100%;
    height: 500px;
    border-radius: 25px;
}
.header_grid_block:last-child h2{
    color: #152979;
    font-size: 16px;
    text-align: center;
}
form{
    margin-top: 25px;
}
input[type="text"]{
    width: 100%;
    padding: 10px 15px;
    box-sizing: border-box;
    border-radius: 5px;
    border: 1px solid rgb(180, 180, 180);
    color: #152979;
    font-weight: 500;
    transition: 0.2s;
}
input[type="text"]::placeholder{
    color: rgb(180, 180, 180);
}
input[type="text"]:focus{
    border: 1px solid #152979;
}
input[type="email"]{
    width: 100%;
    padding: 10px 15px;
    box-sizing: border-box;
    border-radius: 5px;
    border: 1px solid rgb(180, 180, 180);
    color: #152979;
    font-weight: 500;
    transition: 0.2s;
}
input[type="email"]::placeholder{
    color: rgb(180, 180, 180);
}
input[type="email"]:focus{
    border: 1px solid #152979;
}
input[type="tel"]{
    width: 100%;
    padding: 10px 15px;
    box-sizing: border-box;
    border-radius: 5px;
    border: 1px solid rgb(180, 180, 180);
    color: #152979;
    font-weight: 500;
    transition: 0.2s;
}
input[type="tel"]::placeholder{
    color: rgb(180, 180, 180);
}
input[type="tel"]:focus{
    border: 1px solid #152979;
}
.iti{
    width: 100%!important;
}
.header_grid_block:last-child form button{
    width: 100%;
    margin-top: 10px;
    background: rgb(21,41,121);
    background: linear-gradient(130deg, rgba(21,41,121,1) 0%, rgba(6,172,246,1) 71%);
    padding: 15px 0;
    color: white;
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 600;
    border: none;
    border-radius: 5px;
    transition: .2s;
    box-shadow: 0 2px 25px rgb(3 19 96 / 70%);
}
.header_grid_block:last-child form button:hover{
    background: rgb(21,41,121);
    background: linear-gradient(130deg, rgba(21,41,121,1) 0%, rgba(6,172,246,1) 71%);
}
.header_grid_block:last-child form p{
    font-size: 12px;
    margin-top: 15px;
    color: #888888;
}
.header_center h3{
    font-size: 17px;
    font-weight: 400;
    text-align: center;
    color: white;
}
main{
    width: 100%;
}
section{
    width: 70%;
    padding: 45px 0;
    z-index: 2;
}
.bluesection{
    overflow: hidden;
    position: relative;
    background: rgb(21,41,121);
    background: linear-gradient(130deg, rgba(21,41,121,1) 0%, rgba(6,172,246,1) 71%);
}
.bluesection h1{
    color: white!important;
}
.bluesection p{
    color: white!important;
}
.bluesection h2{
    color: white!important;
}
section h1{
    font-size: 45px;
    text-align: center;
    color: #152979;
    padding-bottom: 25px;
}
.section_infogrid{
    width: 100%;
    display: grid;
    grid-template-columns: 49% 49%;
    column-gap: 2%;
}
.section_infoblock{
    width: 100%;
    position: relative;
}
.section_infoblock p{
    font-size: 18px;
    color: #212121;
}
.section_infoblock h2{
    font-size: 22px;
    color: #212121;
}
.whatdo{
    font-size: 25px;
    font-weight: 500;
    color: #152979;
    padding: 15px 0;
    text-align: center;
}
.section_infoblock img{
    width: 80%;
    object-fit: cover;
    display: block;
}
.section_img{
    position: relative;
    z-index: 3;
}
.back_section_img{
    position: absolute;
    top: 0;
}
.formlink{
    padding: 15px 45px;
    background: rgb(21,41,121);
    background: linear-gradient(130deg, rgba(21,41,121,1) 0%, rgba(6,172,246,1) 71%);
    display: inline-block;
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    border-radius: 10px;
    margin-top: 10px;
    text-align: center;
    position: relative;
    z-index: 3;
}
.investsteps{
    width: 100%;
    list-style: none;
}
.investsteps li{
    display: block;
}
.text-step{
    width: 100%;
    padding: 5px 0 10px;
}
.text-step h4{
    font-size: 20px;
    height: 25px;
    text-align: center;
    letter-spacing: 2px;
    transition: 0.2s;
    color: #5c5c5c;
}
.stepview{
    transform: scale(1.2);
    color: #212121!important;
}
.text-step p{
    font-size: 14px;
    text-align: center;
    color: #152979;
}
.line-step{
    width: 5px;
    height: 80px;
    background-color: #152979;
    border-radius: 5px;
}

.bubbly-button {
	display: inline-block;
	padding: 1em 2em;
	margin-bottom: 30px;
	-webkit-appearance: none;
	appearance: none;
	color: #fff;
	border-radius: 4px;
	border: none;
	cursor: pointer;
	position: relative;
	transition: transform ease-in 0.1s, box-shadow ease-in 0.25s;
	box-shadow: 0 2px 25px rgb(3 19 96 / 50%);
}
.bubbly-button:focus {
	outline: 0;
}
.bubbly-button:before, .bubbly-button:after {
	position: absolute;
	content: '';
	display: block;
	width: 140%;
	height: 100%;
	left: -20%;
	z-index: -1000;
	transition: all ease-in-out 0.5s;
	background-repeat: no-repeat;
}
.bubbly-button:before {
	display: none;
	top: -75%;
	background-image: radial-gradient(circle, #06acf6 20%, transparent 20%), radial-gradient(circle, transparent 20%, #06acf6 20%, transparent 30%), radial-gradient(circle, #06acf6 20%, transparent 20%), radial-gradient(circle, #06acf6 20%, transparent 20%), radial-gradient(circle, transparent 10%, #06acf6 15%, transparent 20%), radial-gradient(circle, #06acf6 20%, transparent 20%), radial-gradient(circle, #06acf6 20%, transparent 20%), radial-gradient(circle, #06acf6 20%, transparent 20%), radial-gradient(circle, #06acf6 20%, transparent 20%);
	background-size: 10% 10%, 20% 20%, 15% 15%, 20% 20%, 18% 18%, 10% 10%, 15% 15%, 10% 10%, 18% 18%;
}
.bubbly-button:after {
	display: none;
	bottom: -75%;
	background-image: radial-gradient(circle, #06acf6 20%, transparent 20%), radial-gradient(circle, #06acf6 20%, transparent 20%), radial-gradient(circle, transparent 10%, #06acf6 15%, transparent 20%), radial-gradient(circle, #06acf6 20%, transparent 20%), radial-gradient(circle, #06acf6 20%, transparent 20%), radial-gradient(circle, #06acf6 20%, transparent 20%), radial-gradient(circle, #06acf6 20%, transparent 20%);
	background-size: 15% 15%, 20% 20%, 18% 18%, 20% 20%, 15% 15%, 10% 10%, 20% 20%;
}
.bubbly-button:active {
	transform: scale(0.9);
	background-color: #e60074;
	box-shadow: 0 2px 25px rgba(255, 0, 130, 0.2);
}
.bubbly-button.animate:before {
	display: block;
	animation: topBubbles ease-in-out 0.75s forwards;
}
.bubbly-button.animate:after {
	display: block;
	animation: bottomBubbles ease-in-out 0.75s forwards;
}

@keyframes topBubbles {
	0% {
		background-position: 5% 90%, 10% 90%, 10% 90%, 15% 90%, 25% 90%, 25% 90%, 40% 90%, 55% 90%, 70% 90%;
	}
	50% {
		background-position: 0% 80%, 0% 20%, 10% 40%, 20% 0%, 30% 30%, 22% 50%, 50% 50%, 65% 20%, 90% 30%;
	}
	100% {
		background-position: 0% 70%, 0% 10%, 10% 30%, 20% -10%, 30% 20%, 22% 40%, 50% 40%, 65% 10%, 90% 20%;
		background-size: 0% 0%, 0% 0%,  0% 0%,  0% 0%,  0% 0%,  0% 0%;
	}
}
@keyframes bottomBubbles {
	0% {
		background-position: 10% -10%, 30% 10%, 55% -10%, 70% -10%, 85% -10%, 70% -10%, 70% 0%;
	}
	50% {
		background-position: 0% 80%, 20% 80%, 45% 60%, 60% 100%, 75% 70%, 95% 60%, 105% 0%;
	}
	100% {
		background-position: 0% 90%, 20% 90%, 45% 70%, 60% 110%, 75% 80%, 95% 70%, 110% 10%;
		background-size: 0% 0%, 0% 0%,  0% 0%,  0% 0%,  0% 0%,  0% 0%;
	}
}
.booklist{
    list-style: none;
    padding: 15px 0 25px;
}
.booklist li{
    color: white;
    position: relative;
    padding: 20px 15px;
    box-sizing: border-box;
    display: inline-block;
    width: 49%;
    height: 50px;
    margin-bottom: 10px;
}
.booklist li span{
    position: relative;
    z-index: 2;
    top: 5px;
    width: 100%;
}
.booklist li:before{
    height: 100%;
    width: calc(55px);
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    font-weight: 800;
    font-size: 55px;
    color: #152979;
    opacity: 0.5;
    transition: 0.2s;
    cursor: pointer;
}
.booklist li:hover:before{
    opacity: 0.9;
}
.booklist li:nth-child(1):before{
    content: '1';
}
.booklist li:nth-child(2):before{
    content: '2';
}
.booklist li:nth-child(3):before{
    content: '3';
}
.booklist li:nth-child(4):before{
    content: '4';
}
.booklist li:nth-child(5):before{
    content: '5';
}
.small{
    font-size: 13px!important;
}
.section_members{
    width: 70%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    grid-column-gap: 20px;
    grid-row-gap: 20px;
}
.member_block{
    width: 100%;
    border-radius: 25px;
    position: relative;
    z-index: 2;
    box-shadow: 0 2px 25px rgb(3 19 96 / 90%);
}
.member_block:nth-child(1){grid-area: 1 / 1 / 3 / 2;}
.member_block:nth-child(2){grid-area: 1 / 2 / 2 / 3;}
.member_block:nth-child(3){grid-area: 2 / 2 / 3 / 3;}
.member_block:nth-child(4){grid-area: 1 / 3 / 3 / 4;}
.member_block:nth-child(5){grid-area: 3 / 1 / 4 / 2;}
.member_block:nth-child(6){grid-area: 3 / 2 / 4 / 3;}
.member_block:nth-child(7){grid-area: 3 / 3 / 4 / 4;}
.member_block img{
    width: 100%;
    height: 100%;
    border-radius: 25px;
    object-fit: cover;
}
.member_center{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    position: absolute;
    top: 0;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 25px;
    opacity: 0;
    transition: .2s;
    cursor: pointer;
}
.member_center:hover{
    opacity: 1;
}
.member_center p{
    font-size: 12px;
    text-align: center;
    width: 95%;
}
.members_back{
    position: absolute;
    right: 0;
    height: 600px;
    display: block;
    top: 600px;
    z-index: 1;
}
.partnersgrid{
    width: 70%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 20px;
    grid-row-gap: 60px;
}
.partner_block{
    width: 100%;
}
.partner_block:nth-child(1){ grid-area: 1 / 1 / 2 / 2; }
.partner_block:nth-child(2){ grid-area: 1 / 2 / 2 / 3; }
.partner_block:nth-child(3){ grid-area: 1 / 3 / 2 / 4; }
.partner_block:nth-child(4){ grid-area: 2 / 1 / 3 / 2; }
.partner_block:nth-child(5){ grid-area: 2 / 2 / 3 / 3; }
.partner_block:nth-child(6){ grid-area: 2 / 3 / 3 / 4; }

.partner_block img{
    width: 60%;
    display: block;
}
footer{
    width: 100%;
    padding:  0 0 60px 0;
    background: #090e22;
    margin-top: 100px;
}
.footer_logo{
    width: 100%;
    /* bottom: 85px; */
    position: relative;
    display: block;
}
.footer_logo img{
    width: 300px;
    display: block;
    /* background-color: #152979; */
    padding: 10px;
    border-radius: 5px;
    object-fit: contain;
}
footer p{
    color: white;
    text-align: center;
}
footer a{
    color: white;
}
@media(max-width: 1450px){
    .header_center{
        width: 80%;
    }
    section{
        width: 80%;
    }
    .section_members{
        width: 80%;
    }
}
@media(max-width: 1240px){
    .header_center{
        width: 90%;
    }
    .header_grid{
        grid-template-columns: 60% 35%;
    }
    section{
        width: 90%;
        overflow: hidden;
    }
    .section_members{
        width: 90%;
    }
    .section_infoblock p{
        font-size: 16px;
    }
    .partnersgrid{
        width: 80%;
    }
}
@media(max-width: 1050px){
    .header_center h1 {
        font-size: 18px;
    }
    .header_center h3 {
        font-size: 14px;
    }
    .section_infoblock img{
        width: 100%;
    }
}
@media(max-width: 960px){
    .header_center h1 {
        font-size: 18px;
    }
    .header_center h3 {
        font-size: 18px;
    }
    .header_grid{
        grid-template-columns: 100%;
        row-gap: 25px;
        height: auto;
        padding-bottom: 15px;
    }
    .header_grid_block:last-child{
        width: 50%;
    }
    .header_title{
        height: auto;
    }
    header{
        height: 150vh;
    }
    .section_members{
        width: 95%;
    }
    .member_center p{
        font-size: 10px;
    }
}
@media(max-width: 850px){
    .section_infogrid{
        grid-template-columns: 100%;
        row-gap: 80px;
    }
    .section_infoblock img{
        width: 50%;
    }
    .back_section_img {
        left: 0;
        right: 0;
    }
    .section_members{
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(5, 1fr);
        grid-column-gap: 15px;
        grid-row-gap: 15px;
    }
    .member_block:nth-child(1){grid-area: 1 / 1 / 3 / 2;}
    .member_block:nth-child(2){grid-area: 1 / 2 / 2 / 3;}
    .member_block:nth-child(3){grid-area: 2 / 2 / 3 / 3;}
    .member_block:nth-child(4){grid-area: 3 / 1 / 4 / 2;}
    .member_block:nth-child(5){grid-area: 4 / 1 / 5 / 2;}
    .member_block:nth-child(6){grid-area: 3 / 2 / 5 / 3;}
    .member_block:nth-child(7){grid-area: 5 / 1 / 6 / 3;}
    .members_back{
        top: 1544px;
    }
    .member_center p{
        font-size: 15px;
    }
}
@media(max-width: 780px){
    .header_grid_block:last-child{
        width: 70%;
        height: auto;
        padding-bottom: 50px;
    }
    .header_grid_block iframe {
        height: 300px;
    }
    .header_center h1{
        font-size: 15px;
    }
    .section_infoblock img{
        width: 70%;
    }
    .partner_block img{
        width: 90%;
    }
}
@media(max-width: 550px){
    section h1{
        font-size: 30px;
    }
    .header_grid_block:last-child{
        width: 100%;
    }
    .header_grid_block iframe {
        height: 220px;
    }
    .booklist li{
        width: 100%;
    }
    .partnersgrid{
        display: block;
    }
    .partner_block img{
        width: 50%;
        margin-bottom: 50px;
    }
     .footer_logo img{
        width: 200px;
        /* height: 100px; */
    }
    /*
    .footer_logo {
        bottom: 60px;
    } */
    footer p{
        font-size: 14px;
    }
    .section_members{
        display: block;
    }
    .member_block{
        width: 100%;
        height: 230px;
        margin-bottom: 50px;
    }
    .section_infoblock img{
        width: 100%;
    }
    
    
}
@media(max-width: 400px){
    .header_grid_block iframe {
        height: 180px;
    }
    .header_center h3{
        font-size: 16px;
    }
}
@media(max-height: 900px){
    header{
        height: 120vh;
    }
}
@media(max-height: 850px){
    header{
        height: 180vh;
    }
}
@media(max-height: 750px){
    header{
        height: 210vh;
    }
}
@media(max-height: 610px){
    header{
        height: 250vh;
    }
}
@media(max-height: 580px){
    header{
        height: 300vh;
    }
}
@media(max-height: 460px){
    header{
        height: 350vh;
    }
}
@media(max-height: 400px){
    header{
        height: 400vh;
    }
}
@media(max-height: 350px){
    header{
        height: 450vh;
    }
}
@media(max-height: 300px){
    header{
        height: 550vh;
    }
}