@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 300;
  font-stretch: 100%;
  font-display: swap;
  src: url('../fonts/open-sans/open-sans-latin-ext-300-normal.woff2') format('woff2'),
       url('../fonts/open-sans/open-sans-latin-ext-300-normal.woff') format('woff');
}

@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  font-stretch: 100%;
  font-display: swap;
  src: url('../fonts/open-sans/open-sans-latin-ext-400-normal.woff2') format('woff2'),
       url('../fonts/open-sans/open-sans-latin-ext-400-normal.woff') format('woff');
}

@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 700;
  font-stretch: 100%;
  font-display: swap;
  src: url('../fonts/open-sans/open-sans-latin-ext-700-normal.woff2') format('woff2'),
       url('../fonts/open-sans/open-sans-latin-ext-700-normal.woff') format('woff');
}

html {
    font-size: 62.5%;
}

@media(max-width: 991px) {
    html {
        font-size: 50%;
    }
}

* {
    outline: none!important;
}

body {
    padding: 0;
    margin: 0;
    font-size: 1.7rem;
    color: #fff;
    font-family: 'Open Sans', sans-serif;
}

a {
    text-decoration: none;
    color: #fff;
}

a:hover {
    text-decoration: underline;
    color: #fff;
}

a img {
    border: 0;
}

img,iframe {
    max-width: 100%;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.btn, input[type=submit] {
    background-color: #ed1c24;
    padding: 1.3rem 1.8rem;
    text-transform: uppercase;
    border-radius: 1.5rem;
    font-weight: 600;
    box-shadow: .3rem .4rem .5rem 0 rgba(1, 1, 1, 0.16);
    border: 0;
    color: #fff;
    cursor: pointer;
    font-size: 1.6rem;
}

.btn:hover, input[type=submit]:hover {
    background-color: #d9141b;
    text-decoration: none;
}

.no-padding {
    padding: 0;
}

/* nav */
body > nav {
    padding: 1rem 0;
}

nav header img {
    width: 20rem;
}

@media(min-width: 768px){
    nav header img {
        width: 28rem;
    }
}

nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline-block;
    position: relative;
}

nav ul li + li:before {
    content: '|';
    opacity: 1;
    position: absolute;
    left: -2.5rem;
    color: #d10019;
}

nav ul li a {
    display: block;
    padding-right: 4rem;
    color: #000;
    text-transform: uppercase;
    font-size: 1.5rem;
}

nav ul li:last-child a {
    padding-right: 0;
}

nav ul li a:hover, nav ul li a.active {
    font-weight: 600;
    text-decoration: none;
    color: #000;
}

@media(min-width: 768px) {
    nav header {
        padding: 2rem 0;
    }

    body > nav {
        position: absolute;
        top : 0;
        left: 0;
        width: 100%;
        z-index: 10;
        padding: 1rem 0;
    }
    body > nav .container{
        max-width: 1500px;
        width: 90%;
    }
}
@media(min-width: 1500px) {
    body > nav .container{
        max-width: 1250px;
        width: 65%;
    }
}
@media(max-width: 767px) {
    nav header, nav .text-right {
        text-align: center;
    }
}

/* homepage */
section.infopage, section.homepage {
    background-image: url('../img/bcg.jpg');
    background-position: top center;
    background-repeat: no-repeat;
    background-color: #0053aa;
    background-size: cover;
}

section.infopage {
    background-image: url('../img/bcg-subpage.png');
    background-size: 140rem auto;
    background-position: top center !important;
}

@media(max-width: 767px) {
    section.infopage {
        background-image: none;
    }
}

section.homepage .banner {
    overflow: hidden;
}
section.homepage .banner h1{
    margin: 0 0 3rem 0;
}
section.homepage .banner h1 img{
    width: 100%;
    max-width: 200rem;
    margin: 0 auto;
    display: block;
}

section.homepage .banner + div{
    padding-bottom: 10rem;
}
section.homepage .banner + div h2 {
    color: #fff;
    font-size: 5rem;
    font-weight: 600;
}
section.homepage .banner + div ul {
    font-size: 2.1rem;font-weight: 100;padding-left: 1.5rem;list-style: none;}

section.homepage .banner + div ul li{
    position: relative;
    margin: .5rem 0;
}
section.homepage .banner + div ul li:before{
    content: '';
    display: inline-block;
    width: .5rem;
    height: .5rem;
    position: absolute;
    top: 1.25rem;
    left: -1.5rem;
    border-radius: 50%;
    background-color: #52c3f1;
}
section.homepage .banner + div .video iframe {
    width: 100%;
    height: 433px;
}

@media(max-width: 1900px) {
    section.homepage .banner h1 img {
        width: 100%;
    }
}

