* {
    margin: 0;
    padding: 0;
    cursor: None;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

a {
    color: #fff;
    text-decoration: none;
}

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/pt_root/PT-Root-UI_Light.ttf');
}

@font-face {
    font-family: 'exo-black';
    src: url('../fonts/pt_root/PT-Root-UI_VF.ttf');
}

@font-face {
    font-family: 'exo-m';
    src: url('../fonts/pt_root/PT-Root-UI_Medium.ttf');
}

@font-face {
    font-family: 'J-mono-b';
    src: url('../fonts/J-mono/JetBrainsMono-Bold.ttf');
}

@font-face {
    font-family: 'J-mono-m';
    src: url('../fonts/geo/Geologica-Light.ttf');
}

body {
    cursor: none;
    display: block;
    justify-content: center;
    font-family: 'Roboto', serif;
    align-items: center;
    background: #18161F;
    overflow-x: hidden;
    height: 100vh;
    transition: background-color 1s ease-in-out;
}

.block{
    height: 100vh;
    z-index: 0;
    overflow: hidden;
}

.gradient-strip {
    position: relative;
    width: 100%;
    height: 5px;
    background: linear-gradient(270deg, #ffc900, #ee2a7b, #3600a1);
}

.white{
    z-index: 2;
    background-color: #fff;
}

body::-webkit-scrollbar {
    width: 7px;
}

body::-webkit-scrollbar-track {
    background: linear-gradient(45deg, #ff6b6b, #f06595, #845ef7, #5c7cfa);;
}

body::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 0;
}

#counter {
    font-size: 64px;
    font-weight: bold;
    margin-bottom: 20px;
}

.container {
    margin: 0 auto;
    position: relative;
    font-family: 'Orbitron-ExtraBold', sans-serif;
    width: 700px;
    height: 700px;
}

