@font-face {
    font-family: 'monkey-smart'; 
    src: url("./fonts/MockeySmart.otf") format("opentype");
}

@font-face {
    font-family: 'second-font'; 
    src: url("./fonts/second-font.woff2") format("opentype");
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    --primary-color:#d2c262;
    --secondary-color:#ffffff;

    font-family: 'monkey-smart';
}

body {
    width: 100vw;

    color: #fff;
    background-color: #000;
    overflow-x: hidden;
}

p, a, h2 {
    font-family: 'second-font';
}

section {
    width: 100vw;
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;

    padding: 20px 40px;
    width: 100vw;
    height: 80px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    transition: all .4s ease;
    z-index: 10;
}

.logo {
    width: 100%;
    max-width: 300px;

}

.logo img {
    width: 100%;
}

.burger_menu {
    width: 100%;
    max-width: 36px;
    height: 100%;
    max-height: 36px;

    display: flex;
    align-items: flex-end;
    justify-content: center;
    flex-direction: column;
    gap: 6px;


    cursor: pointer;
}

.burger_menu .bar {
    width: 100%;
    height: 4px;
    background-color: #fff;

    transition: width .4s ease;
}

.burger_menu:hover > .bar.first {
    width: 50%;
}

.burger_menu:hover > .bar.second {
    width: 75%;
}

.menu {
    position: fixed;
    top: -100%;
    left: 0;

    padding: 20px;
    width: 100vw;
    height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    background-color: rgba(0, 0, 0, 0.9);
    z-index: 11;

    transition: all .4s ease;
    overflow: hidden;
}

.menu.show {
    top: 0;
}

.menu img {
    width: 100%;
    max-width: 500px;
}

.menu ul {
    margin-top: 40px;
    list-style-type: none;
}
.menu ul li {
    text-align: center;
    margin-bottom: 20px;
}
.menu ul li a {
    font-size: 21px;
    font-weight: bold;

    text-align: center;
    background-color: transparent;
}

.remove_menu {
    position: absolute;
    top: 20px;
    right: 40px;

    width: 100%;
    max-width: 36px;
    height: 100%;
    max-height: 36px;

    cursor: pointer;
}

.remove_menu::before, .remove_menu::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;

    width: 100%;
    height: 4px;

    transform: translate(0%, -50%) rotate(45deg);
    transition: all .4s ease;

    background-color: #fff;
    border-radius: 4px;
}

.remove_menu::after {
    transform: translate(0%, -50%) rotate(-45deg);
}

.remove_menu:hover::before {
    transform: translate(0%, -50%) rotate(0deg);
}
.remove_menu:hover::after {
    transform: translate(0%, -50%) rotate(0deg);
}

/*------------landing_page-----------*/

.landing_page {
    position: relative;
    padding: 40px;

    width: 100vw;
    min-height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

}

.landing_page > * {
    text-align: center;
    z-index: 1;
}

.landing_page video {
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    pointer-events: none;
    
    z-index: 0;
}

.landing_page img {
    width: 100%;
    max-width: 500px;
    height: 100%;
    max-height: 500px;    
}

.landing_page h1 {
    font-size: 35px;
    color: #d2c262;
}

.landing_page h1 > span {
    color: white;
}

.landing_page p {
    margin: 30px auto;
}

.landing_page_btns_container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2px;
}

.landing_page_btns_container .buy_btn {
    margin-right: 2px;
    padding: 8px 20px;
    background-color: var(--primary-color);
    color: #fff;

    transition: opacity .4s ease;
}

.landing_page_btns_container .buy_btn:hover {
    opacity: .8;
}

.landing_page_btns_container .join_btn {
    padding: 8px 30px;
    
    background-color: transparent;
    color: #fff;
    border: 1px solid #ffffff33;

    transition: background-color .4s ease;
}

.landing_page_btns_container .join_btn:hover {
    background-color: var(--primary-color);
}

/*----------second_section-----------*/
.second_section {
    padding: 80px;

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    background-color: #000;
    gap: 80px;

}

.second_section .col-2 {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;

}

.second_section .col-2:nth-child(2) {
    align-items: center;
}

.second_section .col-2 .img_container {
    width: 100%;
    max-width: 480px;

    border-radius: 8px;
    overflow: hidden;
}

.second_section .col-2 .img_container img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.second_section .col-2 h1 {
    margin-bottom: 34px;
    font-size: 2rem;
    color: #d2c262;
}

.second_section .col-2 p {
    margin-bottom: 20px;
    max-width: 520px;
    font-size: 17px;
}

a {
    margin-right: 2px;
    padding: 8px 20px;
    background-color: var(--primary-color);
    color: #fff;

    transition: opacity .4s ease;
}

/*-----------third_section------------*/
.third_section {
    position: relative;
    padding: 80px;
    width: 100vw;
    min-height: 70vh;

    background-image: url('./assets/imgs/3.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 0% 50%;

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 80px;

}

.third_section > * {
    z-index: 9;
}

.huge_absolute_header {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);

    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.2);
    text-stroke: 1px rgba(255, 255, 255, 0.2);
    font-size: 350px;
    z-index: 0;

    font-family: 'second-font';
    pointer-events: none;
}

.third_section .col-2 {
    padding: 40px;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    
}

