@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&family=Raleway:wght@300;500;600;700&display=swap');

*{
    box-sizing: border-box;
}

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 {
	margin: 0;
	padding: 0;
	border: 0;
    font-size: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
img{
    display: block;
    max-width: 100%;
}
body{
    color: #313131;
    font-family: 'Raleway', sans-serif;
    font-size: 22px;
    line-height: 1;
}

.container{
    margin: 0 auto;
    max-width: 1060px;
    padding: 0 15px;
}

.page{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100vh;
}
.main{
    position: relative;
}
.header{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
	border-bottom: 2px solid rgba(164,164,168, 0.2);
}
.logo-box a{
    display: inline-block;
}
.logo-box img {
	width: 103px;
}
.top-section{
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 510px;
}
.top-section .text-box{
    padding-top: 150px;
    max-width: 380px;
}
.top-section .text-box .green-text{
    font-size: 15px;
    font-weight: 600;
    color: #2eee00;
    margin-bottom: 30px;
}
.top-section .text-box h1{
    font-size: 83px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 25px;
}
.top-section .text-box .text-box__descr{
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    line-height: 25px;
}
.items-section{
    padding: 50px 0 60px;
}
.items-section h2{
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    font-size: 25px;
}
.items-section h2::after{
    content: "";
    display: block;
    width: 45px;
    height: 2px;
    background: #916b05;
    margin: 18px auto 0;
}
.items-section .items-wrapp{
    display: flex;
    margin-top: 50px;
}
.items-section .items-wrapp .item{
    display: flex;
    width: 325px;
}
.items-section .items-wrapp .item:not(:last-child){
    margin-right: 30px;
}
.items-section .items-wrapp .item .left-box{
    margin-right: 30px;
    min-width: 150px;
}
.items-section .items-wrapp .item .left-box .left-box__img{
    margin-bottom: 30px;
    min-height: 150px;
}
.items-section .items-wrapp .item .left-box .left-box__link a, .items-section .items-wrapp .item .left-box .left-box__link p {
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 13px;
    display: inline-block;
    background: #916b05;
    padding: 15px 5px;
    text-align: center;
    color: #fff;
    width: 100%;
    max-width: 150px;
}
.items-section .items-wrapp .item .right-box{
    line-height: 20px;
}
.items-section .items-wrapp .item h3{
    text-transform: uppercase;
    font-weight: 700;
    font-size: 14px;
}
.items-section .items-wrapp .item p{
    font-weight: 300;
    font-size: 12px;
}
.solana-img{
    display: flex;
}
.solana-img img{
    object-fit: contain;
    object-position: bottom;
}



.footer{
    background: #29262e;
    padding: 40px 0;
    display: flex;
    justify-content: center;
}
.telegram-wrapp{
    display: flex;
    align-items: center;
}
.telegram-wrapp a{
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
}


@media (max-width: 1050px){
    .items-section .items-wrapp{
        flex-wrap: wrap;
        justify-content: space-around;
    }
    .items-section .items-wrapp .item:not(:last-child){
        margin-right:  0;
        margin-bottom: 30px;
    }
}
@media (max-width: 400px){
    .top-section .text-box h1{
        font-size: 60px;
    }
    .items-section h2 {
        font-size: 20px;
    }
}