@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}

body {
    line-height: 1;
}

* {
    -webkit-tap-highlight-color: transparent;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

nav ul {
    list-style: none;
}

input,
select {
    vertical-align: middle;
}

*,
*::after,
*::before {
    padding: 0;
    margin: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

a {
    color: inherit;
    text-decoration: none;
    margin: 0;
    padding: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}

html,
body {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-size: 16px;
    font-weight: 400;
    font-style: normal;
    line-height: normal;
    scroll-behavior: smooth;
    color: #fff;
    background: #000;
}

.body {
    min-width: 320px;
}

body.no-scroll {
    overflow: hidden;
}

.container {
    max-width: 1310px;
    padding: 0 15px;
    margin: 0 auto;
}

.btn {
    display: block;
    border: none;
    outline: none;
    cursor: pointer;
    border-radius: 7px;
    background: linear-gradient(90deg, #AE10C8 0%, #370040 100%);
    box-shadow: 0px 6px 24px 0px rgba(249, 215, 255, 0.25);
    color: #FFF;
    font-family: "Montserrat", sans-serif;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    max-width: 217px;
    width: 100%;
    height: 57px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::after {
    position: absolute;
    content: '';
    inset: 0;
    background: linear-gradient(90deg, #EE84FF 0%, #AE10C8 100%);
    z-index: -1;
    opacity: 0;
    transition: all 0.2s ease;
}

.btn:hover::after {
    opacity: 1;
}

.title {
    text-align: center;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

@media (max-width: 600px) {
    .title {
        font-size: 20px;
        margin-bottom: 30px;
    }

    .btn {
        height: 54px;
    }
}


.header {
    position: fixed;
    border-bottom: 1px solid #434343;
    left: 0;
    top: 0;
    right: 0;
    background-color: #000;
    z-index: 999;
}

.header__inner {
    min-height: 102px;
}

.header__burger,
.header__burger-close,
.header__item-mobile {
    display: none;
}

.header__logo {
    width: 88px;
    min-width: 88px;
}

.header__logo img {
    width: 100%;
}

.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__menu {
    display: flex;
    align-items: center;
    gap: 45px;
}

.header__btn svg {
    display: none;
}

.header__link {
    position: relative;
    z-index: 1;
    font-size: 16px;
    font-weight: 500;
}

.header__link::before {
    position: absolute;
    content: attr(data-name);
    display: block;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-wrap: nowrap;
    z-index: -1;
    font-family: "Montserrat", sans-serif;
    font-style: normal;
    line-height: normal;
    font-size: 16px;
    font-weight: 900;
    color: #AE10C8;
    filter: blur(4px);
    opacity: 0;
}

.header__link:hover::before {
    opacity: 1;
}

.header__item:nth-child(2) .header__link {
    cursor: pointer;
}

.header__item {
    position: relative;
}

.header__link-block {
    position: absolute;
    top: 40px;
    border: 1px solid #434343;
    background-color: #000;
    padding: 20px 25px;
    display: none;
    flex-direction: column;
    gap: 10px;
    width: 350px;
    left: -30px;
}

.header__link-block::before {
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    height: 40px;
    width: 140px;
    top: -25px;
}


.header__link-block a {
    position: relative;
    z-index: 1;
    font-family: "Montserrat", sans-serif;
    font-style: normal;
    line-height: normal;
    font-size: 16px;
    font-weight: 500;
}

.header__link-block a::before {
    position: absolute;
    content: attr(data-name);
    display: block;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-wrap: nowrap;
    z-index: -1;
    font-family: "Montserrat", sans-serif;
    font-style: normal;
    line-height: normal;
    font-size: 16px;
    font-weight: 900;
    color: #AE10C8;
    filter: blur(4px);
    opacity: 0;
}

.header__link-block a:hover::before {
    opacity: 1;
}

@media (min-width: 940px) {
    .header__item:nth-child(2):hover .header__link-block {
        display: flex;
    }

    .header__link-block:hover {
        display: flex;
    }
}

@media (max-width: 1040px) {
    .header__menu {
        gap: 40px;
    }
}

@media (max-width: 1000px) {
    .header__menu {
        gap: 30px;
    }
}

@media (max-width: 940px) {
    .header__burger {
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
    }

    .header__nav {
        padding: 15px 0 50px;
        position: fixed;
        left: 0;
        top: 0;
        right: 0;
        bottom: 0;
        background: #000;
        z-index: 1000;
        border-bottom: 1px solid #434343;
        transform: translateY(-200%);
        transition: all 0.2s ease;
        overflow-y: scroll;
    }

    .header__inner.show .header__nav {
        transform: translateY(0);
    }

    .header__menu {
        flex-direction: column;
    }

    .header__item-mobile img {
        width: 137px;
    }

    .header__item-mobile {
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto;
        width: max-content;
    }

    .header__menu {
        gap: 18px;
        margin-top: 60px;
    }

    .header__burger-close {
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto;
        border: none;
        outline: none;
        background-color: transparent;
        cursor: pointer;
        margin-top: 55px;
    }

    .header__logo {
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
    }

    .header__inner {
        min-height: 83px;
    }

    .header__logo {
        width: 73px;
        min-width: 73px;
    }

    .header__link-block {
        display: none;
        position: initial;
    }

    .header__item:nth-child(2) {
        display: flex;
        align-items: center;
        flex-direction: column;
        gap: 10px;
    }

    .header__link-block a {
        text-align: center;
    }

    .header__link-block.active {
        display: flex;
    }
}

@media (max-width: 600px) {
    .header__btn svg {
        display: block;
    }

    .header__btn {
        font-size: 0;
        display: flex;
        align-items: center;
        width: 88px;
        justify-content: center;
    }
}


.contact {
    margin-top: 75px;
    position: relative;
}

#contact {
    position: absolute;
    top: -150px;
}

.contact__title.title {
    margin-bottom: 85px;
}

.contact__content {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.contact__block-form {
    padding: 50px 60px;
    width: 100%;
    max-width: 867px;
    border-radius: 7px;
    background: #000;
    box-shadow: 0px 6px 25px 0px rgba(249, 215, 255, 0.25);
}

.contact__form-name {
    text-align: center;
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 20px;
}

.contact__form-descr {
    text-align: center;
    font-size: 16px;
    font-weight: 400;
}

.contact__form {
    margin-top: 35px;
}

.contact__form-block {
    display: flex;
    gap: 21px;
    margin-bottom: 20px;
}

.contact__form-input {
    width: 100%;
    color: #D9D9D9;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    height: 55px;
    background: transparent;
    outline: none;
    border-radius: 7px;
    border: 1px solid #434343;
    background: #000;
    padding: 20px;
}

.contact__form-textarea {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    color: #D9D9D9;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    min-height: 96px;
    height: 96px;
    background: transparent;
    outline: none;
    border-radius: 7px;
    border: 1px solid #434343;
    background: #000;
    padding: 20px;
    margin-bottom: 40px;
}

.contact__form-input::placeholder,
.contact__form-textarea::placeholder {
    color: #434343;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.contact__form-btn {
    margin: 0 auto;
}

.contact__form-input.error,
.contact__form-textarea.error {
    border: 1px solid #5F0000;
}

.contact__form-send {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    color: #2b8f2b;
    opacity: 0;
    pointer-events: none;
    transition: all .3s ease;
}

.contact__block {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

.contact__box {
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.contact__link {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 18px;
    font-weight: 400;
    width: max-content;
}

.contact__link:hover {
    color: #9B9B9B;
}

.contact__title {
    position: relative;
    z-index: 3;
}

.contact__inner {
    position: relative;
}

.contact__content {
    position: relative;
    z-index: 2;
}

.contact__content::before {
    content: '';
    position: absolute;
    width: 355px;
    height: 355px;
    border-radius: 50%;
    background: rgba(130, 15, 201, 0.50);
    filter: blur(81.4000015258789px);
    top: -386px;
    left: 0;
    z-index: -2;
}

.contact__bg {
    position: absolute;
}

.contact__bg-1 {
    transform: rotate(63.402deg);
    left: 11%;
    bottom: 42px;
}

@media (max-width: 895px) {
    .contact__content {
        flex-direction: column;
        gap: 40px;
    }
}

@media (max-width: 700px) {
    .contact__form-block {
        flex-direction: column;
    }
}

@media (max-width: 600px) {
    .contact {
        margin-top: 60px;
    }

    .contact__title.title {
        max-width: 230px;
        margin: 0 auto 30px;
    }

    .contact__content::before {
        width: 129px;
        height: 129px;
        background: rgba(130, 15, 201, 0.50);
        filter: blur(29.700000762939453px);
        top: -130px;
        left: initial;
        right: -50px;
        z-index: -1;
    }

    .contact__bg img {
        width: 100%;
    }

    .contact__bg-1 {
        transform: none;
        left: initial;
        bottom: initial;
        top: -41px;
        width: 54.114px;
        right: 0;
        z-index: 2;
    }

    .contact__box {
        gap: 12px;
    }

    .contact__block {
        width: max-content;
        margin: 0 auto;
    }

    .contact__link svg {
        display: none;
    }

    .contact__link {
        font-size: 15px;
        gap: 10px;
    }

    .contact__block-form {
        padding: 30px 55px 35px;
    }

    .contact__form-name {
        font-size: 20px;
    }

    .contact__form-descr {
        font-size: 14px;
    }

    .contact__form {
        margin-top: 30px;
    }

    .contact__form-input {
        height: 54px;
    }

    .contact__form-textarea {
        margin-bottom: 35px;
    }
}

.footer {
    border-top: 1px solid #434343;
    padding: 3px 0px 15px;
}

.footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer__logo {
    display: block;
    min-width: 221px;
    width: 221px;
}

.footer__logo img {
    width: 100%;
}

.footer__nav {
    margin-right: 94px;
}

.footer__item-social {
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.footer__item-social--link {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer__menu {
    display: flex;
    align-items: center;
    gap: 25px 70px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer__copyright {
    text-align: center;
    color: #D9D9D9;
    font-size: 11px;
    font-weight: 500;
}

.footer__end {
    margin-top: -30px;
}

@media (max-width: 700px) {
    .footer__inner {
        flex-direction: column;
        gap: 60px;
    }

    .footer__end {
        margin: 0;
        margin-top: 28px;
    }

    .footer__nav {
        margin: 0;
    }

    .footer__item-social {
        display: flex;
    }

    .footer__menu {
        flex-direction: column;
    }
}

@media (max-width: 600px) {
    .footer__menu {
        gap: 18px;
    }

    .footer__copyright {
        font-size: 10px;
    }
}

main.sections {
    overflow: hidden;
    padding-bottom: 100px;
}

@media (max-width: 600px) {
    main.sections {
        padding-bottom: 60px;
    }
}







.color-1 {
    color: #AE10C8;
    font-weight: 600;
}

.color-2 {
    color: #CA24E5;
    font-style: normal;
    font-weight: 700;
}

.color-3 {
    color: #fff;
    font-style: normal;
    font-weight: 700;
}

.color-4 {
    color: #AE10C8;
    font-weight: 500;
}

.color-5 {
    color: #AE10C8;
    font-weight: 700;
}

.color-6 {
    color: #AB2DF9 !important;
    font-weight: 700;
}