/*!*****************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./src/style.css ***!
  \*****************************************************************/
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Manrope", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}
html {
    scroll-behavior: smooth;
}
body {
    background: #060708;
}

.dmsans {
    font-family: "DM Sans", sans-serif;
}

.manrope {
    font-family: "Manrope", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

.container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 80px;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}
.justify-end {
    justify-content: flex-end;
}

.align-center {
    align-items: center;
}
.align-start {
    align-items: flex-start;
}

button {
    outline: none;
    border: none;
    background: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Manrope', sans-serif;
    white-space: nowrap;
}

button.outlined {
    border-radius: 12px;
    border: 1px solid rgba(215, 220, 239, 0.19);
    padding: 12px 40px;
    color: #F5F5F7;
    font-size: 12px;
    line-height: 20px;
    transition: all .3s ease;
    cursor: pointer;
}
button.outlined:hover {
    color: #F44545;
}

button.outlined:active {
    color: #6E2222;
}

.section-title {
    position: relative;
    gap: 6px;
}
.section-title h3 {
    color: #F5F5F7;
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
}
.section--body {
    width: 100%;
    max-width: 764px;
    margin: 24px 0 40px;
    gap: 28px;
}

.section--body h4 {
    color: #F5F5F7;
    font-size: 32px;
    font-weight: 400;
    line-height: 46px;
    width: 75%;
}

.section--body p {
    color: #F5F5F7;
    font-size: 16px;
    line-height: 24px;
    opacity: 0.72;
    width: 88%;
}
.text-line {
    white-space: nowrap;
    font-size: clamp(16px, 9.9vw, 190px);
    font-weight: 700;
    line-height: 143.75%;
    letter-spacing: -1.871px;
    opacity: 0.4;
    background: linear-gradient(90deg, #F5F5F7 -11.99%, rgba(187, 188, 189, 0.11) 11.02%, rgba(114, 115, 116, 0.50) 40.17%, #060708 103.93%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.center {
    text-align: center;
}
.no-underline {
    text-decoration: none;
}
.info-block p {
    color: #F5F5F7;
    font-size: 18px;
    font-weight: 500;
    line-height: 30px;
    letter-spacing: -0.18px;
    display: flex;
    align-items: flex-start;
}
.info-block p span, .info-block p a {
    color: rgba(245, 245, 247, 0.60);
    font-weight: 400;
    display: block;
    margin-left: 8px;
    max-width: 225px;
}
input {
    border: none;
    outline: none;
    background: none;
    padding: 12px;
    border-bottom: 1px solid rgba(245, 245, 247, 0.19);
    color: #F5F5F7;
    font-size: 14px;
    line-height: 24px;
}
input::placeholder {
    color: rgba(245, 245, 247, 0.50);
}

header {
    padding: 32px 0;
}
.orange-circle {
    border-radius: 425px;
    opacity: 0.4;
    background: #6A471B;
    filter: blur(150px);
    width: 388px;
    height: 425px;
    transform: rotate(-130deg);
    top: -500%;
    right: -10%;
    z-index: -1;
}
.red-circle {
    border-radius: 425px;
    opacity: 0.4;
    background: rgba(253, 27, 27, 0.33);
    filter: blur(150px);
    width: 388px;
    height: 425px;
    transform: rotate(-140deg);
    top: 30%;
    left: -10%;
    z-index: -1;
}
.banner-text h2 {
    animation-delay: 0.2s;
    animation-timing-function: ease-out;
}
.banner-text h3 {
    animation-delay: 0.15s;
    animation-timing-function: ease-out;
}
.banner-text p, .banner-text h3, .banner-text h2 {
    animation-name: dump-text;
    animation-duration: 1s;
    animation-iteration-count: 1;
    animation-fill-mode: both;
    animation-timing-function: ease-out;
}

@keyframes dump-text {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.banner > div:nth-child(2) .red-circle.mobile {
    display: none;
}
.banner > div:nth-child(2) .red-circle {
    top: -200%;
    left: 50%;
    transform: translate(-50%, -100%);
}

.secondary-banner {
    height: calc(100vh - 105px);
    padding: 0 0 120px;
}
.about-banner {
    height: calc(100vh - 105px);
}
.secondary-banner .banner-text h2 {
    font-size: clamp(40px, 11vw, 109px);
}
.secondary-banner .banner-images {
    margin: -83px 0 0 -45px;
}
.secondary-banner .banner-images img:nth-child(1) {
    width: 90%;
    max-width: 886px;
    height: auto;
    margin: 0;
}
.secondary-banner > div:nth-child(1) {
    margin: auto auto 15vh;
}
.secondary-banner > div:nth-child(2) {
    margin-top: auto;
}

.menu {
    display: flex;
    position: fixed;
    justify-content: flex-end;
    right: 0;
    height: 100vh;
    width: 100%;
    top: 0;
    transform: translateX(110%);
    z-index: 999;
    transition: transform 0.5s ease;
}
.menu-wrap {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
}
.menu-content {
    flex-direction: column;
    height: 100%;
    width: 57%;
    position: relative;
    z-index: 9999;
    padding: 45px 80px 52px 100px;
    background: rgba(13, 10, 9, 0.51);
    backdrop-filter: blur(23.5px);
}
.menu-top a {
    display: none;
}
.menu.open {
    transform: translateX(0%);
}
.menu-navs {
    gap: 40px;
}
.menu-nav {
    color: #F5F5F7;
    font-size: 32px;
    font-weight: 600;
    line-height: 46px;
    text-decoration: none;
    transition: all .3s ease;
}
.menu-nav:hover {
    color: #F44545;
}
.menu-body {
    margin-top: 10%;
}
.menu-bottom {
    margin-top: auto;
}
.menu-bottom a, .menu-bottom p {
    color: #828D91;
    font-variant-numeric: oldstyle-nums proportional-nums;
    font-size: 12px;
    line-height: 140%;
    opacity: 0.6;
    text-decoration: none;
}
#close, #burger {
    cursor: pointer;
    width: 40px;
    height: 40px;
}
#burger svg path, #close svg path {
    transition: all 0.3s ease;
}
#burger:hover svg path, #close:hover svg path {
    stroke: #F44545;
}
#burger:active svg path, #close:active svg path {
    stroke: #6E2222;
}

.hidden {
    position: relative;
    width: 100vw;
    overflow: hidden;
}
.contacts {
    padding: 80px 0 0;
}
.contacts .container > img {
    position: absolute;
    left: 50%;
    top: 6px;
    transform: translateX(-50%);
    z-index: -1;
    width: 100%;
    height: calc(100% + 15vw);
}
.contacts .container:first-child {padding-bottom: 114px; }
.contacts-block {
    border-radius: 60px;
    border: 1px solid rgba(245, 245, 247, 0.17);
    background: rgba(0, 0, 0, 0.34);
    backdrop-filter: blur(15px);
    padding: 72px 99px;
    width: 89%;
    margin-top: 90px;
}
.contacts-block h6 {
    color: #F5F5F7;
    font-size: 28px;
    font-weight: 500;
    line-height: 36px;
    letter-spacing: -0.28px;
}
.contacts .text-line {
    font-size: 11.6vw;
}
.info-block {
    width: 40%;
}
.info-block h6 {
    margin-bottom: 38px;
}
.info-block p + p {
    margin-top: 12px;
}
.form-block {
    width: 50%;
    max-width: 454px;
}
form {
    gap: 20px;
    margin-top: 42px;
}
form button {
    margin-top: 28px;
    height: 60px;
    font-size: 14px !important;
    font-weight: 500;
    line-height: 26px !important;
}