@media(max-width: 1500px) {
    section.homepage .banner h1 img {
        margin: 0 -32rem;
        width: calc(100% + 64rem);
    }

    section.homepage .banner h1 span {
        font-size: 2.2rem;
    }

    section.homepage .banner h1 span strong {
        font-size: 3.6rem;
    }
}

@media(max-width: 1200px) {
    section.homepage .banner + div .video iframe {
        height: 347px;
    }
    section.homepage .banner + div h2 {
        font-size: 3.5rem;
    }
    section.homepage .banner + div ul {
        font-size: 1.8rem;
    }

}
@media(max-width: 991px) {
    section.homepage .banner + div .video iframe {
        height: 264px;
    }
}

@media(max-width: 768px) {
    section.homepage .banner h1 span strong {
        font-size: 3rem;
    }

    section.homepage .banner h1 span {
        top: 2rem;
        font-size: 1.8rem;
        padding: 0 1rem;
    }

    section.homepage .banner h1 br {
        display: none;
    }

    section.homepage .banner h1 img {
        margin: 0 -2rem;
        width: calc(100% + 4rem);
        content:url('../img/banner_mobile.png');

    }

    section.homepage .banner +div .video iframe {
        margin-top: 2rem;
    }
    
    section.homepage .banner + div {
        font-size: 1.8rem;
        padding-bottom: 3rem;
        padding-top: 2rem;
    }
}

/* infopage */
section.infopage .page-container {
    padding-top: 25rem;
    padding-bottom: 10rem;
}

section.infopage .page-content {
    background-color: #0063b8;
    padding: 3rem 6rem 8rem 6rem;
    border-radius: 1.5rem;
    font-size: 1.6rem;
    margin: 3rem 0;
}

section.infopage .page-content h2 {
    font-size: 3.2rem;
    margin: 1rem 0;
}

section.infopage .page-content a {
    text-decoration: underline;
}

section.infopage .page-content a:hover {
    text-decoration: none;
}

section.infopage .page-content table {
    border: .1rem solid #fff;
    width: 100%;
    border-radius: 1rem;
    overflow: hidden;
    border-spacing: unset;
}

section.infopage .page-content table td {
    padding: .5rem 1rem;
}

section.infopage .page-content table tr:nth-child(odd) td {
    background-color: #ffffff2e;
}

section.infopage .page-content ul {
    list-style: circle;
    padding-left: 4rem;
}

section.infopage .page-content ol {
    padding-left: 4rem;
}

section.infopage .page-content ol li {
    margin: 1rem 0;
}

section.infopage .page-content p.large {
    font-size: 2.4rem;
}

section.infopage .page-content p.large a {
    font-size: 3.2rem;
}

section.infopage .page-content p + ul, section.infopage .page-content h3 + ul {
    margin-top: -1rem;
}

.vyherci section.infopage .page-content ul {
    list-style: none;
    padding: 0;
}

section.infopage .page-content .win-scooter, section.infopage .page-content .win-package {
    position: relative;
}

section.infopage .page-content .win-scooter img, section.infopage .page-content .win-package img {
    position: absolute;
    right: -7rem;
    bottom: -15rem;
    width: 40rem;
}

section.infopage h1 {

    font-size: 4.7rem;
    font-weight: 800;
    text-transform: uppercase;
    display: block;
    margin-bottom: 1rem;
    color: #fff;
    font-size: 6rem;
    text-align: center;
    margin: 2rem;
}



section.infopage .page-content{
    position: relative;
}

section.infopage .page-content img.prize {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    width: 21rem;
}

@media(max-width: 767px) {
    section.infopage .page-container {
        padding-top: 2rem;
        padding-bottom: 5rem;
    }

    section.infopage .page-content.equalize-item{
        height: auto!important;
    }

    section.infopage h1 {
        font-size: 4rem;
    }

    section.infopage .page-content p.large a {
        font-size: 2.2rem;
    }
    
    section.infopage .page-content {
        /* background-color: rgba(255, 255, 255, 0.25); */
        padding: 1rem 2rem;
        border-radius: 1.5rem;
    }

    section.infopage .page-content ul {
        padding-left: 2.5rem
    }

    section.infopage .page-content .win-scooter img, section.infopage .page-content .win-package img {
        position: absolute;
        right: 0;
        bottom: -5rem;
        width: 30rem;
    }

    section.infopage .page-content img.prize {
        position: relative;
        bottom: 2rem;
        left: 100%;
        transform: translateX(-100%);
        

        width: 21rem;
    }
}

@media(max-width: 500px) {
    section.infopage .page-content .win-scooter img, section.infopage .page-content .win-package img {
        position: relative;
        right: auto;
        bottom: auto;
        width: 20rem;
        margin: 0 auto;
    }

    section.infopage .page-content .win-package img {
        left: 50%;
        transform: translateX(-50%);
    }
}

