.home-popup{
    position: fixed;
    top: 70px;
    right: 30px;
    padding: 20px 47px 20px 20px;
    background: #0039ad;
    border-radius: 14px;
    border: solid 1px #285bbc;
    transform: translateX(110%);
    transition: transform 0.8s;
    will-change: transform;
    max-width: 430px;
    margin: 0 0;
    z-index: 9;
}

.home-popup.open-state{
    transform: translateX(0);
    transition: transform 0.8s;
}

.popup-date{
    margin: 0 9px 2px 0;
    font-family: 'IBMPlexSans';
    font-size: 12px;
    line-height: normal;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.popup-title{
    margin: 2px 0 10px 0;
    font-family: 'IBMPlexSans-ExtraLight';
    font-size: 24px;
    line-height: 1.29;
    letter-spacing: normal;
}

.popup-content{
    font-family: 'IBMPlexSans';
    font-size: 14px;
    line-height: 1.56;
    letter-spacing: normal;
}

.home-popup .section-links{
    margin-top: 20px;
}

.home-popup .section-links a{
    font-size: 12px;
}

.popup-close{
    position: absolute;
    right: 15px;
    top: 10px;
    width: 25px;
    height: 45px;
    padding: 31px 28px 0;
    cursor: pointer;
    z-index: 99;
}

.popup-close::after{
    content: '';
    position: absolute;
    background: #fff;
    right: 0;
    width: 28px;
    height: 1px;
    top: 50%;
    z-index: 1;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
}

.popup-close::before{
    content: '';
    position: absolute;
    background: #fff;
    right: 0;
    width: 28px;
    height: 1px;
    top: 50%;
    z-index: 1;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}

@media(max-width: 768px){
    .home-popup{
        top: auto;
        bottom: 0;
        right: -2px;
        left: -2px;
        max-width: unset;
        width: calc(100% + 4px);
        border-radius: 0;
        transform: translateY(110%);
        padding: 25px 47px 30px 20px;
    }

    .cookies-set .home-popup{
        bottom: 0;
        transform: translateY(200%);
    }

    .popup-title{
        font-size: 28px;
        line-height: 1.29;
    }

    .home-popup.open-state{
        transform: translateY(0);
    }
}