.analysis__title-block {
    display: flex;
    justify-content: space-between;
}

.analysis__subtitle {
    align-self: flex-end;
    display: flex;
    gap: 28px;
    align-items: center;
}

.analysis__box {
    height: 100%;
    overflow: hidden;
    position: relative;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0px -1.383px 17.068px 0px rgba(0, 0, 0, 0.02), 0px 2.763px 31.259px 0px rgba(0, 0, 0, 0.03), 0px 15.097px 51.033px 0px rgba(0, 0, 0, 0.03), 0px 51px 80px 0px rgba(0, 0, 0, 0.05);
}

.analysis__params-box {
    padding: 30px;
}

.analysis__params-content {
    display: flex;
}

.analysis__params-list {
    max-width: 50%;
    margin-top: 30px;
}

.analysis__params-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 10px 0;
}

.analysis__params-item span {
    color: var(--color-accent);
    font-size: 18px;
    font-weight: 700;
    line-height: 120%;
    width: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.analysis__params-title {
    font-size: 35px;
    padding-right: 20px;
}

.analysis__params-subtitle {
    color: #696969;
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.analysis__row {
    margin-top: 40px;
}

.analysis__check-bg {
    position: absolute;
    top: 0;
    right: 0;
}

.analysis__arrow {
    position: absolute;
    top: 30px;
    right: 30px;
}

.analysis-check__box {
    display: flex;
}

.analysis-check__box-person {
    position: absolute;
    right: 20px;
    bottom: 0;
}

.analysis-check__box-title {
    font-size: 35px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    padding-right: 20px;
}

.analysis-check__box-content {
    padding: 30px;
    position: relative;
    max-width: 50%;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.analysis-check__box-about {
    position: absolute;
    border-radius: 132.759px;
    background: #fff;
    right: 50px;
    bottom: 30px;
    z-index: 1;
    padding: 5px 20px 5px 5px;
    display: flex;
    gap: 10px;
    align-items: center;
}

.analysis-check__box-icons {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    align-items: flex-end;
}

.analysis-check__box-icons img {
    width: 25px;
    height: 25px;
}

.analysis-check__box-icons img:first-child {
    -webkit-transition: all 0s;
    transition: all 0s;
    -webkit-animation: ring 1s infinite;
    animation: ring 1s infinite;
    width: 50px;
    height: 50px;
}

.custom-body-class .analysis {
    background: var(--dark) !important;
    color: #fff;
}

.custom-body-class .analysis__box {
    color: #fff;
    background: var(--grey) !important;
}

.custom-body-class .analysis__check-bg {
    opacity: 0.03;
}

.custom-body-class .analysis-check__box-about {
    background: var(--dark-grey) !important;
}

.custom-body-class .analysis__arrow {
    filter: brightness(0) invert(1);
}

@keyframes ring {
    1%,
    3%,
    5%,
    7%,
    9%,
    11%,
    13%,
    15%,
    17%,
    19%,
    21% {
        -webkit-transform: rotate(-7deg);
        transform: rotate(-7deg);
    }
    2%,
    4%,
    6%,
    8%,
    10%,
    12%,
    14%,
    16%,
    18%,
    20%,
    22% {
        -webkit-transform: rotate(7deg);
        transform: rotate(7deg);
    }
    23%,
    100% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}

@media (max-width: 1200px) {
    .analysis__params-content {
        display: flex;
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }
    .analysis-check__box-content {
        max-width: 100%;
        justify-content: flex-start;
        gap: 30px;
    }
    img.analysis__check-bg {
        top: unset;
        right: unset;
        left: 0px;
        bottom: 0;
        transform: rotate(180deg);
        height: 60%;
    }
    img.analysis-check__box-person {
        width: 100%;
        max-width: 60%;
        bottom: 0px;
        left: 0;
        right: 0;
        margin: 0 auto 0 auto;
        position: relative;
    }
    .analysis-check__box-about {
        bottom: 30px;
        left: 0;
        right: 0;
        max-width: 300px;
        margin: auto;
        position: absolute;
    }
    .analysis-check__box {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    .analysis__params-list {
        max-width: 100%;
        margin-top: 30px;
        width: 100%;
    }
}

@media (max-width: 991px) {
    .analysis__row {
        gap: 30px;
    }
    .analysis__title-block {
        flex-direction: column;
        gap: 30px;
    }
    .analysis__subtitle {
        align-self: unset;
        display: flex;
        gap: 15px;
        align-items: center;
    }
    .analysis__title br {
        display: none;
    }
    .analysis-check__box-title,
    .analysis__params-title {
        font-size: 25px;
    }
}