@import url('https://fonts.cdnfonts.com/css/euclid-circular-a');

:root {
    --color-primary: #FDEDFF;
    --color--primary-accent: #32003D;

    --color-secondary: #221433;
    --color-secondary-accent: #7045A7;

    --color-tertiary: #0C0B0F;
    --color-tertiary-accent: #4A4A5D;

    --color-accent: #8B00AD;
    --color-accent-contrast: #2CD5C4;
    --color-accent-light: #96FFEF30;
    --color-accent2: #FFE3F0;

    --font-family: 'Euclid Circular A', sans-serif;

    --container-padding-x: 24px;
    --section-padding-y: 120px;
    --section-content-padding-x: 64px;
    --card-gap: 24px;
    --card-padding: 32px;
    --card-radius: 8px;
}

html {
    font-size: 16px;
}

html, body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
    background-color: #fff;

    touch-action: manipulation;
}

body {
    font-family: var(--font-family), sans-serif;
    background-color: var(--color-primary);
    line-height: 1.5;
    color: #FFFFFF;
}

.page {
    width: 1920px;
    height: 100%;
    zoom: 1;
    transform-origin: top left;
    transform: translate3d(0, 0, 0);
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    padding: 0;
    margin: 0 auto;
}

header {
    position: sticky;
    top: 0;
    background-color: var(--color-primary);
    /*border-bottom: 1px dashed var(--color-accent);*/
    z-index: 1500;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 113px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;

    img {
        position: absolute;
        width: 216px;
        height: 53px;
        top: 32px;
        left: 75px;
    }
}

.area {
    display: flex;
    align-items: center;
    text-decoration: none;

    img {
        position: absolute;
        width: 216px;
        height: 53px;
        top: 32px;
        left: 75px;
    }
}

.header-nav ul {
    list-style: none;
    display: flex;
    gap: 3rem;
}

.header-nav a {
    font-family: MontserratRegular, sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 120%;
    letter-spacing: 0;
    color: #ac65f3;
    text-decoration: none;
    transition: color 0.3s;
}

.header-nav a:hover {
    color: var(--color-accent);
}

.section-inner-header {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 3rem 0;
    font-weight: 600;
    font-size: 15px;
    /*line-height: 120%;*/
    letter-spacing: 0;
}

.section-inner-module {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    height: 100%;
    padding-left: 10rem;
    font-weight: 500;
    font-size: 80px;
    line-height: 100%;
    letter-spacing: 0;
    text-align: start;
}

.section-inner-module-text {
    font-family: Exo2, sans-serif;
    font-weight: 400;
    font-size: 48px;
    line-height: 120%;
    letter-spacing: 0;
}

.section-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 600px;
    color: #FFFFFF;
    font-weight: 300;
    font-size: 36px;
    line-height: 110%;
    letter-spacing: 0;
    padding: 0 1rem
}

.section-00 {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: flex-start;
}

.section-00-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 610px;
    border-left: 1px dotted;
    border-right: 1px dotted;
    color: #FFFFFF;
    font-weight: 300;
    font-size: 36px;
    line-height: 110%;
    letter-spacing: 0;
    padding: 0 1rem
}

.section-01 {
    /*border-top: 1px dashed var(--color-accent);*/
}

.section-01-inner {
    border-left: 1px dashed var(--color-accent);
    border-right: 1px dashed var(--color-accent);
    color: var(--color-accent-contrast);
    font-weight: 300;
    font-size: 48px;
    line-height: 130%;
    letter-spacing: 0;
    text-align: center;
}

.section-02 {
    /*border-bottom: 1px dotted;*/
}

.section-02-inner {
    border-left: 1px dotted;
    border-right: 1px dotted;
    font-weight: 300;
    font-size: 48px;
    line-height: 130%;
    letter-spacing: 0;
    text-align: center;
}

.section-03 {
    border-bottom: 1px dotted;
}

.section-03-inner {
    border-left: 1px solid;
    border-right: 1px solid;
    font-weight: 300;
    font-size: 48px;
    line-height: 130%;
    letter-spacing: 0;
    text-align: center;
    padding: 0;
}

.container-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(300px, 1fr));
    gap: 2px;
    background-color: var(--color-tertiary-accent)
}

.container-grid-inner {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    height: 100%;
}

.container-grid .container-item {
    justify-content: flex-start;
    height: 401px;
    padding: 1rem;
    gap: 2rem;
    border: none;
    color: #FFFFFF;
    background-color: #0C0B0F;
}

.container-grid .container-item .container-item-label {
    padding: 0;
    justify-content: flex-start;
    font-weight: 400;
    font-size: 36px;
    line-height: 120%;
    letter-spacing: 0;
    text-transform: uppercase;
}

.container-grid .container-item .container-item-text {
    justify-content: flex-start;
    padding: 0;
    font-weight: 400;
    font-size: 22px;
    line-height: 140%;
    letter-spacing: 0;
}

.container-grid .container-item:hover {
    background-color: #111217;
}

.container-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px dotted;
    height: 209px;
    text-align: start;
}

