@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.decorations {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
}

.decorations__chart,
.decorations__graph,
.decorations__depth {
    position: absolute;
    opacity: 0;
    animation-name: fadeInSlideUp;
    animation-duration: 0.6s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
}

.decorations__chart {
    top: 108px;
    left: 6%;
    width: 380px;
    height: 140px;
    animation-delay: 0.2s;
}

.decorations__graph {
    top: 32px;
    right: 15%;
    width: 240px;
    height: 127px;
    animation-delay: 0.4s;
}

.decorations__depth {
    top: 185px;
    right: 7.5%;
    width: 172px;
    height: 220px;
    animation-delay: 0.6s;
}

.home-intro {
    display: flex;
    width: 100%;
    height: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    animation: fadeIn 0.6s ease-out 0.4s forwards;
}

.home-intro__title {
    text-align: center;
    text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.25);
    font: 700 46px/1.2 'SUIT', sans-serif;
    color: var(--color-white);
    letter-spacing: -0.5px;
}

.home-intro__subtitle {
    margin: 4px 0 0;
    text-align: center;
    text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.25);
    font: 400 20px/1.2 'Inter', sans-serif;
    color: var(--color-white);
}

.home-intro__description {
    margin: 44px 0 0;
    text-align: center;
    text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.25);
    font: 400 18px/1.2 'SUIT', sans-serif;
    color: var(--color-white);
    letter-spacing: -0.4px;
}

.home-features {
    width: 100%;
    height: 100%;
}

.home-features__list {
    position: relative;
    top: -54px;
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 44px;
}

.home-features__item {
    width: 160px;
    height: 164px;
    opacity: 0;
    animation-name: fadeInSlideUp;
    animation-duration: 0.6s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
}

.home-features__item:nth-of-type(1) {
    animation-delay: 0.4s;
}

.home-features__item:nth-of-type(2) {
    animation-delay: 0.6s;
}

.home-features__item:nth-of-type(3) {
    animation-delay: 0.8s;
}

.home-features__item:nth-of-type(4) {
    animation-delay: 1s;
}

.home-feature {
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    row-gap: 5px;
    border-radius: 5px;
    background-color: var(--color-white);
}

.home-feature__icon {
    display: flex;
    height: 90px;
    justify-content: center;
    align-items: center;
}

.home-feature__icon img {
    width: auto;
    height: 80px;
}

.home-features__item:nth-of-type(3) .home-feature__icon img {
    height: 85px;
}

.home-features__item:nth-of-type(4) .home-feature__icon img {
    height: 75px;
}

.home-feature__description {
    display: flex;
    padding: 5px 9px;
    justify-content: center;
    align-items: center;
    text-align: center;
    font: 700 15px/1.4 'SUIT', sans-serif;
    letter-spacing: -0.5px;
    border-top: 1px solid var(--color-blue);
}

.main-services {
    margin: 0 auto;
}

.main-services__list {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 26px;
}

.main-services__item {
    width: 488px;
    height: 347px;
    border-radius: 5px;
    overflow: hidden;
}

.main-service {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

.main-service__name {
    position: relative;
    padding: 24px 24px;
    display: flex;
    flex: 1;
    justify-content: flex-start;
    align-items: flex-start;
    font: 700 28px/1.2 'SUIT', sans-serif;
    letter-spacing: -1px;
}

.main-service--base .main-service__name {
    background: url("../images/image_home-main-services-1.png") no-repeat center / cover;
}

.main-service--detail .main-service__name {
    background: url("../images/image_home-main-services-2.png") no-repeat center / cover;
}

.main-service:hover .main-service__name::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(7, 102, 255, 0.3);
}

.main-service:hover .main-service__name {
    color: var(--color-white);
}

.main-service__label {
    position: relative;
}

.main-service__description {
    display: flex;
    width: 100%;
    height: 90px;
    justify-content: center;
    align-items: center;
    text-align: center;
    font: 400 18px/1.36 'SUIT', sans-serif;
    color: var(--color-white);
    letter-spacing: -0.5px;
    background-color: var(--color-blue);
}

.home-cases {
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.home-cases__prev-button,
.home-cases__next-button {
    padding: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 27px;
    height: 54px;
}

.home-cases__prev-button[disabled],
.home-cases__next-button[disabled] {
    opacity: 0.2;
}

.home-cases__next-button img {
    transform: rotate(180deg);
}

.home-cases__container {
    width: 1002px;
    overflow: hidden;
}

.home-cases__list {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 14px;
}

.home-cases__item {
    flex: 0 0 240px;
    min-width: 0;
    width: 240px;
    height: 234px;
}

.home-case {
    display: flex;
    width: 100%;
    height: 100%;
    flex-direction: column;
    border-radius: 5px;
    overflow: hidden;
}

.home-case__image {
    flex: 1;
}

.home-case__image img {
    width: 100%;
    height: 100%;
}

.home-case__description {
    display: flex;
    width: 100%;
    height: 79px;
    justify-content: center;
    align-items: center;
    text-align: center;
    font: 700 16px/1.4 'SUIT', sans-serif;
    letter-spacing: -0.3px;
    background-color: var(--color-white);
}