.info-blocks-and-video-element {
    padding: 100px 0;
    border-top: 1px solid #000;
}

.info-blocks-and-video-element .heading {
    text-align: center;
    font-size: 64px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: -1.92px !important;
    margin-bottom: 100px;
}

.info-blocks-and-video-element .content {
    display: grid;
    grid-template-columns: minmax(260px, 2fr) 460px;
    gap: 20px;
    align-items: center;
}

.info-blocks-and-video-element .info_blocks {
    display: grid;
    grid-template-columns: repeat(2, minmax(260px, 1fr));
    gap: 20px;
    align-items: center;
}

.info-blocks-and-video-element .info_block {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    min-height: 280px;
    padding: 32px;
    border: 1px dashed #60646C;
    background: #FFF;
}

.info-blocks-and-video-element .info_block img {
    width: 48px;
    height: 48px;
}

.info-blocks-and-video-element .info_block .text p {
    color: #60646C;
    font-size: 20px !important;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
    letter-spacing: -0.4px;
}
.info-blocks-and-video-element .info_block .text p:last-child {
    margin: 0;
}

.info-blocks-and-video-element .info_block .text p strong {
    color: #000;
}

.info-blocks-and-video-element .video {
    width: 100%;
    height: 100%;
    position: relative;
}

.info-blocks-and-video-element .video img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    position: relative;
    z-index: 1;
}

.info-blocks-and-video-element .btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    height: 56px;
    padding: 16px 32px;
    color: #fff;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    border-radius: 5px;
    border: 1px solid #FFF;
    background: rgba(255, 255, 255, 0.10);
    box-shadow: 3px 3px 0 0 rgba(255, 255, 255, 0.50);
    backdrop-filter: blur(5px);
    transition: background-color 0.3s ease;
}

.info-blocks-and-video-element .btn:hover {
    top: calc(50% + 3px);
    left: calc(50% + 3px);
    background: rgba(255, 255, 255, 0.30);
    box-shadow: none;
}

#video-popup {
    text-align: center;
}
#video-popup video {
    width: 100%;
    height: 100%;
    max-width: 898px;
    max-height: 505px;
}

@media screen and (max-width: 1799px) {
    .info-blocks-and-video-element .content {
        grid-template-columns: minmax(260px, 2fr) 400px;
    }
}

@media screen and (max-width: 1160px) {
    .info-blocks-and-video-element .heading {
        font-size: 48px;
    }

    .info-blocks-and-video-element .content {
        grid-template-columns: minmax(260px, 2fr) 360px;
    }
}

@media screen and (max-width: 991px) {
    .info-blocks-and-video-element {
        padding: 64px 0;
    }

    .info-blocks-and-video-element .heading {
        font-size: 36px;
        margin-bottom: 64px;
    }

    .info-blocks-and-video-element .content {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 480px) {
    .info-blocks-and-video-element .info_blocks {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .info-blocks-and-video-element .info_block {
        min-height: 200px;
        padding: 16px;
    }

    .info-blocks-and-video-element .info_block .text p {
        font-size: 18px !important;
        line-height: 26px;
        letter-spacing: -0.36px;
    }
}
