@import "fonts.css";

.main {
    background-color: #0D0A22;
    padding: 0 50px;
    font-family: Montserrat, sans-serif;
    color: #FFFFFF;
    font-weight: 400;
    font-size: 24px;
    line-height: 100%;
    overflow: hidden;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    grid-column-gap: 15px;
    align-items: center;
    padding: 36px 0;
}
.header__icon {
    min-width: 110px;
    width: 181px;
    img {
        width: 100%;
    }
}
.header__nav {
    min-width: max-content;
}
.header__nav-list {
    display: flex;
    grid-column-gap: 24px;
}
.header__nav-item a {
    font-size: 16px;
    color: #FFFFFF;
    transition: color 0.2s ease;
    text-decoration: none;
}
.header__nav-item a:hover {
    color: #ED018C;
}
.header__request-btn {
    padding: 12px 28px;
    font-weight: 500;
    font-size: 20px;
}
.header__burger-btn {
    display: none;
    background: transparent;
    border: none;
    position: relative;
    z-index: 15;
    padding: 10px 5px;
    cursor: pointer;
}
.header__burger-btn .burger-icon,
.header__burger-btn .burger-active-icon {
    display: none;
}
.header__burger-btn:not(.active) .burger-icon,
.header__burger-btn.active .burger-active-icon {
    display: block;
}
.header__burger-btn:hover path {
    stroke: #ED028C;
}
.header__burger-btn.active {
    position: fixed;
}
.header__burger-btn span {
    display: inline-block;
    background: #fff;
    width: 30px;
    height: 5px;
    border-radius: 5px;
    transition: all 0.2s ease;
}
.header__burger-btn.active span:nth-child(1) {
    transform: rotate(-45deg);
}
.header__burger-btn.active span:nth-child(2) {
    transform: rotate(45deg);
    margin-top: -4px;
}
.header__burger-btn.active span:nth-child(3) {
    display: none;
}

.header__burger-menu {
    display: none;
    position: fixed;
    right: -100%;
    top: 0;
    width: 420px;
    height: 100vh;
    /*background: rgba(0, 0, 0, 0.8);*/
    background: #0D0A22F2;
    backdrop-filter: blur(16px);
    box-shadow: -4px 0px 32px 0px #0000003D;
    z-index: 10;
    transition: all 0.2s ease;
    padding: 45px 20px;
    box-sizing: border-box;
}
.header__burger-menu.active {
    right: 0;
}
.burger-menu__list {
    margin-top: 80px;
    display: flex;
    flex-direction: column;
    grid-row-gap: 40px;
}
.burger-menu__list-link {
    font-size: 18px;
    text-decoration: none;
    color: #FFF;
}
.burger-menu__list-link:hover {
    color: #ED018C;
}
.burger-menu__list-btn {
    margin-top: 15px;
    padding: 10px 28px;
    font-weight: 500;
    width: max-content;
}


/*Intro Block*/

.intro {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: radial-gradient(131.71% 131.71% at 50% 125.96%, #0D0A22 39.77%, #0D0D29 47.1%, #201557 66.97%, #580C87 78.86%, #7F0A94 85.56%, #BC1B92 95.24%, #DE1394 100%);
    border-radius: 32px;
    padding: 92px 0 141px;
    z-index: 1;
    overflow: hidden;
}
.intro__bg-stars {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
}
.intro__logo {
    width: 360px;
    height: 150px;
    position: relative;
    /*display: flex;*/
    /*justify-content: center;center*/

    img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        position: absolute;
        left: calc(50% - 58px);
        transform: translateX(-50%);
    }
}
.intro__title {
    width: 80%;
    margin-top: 72px;
    font-size: 56px;
    color: #F8F8F8;
    text-align: center;
    text-transform: uppercase;
    line-height: 62px;
    font-weight: 600;
}
.intro__subtitle {
    width: 80%;
    margin-top: 40px;
    color: #F8F8F8;
    text-align: center;
    line-height: 29px;
}
.intro__btn {
    margin-top: 60px;
    padding: 12px 28px;
    font-size: 20px;
    font-weight: 500;
}

/*System Components*/

.systems-components {
    position: relative;
    padding-top: 80px;
    z-index: 2;
}
.systems-components__bg-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 70%;
}
.systems-components__number {
    /*width: 320px;*/
    font-size: 20px;
    line-height: 31px;
    color: #CFCED3;

    a {
        text-decoration: underline;
        color: inherit;
    }
}
.systems-components__subtitle {
    margin-top: 40px;
    width: 80%;
    a {
        text-decoration: underline;
        color: inherit;
    }
}

.systems-components__component-title {
    margin-top: 40px;
    font-size: 32px;
    line-height: 38px;
    font-weight: 600;
}
.systems-components__components {
    margin-top: 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 40px;
}

