* {
    box-sizing: border-box;
}

html,
body,
.wrapper {
    height: 100%;
}
html {
    -webkit-overflow-scrolling: touch;
    -webkit-text-size-adjust: none;
    font-family: Arial, sans-serif;
    font-size: 4vw;
}
body {
    margin: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
}

img,
video {
    max-width: 100%;
    vertical-align: middle;
}

.wrapper {
    position: relative;
}

.pxl,
.hidden {
    display: none !important;
}

button {
    cursor: pointer;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
p {
    margin: 0;
}
a {
    text-decoration: none;
    cursor: pointer;
}

#header,
#footer {
    background: rgba(0, 0, 0, .3);
}
#header {
    padding: 1em;
}
#header h1 {
    font-size: 1em;
    margin: 0;
    text-align: center;
}
#header h1 img {
    height: 3em;
    max-width: 17em;
    object-fit: contain;
}

#content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1em;
}
#content > div {
    width: 100%;
    max-width: 21em;
}

#thankyou {
    background: url(/img/register/bg_thanks.png) no-repeat;
    background-position: center bottom;
    background-size: 100% auto;
    padding: 1em 1em 3em 1em;
    min-height: 10.74em;
}
#thankyou h2 {
    font-size: 2em;
    margin: 0 0 .25em;
    line-height: .6;
    padding: .27em 0 .27em 2em;
    background: url(/img/register/symbol_reg.png) no-repeat;
    background-position: center left;
    background-size: auto 100%;
}
#thankyou h2 .subline {
    font-size: .6em;
}
#thankyou > p {
    font-size: .8em;
}

#cta {
    background: url(/img/register/bg_billboard.png) no-repeat;
    background-position: center;
    background-size: 100% auto;
    min-height: 11.41em;
    padding: 2.25em;
}
#cta div {
    display: flex;
    gap: .5em;
    align-items: center;
    margin-bottom: .15em;
}
#cta div h2 {
    margin: 0;
}
#cta div .h2-parent {
    font-size: 1em;
}
#cta div .h2-parent a {
    width: 4em;
    height: 4em;
    display: block;
    background: url(/img/register/symbol_providers.png) no-repeat;
    background-position: center 0em;
    background-size: 100% auto;
}
#cta div .h2-child {
    font-size: 1.67em;
    line-height: .8;
    text-shadow: #a4958e .04em .04em .08em;
    color: #fff;
}
#cta div .h2-child .subline {
    font-size: .72em;
}
#cta > p {
    font-size: .8em;
}
#cta > p a {
    color: #fff;
}

#footer {
    height: 2em;
}

@media (min-width: 568px) {
    html {
        font-size: 15px;
    }

    body {
        min-height: 40em;
    }

    #content {
        font-size: 1.33em;
    }
}

@media (min-width: 768px) {
    #content {
        align-items: normal;
        max-width: 35em;
        width: 100%;
        margin: 0 auto;
    }
}

@media (min-width: 768px) and (min-height: 900px) and (min-aspect-ratio: 8/10) and (max-aspect-ratio: 9/10) {
    html {
        font-size: 1.69vh;
    }
}

@media (min-width: 992px) and (min-height: 601px) and (min-aspect-ratio: 15/11) {
    html {
        font-size: 1.69vh;
    }
    
    #content {
        font-size: 1.67em;
        max-width: 50em;
    }
}

.language-he #content > div {
    direction: rtl;
}
.language-he #thankyou h2 {
    padding-right: 2em;
    padding-left: 0;
    background-position: right;
}