/* form */
.form {
    margin: 0rem 0rem 5rem 0rem;
    border-radius: 1.5rem;
    background-color: #0063b8;
    padding: 2rem 2rem 4rem 2rem;
    position: relative;
}


.form form h2 {
    margin: 0 0 1rem 0;
    font-size: 3.6rem;
}

.form .receipt {
    position: absolute;
    background-color: #003a81;
    padding: 3rem;
    border-radius: 50%;
    top: 3rem;
    right: 0;
    transform: translateX(50%);
}

.form .receipt img {
    display: block;
}

form .form-group {
    margin: 1.2rem 0;
}

form .form-group:after {
    content: '';
    clear: both;
    display: block;
}

form hr {
    border-color: #0063b8;
    margin: 2rem 0;
}

form label {
    font-size: 2.8rem;
    font-weight: 300;
    width: 10rem;
    display: inline-block;
}

form label.thick {
    margin: 0 0 1rem 0;
    font-size: 3.6rem;
    font-weight: 600;
    width: auto;
}

form input {
    border: 0;
    border-radius: 1.5rem;
    padding: 1.2rem 1.8rem;
    box-shadow: .3rem .4rem .5rem 0 rgba(1, 1, 1, 0.16);
    width: 100%;
    border: .2rem solid transparent;
}

form .lable-inline label {
    float: left;
}

form .lable-inline label + input[type=text], form .lable-inline label + input[type=email] {
    width: 65%;
    float: right;
}

form label.thin {
    float: left;
    margin-top: .5rem;
    width: auto;
    font-size: 2.2rem;
}

form .first-line input {
    font-size: 2.8rem;
    text-align: center;
}

@media(min-width: 1200px) {
    .form {
        margin: 0 10rem 5rem 10rem;
        padding: 2rem 5rem 5rem 5rem;
    }
}

@media(min-width: 992px) {
    form label.surname {
        left: -1rem;
        position: relative;
    }

    form .lable-inline label.thin + input[type=text], form .lable-inline label.thin + input[type=email] {
        width: 70%;
        float: right;
        /* margin-left: 1rem; */
    }

    form input[type=submit] {
        width: auto;
        float: right;
        cursor: pointer;
    }
}

@media(max-width: 767px) {
    form label.thick {
        font-size: 2.6rem;
    }
}

form input[type=submit] {
    margin-top: 1rem;
}

form input[name=code] {
    padding: 1.5rem 2rem;
    font-size: 2rem;
    font-weight: 600;
}

form input[type=checkbox] {
    box-shadow: none;
    float: left;
    width: auto;
    margin-right: 1rem;
}

form label.error {
    font-size: 2rem;
    float: right;
    color: #ffffff;
    background: #ed1b24;
    border-radius: 1rem;
    width: auto;
    padding: .5rem 1rem;
    margin-top: .5rem;
    text-align: left;
    clear: both;
    font-size: 1.4rem!important;
}

form .actions label.error {
    display: block;
    float: none;
    max-width: 38rem;
}

section.infopage .page-content ul strong {
    font-size: 2.4rem;
}

form input[type=checkbox] + label.error {
    float: none;
    clear: both;
    display: block;
    margin-top: 0;
}

form input.error {
    border: .2rem solid #ed1b24;
}

form .actions {
    margin-top: 1rem;
}

form .actions a {
    text-decoration: underline;
}

form .actions a:hover {
    text-decoration: none;
}

form .actions label {
    font-size: 1.7rem;
    width: auto;
    margin-top: 1rem;
    cursor: pointer;
}

form .actions label input {
    margin-top: .75rem;
}

form .alert {
    background-color: #8BC34A;
    border-radius: 1.5rem;
    padding: 2rem;
    text-align: center;
    font-size: 2rem;
}

form .alert.alert-warning {
    background-color: #ed1c24;
}

@media(max-width: 1200px) {
    .form {
        /* max-width: 95rem; */
    }

    .form .receipt {
        padding: 2rem;
    }

    .form .receipt img {
        width: 30rem;
    }
}

@media (max-width: 991px) {
    .form {
        /* max-width: 80rem; */
    }

    .form form {
        /* max-width: 55rem; */
    }

    form .lable-inline > div:first-child .form-group {
        /* margin-bottom: 2rem; */
    }
}

@media (max-width: 850px) {
    .form {
        /* max-width: 70rem; */
    }

    .form form {
        /* max-width: 45rem; */
    }

    form .lable-inline > div:first-child .form-group {
        /* margin-bottom: 2rem; */
    }
}

