.modal-block {
    position: relative;
    box-sizing: border-box;
    border-radius: 24px;
    padding: 40px;
    margin: 72px 0;
    box-shadow: 10px 10px 40px 0px #9FA4C34D;
}

.modal-block.black {
    color: #fff;
    background: #1A3240;
}

.modal-block img {
    box-shadow: none !important;
}

.modal-block__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 24px;
    overflow: hidden;
}

.modal-block__overlay:after {
    opacity: .3;
    content: "";
    position: absolute;
    top: 70%;
    left: 47%;
    transform: translateY(-50%);
    width: 870px;
    height: 1161px;
    background: radial-gradient(50% 50% at 50% 50%, #06B5FD 7.19%, rgba(6, 181, 253, 0.23) 59.89%, rgba(6, 181, 253, 0.0652239) 79.96%, rgba(22, 172, 234, 0) 100%);
}

.black .modal-block__overlay:after {
    backdrop-filter: blur(150px);
    background: radial-gradient(50% 50% at 50% 50%, #06B5FD 7.19%, rgba(6, 181, 253, 0.23) 59.89%, rgba(6, 181, 253, 0.0652239) 79.96%, rgba(22, 172, 234, 0) 100%);
}

.modal-block__content {
    position: relative;
    z-index: 1;
}

.modal-block__img {
    position: absolute;
    width: 259px;
    right: -9px;
    bottom: -33px;
}

.modal-block__title {
  color: #37434B;
  font-weight: 700;
  font-size: clamp(23px, 2.143vw, 30px);
  letter-spacing: initial;
  line-height: initial;
}

.single-blog .modal-block__title {
    margin: 0 0 16px;
}

.single-blog .black .modal-block__title {
    color: #fff;
}

.single-blog .modal-block__description {
    margin: 0 0 32px !important;
}

.modal-block .modal-block__button {
    width: 100%;
    max-width: 400px;
    justify-content: center;
}

.modal-block .modal-block__button.white {
    box-shadow: -8px 8px 18px 0px #9FA4C34D;
}

@media screen and (max-width: 600px) {
    .modal-block__overlay:after {
        width: 479px;
        height: 479px;
        top: 25%;
        left: 26%;
    }
}