nav {
    text-transform: uppercase;   
    background-color: rgba(0, 0, 0, .1); 
    position: fixed;
    width: 100%;
}
.wrapper_nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo_nav img {
    width: 520px;
}
.links_nav {
    font-family: vividly;
    display: flex;
    align-items: center;
}
.wrapper_links_nav {
    display: flex;
    align-items: center;
}
.wrapper_links_nav a {
    font-size: 44px;
    margin-right: 25px;
}
.wrapper_links_nav a:hover p {
    text-shadow: 0 0 10px #fff;
}
.wrapper_btns_nav {
    display: flex;
    align-items: center;
}
.btn_buy_nav {
    font-family: simpson;
    font-size: 44px;
    padding: 10px 30px;
    background-color: #fff;
    color: #111;
    border-radius: 50px;
    cursor: pointer;
}
.btn_buy_nav:hover {
    box-shadow: 0 0 10px #fff;
}
.btn_lengs_nav {
    font-family: roboto; 
    font-size: 26px;
    padding: 20px;  
    background-color: #000;  
    border-radius: 50%;
    margin: 0 20px;
    cursor: pointer;
}
.btn_lengs_nav:hover {
    text-shadow: 0 0 10px #fff;
}
@media (max-width:1580px) {
    .logo_nav img {
        width: 33vw;
    }
    .wrapper_links_nav a {
        font-size: 2.7vw;
        margin-right: 1.5vw;
    }
    .btn_buy_nav {
        font-size: 2.7vw;
        padding: .63vw 1.89vw;
    }
    .btn_lengs_nav {
        font-size: 1.64vw;
        padding: 1.26vw;  
    }
}
@media (max-width:960px) {
    .wrapper_links_nav a {
        display: none;
    }
    .logo_nav img {
        width: 45vw;
    }
    .btn_buy_nav {
        font-size: 5vw;
        padding: 1vw 2vw;
    }
    .btn_lengs_nav {
        font-size: 4vw;
        padding: 3vw;  
        margin: 10px;
    }
}
header {
    padding-top: 80px;
}
.header_monkey {
    width: 1050px;
    display: block;
    margin: auto;
}
.header_code {
    font-family: vividly;
    width: 1050px;
    display: block;
    margin: 50px auto;
    position: relative;
    border: 3px solid #fff;
    border-radius: 50px;
    font-size: 52px;
    padding: 20px 40px;
}
.header_code__btn {
    position: absolute;
    top: 15px;
    right: 40px;
    width: 40px;
    height: 40px;
    cursor: pointer;
}
.header_code__btn__elem {
    width: 100%;
    height: 100%;
    background-color: #000;
    border: 5px solid #fff;
    border-radius: 10px;
}
.header_code__btn__elem2 {
    position: absolute;
    top: 10px;
    right: -10px;
    z-index: -1;
}
.block_result_copy {
    display: none;
    position: absolute;
    top: -50px;
    background-color: #fff;
    border-radius: 20px;
    padding: 5px;
    color: #000;
    font-size: 24px;
    letter-spacing: -1px;
}
.block_result_copy.active {
    display: block;
}
@media (max-width:1150px) {
    .header_monkey {
        width: 94%;
        margin: auto 3%;
    }
    .header_code {
        font-family: vividly;
        width: 94%;
        margin: 20px 3%;
        font-size: 4.5vw;
        padding: 1.7vw 40px 1.7vw 3.4vw;
    }
    .header_code__btn {
        position: absolute;
        top: 1.2vw;
        right: 3.4vw;
        width: 3.4vw;
        height: 3.4vw;
        cursor: pointer;
    }
    .header_code__btn__elem {
        width: 100%;
        height: 100%;
        background-color: #000;
        border: 1px solid #fff;
        border-radius: 10%;
    }
    .header_code__btn__elem2 {
        top: .8vw;
        right: -.8vw;
    }
    .block_result_copy {
        top: -20px;
        right: 0;
    }
}
.wrapper_social {
    display: flex;
    justify-content: center;
    align-items: center;
}
.wrapper_social a:not(:last-child) {
    margin: 0 15px;
}
.wrapper_social a img {
    width: 70px;
    height: 70px;
}
.wrapper_social a:last-child img {
    width: 100px;
    height: 100px;
    margin: 0 0 0 5px;
}
.wrapper_social a svg {
    width: 70px;
    height: 70px;
}
.wrapper_social a img:hover {
    filter: drop-shadow(0 0 5px #fff);
}
.wrapper_social a svg:hover {
    filter: drop-shadow(0 0 5px #fff);
}
@media (max-width:960px) {
    .wrapper_social a img {
        width: 50px;
        height: 50px;
    }
    .wrapper_social a svg {
        width: 50px;
        height: 50px;
    }
    .wrapper_social a:last-child img {
        width: 70px;
        height: 70px;
        margin: 0 0 0 2px;
    }
    .wrapper_social a:not(:last-child) {
        margin: 0 10px;
    }
}
.header_lines {
    width: 100%;
}
section {
    width: 1700px;
    margin: 100px auto;
    display: flex;
    justify-content: space-between;
}
.section_block_text {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.section_block_text h2 {
    font-family: simpson;
    font-weight: normal;
    font-size: 90px;
    text-transform: uppercase;
   
}
.section_block_text1 h2 {
    margin-bottom: 100px;
}
.section_block_text p {
    font-family: vividly;
    font-weight: normal;
    font-size: 40px;
    max-width: 490px;
    text-align: center;
}
.section_block_img {
    width: 50%;
}
.section_block_img > img{
    width: 100%;
}
@media (max-width:1700px) {
    section {
        width: 100%;
        margin: 100px 0px;
        display: flex;
        justify-content: space-between;
    }
}
@media (max-width:1350px) {
    .section_block_text h2 {
        font-size: 6.66vw;
    }
    .section_block_text1 h2 {
       margin-bottom: 7.4vw;
    }
    .section_block_text p {
        font-size: 3vw;
        max-width: 90%;
        text-align: center;
    }
}
@media (max-width:800px) {
    section {
        flex-direction: column;
        margin: 50px 0px;
    }
    .section_block_text {
        width: 90%;
        margin-left: 5%;
    }
    .section_block_img {
        width: 90%;
        margin: 5vh 5%;
    }
    .section_block_text h2 {
        font-size: 10vw;
    }
    .section_block_text p {
        font-size: 6vw;
        max-width: 100%;
    }
}
.section_block_text2 h2 {
    font-family: vividly;
    font-size: 140px;
}
.section_block_text2 article {
    width: 80%;
    background-color: #fff;
    color: #000;
    padding: 2px 5px;
    text-align: center;
    border-radius: 20px;
    font-family: vividly;
    font-size: 50px;
}
.section_block_text2 p {
    text-align: left;
    font-family: vividly;
    margin: 2vh auto;
}
.section_block_text2 p span {
    font-family: candy;
    font-size: 30px;
}
.section_block_text2__block {
    display: flex;
    text-transform: uppercase;
    align-items: center;
}
.block_text2__block__elem:nth-child(1) {
    border: 3px solid #fff;
    border-radius: 20px;
    padding: 0px 10px;
    height: 50px;
    line-height: 10px;
}
.block_text2__block__elem:nth-child(2),
.block_text2__block__elem:nth-child(4) {
    border: 2px solid #fff;
    width: 30px;
}
.block_text2__block__elem:nth-child(3) {
    background-color: #fff;
    color: #000;
    border-radius: 20px;
    padding: 0px 20px;
    height: 50px;
    line-height: 10px;
}
.block_text2__block__elem:nth-child(3) p {
    font-family: candy;
}
.block_text2__block__elem:nth-child(5) {
    border: 3px solid #fff;
    border-radius: 20px;
    padding: 0px 10px;
    height: 50px;
    line-height: 10px;
}
p.last_par {
    font-family: candy;
    font-size: 20px;
}
@media (max-width:1350px) {
    .section_block_text2 h2 {
        font-size: 10vw;
    }
    .section_block_text2 article {
        width: 90%;
        font-size: 3.7vw;
    }
    .section_block_text2 p span {
        font-family: candy;
        font-size: 2.2vw;
    }
    .section_block_text .block_text2__block__elem:nth-child(1) p,
    .section_block_text .block_text2__block__elem:nth-child(5) p {
        width: 100%;
        text-align: center;
        white-space: nowrap;
        font-size: 2.5vw;
    }
}
@media (max-width:800px) {
    .section_block_text2 {
        order: -2;
    }
    .section_block_text2 h2 {
        font-size: 15vw;
    }
    .section_block_text2 article {
        width: 90%;
        font-size: 7vw;
    }
    .section_block_text2 p span {
        font-family: candy;
        font-size: 4.5vw;
    }
    .section_block_text .block_text2__block__elem:nth-child(1) p,
    .section_block_text .block_text2__block__elem:nth-child(5) p {
        width: 100%;
        text-align: center;
        white-space: nowrap;
        font-size:5vw;
    }
}
.section_block_text3 p {
    max-width: 80%;
    margin: 35px auto;
}
.section_block_text3 p {
    text-align: left;
    width: 100%;
}
.section_block_img__btn {
    width: 80%;
    margin: auto;
    padding: 10px;
    background-color: #fff;
    border-radius: 30px;
    cursor: pointer;
}
.section_block_img__btn img {
    display: block;
    margin: auto;
    width: 60%;
}
.section_block_img__btn:hover {
    box-shadow: 0 0 10px #fff;
}
@media (max-width:1700px) {
    .section_block_text3 p {
        max-width: 90%;
        margin: 2vw auto;
    }
}
.section_block_img3 {
    display: flex;
    justify-content: center;
    flex-direction: column;
}

footer {
    padding-bottom: 50px;
}
footer > img {
    width: 100%;
}
footer p {
    text-align: center;
    font-size: 50px;
    text-transform: uppercase;
    font-family: simpson;
}
.wrapper_footer_social {
    display: flex;
    justify-content: center;
    align-items: center;
}
.wrapper_footer_social img {
    width: 70px;
    margin: 20px;
}
.wrapper_footer_social img:hover {
    filter: drop-shadow(0 0 5px #fff);
}
@media (max-width:800px) {
    footer p {
        font-size: 6vw;
    }
    .wrapper_footer_social img {
        width: 50px;
        margin: 20px 10px; 
    }
}