.container-item-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
    font-weight: 400;
    font-size: 36px;
    line-height: 120%;
    letter-spacing: 0;
    text-transform: uppercase;
}

.container-item-text {
    padding: 1rem;
    width: 392px;
    font-weight: 400;
    font-size: 22px;
    line-height: 140%;
    letter-spacing: 0;
}

.container-footer {
    padding: 36px 72px;
    display: flex;
    text-align: center;
    flex-direction: column;
    align-items: center;
}

.container-footer-text {
    font-weight: 300;
    font-size: 48px;
    line-height: 120%;
    letter-spacing: 0;
    padding: 2rem 0;
}

.container-footer-label {
    font-family: MontserratRegular, sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 110%;
    letter-spacing: 0;
    text-transform: uppercase;
    padding: 4rem 0;
}

.container-footer a {
    font-family: MontserratRegular, sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 120%;
    letter-spacing: 0;
    padding: 1.5rem;
    color: var(--color-accent-contrast);
    background-color: var(--color-primary);
    border-radius: 50px;
    text-transform: uppercase;
    text-decoration: none;
    transition: color 0.3s;
}

.container-footer a:hover {
    color: var(--color-accent);
}

.icon-star {
    width: 10px;
    height: 10px;
    color: inherit;
    z-index: 1000;

    display: flex;
    align-items: center;
    justify-content: center;

}

.icon-star-left {
    position: absolute;
    left: -6px;
    bottom: -6px;
}

.icon-star-center {
    position: absolute;
    bottom: -6px;
}

.icon-star-right {
    position: absolute;
    right: -6px;
    bottom: -6px;
}

.technology {
    position: relative;
    right: 0;
    display: flex;
    width: 391px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    height: 100%;
    border-left: 1px dotted;
}

.technology-mask {
    position: relative;
    right: 0;
    display: flex;
    width: 391px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    height: 100%;
}

.technology-text {
    font-weight: 400;
    font-size: 22px;
    line-height: 28px;
    letter-spacing: 0;
    padding: 2rem 1rem;
}

.technology-mask .gif {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 541px;
    height: 621px;
    mix-blend-mode: screen;
    -webkit-mix-blend-mode: screen;
    background: url('../images/technology.gif') center/contain no-repeat;
}

.gif-crop {
    height: 460px;
    clip-path: inset(50px 0 100px 0);
}

.technology-mask .mask {
    position: absolute;
    width: 391px;
    height: 391px;
    mix-blend-mode: screen;
    -webkit-mix-blend-mode: screen;
    background: url('../images/BGgrd.svg') center/contain no-repeat;
}

.contact-form {
    position: relative;
    background-color: var(--color--primary-accent);
    padding: 48px;
    width: 90%;
}

.fields-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 48px;
    margin-bottom: 32px;
}

.contact-form label {
    display: block;
    font-size: 14px;
    line-height: 14px;
    /*color: var(--text-primary);*/
}

.contact-form input:not([type="radio"]) {
    width: 100%;
    border: none;
    border-bottom: 1px dotted #8B00AD80;
    padding: 8px 4px;
    font-size: 16px;
    background: transparent;
}

.contact-form input::placeholder {

}

.help-fieldset {
    border: none;
    margin-bottom: 32px;
    font-size: 16px;

}

.help-fieldset legend {
    font-weight: 600;
    margin-bottom: 8px;
}

.help-fieldset label {
    font-size: 14px;
    line-height: 2rem;
}

.help-fieldset input[type="radio"] {
    margin-right: 8px;
    accent-color: var(--color-primary)
}


.btn-submit {
    position: relative;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);

    display: flex;
    align-items: center;
    justify-content: center;

    background: linear-gradient(315deg, #4F0099 14.25%, #8B00AD 54.91%, #9823AD 87.52%);
    padding: 7px 12px 7px;
    gap: 6px;
    border-radius: 32px;

    width: 321px;
    height: 63px;


    color: #fff;

    font-size: 16px;
    text-align: center;
    vertical-align: middle;


    border: none;
    cursor: pointer;
    right: 10rem;
    bottom: 5rem;

    font-weight: 300;
    line-height: 120%;
    letter-spacing: 0;
    transition: color 0.3s;
}

.btn-lk {
    position: absolute;
    right: -5rem;
    left: unset;
    top: 10rem;
    border-radius: 1rem;
    height: 35px;
    width: 200px;
    text-decoration: none;
}

.gallery {
    width: 100%;
    display: flex;
    align-items: stretch;
    justify-content: space-evenly;
}

.gallery .gallery-item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    opacity: 0.5;
    transition: opacity 0.3s, border 0.3s;
    border-top: 0.3rem solid transparent;
    padding: 0.5rem;
}

.gallery .gallery-item.active {
    opacity: 1;
    border-color: #F7EDC4;
}

.point {
    display: flex;
    border-bottom: 1px solid;
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    color: #32003D;
    flex-direction: column;
    padding: 2rem;
    text-align: left;
    align-items: flex-start;
    gap: 0.5rem;
}

