.wcl-steps {
    background-color: var(--light-grey);
}

@media only screen and (max-width: 768px) {
    .wcl-steps {
        scroll-margin-top: -50px;
    }
}

.wcl-steps__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 75px;
    padding-bottom: 70px;
}

@media only screen and (max-width: 1280px) {
    .wcl-steps__container {
        padding-top: 65px;
        padding-bottom: 60px;
    }
}

@media only screen and (max-width: 768px) {
    .wcl-steps__container {
        padding-top: 50px;
        padding-bottom: 40px;
    }
}

.wcl-steps__header {
    width: 100%;
    max-width: 750px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 17px;
    margin-bottom: 25px;
}

.wcl-steps__title {
    text-align: center;
    font-size: 40px;
    font-weight: 400;
}

@media only screen and (max-width: 1280px) {
    .wcl-steps__title {
        font-size: 36px;
    }
}

@media only screen and (max-width: 1024px) {
    .wcl-steps__title {
        font-size: 32px;
    }
}

@media only screen and (max-width: 768px) {
    .wcl-steps__title {
        font-size: 30px;
    }
}

@media only screen and (max-width: 500px) {
    .wcl-steps__title {
        font-size: 25px;
    }
}

.wcl-steps__text {
    text-align: center;
    font-size: 16px;
    line-height: 2;
}

.wcl-steps__steps {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
}

@media only screen and (max-width: 1440px) {
    .wcl-steps__steps {
        gap: 40px;
    }
}

@media only screen and (max-width: 1280px) {
    .wcl-steps__steps {
        gap: 24px;
    }
}

@media only screen and (max-width: 1024px) {
    .wcl-steps__steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media only screen and (max-width: 575px) {
    .wcl-steps__steps {
        grid-template-columns: 1fr;
    }
}

.wcl-steps__item {
    text-decoration: none;
    color: inherit;
    width: 100%;
    padding: 20px 16px 24px;
    border-radius: 30px;
    background-color: var(--white);
    box-shadow: -2px 2px 14px 0px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    transition: all 0.7s;
}

.wcl-steps__item:hover {
    background-color: rgba(196, 200, 255, 0.37);
}

.wcl-steps__item-image {
    width: 100%;
    max-width: 265px;
    height: 218px;
    border-radius: 17px;
    overflow: hidden;
    mix-blend-mode: multiply;
}

@media only screen and (max-width: 1024px) {
    .wcl-steps__item-image {
        aspect-ratio: 265 / 218;
        height: auto;
        margin: 0 auto;
    }
}

.wcl-steps__item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.wcl-steps__item-text {
    padding: 25px 16px 16px;
}

@media only screen and (max-width: 768px) {
    .wcl-steps__item-text {
        padding: 20px 0 8px;
    }
}

.wcl-steps__item-label {
    position: relative;
    font-size: 16px;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.64px;
    margin-bottom: 35px;
}

.wcl-steps__item-label::after {
    position: absolute;
    content: "";
    display: inline-block;
    width: 43px;
    height: 2px;
    background-color: var(--black);
    bottom: -10px;
    left: 0;
}

.wcl-steps__item-title {
    font-size: 25px;
    line-height: 1.2;
    font-weight: 400;
    text-transform: uppercase;
}

@media only screen and (max-width: 768px) {
    .wcl-steps__item-title {
        font-size: 22px;
    }
}

@media only screen and (max-width: 575px) {
    .wcl-steps__item-title {
        font-size: 20px;
    }
}

.wcl-steps__item-description {
    margin-top: 20px;
}

.wcl-steps__item-description p {
    font-size: 16px;
    line-height: 1.15 !important;
    letter-spacing: 0.64px;
}

.wcl-steps__item-description a {
  text-decoration: none;
  color: var(--cyan-blue);
  font-weight: 700;
  transition: all 0.3s;
}

.wcl-steps__item-description a:hover {
  color: var(--black);
}

.wcl-steps__button {
    margin-top: 55px;
}

@media only screen and (max-width: 1024px) {
    .wcl-steps__button {
        margin-top: 40px;
    }
}

@media only screen and (max-width: 768px) {
    .wcl-steps__button {
        margin-top: 32px;
    }
}

@media only screen and (max-width: 575px) {
    .wcl-steps__button.wcl-button {
        margin-top: 24px;
        padding: 12px 16px 10px;
    }
}