.sys-component {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 358px;
    border-radius: 32px;
    padding: 28px;
    position: relative;
    box-sizing: border-box;
}
.sys-component::after {
    content: "";
    position: absolute;
    inset: 0;
    padding: 2px;
    border-radius: 32px;
    background: linear-gradient(
            166.49deg,
            #290A4E 9.93%,
            #412796 43.04%,
            #472999 52.24%,
            #701F95 71.88%,
            #AF1190 92.46%
    );
    -webkit-mask:
            linear-gradient(#000 0 0) content-box,
            linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 0;
    box-sizing: border-box;
}
.sys-component::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #1508318F;
    border-radius: 32px;
    z-index: -1;
}
.sys-component__circle {
    width: 66px;
    height: 66px;
    background: transparent;
    border: 1px solid #fff;
    border-radius: 50%;
}

.sys-component__title {
    font-size: 32px;
    font-weight: 700;
    line-height: 39px;
}
.sys-component__text {
    margin-top: 16px;
    line-height: 28px;
}

/*Advantages Block*/
.advantages {
    margin-top: 80px;
    position: relative;
}
.advantages__bg-star {
    position: absolute;
    bottom: 0;
    right: -210px;
}
.advantages__items {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 64px;
    grid-row-gap: 40px;
    justify-content: space-between;
}
.advantages__item {
    position: relative;
}
.advantages__item::after{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 4px;
    background: #ED028C;
}
.advantages__item-title {
    margin-top: 16px;
    line-height: 28px;
    font-weight: 600;
}
.advantages__item-text {
    margin-top: 12px;
    font-size: 16px;
    line-height: 18px;
    color: #CECECE;
}

/*Interface Block*/

.interface {
    margin-top: 80px;
    position: relative;
    z-index: 2;
}
.interface__bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
}
.interface__subtitle {
    width: 80%;
}
.interface__images {
    margin-top: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 40px;
}
.interface__image-item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.image-item__image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 400px;
    background: #D9D9D9;
    border-radius: 32px;

    p {
        color: #000000;
        font-size: 16px;
    }
}
.image-item__description {
    margin-top: 16px;
}
.image-item__title {
   font-weight: 600;
    line-height: 29px;
}
.image-item__text {
    margin-top: 6px;
    font-size: 16px;
    color: #CECECE;
    line-height: 22px;
}

/*Documentation Block*/

.documentation {
    padding-top: 80px;
}
.documentation__items {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}
.documentation__document-item {
    border-radius: 24px;
    background: #D9D9D9;
}
.document-item__image {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    p {
        color: #000000;
        font-size: 16px;
    }
}

/*Feedback Block*/

.feedback {
    position: relative;
    margin-top: 80px;
    z-index: 2;

    .row {
        grid-column-gap: 100px;
    }
}
.feedback__bg-gradient {
    position: absolute;
    z-index: -1;
    top: 0;
    height: 100%;
    width: 100%;
    left: 0;
}

.feedback__form {
    display: flex;
    flex-direction: column;
    grid-row-gap: 16px;
}
.feedback__form-input {
    width: 560px;
}
.feedback__dropdown {
    width: 560px;
}
.feedback__send-btn  {
    /*width: max-content;*/
    width: 240px;
    padding: 18px 80px;
    font-size: 16px;
    font-weight: 500;
    margin-top: 16px;
    height: 56px;
}
.feedback__send-btn span {
    position: relative;
    display: inline-block;
}


/*Footer*/

.footer {
    margin-top: 85px;
    margin-bottom: 80px;
    display: flex;
    grid-column-gap: 116px;
}
.footer__icons {
    display: flex;
    flex-direction: column;
    grid-row-gap: 33px;

    img {
        width: 180px;
    }
}
.footer__nav-items {
    margin-top: 26px;
    display: grid;
    grid-template-columns: 25% 25% 27% 23%;
}
.footer__nav-item-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 23px;
}
.footer__nav-item-list {
    margin-top: 26px;
    display: flex;
    flex-direction: column;
    grid-row-gap: 24px;
}
.footer__nav-item-link {
    display: inline-block;
    min-height: 18px;
    font-size: 16px;
    line-height: 18px;
    color: #FFFFFF;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
}
.footer__nav-item {
    position: relative;
}

.footer__nav-item .tooltip {
    display: none;
    position: absolute;
    background-color: #333;
    color: #fff;
    font-size: 12px;
    padding: 5px 8px;
    border-radius: 4px;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    z-index: 100;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.footer__nav-item .tooltip.show {
    display: block;
    opacity: 1;
}
.footer__nav-item-link:hover {
    color: #ED018C;
}

/*Copyright Block*/

.copyright {
    display: flex;
    justify-content: space-between;
    padding-bottom: 30px;
    p {
        font-size: 16px;
        line-height: 18px;
        color: #D9D9D9;
    }
}