/* * {
    padding: 0px;
    margin: 0px;
    border: 0px;
}

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

input,
button,
textarea {
    font-family: inherit;
    font-size: inherit;
}

button {
    cursor: pointer;
    color: inherit;
    background-color: inherit;
}

a {
    color: inherit;
}

a:link,
a:visited {
    text-decoration: none;
}

a:hover, a:focus {
    text-decoration: none;
}

ul {
    margin: 0;
}

ul li {
    list-style: none;
}

img {
    vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    font-weight: inherit;
    font-size: inherit;
    line-height: inherit;
    margin-top: 0;
    margin-bottom: 0;
}

:root {
    --font-family: "Manrope", sans-serif;
    --fluid-100-32: clamp(32px, -33.1172069825px + 8.4788029925vw, 100px);
}

html {
    font-size: 16px;
    height: 100%;
    min-width: 320px;
    scroll-behavior: smooth;
}

body {
    height: 100%;
    font-family: var(--font-family);
    background-color: var(--main-bg-color);
    color: var(--main-text-color);
    font-weight: 400;
    font-style: normal;
    line-height: normal;
}

.site-wrapper {
    position: relative;
    overflow: clip;
}

[class*=__container] {
    max-width: 1570px;
    box-sizing: content-box;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
} */

.custom-cursor {
    pointer-events: none;
    z-index: 99999;
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    transition: 0.2s width, 0.2s height;
    overflow: hidden;
    border-radius: 50%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.custom-cursor svg {
    animation: rotateCustomCursor 6s linear infinite;
}

@keyframes rotateCustomCursor {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.custom-cursor-2 {
    pointer-events: none;
    z-index: 99999;
    position: fixed;
    top: 0;
    left: 0;
    padding: 10px 15px;
    transition: 0.2s clip-path;
    overflow: hidden;
    color: #fff;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    border-radius: 30px;
    background: var(--primary-color);
    clip-path: inset(100% round 30px);   
}

@media (any-hover: hover) {
    .custom-cursor-show .custom-cursor {
        width: 177px;
        height: 177px;
    }
    .custom-cursor-show-2 .custom-cursor-2 {
        clip-path: inset(0);
    }
}

.rs-casses {
    padding: 83px 0px;
    margin-top: 0;
    margin-bottom: 0;
}

.stacking-block {
    position: relative;
}

.stacking-block::before {
    content: url("../../img/bg_gradient.png.webp");
    position: absolute;
    right: -50%;
    top: -50%;
}

.stacking-block__list {
    position: relative;
}

.stacking-block__item {
    text-align: center;
}

.stacking-block__item:not(:first-child) {
    visibility: hidden;
}

.loaded .stacking-block__item:not(:first-child) {
    visibility: visible;
}

.stacking-block-title {
    font-weight: 400;
    font-size: 150px;
    line-height: 95%;
    letter-spacing: -0.02em;
    color: #0b0f19;
    padding-top: 135px;
    padding-bottom: 130px;
    text-align: left;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: end;
    align-items: flex-end;
}

.stacking-block-title svg {
    margin-bottom: -30px;
}

.stacking-block-title span {
    display: block;
    padding-left: 180px;
}

.casses-grid {
    position: relative;
    text-align: center;
}

.casses-grid::before {
    content: url("../../img/bg_gradient_1.png.webp");
    position: absolute;
    left: -50%;
    bottom: -50%;
    z-index: -1;
}

.casses-grid > * {
    position: relative;
}

.casses-grid__title {
    font-weight: 400;
    font-size: 150px;
    line-height: 95%;
    letter-spacing: -0.02em;
    color: #0b0f19;
    text-align: center;
}

.casses-grid__items {
    margin-top: 70px;
    margin-bottom: 70px;
    display: grid;
    gap: 50px;
    grid-template-columns: repeat(4, 1fr);
}

.casses-grid__items a {
    display: inline-block;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 5px 12px 0 rgba(0, 0, 0, 0.03), 0 21px 21px 0 rgba(0, 0, 0, 0.03), 0 48px 29px 0 rgba(0, 0, 0, 0.02), 0 85px 34px 0 rgba(0, 0, 0, 0), 0 132px 37px 0 rgba(0, 0, 0, 0);
}

.casses-grid__items a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.casses-main-link {
    position: relative;
    display: block;
    width: 100%;
    border-radius: 50px;
    overflow: hidden;
    height: 100%;
    background: #fff;
}

.casses-main-link .casses-main-project__logo {
    position: absolute;
    top: 40px;
    left: 45px;
}

.casses-main-link .casses-main-project__logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.casses-main-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.casses-main-link__desc {
    padding: 10px 20px 20px;
    text-align: left;
}

.casses-main-link__desc h6 {
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 170%;
}

.casses-main-link__desc span {
    color: #7269e0;
    font-size: 13px;
    font-style: normal;
    font-weight: 600;
    line-height: 170%;
}

.casses-main-link__desc ul {
    margin: 8px -5px -5px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.casses-main-link__desc ul li {
    padding: 7px 10.5px;
    margin: 3px 4px;
    background: #fff1e3;
    border-radius: 30px;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
}

.btn-color {
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 40px;
    padding: 0px 37px;
    height: 70px;
    background: #f15c2d;
    font-weight: 500;
    font-size: 21px;
    line-height: 130%;
    color: #fff;
}

@media (min-width: 991.98px) {
    .stacking-block__list {
        height: 100svh;
        display: grid;
    }

    .stacking-block__item {
        padding: 15vh 0px 5vh;
        position: absolute;
        width: 100%;
        height: 100%;
    }

    .casses-main-link__desc {
        display: none;
    }
}

@media (max-width: 991.98px) {
    /* [class*=__container] {
        max-width: 768px;
    } */

    .stacking-block__item:not(:last-child) {
        margin-bottom: 24px;
    }

    .stacking-block-title svg {
        width: 40px;
        height: 40px;
        margin-bottom: 0;
    }

    .stacking-block-title span {
        padding-left: 0;
    }

    .stacking-block-title {
        font-size: 35px;
        padding-top: 35px;
        padding-bottom: 35px;
    }

    .casses-grid {
        margin-top: 55px;
    }

    .casses-grid__title {
        font-size: 35px;
    }

    .casses-grid__items {
        margin-top: 35px;
        margin-bottom: 35px;
        gap: 18px;
    }

    .casses-grid__items a {
        border-radius: 10px;
    }

    .casses-main-link img {
        aspect-ratio: 2.17916;
    }

    .casses-main-link {
        border-radius: 10px;
        border: 1px solid #d4d7e5;
    }

    .casses-main-link .casses-main-project__logo {
        top: 20px;
        left: 25px;
        -webkit-transform: scale(.8);
        -ms-transform: scale(.8);
        transform: scale(.8);
        -webkit-transform-origin: left top;
        -ms-transform-origin: left top;
        transform-origin: left top;
    }
}

@media (max-width: 767.98px) {
    .casses-grid__items {
        grid-template-columns: repeat(3, 1fr);
    }

    .casses-main-link .casses-main-project__logo {
        top: 10px;
        left: 10px;
        -webkit-transform: scale(.5);
        -ms-transform: scale(.5);
        transform: scale(.5);
        -webkit-transform-origin: left top;
        -ms-transform-origin: left top;
        transform-origin: left top;
    }
}
