.calendar {
    margin-bottom: 3em;
}

.calendar h2 {
    padding: 0.2em 0 0.3em;
}

.img-date {
    position: relative;
    width: 590px;
    height: 430px;
    float: left;
    margin: 0 20px 20px;
}

.date-block {
    white-space: pre-line;
    font-family: Myriad Pro, sans-serif;
    font-size: 24px;
}

.img-date img {
    object-fit: cover;
}

.date-block-personal {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-self: flex-start;
    top: 3px;
    right: 3px;
    width: unset;
    height: unset;
    background-color: #2348cd;
    min-width: 100px;
    min-height: 100px;
}

.date-block-personal .month {
    font-family: "Georgia", sans-serif;
    font-weight: bold;
    font-size: 18px;
    color: #fff;
}
.date-block-personal .count {
    font-family: "Arial", sans-serif;
    font-weight: bold;
    font-size: 48px;
    color: #fff;
}

.swiper-container {
    width: 90%;
    height: 300px;
    margin: 0 auto;
}

.data-slider {
    margin-bottom: 5em;
}

.data-slide {
    overflow: hidden;
    transition: 0.2s;
}

.data-slide:hover {
    box-shadow: 0 0 20px 2px #6f81ff;
}

.data-slide .img-wrapper {
    position: absolute;
    width: calc(100% - 10px);
    height: calc(100% - 10px);
    left: 5px;
    top: 5px;
}

.data-slide .img-wrapper img {
    object-fit: cover;
}

.data-item-text {
    position: absolute;
    font-family: Myriad Pro, sans-serif;
    font-size: 20px;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.85);
    color: #000;
    min-height: 50px;
    padding: 10px 15px;
    transition: 0.2s;
    transform: translateY(100%);
}

.data-slide:hover .data-item-text {
    transform: translateY(0);
}

.sw-btn {
    visibility: hidden;
}

.slider-container {
    position: relative;
}

.cal-arrow-btns {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 99px;
    height: 72px;
    background-image: url("/img/20210324-221109_id-2-152014.png");
    background-size: inherit;
    background-repeat: no-repeat;
    border: none;
    outline: none;
    transition: 0.2s;
    cursor: pointer;
}

.calendar-prev-btn {
    left: -35px;
}

.calendar-next-btn {
    right: -35px;
    background-position: -113px 0;
}

.cal-arrow-btns:hover {
    transform: translateY(-50%) scale(1.05);
}
.cal-arrow-btns:active {
    transition: 0.001s;
    transform: translateY(-50%) scale(0.9);
}