.client-container {
    position: relative;
    display: flex;
    flex-direction: column;
    text-align: left;
    flex: 1;
    opacity: 0.5;
    padding: 2rem 2rem 3rem 2rem;
    font-weight: 400;
    font-size: 24px;
    line-height: 120%;
    letter-spacing: 0;
    color: #34003D;
    gap: 3rem;
    border-top: 0.3rem solid;
    border-color: transparent;
    transition: opacity 1s, border-color 1s;
    overflow: hidden;
}

.client-container::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(323.44deg, #FFFFFF10 2.32%, #C485FF30 95.04%);
    opacity: 0;
    transition: opacity 1s;
    z-index: 0;
    pointer-events: none;
}

.client-container > * {
    position: relative;
    z-index: 1;
}

.client-container.active {
    opacity: 1;
    border-color: #F7EDC4;
}

.client-container.active::before {
    opacity: 1;
}


.job-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    height: 200px;
    opacity: 0.5;
    padding: 2rem 2rem 3rem 2rem;
    font-weight: 400;
    line-height: 120%;
    color: #34003D;
    border-top: 1px dotted #F7EDC430;
    background: #22002A;
    gap: 3rem;
    transition: opacity 1s, border-color 1s;
    overflow: hidden;
    font-size: 32px;
    letter-spacing: 0;
    text-align: center;
    vertical-align: middle;
}

.job-container::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(80% 140% at 50% -50%, #8B00AD 0%, rgba(139, 0, 173, 0) 60%);
    opacity: 0;
    transition: opacity 1s;
    z-index: 0;
    pointer-events: none;
}

.job-container::after {
    content: "";
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 34px;
    background-image: url("data:image/svg+xml;utf8,<svg width='16' height='34' viewBox='0 0 16 34' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M7.29285 32.8593C7.68337 33.2499 8.31654 33.2499 8.70706 32.8593L15.071 26.4954C15.4615 26.1048 15.4615 25.4717 15.071 25.0812C14.6804 24.6906 14.0473 24.6906 13.6568 25.0812L7.99995 30.738L2.34309 25.0812C1.95256 24.6906 1.3194 24.6906 0.928879 25.0812C0.538355 25.4717 0.538355 26.1048 0.928879 26.4954L7.29285 32.8593ZM6.99994 0.152221L6.99995 32.1522L8.99995 32.1522L8.99994 0.152221L6.99994 0.152221Z' fill='%23F7EDC480'/></svg>");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease, transform 1s ease;
    z-index: 1;
    pointer-events: none;
}

.job-container > * {
    position: relative;
    z-index: 1;
}

.job-container.active {
    opacity: 1;
    border-color: #F7EDC480;
}

.job-container.active::before {
    opacity: 1;
}

.job-container.active::after {
    opacity: 1;
    transform: translateX(-50%) translateY(5px);
}


.offer-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    padding: 2rem;

    .icon-star {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1;
        pointer-events: none;
        color: #32003D;
    }

    .icon-star svg {
        display: block;
        width: 100%;
        height: 100%;
    }

    .icon-star-left {
        left: 0;
        transform: translate(-50%, -50%);
    }

    .icon-star-center {
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .icon-star-right {
        right: 0;
        transform: translate(50%, -50%);
    }
}

.offer-grid::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-0.5px);
    width: 1px;
    height: 100%;
    background: repeating-linear-gradient(
            to bottom,
            #8B00AD 0,
            #8B00AD 1px,
            transparent 1px,
            transparent 2px
    );
    pointer-events: none;
    z-index: 0;
    opacity: 0.3;
}

.offer-grid::after {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-0.5px);
    width: 100%;
    height: 1px;
    background: repeating-linear-gradient(
            to right,
            #8B00AD 0,
            #8B00AD 1px,
            transparent 1px,
            transparent 2px
    );
    pointer-events: none;
    z-index: 0;
    opacity: 0.3;
}

.offer-container {
    background: #F7EDC490;
    color: #22002A;
    font-size: 30px;
    height: 15rem;
    padding: 1rem;
    font-weight: 300;
    line-height: 120%;
    display: flex;
    flex-wrap: wrap;
    /*flex-direction: column;*/
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
    border-radius: 2rem;
    transition: background 1s ease, color 1s ease;
    /*aspect-ratio: 1 / 1;*/

    &:hover {
        background: linear-gradient(323.44deg, #FFFFFF10 2.32%, #C485FF30 95.04%);
        color: #F7EDC4;
    }
}

@media (max-width: 768px) {
    .offer-grid {
        grid-template-columns: 1fr;

        .icon-star {
            display: none;
        }
    }

    .offer-grid::before,
    .offer-grid::after {
        display: none;
    }
}

@media (max-width: 1200px) {
    header {
        position: relative;
        height: 60px;

        .container {
            display: none;
        }

        .logo {
            img {
                position: relative;
                top: 0;
                left: 0;
            }
        }

        .btn-lk {
            position: relative;
            top: 50%;
            right: -50%;
        }
    }

    .quote {
        width: 63%;
    }

    .header-nav {
        display: none;
    }

    .section-00 {
        display: block;
    }

    .container {
        margin: 0;
    }
}
