@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: local('Montserrat Light'), local('Montserrat-Light'), url(https://fonts.gstatic.com/s/montserrat/v14/JTURjIg1_i6t8kCHKm45_cJD3g3D_vx3rCubqg.woff2) format('woff2');
    unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
.popupWrapper {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99999;
    display: none;
}
.opacityBg {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0,0,0,0.6);
}
.hitnPopup {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    max-width: 513px;
    max-height: 445px;
    transform: scale(0);
    transform-origin: center center;
    transition: transform 1000ms ease;
}
.hitnPopup.show {
    transform: scale(1);
}
.close {
    position: absolute;
    right: 50px;
    top: 50px;
    cursor: pointer;
    z-index: 2;
}
.bgImg {
    position: absolute;
}
.innerBanner {
    position: absolute;
    top: 0;
    bottom: 16px;
    left: 0;
    right: 26px;
    margin: auto;
    width: 246px;
    height: 270px;
    color: #fff;
}
.popupButton {
    font-size: .9em;
    font-family: 'PT Sans',sans-serif;
    border: 2px solid #5f8fd1;
    border-radius: 4px;
    display: inline-block;
    min-width: 145px;
    text-align: center;
    -webkit-appearance: none;
    text-decoration: none;
    color: #fff;
    padding: 12px 25px;
    display: block;
    cursor: pointer;
    -webkit-transition: all .5s cubic-bezier(.42,0,.58,1);
    -moz-transition: all .5s cubic-bezier(.42,0,.58,1);
    -o-transition: all .5s cubic-bezier(.42,0,.58,1);
    transition: all .5s cubic-bezier(.42,0,.58,1);
    background-color: #5f8fd1;
    width: max-content;
    margin: auto;
}
.popupButton:hover {
    background-color: transparent;
}
.darkButton {
    color: #ed4259;
    font-size: 18px;
    display: inline-block;
    margin-top: 90px;
    background: black;
    padding: 15px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
}
.darkButton:hover {
    color: black;
    background: #ed4259;
}
@media (max-width: 1215px) {
    .mobileHideP {
        display: none !important;
    }
}