.center-column {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.zayavka {
    margin-top: 125px; height: auto
}

.center-column p {
    font-size: 64px;
    color: #fff;
    margin: 10px 0;
    animation: fillText 2s ease-in-out;
}

.circle-background {
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    padding: 30px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.circle-svg {
    width: 100%;
    height: 100%;
    transform: rotate(0deg);
    animation: rotate 10s linear infinite;
}

text {
    font-size: 48px;
    color: transparent;
    text-transform: uppercase;
    background-clip: text;
    -webkit-background-clip: text;
    animation: fillText 2s ease-in-out;
}

.circle-svg image {
    opacity: 0.9;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.circle-svg image:hover {
    opacity: 1;
    transform: scale(1.2);
}

@keyframes fillText {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hidden, #hidden{
    display: none;
}

#img-logo{
    position: absolute;
    width: calc(100px + 20vw);
    max-width: 400px;
    padding: 10px;
    border-radius: 15px;
    margin: 1.7vw 0;
    top: 0;
    left: 5px;
    transition: all 0.5s ease;
    z-index: 10;
}

.header {
    height: 90px;
    width: 96%;
    margin: 2vh auto 2vh;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-right {
    background: #171717;
    position: absolute;
    display: flex;
    right: 2vw;
    padding: 10px;
    border-radius: 15px;
    gap: 20px;
    z-index: 12;
}

.header-links{
    display: block;
    font-family: 'J-mono-m', sans-serif;
    margin: auto 0;
    font-size: 25px;
    padding: 15px 0;
    border-radius: 30px;
    background: #292929;
    overflow: hidden;
}

.header-links a{
    width: 100%;
    padding: 15px 20px;
    transition: 0.3s;
    margin-right: -15px;
}

.header-links a:last-child{
    margin-right: 0;
}

.header-links a:hover{
    background: #fff;
    color: #000;
}


.techb {
    margin-top: -5vh;
}

.button-start {
    font-family: 'J-mono-m', sans-serif;
    background: #fff;
    color: #000;
    border-radius: 35px;
    font-size: 27px;
    padding: 9px 20px 13px 30px;
    opacity: 1;
    z-index: 11;
    transition: 0.32s;
    text-align: center;
    display: flex;
    align-items: center;
}

.start-text .button-start{
    font-size: 32px;
}

.start-text .button-start:hover{
    box-shadow: 0 0 200px #5C7CFAFF;
}

.button-start:hover{
    background: #292929;
    color: #fff;
}

.button-start:hover svg{
    transform: translate(5px, -5px) scale(1.2);
    fill: #5c7cfa;
}

.button-start:hover svg path{
    stroke: #fff;
}

canvas {
    background-image: url('../img/back_start.webp');
    background-position: 50% 100%;
    background-size: cover;
    padding-top: 18.4rem;
}

.menu-button {
    display: none;
    position: fixed; /* ИЗМЕНЕНО */
    top: 25px;
    right: 25px;
    margin: 10px;
    width: 40px;
    height: 30px;
    cursor: pointer;
    z-index: 17;
}

.menu-button div {
    width: 100%;
    height: 5px;
    background-color: #fff;
    margin: 5px 0;
    transition: 0.4s;
}

.menu-button.open div:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-button.open div:nth-child(2) {
    opacity: 0;
}

.menu-button.open div:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 1);
    color: #fff;
    display: flex;
    justify-content: center;
    flex-direction: column;
    transition: right 0.5s ease;
    z-index: 16;
}


.menu.open {
    cursor: auto;
    right: 0;
}

.menu img{
    display: none;
}

.menu a {
    color: #fff;
    text-align: left;
    text-decoration: none;
    font-size: 2.5em;
    margin: 15px 20px 15px 10vw;
    opacity: 0;
    transition: transform 0.3s ease, color 0.3s ease;
}

.menu a:hover {
    color: #ff6b6b;
    transform: scale(1.1);
}

.menu.open a {
    animation: fadeIn 0.8s ease forwards;
}

.menu.open a:nth-child(1) { animation-delay: 0s; }
.menu.open a:nth-child(2) { animation-delay: 0.1s; }
.menu.open a:nth-child(3) { animation-delay: 0.2s; }
.menu.open a:nth-child(4) { animation-delay: 0.3s; }
.menu.open a:nth-child(5) { animation-delay: 0.4s; }


@keyframes fadeIn {
    to {
        opacity: 1;
    }
}


.start-text{
    display: flex;
    text-align: center;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 75%;
    margin: 0 10vw;
    animation: start-text_spawn 3s;
}

@keyframes start-text_spawn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.start-text h1{
    text-align: center;
    font-family: 'exo-black', serif;
    font-size: 80px;
    color: #fff;
}

.start-text p{
    bottom: -40px;
    font-family: 'Roboto', serif;
    font-size: 30px;
    color: #cbb8cc;
}

.header-txt{
    margin: 40px auto 60px;
    padding: 0 75px;
    color: #fff;
}

.header-txt h1, .raduga{
    font-family: 'exo-black', serif;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    background-image: radial-gradient(100.54% 100.54% at 83.59% 86.72%, #ff0080 0%, #B224B2 32.78%, #853DCC 66.67%, #5252CC 100%);
    z-index: 1;
}

.raduga {
    color: #e55cfa;
    text-shadow: #e55cfa 0 0 15px;
}

.header-txt h1{
    font-size: 12.5rem;
}

.mini-p{
    color: #8b648c;
    margin-bottom: -80px;
    margin-left: 142px;
    font-size: 1.2rem;
    max-width: 900px;
    z-index: 0;
}

.header-txt p{
    font-size: 2.2rem;
    max-width: 900px;
    z-index: 0;
}

.do-blocks {
    display: flex;
    justify-content: center;
    gap: 2%;
    flex-wrap: wrap;
    height: auto;
    margin: 0 2%;
    padding-bottom: 20px;
}

.do {
    position: relative;
    background: linear-gradient(45deg, #131219, #1c1a25);
    color: #fff;
    border-radius: 30px;
    padding: 15px;
    width: calc(32% - 2%);
    min-width: 300px;
    aspect-ratio: 1.5/1;
    z-index: 14;
    transition: 0.3s;
    margin-bottom: 20px;
}

.do::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(100.54% 100.54% at 83.59% 86.72%, #CC1470 0%, #B224B2 32.78%, #853DCC 66.67%, #5252CC 100%);
    z-index: -1;
    border-radius: 30px;
    transition: 0.3s;
}

.do::after {
    content: "";
    position: absolute;
    top: 4px;
    left: 4px;
    right: 4px;
    bottom: 4px;
    background: linear-gradient(45deg, #131219, #1c1a25);
    z-index: -1;
    border-radius: 26px;
}

.do:hover::before {
    box-shadow: 0 0 40px #5C7CFAFF;
}


.do h2 {
    max-width: 70%;
    margin-bottom: 10px;
    font-size: 40px;
    padding: 15px 30px;
    font-weight: 400;
}

.do ul{
    margin: 50px 0 0;
}

.do li{
    list-style: none;
    padding: 20px 30px;
    font-size: 25px;
}

.icon {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 25%;
    transition: transform 0.3s ease;
}

.do:hover .icon {
    transform: scale(1.2);
}

.projects {
    position: relative;
    background: #18161F;
    border-radius: 45px;
    margin-top: -5vh;
    z-index: 10;
    height: auto !important;
    padding-bottom: 20px;
}

.circle-cursor{
    width: 60px;
    height: 60px;
    mix-blend-mode: exclusion;
    position: absolute;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 1000;
    transition: width 0.3s ease, height 0.3s ease, opacity 0.3s ease;
}
.circle-cursor .mask{position: absolute;background: #fff;transform: translate(-50%, -50%);top: 50%;left: 50%;}
.circle-cursor-click .mask{width: 90px;height: 30px;border-radius: 5px;transition: 0.3s;}
.circle-cursor-click-1 .mask{width: 50px;height: 30px;border-radius: 5px;transition: 0.3s;}
.circle-cursor-click-2 .mask{width: 50px;height: 30px;border-radius: 5px;transition: 0.3s;}
.circle-cursor-click-0 .mask{width: 20px;height: 20px;opacity: 1;transition: 0.3s;}
.circle-cursor .txt-mask{opacity: 0;mix-blend-mode: exclusion;background: #fff;color: transparent;-webkit-background-clip: text;background-clip: text;white-space: nowrap;font-family: J-mono-b, serif;position: absolute;text-align: center;transform: translate(-50%, -50%);top: 50%;left: 50%;}
.circle-cursor-click .txt-mask{opacity: 1;transition: 0.3s;}
.circle-cursor-click-0 .txt-mask{opacity: 0;transition: 0.3s;}
.circle-cursor .txt-mask2{opacity: 0;color: #212121;white-space: nowrap;font-family: J-mono-b, serif;position: absolute;text-align: center;transform: translate(-50%, -50%);top: 50%;left: 50%;}
.circle-cursor-click-1 .txt-mask2{opacity: 1;transition: 0.3s;}
.circle-cursor-click-0 .txt-mask2{opacity: 0;transition: 0.3s;}
.circle-cursor .txt-mask3{opacity: 0;color: #212121;white-space: nowrap;font-family: J-mono-b, serif;position: absolute;text-align: center;transform: translate(-50%, -50%);top: 50%;left: 50%;}
.circle-cursor-click-2 .txt-mask3{opacity: 1;transition: 0.3s;}
.circle-cursor-click-0 .txt-mask3{opacity: 0;transition: 0.3s;}

.hover-target, .do, .work, a{
    cursor: None;
}


#three-container {
    width: 800px;
    margin: auto;
    position: absolute;
    top: -600px; left: 0; right: -1800px; bottom: 0;
    z-index: 5;
    transition: 0.5s;
}

#canvas{
    height: 105vh;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -15;
}

.social-icons {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 11;
}

.social-icon {
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.social-icon img {
    width: 100%
}

.social-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.5);
}

.grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    justify-items: center;
    gap: 20px;
    max-width: 1200px;
    width: 100%;
    padding: 20px;
    margin: 0 auto 100px;
}

.tech-icon {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #3a354a;
    border-radius: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
}
.tech-icon:hover {transform: scale(1.1);box-shadow: 0 6px 15px #F700FFFF;}
.tech-icon:hover img{transform: scale(1.1);}
.tech-icon img, .tech-icon svg {width: 60px;height: 60px;transition: 0.3s;}
.tech-icon[data-name]::after {content: attr(data-name);position: absolute;bottom: 7px;right: 7px;font-size: 0.8rem;color: #fff;opacity: 0;transition: opacity 0.3s;}
.tech-icon:hover[data-name]::after {opacity: 1;}

.works-blocks {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3%;
    margin: 3%;
    padding-bottom: 20px;
}

.work {
    color: #fff;
    width: 48%;
    min-width: 320px;
    z-index: 14;
    position: relative;
    border-radius: 30px;
    padding: 4px;
    transition: 0.3s;
    margin-bottom: 25px;
}
.work::before{content: "";position: absolute;top: 0;left: 0;right: 0;bottom: 0;background: radial-gradient(100.54% 100.54% at 83.59% 86.72%, #CC1470 0%, #B224B2 32.78%, #853DCC 66.67%, #5252CC 100%);z-index: -1;border-radius: 30px;opacity: 0;transition: 0.3s;}
.work:hover{transform: scale(1.05);}
.work:hover::before {opacity: 1;transition: 0.3s;}
.work::after {content: "";position: absolute;top: 4px;left: 4px;right: 4px;bottom: 4px;background: #18161F;z-index: -1;border-radius: 26px;}
.work img, .work video{width: 100%;aspect-ratio: 16/9;height: auto;margin: 0;object-fit: cover;border-radius: 30px;}
.glass{display: block;}
.glass h1{font-size: 48px;padding: 20px 20px 0;}
.glass p{padding: 20px;font-size: 25px;}

.application-form-container {
    position: relative;
    border-radius: 30px;
    padding: 20px;
    margin: 50px auto;
    color: #fff;
    font-family: 'J-mono-m', sans-serif;
    width: 95vw;
    max-width: 1400px;
}
.application-form-container form{display: block;}
.form-group label {font-size: 18px;color: #fff;}
.name-email {box-sizing: border-box;display: flex;flex-wrap: wrap;margin: -10px;}
.name-email .form-group{width: calc(50% - 20px);margin: 10px;}
.message {position: relative;display: flex;flex-wrap: wrap;margin: 15px -10px;}
.message .form-group{width: calc(50% - 20px);margin: 10px;}
.message .message-list-block{width: calc(50% - 20px);margin: 10px;padding-left: 20px;}
.message-list-block h6{margin: 0 0 0.5rem;font-size: 1.125rem;font-weight: 700;line-height: 1.5555;}
.message-list-block p{font-size: 1rem;font-weight: 300;line-height: 1.75;color: #828282;}
.message-list li:not(:last-child){margin-bottom: 1.75rem;}
.form-group input, .form-group textarea {height: 100%;width: 100%;padding: 24px 32px;font-size: 18px;background: rgba(255, 255, 255, 0);border: 1px solid rgba(255, 255, 255, 0.2);border-radius: 24px;color: #fff;transition: 0.3s;}
.form-group input:focus, .form-group textarea:focus {background: rgba(0, 0, 0, 0.2);border: 1px solid rgba(255, 255, 255, 0.8);}
.form-group textarea {resize: none;}
.application-form-container {display: flex;flex-direction: column;gap: 20px;margin-bottom: 150px;}
input[type=file]::file-selector-button {margin-right: 20px;border: none;background: #fff;padding: 10px 20px;border-radius: 10px;color: #000;cursor: pointer;transition: 0.3s;}
input[type=file]::file-selector-button:hover {background: #000;color: #fff;}
.message .form-group .add-files{width: 100%;margin: 25px 0;}
form .button-start{display: block; width: 40%; max-width: 300px; margin: 30px 150px auto auto; border: none; padding: 20px; justify-content: center;}
.pers{font-size: 13px;margin: 7px;}.pers a{color: #ff6b6b;}

.footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    padding: 30px 40px;
    font-size: 20px;
    background-color: #141119;
    gap: 20px;
    text-align: center;
}
.footer div {flex: 1;min-width: 200px;display: flex;flex-direction: column;gap: 10px;}
.footer span {font-size: 18px;color: #d6d6d6;}
.footer a {text-decoration: none;color: #f500ff;font-weight: bold;transition: 0.3s ease;}
.footer a:hover {color: #00f6ff;text-decoration: underline;}

#loading-screen {position: fixed;top: 0;left: 0;width: 100%;height: 100%;background: #0a0a23;display: flex;justify-content: center;align-items: center;z-index: 9999;}
.console-container {width: 80%;max-width: 600px;background: #17152f;border: 2px solid #4d4d99;border-radius: 10px;overflow: hidden;color: #fff;font-family: 'Courier New', Courier, monospace;}
.console-header {display: flex;justify-content: space-between;align-items: center;padding: 10px;background: #2b2a4c;border-bottom: 2px solid #4d4d99;}
.header-text {font-size: 14px;text-transform: uppercase;letter-spacing: 1px;}
.header-lights .light {width: 12px;height: 12px;border-radius: 50%;margin-left: 5px;}
.light.red { background: #ff6b6b; } .light.yellow { background: #ffe66d; } .light.green { background: #5c7cfa; }
.console-output {padding: 20px;line-height: 1.6;}
.log {font-size: 14px;&::before {content: "> ";color: #5c7cfa;}}
.progress-bar {background: #2b2a4c;border: 1px solid #4d4d99;height: 10px;border-radius: 5px;margin-top: 20px;overflow: hidden;box-shadow: inset 0 0 10px #000;}
.progress {width: 0%;height: 100%;background: linear-gradient(90deg, #ff6b6b, #5c7cfa);}

/* === СТИЛИ ИНДИКАТОРОВ ПРОКРУТКИ === */
.scroll-indicators {
    display: none;
    justify-content: center;
    align-items: center;
    padding: 15px 0;
    gap: 10px;
}

.indicator-dot {
    width: 8px;
    height: 8px;
    background-color: #4d4d99;
    border-radius: 50%;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.indicator-dot.active {
    background-color: #fff;
    transform: scale(1.3);
}

/* =================================== */
/* ========== АДАПТИВНОСТЬ =========== */
/* =================================== */

@media (hover: none) {
    .circle-cursor {
        display: none !important;
    }
    * {
        cursor: auto !important;
    }
}

@media (max-width: 1200px) {
    .do h2 {
        padding: 10px 15px;
    }
    .do ul{
        margin: 12px 0 0;
    }
    .header-txt h1 {
        font-size: 8rem;
    }
    .header-txt p {
        font-size: 1.8rem;
        display: none;
    }
    .techb {
        margin-top: -3vh;
    }
    .mini-p {
        margin-left: 0;
        margin-bottom: -50px;
    }
    .grid {
        grid-template-columns: repeat(4, 1fr);
    }
    #three-container {
        right: -1400px;
    }

    #img-logo{
        width: calc(200px + 20vw);
        max-width: 300px;
        margin: 6vw 0;
    }
}

@media (max-width: 1024px) {
    .header-right {
        background: none;
    }
    .header-links, .header-right > .button-start {
        display: none;
    }
    .menu-button {
        display: block;
    }

    .start-text h1 {
        font-size: 48px;
    }
    .start-text p {
        font-size: 22px;
    }

    .scroll-indicators {
        display: flex; /* Показываем индикаторы на мобильных */
    }

    .do-blocks, .works-blocks {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        justify-content: flex-start;
        align-items: stretch;
        padding: 20px 0 20px 20px;
        margin: 0;
        gap: 0;
        scrollbar-width: none;
    }

    .do-blocks::-webkit-scrollbar,
    .works-blocks::-webkit-scrollbar {
        display: none;
    }

    .do, .work {
        flex-shrink: 0;
        margin-right: 20px;
        margin-bottom: 0; /* Убираем нижний отступ, так как скролл горизонтальный */
    }

    .do {
        width: 80vw;
        max-width: 400px;
    }

    .work {
        width: 90vw;
        max-width: 500px;
        transform: scale(1) !important;
    }

    .work:hover {
        transform: scale(1.02) !important;
    }

    #three-container {
       display: none;
    }

    .name-email, .message {
        flex-direction: column;
        margin: 0;
    }
    .name-email .form-group, .message .form-group, .message .message-list-block {
        width: 100%;
        margin: 10px 0;
    }

    form .button-start {
        width: 80%;
        margin: 20px auto 0;
        justify-content: center;
    }
    .social-icons {
        left: 50%;
        top: auto;
        bottom: 20px;
        transform: translateX(-50%);
        flex-direction: row;
    }
    .social-icon {
        width: 37px;
        height: 37px;
    }
    .projects {
        border-radius: 20px;
    }
    .header-txt {
        margin: 15px 20px 40px; /* Уменьшен нижний отступ */
    }
    .zayavka {
        margin-top: 25px
    }
}

@media (max-width: 768px) {
    .block {
        padding-bottom: 50px;
    }
    .header-txt {
        padding: 0 15px;
        margin-bottom: 20px;
    }
    .header-txt h1 {
        font-size: 4rem;
        line-height: 1.1;
    }
    .header-txt p {
        font-size: 1.2rem;
    }
    .mini-p {
        display: none;
    }

    .start-text {
        margin: -10vh 5vw;
        height: 80%;
    }
     .start-text h1 {
        font-size: 36px;
    }
    .start-text p {
        font-size: 18px;
    }
    .start-text .button-start {
        font-size: 24px;
    }

    .do h2 { font-size: 32px; }
    .do li { font-size: 20px; padding: 15px 25px; }

    .grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
        padding: 10px;
        margin-bottom: 2vh;
    }
    .tech-icon {
        width: 90px;
        height: 90px;
    }
    .tech-icon img, .tech-icon svg {
        width: 50px;
        height: 50px;
    }

    .glass h1 { font-size: 36px; }
    .glass p { font-size: 20px; }

    .footer {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

@media (max-aspect-ratio: 4/3) {
    .start-text h1 {
        font-size: 60px;
    }
    .do-blocks {
        justify-content: left;
    }
    .do {
        width: 45%;
    }
}