.third_section .col-2 > * {
    text-align: center;
}

.third_section .col-2 h1 {
    font-size: 34px;
    margin-bottom: 30px;
    color: #d2c262;
}

.third_section .col-2 p {
    max-width: 570px;
    line-height: 24px;
    text-justify: distribute;
}

.third_section .col-2 a {
    margin-top: 30px;
}

/*-----------forth_section------------*/
.forth_section {
    position: relative;
    padding: 80px;
    width: 100vw;
    min-height: 50vh;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    background-color: #000;
}

.forth_section > h1 {
    margin-bottom: 40px;
}

.forth_section .cols_wrapper {
    width: 100%;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}


.forth_section .cols_wrapper .col-3 {
    padding: 40px;

    display: grid;
    grid-template-columns: 1fr 2fr;

}

.forth_section .cols_wrapper .col-3 img {
    width: 100%;
    max-width: 100px;

}

.forth_section .cols_wrapper .col-3 div {
    margin-left: 20px;
}

.forth_section .cols_wrapper .col-3 div h1 {
    margin-bottom: 10px;    
}
.forth_section .cols_wrapper .col-3 div p {
    color: #fff;
}

/*---------------fifth_section-------------*/
.fifth_section {
    width: 100vw;
    padding: 80px;

    background-image: url('./assets/imgs/3.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 0% 50%;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.fifth_section div {
    padding: 20px;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.fifth_section div > * {
    margin-bottom: 20px;
}

.fifth_section div img {
    width: 60px;
}

.footer {
    position: relative;
    padding: 80px;
    width: 100vw;
    min-height: 50vh;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    background-color: #000;
}

.footer > * {
    margin-bottom: 40px;
}

.footer .footer_bottom {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.footer .footer_bottom img {
    margin-bottom: 20px;
    width: 100%;
    max-width: 300px;
}
.social_media_container {
    max-width: 500px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.smc {
    padding: 10px;

    width: 100%;
    max-width: 50px;
    height: 100%;
    max-height: 50px;

    background-color: var(--primary-color);
    border-radius: 50%;

    z-index: 1;
}

.smc img {
    width: 100%;
}

@media only screen and (max-width: 1300px) {
    .forth_section .cols_wrapper .col-3 {
        padding: 0;
    }    
}

@media only screen and (max-width: 1100px) {
    .third_section {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

@media only screen and (max-width: 1000px) {
    .huge_absolute_header {
        display: none;
    }
}

@media only screen and (max-width: 850px) {
    .landing_page h1 {
        margin-top: 20px;
        font-size: 48px;
    }

    .second_section {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .second_section .col-2.col-2:nth-child(2) {
        order: 0;
    }
    .second_section .col-2.col-2:nth-child(1) {
        order: 1;
    }
    
    .forth_section h1 {
        margin-bottom: 10px;
    }

    .forth_section .cols_wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .forth_section .cols_wrapper .col-3 {
        padding: 15px;
        margin-bottom: 40px;
        grid-template-columns: .5fr 2fr;
    }
}


@media only screen and (max-width: 700px) {
    .fifth_section {
        padding: 80px;
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media only screen and (max-width: 750px) {
    .third_section {
        padding: 20px;
    }
    
    .third_section .col-2 {
        padding: 20px;
        width: 100%;
    }
    
    .third_section .col-2 img {
        width: 80%;
    }

    .forth_section .cols_wrapper .col-3 div {
        margin-left: 20px;
    }
}


@media only screen and (max-width: 550px) {
    .cont{ 
        width: 386px; 
        word-wrap: break-word; 
        text-align: center; 
    }
    .landing_page img {
        width: 50%;
    }

    .third_section .col-2 img {
        width: 100%;
    }
}

@media only screen and (max-width: 500px) {
    .cont{ 
        width: 386px; 
        word-wrap: break-word; 
        text-align: center; 
    }
    .third_section .col-2 img {
        width: 100%;
    }
}

@media only screen and (max-width: 430px) {
    .cont{ 
        width: 386px; 
        word-wrap: break-word; 
        text-align: center; 
    }
    a {
        font-size: 11px;
    }

    .landing_page h1 {
        color: #d2c262;
        margin-top: 20px;
        font-size: 34px;
    }

    .second_section {
        padding: 40px;
    }
    
    .forth_section {
        padding: 20px;
    }

    .forth_section > h1 {
        padding: 20px;
        margin-bottom: 20px;
        font-size: 17px;
        text-align: center;
        color: #d2c262;
    }

    .footer {
        padding: 40px;
    }

    .footer_bottom > h1 {
        text-align: center;
    }
}


@media only screen and (max-width: 300px) {
    .cont{ 
        width: 386px; 
        word-wrap: break-word; 
        text-align: center; 
    }
    .landing_page {
        padding: 20px;
    }
    
    .landing_page h1 {
        font-size: 24px;
    }

    .second_section {
        padding: 40px 20px;
    }

    .third_section {
        padding: 40px 20px;
    }

    .third_section .col-2 {
        padding: 0;
    }

    .fifth_section {
        padding: 20px;
    }

    .footer {
        padding: 40px 20px;
    }
}
@media only screen and (max-width: 600px) { 
    .cont{ 
        width: 386px; 
        word-wrap: break-word; 
        text-align: center; 
    } 
}