footer {
    background: #0A0B0C;
    padding: 48px 0 28px;
}
.footer-title {
    color: rgba(245, 245, 247, 0.40) !important;
    font-variant-numeric: oldstyle-nums proportional-nums;
    font-size: 10px !important;
    font-weight: 500 !important;
    line-height: 140% !important;
    letter-spacing: 0.4px !important;
    text-transform: uppercase !important;
    margin-bottom: 32px;
    white-space: nowrap;
}
.footer-left {
    width: 60%;
    max-width: 582px;
}
footer .container:first-child {
    height: 374px;
    z-index: 2;
}
.footer-bottom {
    margin-top: 43px;
    position: relative;
    z-index: 2;
}
.footer-bottom > .flex {
    width: 35%;
}
.go-top {
    width: 24px;
    min-width: 24px;
    height: 24px;
    margin-left: auto;
}
.footer-bottom a, .footer-bottom p {
    opacity: 0.6;
    color: #828D91;
    font-variant-numeric: oldstyle-nums proportional-nums;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    text-decoration: none;
}
.quick-links {
    flex-wrap: wrap;
    gap: 12px;
}
.quick-links svg {
    margin-left: 10px;
}
.quick-links a, .quick-links a:visited {
    white-space: nowrap;
    color: #F5F5F7;
    text-decoration: none;
    font-variant-numeric: oldstyle-nums proportional-nums;
    font-size: 28px;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: -0.28px;
    transition: all .3s ease;
}
.quick-links a:hover,
.footer-contacts a:hover,
.follow-us a:hover,
.footer-bottom a:hover {
    color: #F44545;
}

.footer-contacts a,
.follow-us a,
.footer-bottom a {
    transition: all .3s ease;
}
.quick-links a:active {
    color: #6E2222;
}
footer {
    overflow: hidden;
}
.footer-contacts p:last-child, .go-top {
    margin-top: auto;
}
.footer-contacts a, .footer-contacts p,
.follow-us a, .follow-us p {
    color: rgba(245, 245, 247, 0.70);
    font-variant-numeric: oldstyle-nums proportional-nums;
    font-size: 14px;
    font-weight: 400;
    line-height: 140%;
    text-decoration: none;
}
footer .container .red-circle {
    left: auto;
    right: -20%;
    top: 15%;
}
.go-top {
    cursor: pointer;
}
.go-top svg path {
    transition: all 0.3s ease;
}
.go-top:hover svg path {
    stroke: #F44545;
}
.actions {
    gap: 18px;
}
.modal {
    display: none;
    position: fixed;
    z-index: 999999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #0D0D0D;
    align-items: center;
    justify-content: center;
}
.modal-content {
    width: 90%;
    max-width: 454px;
}
.modal-content h4 {
    color: #F5F5F7;
    font-size: 28px;
    font-weight: 500;
    line-height: 36px;
    letter-spacing: -0.28px;
}
.modal-content p {
    color: rgba(245, 245, 247, 0.80);
    text-align: center;
    font-size: 14px;
    line-height: 28px;
}
.response-modal {
    display: none;
    align-items: center;
    justify-content: center;
}
.response-modal-content {
    border-radius: 33px;
    border: 1px solid rgba(245, 245, 247, 0.10);
    background: rgba(0, 0, 0, 0.04);
    display: flex;
    width: 90%;
    max-width: 500px;
    padding: 40px;
    flex-direction: column;
    align-items: center;
    position: relative;
}
.response-modal-content .circle {
    bottom: -150% !important;
}
.response-modal .red-circle {
    left: 50%;
    transform: translateX(-50%);
    top: 90%;
    border-radius: 380px;
    opacity: 0.7;
    background: rgba(253, 27, 27, 0.33);
    filter: blur(197px);
    width: 380px;
    height: 380px;
}
.response-modal-content img {
    margin-top: 22px;
}
.response-modal-content button {
    width: 400px;
    height: 54px;
    margin-top: 32px;
}
#close-response-modal {
    position: absolute;
    right: 24px;
    top: 24px;
    cursor: pointer;
}
#close-response-modal path {
    transition: all .2s ease;
}
#close-response-modal:hover path {
    stroke-opacity: 1;
}
.modal-content form {
    margin-top: 42px;
    gap: 0;
}
.modal-content form input+input {
    margin-top: 20px;
}
.modal-content form button {
    margin-top: 0;
}
.modal .close {
    position: absolute;
    right: 40px;
    top: 40px;
    cursor: pointer;
}
.modal .close path {
    transition: all .3s ease;
}
.modal .close:hover path {
    fill-opacity: 1;
}
#response-title h3 {
    color: #F5F5F7;
    font-feature-settings: 'liga' off, 'clig' off;
    font-size: 46px;
    font-style: normal;
    font-weight: 400;
    line-height: 52px;
}
a {
    text-decoration: none;
    display: block;
}
.animate {
    transition: opacity 3s ease;
}
.animate span {
    opacity: 0;
}
.word {
    display: inline-block;
    opacity: 0;
    transition: opacity 1s ease;
}
.word + .word {
    margin-left: 4px;
}
.animate-block {
    transform: translateY(-15px);
    transition: transform 1s ease;
}
.animate-block.move {
    transform: translateY(0);
}

.custom-checkbox {
    position: relative;
    cursor: pointer;
    transition: all .2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 32px 0 34px;
}
.custom-checkbox input[type="checkbox"] {
    opacity: 0;
    position: absolute;
    cursor: pointer;
    width: min-content;
}
.custom-checkbox input[type="checkbox"]:checked + .checkmark {
    border: 1px solid #F44545 !important;
    background-size: 50% 50%;
    border-radius: 6px;
    background-color: #F44545;
    background-position: center center;
    background-repeat: no-repeat;
    background-image: url(e3910f5715ab23920804.svg);
}
.custom-checkbox input[type="checkbox"]:checked + .checkmark + .check-text {
    color: rgba(245, 245, 247, 0.90);
}
.custom-checkbox:hover .check-text {
    color: rgba(245, 245, 247, 0.90);
}
.custom-checkbox:hover .checkmark{
    border: 1px solid rgba(245, 245, 247, 0.40);
}
.checkmark {
    display: inline-block;
    width: 24px;
    min-width: 24px;
    height: 24px;
    min-height: 24px;
    border-radius: 6px;
    border: 1px solid rgba(245, 245, 247, 0.20);
    background: none;
    cursor: pointer;
    transition: border .3s ease;
}
.check-text {
    color: rgba(245, 245, 247, 0.70);
    font-size: 14px;
    line-height: 20px;
    transition: color .3s ease;
    display: flex;
    gap: 4px;
    white-space: nowrap;
}
.check-text a {
    color: #F44545;
    text-decoration-line: underline;
    white-space: nowrap;
}