@media (max-width: 767px) {
    .form .receipt {
        display: none;
    }

    .form, .form form {
        max-width: 100%;
    }

    form .lable-inline label + input[type=text], form .lable-inline label + input[type=email] {
        width: 75%;
    }

    .form {
        max-width: 65rem;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 500px) {
    .form {
        padding: 2.5rem;
    }

    form .lable-inline label {
        margin-bottom: .5rem;
    }

    form .lable-inline label + input[type=text], form .lable-inline label + input[type=email] {
        width: 100%;
    }

    form .lable-inline > div:first-child .form-group {
        margin: 0;
    }

    .form form h2 {
        font-size: 2.4rem;
    }
}

.info {
    margin: 0 10rem;
    border-radius: 1.5rem;
    margin-bottom: 5rem;
    position: relative;
}

/*footer */
/* footer - social */
footer .social {
    background-color: #52c3f1;
    font-size: 2.9rem;
    text-transform: uppercase;
    font-weight: 300;
    padding: 5rem 0;
    text-align: center;
}

footer .social span {
    margin-right: 2rem;
    color: #000;
}

footer .social a {
    display: inline-block;
    background-color: #77cff5;
    border-radius: 50%;
    width: 9rem;
    height: 9rem;
    line-height: 9rem;
    font-size: 4.5rem;
}

footer .social a:hover {
    background-color: #64b1d2;
}

footer .copyright {
    background-color: #67c8f3;
    padding: 2rem 0;
    color: #000;
}
footer .copyright a{
    color: #000;
}

footer .copyright .text-right {
    margin-top: 1.5rem;
}

@media (max-width: 767px) {
    footer .social {
        padding: 3rem 0;
        font-size: 2.4rem;
    }

    footer .social span {
        display: block;
        margin:  0rem  1rem 2rem  1rem;

    }

    footer ,footer .copyright .text-right {
        text-align: center!important;
    }
}

/* footer - menu */
footer ul {
    list-style: none;
    padding: 0;
}

footer ul li {
    display: inline-block;
    position: relative;
}

footer ul li + li:before {
    content: '|';
    opacity: 0.5;
    top: -.2rem;
    position: absolute;
    left: -2.5rem;
    color: #ffffff;
}

footer ul li a {
    display: block;
    padding-right: 4rem;
    color: #fff;
    text-transform: uppercase;
    font-size: 1.5rem;
}

footer ul li:last-child a {
    padding-right: 0;
}

footer ul li a:hover, footer ul li a.active {
    font-weight: 600;
    text-decoration: none;
    color: #000;
}

footer .cp {
    font-size: 1.5rem;
    margin: 1.7rem 0;
}

@media(min-width: 768px) {
    footer .cp {
        text-align: right;
    }
}

/* footer - cookie */
.cookie {
    display: none;
    z-index: 50000;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1em 0;
    background-color: #0154a6;
    text-align: left;
}

.cookie .cookie-message__inner {
    position: relative;
    margin: 0 auto;
    width: 100%;
    max-width: 1200px;
    padding: 0 10px;
}

.cookie p {
    margin: 0;
}

.cookie p strong {
    display: inline-block;
    margin-bottom: 1em;
    font-size: 16px;
}

@media(min-width: 600px) {
    .cookie .btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        right: 1rem;
    }

    .cookie p {
        padding-right: 15rem;
    }
}

@media(max-width: 599px) {
    .cookie .btn {
        float: right;
    }
}

/* page-prize */
.page-prize .products{
    margin: 5rem 0;
    text-align: center;
}
.page-prize .products img{
    /* max-width: 50rem; */
}
.page-prize .products .text{
    margin-top: 5rem;
}
.page-prize .products .text p{
    font-size: 3.6rem;
}
.page-prize .products .text-prize table tr td:first-child{
    width: 30%;
}
.page-prize .products .text-prize h3{
    margin-bottom: .5rem;
}
.page-prize .products .text-prize h3 + p{
    margin-top: 0;
}
@media(max-width: 768px){
    .page-prize .products .text-right,
    .page-prize .products .text{
        text-align: center;
        margin: 0;
    }
    .page-prize .products img{
        max-width: 30rem;
    }
    .page-prize .products .text img{
        max-width: 20rem;
    }
    .page-prize .products .text p{
        margin: 1rem 0 4rem 0;
    }
}



/* banner xs */
@media(max-width: 768px) {
    .banner .visible-xs {
        display: block!important;
    }

    .steps {
        display: table;
        width: 100%;
        max-width: 100rem;
        margin: 3rem auto 0 auto;
    }

    .steps > div {
        display: table-cell;
        text-align: end;
        width: 33.333%;
    }

    .steps > div img {
        max-width: 70%;
        display: block;
        margin: 0 auto;
    }

    .steps > div span {
        display: block;
        text-align: center;
        font-size: 1.6rem;
        margin: 1rem;

    }
}
