body {
    font-size: 16px;
    line-height: 1.5;
}

.wrap_content {
    box-sizing: border-box;
    min-height: 100vh;
    overflow: hidden;
}

/* ------ CONTENT ------ */

.preheader__table .preheader__td {
    vertical-align: middle;
}

header {

    position: relative;
    background: #0a2436 url(https://go.veeam.com/rs/870-LBG-312/images/header_cloud_data_protection_1920x450.jpg) no-repeat 55% top;
    background-size: cover;
    background-image: image-set(
            url(https://go.veeam.com/rs/870-LBG-312/images/header_cloud_data_protection_1920x450.jpg) 1x,
            url(https://go.veeam.com/rs/870-LBG-312/images/header_cloud_data_protection_3840x900.jpg) 2x
    );
}

.header {
    box-sizing: border-box;
    margin: 0 auto;
    width: 1170px;
    padding: 110px 0;
}
.header__container {
    min-height: 450px;
}

.badge {
    color: #93ea21;
    font-size: 25px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 15px;
}
.header h1 {
    position: relative;
    padding-left: 0px;
    color: #fff;
    font-size: 290%;
    line-height: 1.3;
    margin-bottom: 30px;
}

.block_table {
    display: table;
    width: 100%;
}

.block_td {
    display: table-cell;
    vertical-align: top;
}

.content {
    margin: 0 auto;
    padding: 55px 0;
    width: 1170px;
}

.content p {
    margin-bottom: 20px;
}

.content h2 {
    margin-bottom: 30px;
}

.zoom {
    position: relative;
    display: inline-block;
    min-height: 100px;
}

.zoom span {
    position: absolute;
    background: url(https://go.veeam.com/rs/veeam/images/zoom_green.png) no-repeat 100% 100%;
    display: block;
    height: 100px;
    width: 100px;
    bottom: 10px;
    right: 10px;
    transition: all ease-out .5s;
}

.screen {
    display: block;
    width: 250px;
    min-height: 200px;
    border: solid 10px #f1f1f1;
}

.zoom a:hover span {
    opacity: .6;
}

.list {
    list-style: none;
}

.list__item {
    margin: 0 0 16px 23px;
    position: relative;
}

.list__item::before {
    content: "";
    height: 8px;
    width: 8px;
    background: #232323;
    background-size: cover;
    position: absolute;
    left: -23px;
    top: 7px;
    border-radius: 20px;
}

.unique_a::after {

    display: block;
    background: url(https://www.veeam.com/etc/designs/veeam-cms/clientlibs/clientlib-all/css/sprite.ea654e4e993aaa8617d7f42b5ab9b3943aa2b3d2.svg#green-arrow) no-repeat center center;
    width: 15px;
    height: 26px;
    content: "";
    display: inline-block;
    height: 14px;
    background-size: cover;
    margin: 0 0 -1px 3px;
    vertical-align: baseline;
    transition: all .15s ease-in-out;

}

.unique_a {

    font-weight: 700;
    font-style: normal;
    font-stretch: normal;
    font-size: 16px;
    display: inline-block;
    max-width: 360px;
    text-transform: uppercase;
    color: #00b336;
    transition: all .15s ease-in-out;
    max-width: 100%;
}

.unique_a:hover {
    color: #019b2f
}

.veeam-text__tertiary-button a:hover::after {
    display: block;
    background: url("https://www.veeam.com/etc/designs/veeam-cms/clientlibs/clientlib-all/css/sprite.ea654e4e993aaa8617d7f42b5ab9b3943aa2b3d2.svg#green-arrow-hover") no-repeat center center;
    width: 15px;
    height: 26px;
    background-size: cover;
    display: inline-block;
    height: 14px
}

.unique_a:hover {
    text-decoration: none;
}

/* --- Animation --- */

.animated {
    -webkit-animation-duration: .4s;
    animation-duration: .4s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-delay: .4s;
    animation-delay: .4s
}

.animated1 {
    -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}

.animated2 {
    -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-delay: 1.4s;
    animation-delay: 1.4s;
}

@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 50%, 0);
        transform: translate3d(0, 50%, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 50%, 0);
        -ms-transform: translate3d(0, 50%, 0);
        transform: translate3d(0, 50%, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }
}

.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}

@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
    50% {
        -webkit-transform: scale3d(1.04, 1.04, 1.04);
        transform: scale3d(1.04, 1.04, 1.04)
    }
    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
}

@keyframes pulse {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
    50% {
        -webkit-transform: scale3d(1.04, 1.04, 1.04);
        transform: scale3d(1.04, 1.04, 1.04)
    }
    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
}

.pulse {
    -webkit-animation-name: pulse;
    animation-name: pulse
}

@media screen and (max-width: 1220px) {

    .header, .content {
        width: auto;
        margin: 0;
        padding-right: 15px;
        padding-left: 15px;
    }

    .header {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .header__container {
        min-height: auto;
    }

    .header h1 {
        max-width: 80%
    }

    .hide, .hide820 {
        display: none;
    }

}

@media screen and (max-width: 820px) {

    .hide820 {
        display: none;
    }

}

@media screen and (max-width: 760px) {

    .wrap_content {
        min-height: initial;
        padding-bottom: 0;
    }

    .header h1 {
        font-size: 280%;
    }

    .hide760 {
        display: none !important;
    }

    .header h1 {
        max-width: 100%
    }

}

@media screen and (max-width: 680px) {
    iframe#player {
        width: 100% !important;
        height: 300px !important
    }
    .header__container {
        min-height: auto;
        height: auto;
    }

    header {
        background-position: 35% top;
    }

    .header {
        padding-top: 50px;
        padding-bottom: 50px;

    }
    .badge {
        font-size: 18px;
    }

    .header h1 {
        font-size: 200%;
        text-align: center;
    }

    .mForm__btn-green {
        margin-left: auto;
        margin-right: auto;
        display: block;
    }

}

@media screen and (max-width: 480px) {

    header {
        background-position: 50% top;
    }

    iframe#player {
        width: 100% !important;
        height: 240px !important
    }

    .hide480 {
        display: none !important;
    }
}

@media screen and (max-width: 380px) {

    iframe#player {
        width: 100% !important;
        height: 100% !important
    }
}

.gray {
    background-color: #f1f1f1;
    color: #222222;
}

.gray b {
    display: block;
    margin-bottom: 15px;
    font-size: 110%;
    font-weight: 600;
    text-transform: uppercase;
}
.nyroModalBg {
    z-index: 100;
}

.nyroModalTitle {
    opacity: 0 !important;
}