@media (max-width: 1280px) {
    .container {
        padding: 0 60px;
    }
}
@media (max-width: 1024px) {
    .container {
        padding: 0 40px;
    }
    .section--body {
        max-width: none;
    }
    .section--body h4, .section--body p {
        width: 100%;
    }
    .contacts-block {
        width: 100%;
        padding: 60px 30px;
    }
    footer .container:first-child {
        gap: 20px;
    }
    .quick-links a {
        font-size: 24px;
    }
}
@media (max-width: 768px) {
    body {
        background: #090909;
    }
    .container {
        padding: 0 20px;
    }
    .red-circle {
        width: 265px;
        height: 290px;
        filter: blur(100px);
        border-radius: 290px;
    }
    #burger, #close {
        border-radius: 10px;
        border: 1px solid rgba(245, 245, 247, 0.18);
    }
    header {
        padding: 25px 0;
    }
    header .orange-circle {
        right: -80%;
    }
    .menu-content {
        width: 100%;
        height: 100dvh;
        padding: 27px 20px 24px;
    }
    .menu-nav {
        font-size: 26px;
        line-height: 38px;
    }
    .menu-top {
        justify-content: space-between;
    }
    .menu-top a {
        display: block;
    }
    .menu-navs {
        gap: 29px;
    }
    .menu-bottom {
        flex-wrap: wrap;
        gap: 4px;
    }
    .section--body h4 {
        font-size: 26px;
        line-height: 38px;
        opacity: 0.8;
    }
    .section-title {
        text-align: center;
    }
    .section-title h3 {
        max-width: 250px;
    }
    .section--body p {
        line-height: 26px;
        opacity: 0.62;
    }
    .contacts-block {
        flex-direction: column;
        gap: 50px;
        padding: 40px 32px;
        margin-top: 20px;
        border-radius: 32px;
    }
    .contacts-block h6 {
        font-size: 26px;
        line-height: 38px;
        letter-spacing: -0.26px;
        opacity: 0.8;
    }
    .info-block {
        width: 100% !important;
    }
    .info-block h6 {
        margin-bottom: 22px !important;
    }
    .info-block p span {
        max-width: none;
    }
    form {
        margin-top: 36px;
    }
    .form-block {
        width: 100% !important;
        max-width: none !important;
    }
    input {
        font-size: 16px;
    }
    form button {
        height: 48px !important;
    }
    .banner > div:nth-child(1) .red-circle {
        left: -40%;
        top: -60%;
        transform: rotate(-140.689deg);
    }
    .banner > div:nth-child(2) .red-circle {
        left: -57%;
        top: -60%;
        transform: rotate(-140.689deg);
    }
    .banner > div:nth-child(2) .red-circle.mobile {
        display: block;
        left: auto;
        right: -43%;
        top: -65%;
    }
    .banner {
        padding: 10vh 0 40px !important;
        height: calc(100dvh - 92px);
    }
    .banner .banner-text h2 {
        font-size: clamp(35px, 14vw, 80px);
    }
    .secondary-banner > div:nth-child(1) {
        margin: 5vh auto 20vh;
    }
    .controls {
        position: relative;
        z-index: 2;
        display: flex !important;
        gap: 14px;
        margin-top: 32px;
    }
    .controls button {
        background: rgba(0, 0, 0, 0.32);
        border: 1px solid rgba(245, 245, 247, 0.19);
        width: 48px;
        height: 48px;
        min-width: 48px;
        border-radius: 12px;
    }
    .controls button svg path {
        transition: all .3s ease;
    }
    .controls button:not(:disabled):hover svg path, .controls button:not(:disabled):focus svg path {
        stroke: #F44545;
    }
    .prev {
        transform: rotate(-180deg);
    }
    .controls button:disabled {
        background: none;
    }
    .controls button:disabled svg {
        opacity: 0.5;
    }
    .controls button {
        font-size: 2rem;
        color: white;
    }
    footer {
        padding: 46px 0 32px;
    }
    footer .container:first-child {
        flex-direction: column;
        gap: 40px;
        height: auto;
        position: relative;
    }
    .footer-left {
        width: 100%;
        max-width: none;
    }
    .footer-title {
        margin-bottom: 24px;
    }
    .quick-links {
        row-gap: 12px;
        column-gap: 8px;
        flex-direction: column;
    }
    .quick-links a {
        font-size: 18px;
        line-height: 120%;
        letter-spacing: -0.18px;
    }
    .quick-links svg {
        margin-left: 8px;
    }
    .footer-contacts p:last-child {
        margin-top: 12px;
        width: 196px;
    }
    .go-top {
        position: absolute;
        right: 30px;
        top: 0;
    }
    .footer-bottom {
        margin-top: 90px;
        gap: 4px;
        flex-direction: column;
    }
    .footer-bottom > .flex {
        width: 100%;
    }
    footer .container .red-circle {
        border-radius: 502px;
        opacity: 0.4;
        background: rgba(253, 27, 27, 0.18);
        width: 439px;
        height: 503px;
        filter: blur(150px);
        right: -45%;
        top: 40%;
        transform: rotate(-141.484deg);
    }
    .contacts .container:first-child {
        padding-bottom: 80px;
    }

    .modal h4, .modal h5 {
        font-size: 22px;
        line-height: 34px;
    }
    .modal-content form {
        margin-top: 5vh;
    }
    .modal-content button {
        display: flex !important;
    }
    .response-modal-content {
        padding: 32px;
    }
    .response-modal-content h3 {
        color: #F5F5F7;
        font-size: 34px;
        line-height: 44px;
    }
    .response-modal-content button {
        width: 100%;
        height: 60px;
    }
    .response-modal .red-circle {
        top: 101%;
    }
    .actions {
        gap: 12px;
    }
    .get-in-touch {
        height: 40px;
    }
    .modal-content {
        width: calc(100% - 74px);
    }
    #response-title h3 {
        font-size: 34px;
        line-height: 44px;
    }
    .custom-checkbox {
        margin: 4.4vh 0 5vh;
    }
    .modal-content {
        margin: 60px 0 30px;
        overflow-y: auto;
        height: calc(100% - 90px);
    }
    .response-modal-content {
        height: auto;
    }
    .modal-content h4 {
        opacity: 0.8;
        font-size: clamp(20px, 3.6vh, 26px);
        font-weight: 500;
        line-height: 146%;
        letter-spacing: -0.26px;
        margin-top: 4vh;
    }
    form {
        gap: 0;
    }
    form input + input {
        margin-top: 3vh;
    }
    form button {
        margin-top: 0;
    }
    .contacts-block form {
        gap: 20px;
    }
    .contacts-block form input+input {
        margin-top: 0;
    }
    .contacts-block button {
        margin-top: 22px;
    }
}

