#home-second1 {
    background-color: var(--SECONDARY_MINOR_COLOR);
}

.home-second1__container {
    max-width: var(--CONTAINER_WIDTH);
    margin: 0px auto;
    padding: 80px 20px;
}

.home-second1__cards {
    margin-top: 80px;
    padding: 0 20px;
}

@media (min-width: 768px) {
    .home-second1__cards {
        padding: 0 80px;
    }
}

.home-second1__card {
    box-shadow: 0px 0px 25px rgba(6, 40, 69, 0.15);
    border-radius: 15px;
    margin-bottom: 80px;
    position: relative;
    min-height: 200px;
    background-color: var(--SECONDARY_MINOR_COLOR);
}

.home-second1__card._to-animate {
    opacity: 0;
}

.home-second1__card:last-child {
    margin: 0;
}

.home-second1__card:nth-child(even) .home-second1__pic {
    top: 0;
    right: 20px;
    transform: translate(0px, -50%);
}

@media (min-width: 768px) {
    .home-second1__card:nth-child(even) .home-second1__pic {
        top: 40px;
        right: -60px;
        transform: none;
    }
}

@media (min-width: 768px) {
    .home-second1__card:nth-child(even) .home-second1__text-block {
        padding: 40px 100px 40px 40px;
    }
}

.home-second1__card:nth-child(odd) .home-second1__pic {
    top: 0;
    left: 20px;
    transform: translate(0px, -50%);
}

@media (min-width: 768px) {
    .home-second1__card:nth-child(odd) .home-second1__pic {
        top: 40px;
        left: -60px;
        transform: none;
    }
}

@media (min-width: 768px) {
    .home-second1__card:nth-child(odd) .home-second1__text-block {
        padding: 40px 40px 40px 100px;
    }
}

.home-second1__pic {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    position: absolute;
    z-index: 2;
    border: 7px solid var(--EXTRA_COLOR);
}

.home-second1__pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-second1__text-block {
    padding: 80px 20px 20px 20px;
}

.home-second1__title {
    font-weight: 700;
    font-size: 20px;
    line-height: 130%;
    margin-bottom: 10px;
    color: var(--SECONDARY_MAJOR_COLOR);
}

@media (min-width: 576px) {
    .home-second1__title {
        font-size: 24px;
    }
}

.home-second1__text {
    font-weight: normal;
    font-size: 16px;
    line-height: 140%;
    color: var(--TEXT_COLOR);
}

@media (min-width: 576px) {
    .home-second1__text {
        font-size: 18px;
    }
}
