@charset "UTF-8";
/* CSS Document */

.heightBlock {
    padding: 40px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}
.fullHeightBlock {
    display: flex;
    height: auto;
    padding: 40px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    min-height: 100vh;
}
.fullHeightBox {
    align-self: center;
    padding: 0;
}
.fullHeightBlock .container {
    align-self: center;
}
.heightBlock.gradient,
.fullHeightBlock.gradient {
    background: rgb(245,188,82);
    background: -moz-linear-gradient(145deg, rgba(245,188,82,1) 0%, rgba(230,118,64,1) 50%, rgba(176,187,51,1) 100%);
    background: -webkit-linear-gradient(145deg, rgba(245,188,82,1) 0%, rgba(230,118,64,1) 50%, rgba(176,187,51,1) 100%);
    background: linear-gradient(145deg, rgba(245,188,82,1) 0%, rgba(230,118,64,1) 50%, rgba(176,187,51,1) 100%);
}