@media (max-height: 880px) and  (min-width: 769px) {
    .main-banner, .about-banner, .solutions-banner {
        height: 100% !important;
    }
    .about-us {
        margin: 150px 0 200px !important;
    }
}
/*!***********************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./src/styles/main.css ***!
  \***********************************************************************/
.main {
    overflow: hidden;
}

.banner {
    position: relative;
    text-align: center;
    padding: 80px 0 40px;
}

.banner-text p {
    color: #FFF;
    font-size: 18px;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 1.62px;
    text-transform: uppercase;
}

.banner-text h3 {
    color: #FFF;
    font-size: 67px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    text-transform: uppercase;
    margin: 9px 0 -20px;
}

.banner-text h2 {
    font-size: 91px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    text-transform: uppercase;
    background: linear-gradient(180deg, #FFF 33.61%, rgba(255, 255, 255, 0.91) 47.56%, rgba(255, 255, 255, 0.00) 81.51%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.banner-images {
    margin-top: -55px;
}
.banner-images img:nth-child(1) { width: 120px; height: 110px; margin: 100px 34px 0 0; }
.banner-images img:nth-child(3) { width: 150px; height: 140px; margin: 185px 0 0 20px; }

.main-banner .container {
    margin: 5vh auto 0;
}
.main-banner {
    padding: 0 0 40px;
    display: flex;
    flex-direction: column;
    height: calc(100vh - 110px);
}
.main-banner > .flex:nth-child(2) {
    margin-top: auto;
}

.scroll-down {
    width: 81px;
    margin-top: 20px;
}
.scroll-down p {
    color: rgba(245, 245, 247, 0.45);
    font-size: 12px;
    font-weight: 500;
    line-height: 18px;
}
.scroll-down svg {
    display: block;
    position: absolute;
    right: 0;
    top: 70%;
    height: 20px;
    transform-origin: 50% 50%;
    transform: translate3d(0, -50%, 0);
    animation: arrow-movement 1.6s ease-in-out infinite;
}
@keyframes arrow-movement {
    0% {
        opacity: 0;
        top: 35%;
    }
    70% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

.about-us {
    width: 100vw;
    margin: 100px 0 60px;
    height: 100vh;
    max-height: 1500px;
}
.about-us .mobile-items { display: none; }
.about-us button {
    width: 174px;
}
.about-us .red-circle:nth-child(1) { left: auto; right: -10%; top: -100%; }
.about-us .red-circle:nth-child(2) { top: 120%; left: -20%; }
.about-us_content {
    position: absolute;
    left: 50%;
    top: 50%;
    perspective: 1600px;
}
.item {
    position: relative;
    transform-style: preserve-3d;
    perspective: 1600px;
    transition: transform 0.3s ease;
    perspective-origin: 50% 50%;
    z-index: 2;
}
.item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.item:nth-child(1) img { width: 120px; height: 240px; transform: rotate(-7deg); -webkit-transform: rotate(-7deg); }
.item:nth-child(2) img { width: 250px; height: 215px; transform: rotate(-48deg); -webkit-transform: rotate(-48deg); }
.item:nth-child(3) img { width: 290px; height: 250px; transform: rotate(-4deg) scaleX(-1); -webkit-transform: rotate(-4deg) scaleX(-1); }
.item:nth-child(4) img { width: 170px; height: 230px; transform: rotate(0) scaleX(-1); -webkit-transform: rotate(0) scaleX(-1); }
.item:nth-child(5) img { width: 140px; height: 190px; transform: rotate(5deg) scaleX(-1); -webkit-transform: rotate(5deg) scaleX(-1); }
.item:nth-child(6) img { width: 330px; height: 370px; transform: rotate(23deg); -webkit-transform: rotate(23deg); }
.item:nth-child(7) img { width: 160px; height: 150px; transform: rotate(31deg) scaleX(-1); -webkit-transform: rotate(31deg) scaleX(-1); }
.item:nth-child(8) img { width: 100px; height: 130px; transform: rotate(12deg) scaleX(-1); -webkit-transform: rotate(12deg) scaleX(-1); opacity: 0.6; }
.item:nth-child(9) img { width: 260px; height: 260px; transform: rotate(17deg); -webkit-transform: rotate(17deg); }
.item:nth-child(10) img { width: 80px; height: 90px; transform: rotate(-30deg) scaleX(-1); -webkit-transform: rotate(-30deg) scaleX(-1); opacity: 0.6; }
.item:nth-child(11) img { width: 260px; height: 300px; transform: rotate(-30deg) scaleX(-1); -webkit-transform: rotate(-30deg) scaleX(-1); }
.item:nth-child(12) img { width: 80px; height: 100px; transform: rotate(-11deg) scaleX(-1); -webkit-transform: rotate(-11deg) scaleX(-1); }

.translate-y {
    transform-style: preserve-3d;
    perspective-origin: 50% 50%;
}

.translate-x {
    will-change: transform;
    transform-style: preserve-3d;
    backface-visibility: hidden;
    -webkit-transform: translateZ(-80vw);
    transform: translateZ(-80vw);
}
@supports (transform-style: preserve-3d) {
    .translate-x {
        transform: translateZ(-80vw);
    }
    @media (max-width: 1024px) {
        .translate-x {
            transform: translateZ(-120vw);
        }
    }
    @media (max-width: 768px) {
        .translate-x {
            transform: translateZ(-700px);
        }
    }
}

@supports not (transform-style: preserve-3d) {
    .translate-x {
        transform: none;
    }
}

.image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.card {
    border-radius: 32px;
    border: 1px solid rgba(245, 245, 247, 0.19);
    overflow: hidden;
    width: 280px;
    height: 580px;
    padding: 38px 24px;
}

.card-block:nth-child(2) .card { background-image: url(275b9db089fa210b8439.jpg); }
.card-block:nth-child(3) .card { background-image: url(003d0625cc3d14782a7c.jpg); }
.card-block:nth-child(4) .card { background-image: url(5bf3350bf6fee7a3bfe1.jpg); }
.card-block:nth-child(5) .card { background-image: url(43202f837612aa19ecb5.jpg); }
.card-block:nth-child(6) .card { background-image: url(dd0bbcdecd8dfd4b4825.jpg); }

.card-block:nth-child(2), .card-block:nth-child(4), .card-block:nth-child(6) { margin-top: 231px; }

.card p {
    color: #F5F5F7;
    font-size: 14px;
    line-height: 24px;
    opacity: 0.72;
    margin-top: auto;
}

.card-block > p {
    color: #F5F5F7;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    margin-top: 20px;
}
.card-block {
    user-select: none;
}
.slider {
    gap: 28px;
}
.content-solutions { padding-top: 40px; }
.content-solutions .orange-circle { top: -50%; right: -20%; }
.content-solutions--body:hover {
    cursor: none;
}
.drag-indicator {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #F44545;
    color: white;
    padding: 5px 10px;
    border-radius: 50%;
    /*display: none;*/
    width: 120px;
    height: 120px;
    z-index: 3;
}
.content-solutions--body {
    margin: 100px auto 0;
    max-width: 1440px;
    overflow: hidden;
}
.container-second {
    max-width: 1440px;
    margin: 0 auto;
    overflow: visible;
}
.container-second p {
    overflow: visible;
}
.services {
    padding: 80px 0;
}
.services .orange-circle { top: -40%; right: auto; left: -27%; }
.services .red-circle { top: -10%; left: auto; right: -20%; }
.services-blocks {
    gap: 100px;
    margin-top: 110px;
}
.services-blocks .orange-circle:nth-child(1) { top: 35%; left: auto; right: -23%; }
.services-blocks .orange-circle:nth-child(2) { top: 75%; left: -28%; }
.services-blocks .red-circle { top: 20%; right: auto; left: -20%; transform: rotate(0); }
.service-item {
    width: 100%;
    max-width: 800px;
}

.service-item h4 {
    color: rgba(245, 245, 247, 0.30);
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    transition: color, font-size .4s ease;
}

.service-item p {
    color: #F5F5F7;
    text-align: center;
    font-size: 14px;
    line-height: 24px;
    width: 90%;
    max-width: 602px;
    opacity: 0;
    height: 0;
    overflow: hidden;
    transition: height, opacity .5s ease;
}

.service-item-block {
    border-radius: 30px;
    border: 1px solid rgba(245, 245, 247, 0.30);
    width: 542px;
    height: 242px;
    overflow: hidden;
    margin-top: 40px;
    transition: transform .4s ease;
}
.service-item-block h4, .service-item-block p {
    display: none;
}

.service-item-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-item.active p {
    opacity: 0.72;
    height: auto;
    margin: 32px 0 40px;
}

.service-item.active .service-item-block {
    transform: scale(1.4);
}

.service-item.active h4 {
    color: #F5F5F7;
    font-size: 34px;
    font-weight: 700;
    line-height: 24px;
}
.why-choose-us {
    padding: 54px 0 84px;
}
.why-choose-us .red-circle { left: auto; right: -20%; top: -40%; }
.why-choose-us .orange-circle { right: auto; left: -25%; top: 85%; z-index: 2; }
.why-choose-us__content {
    margin-top: 80px;
}
.why-choose-us__content img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
}
.text-blocks {
    max-width: 1100px;
    width: 100%;
    padding: 65px 0 56px;
}
.text-block {
    gap: 28px;
    padding: 40px;
    border-radius: 30px;
    border: 1px solid rgba(245, 245, 247, 0.20);
    background: rgba(0, 0, 0, 0.30);
    backdrop-filter: blur(10px);
    width: 569px;
}
.text-block h5 {
    color: #F5F5F7;
    font-size: 32px;
    font-weight: 400;
    line-height: 46px;
    letter-spacing: -0.32px;
}
.text-block p {
    color: #F5F5F7;
    font-size: 16px;
    line-height: 24px;
    opacity: 0.72;
}
.text-block:nth-child(2) {
    margin: 40px 0 0 auto;
}

@media (max-width: 1024px) {
    .main-banner .banner-images img:nth-child(1) { width: 90px; height: 96px; }
    .main-banner .banner-images img:nth-child(2) { width: 50%; }
    .main-banner .banner-images img:nth-child(3) { width: 100px; height: 102px; }

    .service-item.active .service-item-block {
        transform: scaleX(1.3);
    }
    .service-item-block {
        width: 70%;
        height: 250px;
    }
}
@media (max-width: 1024px) and (min-width: 769px) {
    .item .translate-x { transform: translateZ(-120vw) !important; }
    .item {
        perspective: 1000px !important;
    }
}
@media (max-width: 768px) {
    .main-banner .banner-images img:nth-child(1) { width: 64px; height: 66px; margin: 0; transform: translate(40%, 80%); }
    .main-banner .banner-images img:nth-child(2) { width: 73%; transform: translateX(6%); }
    .main-banner .banner-images img:nth-child(3) { width: 85px; height: 88px; margin: 0; transform: translate(-35%, 220%); }

    .main-banner .banner-text p {
        font-size: 11px;
        letter-spacing: 1.013px;
    }
    .main-banner {
        padding: 0 0 40px !important;
        height: calc(100vh - 92px);
        display: flex;
        flex-direction: column;
    }
    .main-banner .banner-images {
        margin-top: -30px;
    }
    .main-banner > div:nth-child(1) {
        margin: auto auto 0;
    }
    .main-banner > div:nth-child(1) .red-circle { top: -30%; left: -50%; }
    .banner-text h3 {
        font-size: clamp(32px, 11vw, 44px);
        margin: 4px 0 -7px 0;
        white-space: nowrap;
    }
    .about-us {
        margin: 200px 0 50px;
        height: 100%;
    }
    .about-us .container {
        padding: 0 45px;
    }
    .about-us .section--body {
        margin: 24px 0 34px;
    }
    .about-us button {
        width: 204px;
        height: 54px;
        font-size: 14px;
        line-height: 26px;
    }
    .about-us .red-circle { display: none; }
    .about-us .mobile-items { display: block; }
    .about-us .mobile-items img { position: absolute; }
    .about-us_content { display: none; }

    .mobile-items img:nth-child(1) { top: -11%; left: 30%; width: 35px; transform: rotate(4deg); }
    .mobile-items img:nth-child(2) { top: -17%; left: 50%; width: 67px; transform: rotate(-50deg); }
    .mobile-items img:nth-child(3) { top: -6%; right: 5%; width: 70px; transform: rotate(-10deg) scaleX(-1); }
    .mobile-items img:nth-child(4) { top: 26%; right: -5px; width: 80px; transform: rotate(0) scaleX(-1); }
    .mobile-items img:nth-child(5) { bottom: 30%; right: 5px; width: 35px; transform: rotate(3deg) scaleX(-1); }
    .mobile-items img:nth-child(6) { bottom: 8%; right: 10px; width: 50px; transform: rotate(25deg); }
    .mobile-items img:nth-child(7) { bottom: 8%; left: 10px; width: 45px; transform: rotate(25deg) scaleX(-1); }
    .mobile-items img:nth-child(8) { bottom: 27%; left: 10px; width: 45px; transform: rotate(0deg) scaleX(-1); }
    .mobile-items img:nth-child(9) { top: 43%; left: 10px; width: 35px; transform: rotate(20deg); }
    .mobile-items img:nth-child(10) { display: none; }
    .mobile-items img:nth-child(11) { top: 20%; left: 0; width: 55px; transform: rotate(-5deg) scaleX(-1); }
    .mobile-items img:nth-child(12) { top: -2%; left: 6%; width: 45px; transform: rotate(-5deg); }

    .content-solutions .container {
        flex-direction: column;
        align-items: flex-start;
    }
    .content-solutions button.outlined {
        width: 204px;
        height: 54px;
    }
    .content-solutions .section--body {
        margin: 24px 0 34px;
    }
    .content-solutions--body {
        margin: 80px auto 0;
    }
    .drag-indicator { display: none; }
    .card-block {
        min-width: 280px;
    }
    .card-block > p {
        opacity: 0.8;
    }
    .card-block:nth-child(2),
    .card-block:nth-child(4),
    .card-block:nth-child(6) {
        margin-top: 0;
    }
    .content-solutions {
        margin: 50px 0 0;
    }
    .index-contacts .container > img {
        top: 45px;
    }
    .content-solutions .orange-circle { display: none; }
    .content-solutions .controls {
        padding: 0 20px;
    }
    .content-solutions--body {
        width: 100%;
        padding: 0 0 6px 20px;
    }
    .slider {
        left: auto;
        justify-content: flex-start;
        transition: transform 0.3s ease;
    }
    .card {
        width: 280px;
        background-repeat: no-repeat;
        background-size: cover;
        background-position: 10% 50%;
    }
    .content-solutions + .container-second { display: none; }

    .services {
        padding: 76px 0 0;
    }
    .services-blocks {
        flex-direction: row;
        transition: transform 0.3s ease;
        gap: 26px;
        transform: translateX(0);
        align-items: center;
        margin-top: 90px;
    }
    .service-item {
        transition: transform 0.3s ease;
        min-width: 290px;
        height: 348px;
        position: relative;
        z-index: 2;
    }
    .service-item.active {
        height: 450px;
        min-height: 450px;
    }
    .service-item.active .service-item-block {
        transform: scale(1);
    }
    .service-item-block img {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        z-index: -1;
    }
    .service-item-block h4,
    .service-item-block p {
        display: block;
        opacity: 0;
    }
    .service-item .service-item-block h4,
    .service-item .service-item-block p {
        transition: opacity .6s ease;
    }
    .service-item.active .service-item-block h4 {
        display: block;
        position: relative;
        z-index: 2;
        opacity: 1;
    }
    .service-item.active .service-item-block p {
        display: block;
        position: relative;
        z-index: 2;
        opacity: 0.62;
    }
    .service-item.active h4 {
        color: #F5F5F7;
        text-align: center;
        font-size: 24px;
        font-style: normal;
        font-weight: 700;
        line-height: 24px;
    }
    .service-item.active p {
        color: #F5F5F7;
        text-align: center;
        font-size: 16px;
        line-height: 26px;
        opacity: 0.62;
        margin: 22px 0 0;
    }
    .service-item-block {
        padding: 40px 20px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .service-item > h4, .service-item > p {
        display: none;
    }
    .service-item-block {
        margin-top: 0;
        width: 100%;
        height: 100%;
        position: relative;
        border: 1px solid rgba(245, 245, 247, 0.05);
    }
    .overlay {
        z-index: 0;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background: rgba(0, 0, 0, 0.6);
    }
    .services .section--body {
        margin: 24px 0 34px;
    }
    .services button {
        width: 204px;
        height: 54px;
    }
    .services .orange-circle, .services .red-circle {
        display: none;
    }

    .why-choose-us {
        padding: 90px 0 0;
    }
    .why-choose-us .red-circle, .why-choose-us .orange-circle { display: none; }
    .why-choose-us__content {
        margin: 0;
    }
    .why-choose-us__content img {
        width: 888px;
        height: auto;
        left: 80%;
    }

    .text-block {
        width: 350px;
        gap: 22px;
        border-radius: 30px;
        background: rgba(0, 0, 0, 0.30);
        backdrop-filter: blur(10px);
    }
    .text-block h5 {
        font-size: 26px;
        line-height: 38px;
        letter-spacing: -0.26px;
        opacity: 0.8;
    }
    .text-block p {
        color: #F5F5F7;
        font-size: 16px;
        line-height: 26px;
        opacity: 0.62;
    }
    .text-block:nth-child(2) {
        margin: 26px 0 0 auto;
    }
    .text-blocks {
        padding: 40px 0 10px;
    }
    .contacts .container > img {
        width: auto;
    }
    .contacts .container-second { display: none; }
}

@media (max-width: 500px) {
    .text-blocks {
        width: calc(100vw + 30px);
        min-width: calc(100vw + 30px);
        transform: translateX(0);
    }
}
/*!**************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./src/styles/privacy.css ***!
  \**************************************************************************/
.hidden .orange-circle { top: -30%; right: -13%; }
.hidden .red-circle { top: 45%; left: -16%; }
.privacy-banner .banner-text h3 {
    font-size: 65px;
    margin: 0;
}
.privacy-banner .banner-images img:nth-child(1) {
    width: 100%;
    max-width: 554px;
    height: auto;
    margin: 0;
}
.privacy-banner__block {
    margin: 120px 0 0;
    width: 90%;
    max-width: 922px;
    gap: 24px;
}
.privacy-banner__block p {
    color: #F5F5F7;
    text-align: center;
    font-size: 32px;
    line-height: 46px;
}

.p-privacy-main {
    padding: 166px 0 120px;
    margin-bottom: 120px;
}
.p-privacy-main .container {
    padding: 0 120px;
}
.content-nav {
    position: sticky;
    top: 100px;
    width: 100%;
    max-width: 336px;
    height: 586px;
}
.content-nav ul {
    list-style: none;
    padding: 0;
}
.content-nav li {
    padding: 17px 10px 17px 20px;
    cursor: pointer;
    position: relative;
}
.content-nav li .line {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(245, 245, 247, 0.42);
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.content-nav li a {
    text-decoration: none;
    color: rgba(245, 245, 247, 0.72);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
}
.content-nav li.active {
    position: relative;
}
.content-nav li.active .line {
    background: #F44545;
}
.content-nav li.active a {
    color: #F5F5F7;
}
.privacy-content {
    flex-grow: 1;
    gap: 70px;
    width: 100%;
    max-width: 690px;
}
.active-section {
    color: #3498db;
}
.content-section h2 {
    color: #F5F5F7;
    font-size: 32px;
    font-weight: 400;
    line-height: 46px;
    margin-bottom: 40px;
}
.content-section p, .content-section li, .content-section a {
    color: rgba(245, 245, 247, 0.72);
    font-size: 16px;
    line-height: 26px;
}
.content-section ul {
    margin-left: 20px;
}
.p-privacy-body {
    gap: 30px;
}

@media (max-width: 1280px) {
    .p-privacy-main .container {
        padding: 0 80px;
    }
}

@media (max-width: 1024px) {
    .content-nav {
        display: none;
    }
    .p-privacy-main .container {
        padding: 0 40px;
    }
}

@media (max-width: 768px) {
    .privacy-banner {
        height: 100%;
        padding: 50px 0 0 !important;
    }
    .privacy-banner .banner-text h3 {
        font-size: 57px;
        line-height: 62px;
        white-space: pre-wrap;
    }
    .privacy-banner .banner-images {
        margin-top: -40px;
    }
    .privacy-block .red-circle {
        top: 30%;
        left: -30%;
    }
    .privacy-block > .orange-circle {
        right: -65%;
        top: -18%;
    }
    .privacy-block .container .orange-circle { display: none; }
    .privacy-banner__block {
        margin: 90px 0 0;
        width: 100%;
    }
    .privacy-banner__block p {
        font-size: 26px;
        line-height: 38px;
        opacity: 0.8;
    }
    .p-privacy-main {
        padding: 78px 0 0;
        margin-bottom: 90px;
    }
    .p-privacy-main .container {
        padding: 0 20px;
    }
    .privacy-content {
        gap: 60px;
    }
    .content-section h2 {
        opacity: 0.8;
        font-size: 26px;
        line-height: 38px;
        margin-bottom: 28px;
    }
    .content-section p, .content-section a, .content-section a:visited {
        color: #F5F5F7;
        opacity: 0.62;
    }
    .content-section a, .content-section a:visited {
        opacity: 1;
    }
    .content-section p br:nth-child(3), .content-section p br:last-child {
        display: none;
    }
}
/*!************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./src/styles/about.css ***!
  \************************************************************************/
.who-we-are .section--body h4 {
    width: 90%;
}
.about {
    transform: translate(-11%, -160px);
    max-width: 1570px;
    width: 120%;
}
.about .text-line {
    top: -100%;
    left: 0;
    font-size: clamp(16px, 20vw, 286px);
}
.about-banner > div:nth-child(1) {
    margin: 0 auto 15vh;
}

.our-vision {
    margin-top: 156px;
}
.our-vision .section--body p {
    width: 90%;
}
.merged-blocks {
    margin-top: 80px;
}
.merged-blocks img {
    right: 0;
    top: 10%;
    width: 47%;
}
.merged-blocks .mobile-img {
    display: none;
}
.merged-blocks .red-circle {
    left: auto;
    right: -10%;
    top: 5%;
}

.what-makes-us-different {
    padding-top: 100px;
}
.what-makes-us-different .container > img {
    top: -45%;
    z-index: -1;
    width: 100vw;
    height: auto;
    margin: 0 0 0 -80px;
}
.blocks {
    gap: 16px;
    margin-top: 60px;
}
.transparent-block {
    flex: 1;
    border-radius: 32px;
    border: 1px solid rgba(245, 245, 247, 0.10);
    background: rgba(0, 0, 0, 0.04);
    backdrop-filter: blur(32px);
    min-height: 416px;
    height: auto;
    padding: 40px 24px;
}
.transparent-block__top {
    width: fit-content;
    height: 61px;
}
.transparent-block__top img {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}
.transparent-block__bottom {
    margin-top: auto;
    gap: 18px;
}
.transparent-block__bottom h5 {
    color: #F5F5F7;
    font-size: 18px;
    font-weight: 600;
    line-height: 30px;
    opacity: 0.8;
}
.transparent-block__bottom p {
    color: #F5F5F7;
    font-size: 14px;
    font-weight: 500;
    line-height: 22px;
    opacity: 0.5;
}
.transparent-block:nth-child(1),
.transparent-block:nth-child(3) {
    margin-top: 28px;
}
.controls {
    display: none;
}

.our-approach {
    margin: 120px 0 0;
}
.our-approach__content {
    border-radius: 50px;
    border: 1px solid rgba(245, 245, 247, 0.20);
    background: rgba(0, 0, 0, 0.30);
    backdrop-filter: blur(10px);
    width: 100%;
    padding: 80px 0;
}
.our-approach__content h2 {
    color: #F5F5F7;
    font-size: 32px;
    font-weight: 400;
    line-height: 46px;
    margin: 24px 0 28px;
}
.our-approach__content p {
    color: #F5F5F7;
    font-size: 16px;
    line-height: 24px;
    opacity: 0.72;
    width: 80%;
    max-width: 748px;
    margin-bottom: 50px;
}

.about-contacts {
    padding: 136px 0 0;
}
.about-contacts .contacts-block {
    margin-top: 40px;
}
.about-contacts .container > img {
    top: -31%;
    left: 52%;
    height: calc(100% + 35vw);
}

@media (max-width: 1024px) {
    .about-banner .banner-images {
        margin: -65px 0 0;
    }
    .merged-blocks img.absolute {
        display: none;
    }
    .merged-blocks .mobile-img {
        display: block;
        width: 100%;
        max-width: 600px;
    }
    .who-we-are .section--body h4 {
        width: 100%;
    }
    .our-vision {
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .about-banner .banner-images {
        margin: -40px 0 0;
    }
    .about {
        transform: translate(-16%, -15px);
    }
    .merged-blocks {
        padding: 0 44px;
        margin-top: 0;
    }
    .merged-blocks .red-circle {
        top: 43%;
        right: -40%;
    }
    .merged-blocks .mobile-img {
        margin-top: 15px;
        width: calc(100% + 30px);
        transform: translateX(-10%);
    }
    .who-we-are .section--body {
        margin: 24px 0 0;
    }
    .our-vision {
        margin-top: 50px;
    }
    .our-approach {
        margin: 60px 0 0;
    }
    .our-approach__content {
        padding: 50px 10px 20px;
        border-radius: 32px;
    }
    .our-approach__content h2 {
        font-size: 26px;
        line-height: 38px;
        opacity: 0.8;
    }
    .our-approach__content p {
        opacity: 0.62;
        width: calc(100% - 48px);
    }
    .about-contacts {
        padding: 90px 0 0;
    }
    .about-contacts .container > img {
        top: -16%;
        width: auto;
        left: 54%;
        height: 119%;
    }
    .transparent-block {
        min-width: 100%;
        min-height: 404px;
    }
    .transparent-block:nth-child(1),
    .transparent-block:nth-child(3) {
        margin-top: 0;
    }
    .blocks {
        transition: transform 0.3s ease;
        margin-top: 40px;
    }
    .what-makes-us-different {
        padding-top: 50px;
    }
    .what-makes-us-different .container > img {
        height: 1335px;
        left: -625px;
        width: auto;
        top: -45%;
    }
    .about-banner .banner-images img:nth-child(1) {
        width: calc(100% + 10px);
        max-width: 500px;
    }
    .about-banner {
        padding: 0 0 40px !important;
    }
    .about-banner > div:nth-child(1) {
        margin: auto auto 0;
    }
}
/*!****************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./src/styles/solutions.css ***!
  \****************************************************************************/
.what-we-offer {
    padding-top: 80px;
}
.what-we-offer .section--body h4 {
    width: 85%;
}
.what-we-offer .section--body p {
    width: 92%;
}
.what-we-offer img {
    width: 50%;
    max-width: 579px;
}
.what-we-offer .red-circle {
    left: auto;
    right: -10%;
    top: 12%;
}
.solutions-banner > div:nth-child(1) {
    margin: 0 auto 3vh;
}
.solutions-banner > div:nth-child(2) .red-circle { top: 0; }
.solutions {
    transform: translate(-3.5%, -175px);
}
.solutions .text-line, .mobile-text .text-line {
    top: -100%;
    left: 0;
    font-size: clamp(16px, 15vw, 221px);
}

.our-portfolio {
    padding-top: 134px;
}
.portfolio-blocks {
    display: grid;
    grid-template-columns: repeat(3, 32%);
    grid-template-rows: repeat(2, clamp(300px, 35vw, 410px));
    gap: 24px;
    margin-top: 40px;
}
.portfolio-item {
    border-radius: 32px;
    border: 1px solid rgba(245, 245, 247, 0.10);
    background: rgba(0, 0, 0, 0.04);
    backdrop-filter: blur(42px);
    padding: 40px 24px;
    overflow: hidden;
}
.portfolio-item:nth-child(1) { grid-column: 1 / span 2; grid-row: 1; }
.portfolio-item:nth-child(2) { grid-column: 3; grid-row: 1 / span 2; }
.portfolio-item:nth-child(3) { grid-column: 1; grid-row: 2; }
.portfolio-item:nth-child(4) { grid-column: 2; grid-row: 2; }

.portfolio-item:nth-child(1) img { right: 0; top: 0; }
.portfolio-item:nth-child(1) .red-circle { left: auto; right: -10%; }

.portfolio-item:nth-child(2) img { left: -20%; top: -5%; }
.portfolio-item:nth-child(2) .red-circle { left: -30%; top: 40%; }

.portfolio-item:nth-child(3) img { right: 0; top: 0; }
.portfolio-item:nth-child(3) .orange-circle { left: -5%; top: 0; width: 218px; height: 239px; }

.portfolio-item:nth-child(4) img { right: 0; top: 0; }
.portfolio-item:nth-child(4) .red-circle { left: -5%; top: 0; width: 286px; height: 286px; }

.portfolio-item__text {
    gap: 18px;
    margin-top: auto;
}
.portfolio-item__text h5 {
    color: #F5F5F7;
    font-size: 18px;
    font-weight: 600;
    line-height: 30px;
    opacity: 0.8;
}
.portfolio-item__text p {
    color: #F5F5F7;
    font-size: 14px;
    font-weight: 500;
    line-height: 22px;
    opacity: 0.5;
}
.mobile-text {
    display: none;
}
.why-choose-solutions {
    padding-top: 120px;
}
.reasons {
    gap: 30px;
    margin-top: 40px;
}
.reason-card {
    border-radius: 32px;
    border: 1px solid rgba(245, 245, 247, 0.10);
    background: rgba(0, 0, 0, 0.04);
    backdrop-filter: blur(42px);
    height: 260px;
    position: relative;
    padding: 52px 80px;
    overflow: hidden;
}
.reason-card__text {
    gap: 14px;
    width: 70%;
    max-width: 708px;
}
.reason-card__text h6 {
    color: #F5F5F7;
    font-size: 32px;
    font-weight: 400;
    line-height: 46px;
}
.reason-card__text p {
    color: #F5F5F7;
    font-size: 14px;
    font-weight: 500;
    line-height: 22px;
    opacity: 0.5;
}
.reason-card__content {
    gap: 12px;
}
.reason-card__img-wrap {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.reason-card > img {
    right: 0;
    top: 0;
}

.solutions-section--body {
    max-width: 748px;
}
.solutions-section--body p, .solutions-section--body h4 {
    width: 100%;
}

.regular-content {
    padding: 90px 0 120px;
}
.solutions-contacts {
    padding: 22px 0 0;
}
.solutions-contacts .container > img {
    width: auto;
    top: -32%;
    left: 52%;
    height: calc(100% + 32vw);
}
@media (max-width: 1024px) {
    .what-we-offer .container {
        flex-direction: column;
    }
    .what-we-offer img {
        width: 100%;
    }
    .solutions {
        transform: translate(-2.5%, -580px);
    }
    .portfolio-blocks {
        grid-template-columns: repeat(2, 49%);
        grid-template-rows: repeat(2, clamp(300px, 35vw, 410px));
        gap: 24px;
        margin-top: 40px;
    }
    .portfolio-item:nth-child(1) { grid-column: 1; grid-row: 1; }
    .portfolio-item:nth-child(2) { grid-column: 2; grid-row: 1; }
    .portfolio-item:nth-child(3) { grid-column: 1; grid-row: 2; }
    .portfolio-item:nth-child(4) { grid-column: 2; grid-row: 2; }
}

@media (max-width: 768px) {
    .solutions {
        display: none;
    }
    .solutions-banner .banner-images {
        margin: -45px 0 0;
    }
    .solutions-banner .banner-images img:nth-child(1) {
        width: 100%;
    }
    .mobile-text {
        display: block;
        position: absolute;
        left: -18%;
        transform: translate(-5%, -40px);
    }
    .mobile-text .text-line {
        font-size: clamp(16px, 16.3vw, 221px);
    }
    .what-we-offer img {
        width: calc(100% + 40px);
    }
    .what-we-offer .container {
        padding: 0 45px;
    }
    .what-we-offer .section--body h4, .what-we-offer .section--body p {
        width: 100%;
    }
    .what-we-offer .red-circle {
        top: 60%;
        right: -20%;
    }
    .our-portfolio {
        padding-top: 10px;
    }
    .portfolio-blocks {
        display: flex;
        gap: 20px;
        transition: transform 0.3s ease;
    }
    .portfolio-item {
        min-width: 100%;
        min-height: 404px;
    }
    .portfolio-item:nth-child(1) img { width: 280px; }
    .portfolio-item:nth-child(1) .red-circle { width: 371px; height: 371px; right: 14%; top: 10%; }
    .portfolio-item:nth-child(2) img { width: 310px; left: 32%; top: -10%; }
    .portfolio-item:nth-child(2) .red-circle { width: 286px; height: 286px; left: -10%; top: 25%; }
    .portfolio-item:nth-child(3) img { width: 185px; top: -5%; }
    .portfolio-item:nth-child(3) .orange-circle { width: 218px; height: 238px; left: 0; top: 5%; }
    .portfolio-item:nth-child(4) img { width: 216px; top: -7%; }

    .why-choose-solutions {
        padding-top: 90px;
    }
    .reasons {
        gap: 26px;
    }
    .reason-card {
        padding: 20px 60px 20px 20px;
        display: flex;
        align-items: center;
        min-height: 260px;
        height: 100%;
    }
    .reason-card__text {
        width: 80%;
    }
    .reason-card__text h6 {
        font-size: 26px;
        line-height: 36px;
    }
    .regular-content {
        padding: 90px 0 0;
    }
    .regular-content .container {
        padding: 0 45px;
    }
    .solutions-contacts {
        padding: 50px 0 0;
    }
    .solutions-banner {
        padding: 0 0 40px !important;
    }
    .solutions-banner > div:nth-child(1) {
        margin: auto auto 0;
    }
    .solutions-contacts .container > img {
        top: -17%;
        height: calc(100% + 70vw);
    }
}
