body, html{
	background-image: url(../images/background.png);
}
.content-one{
	margin-left: auto;
	margin-right: auto;
	width: 50%;
	margin-top: 5%;
	margin-bottom: 5%
}

.footer {
    padding-bottom: 1%;
    padding-top: 2%;
    background: #fff;
}

.footer p {
    font-family: 'Optane';
    margin-bottom: 1%;
    font-size: 9pt;
    color: #000000;
}

.document-container {
    font-family: 'Myriad Pro Regular';
    font-size: 15pt;
    color: #4f565b;
    text-align: center;
    margin-top: 8%;
    margin-bottom: 8%;
}

.footer-logo{
	width: 70%
}

.contact{
	width: 55%
}
.footer a {
    color: #000000;
}
.contact-image {
    width: 65%;
    float: right;
}
#register-form{
	width: 50%;
    margin-left: auto;
    margin-right: auto;
	margin-top: 5%;
	margin-bottom: 5%
}

#register-form iframe {
    width: 100%;
    border: none;
    height: 70vh;
}
.mobile-show{
	display: none
}
/* Mobile */
@media screen and (orientation:portrait) {
.desktop-show{
	display: none
}
.mobile-show{
	display: block
}
.contact-image {
    width: 100%;
    float: none !important;
    margin-top: 5%;
}
.icon-bar-logo {
    list-style: none;
    display: block;
    z-index: 1000001;
    position: absolute;
    right: 3%;
    top: 0%;
    width: 20%;
}
.content-one {
    margin-left: auto;
    margin-right: auto;
    width: 95%;
    margin-top: 5%;
    margin-bottom: 5%;
}
#register-form{
	width: 100%;
    margin-left: auto;
    margin-right: auto;
}
.contact{
	width: 100%
}
.footer-logo {
    width: 55%;
    padding-top: 10%;
}
.form {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}

}
/* Mobile */

/* icon bar */
.icon-bar-logo {
    list-style: none;
    display: block;
    z-index: 1000001;
    position: absolute;
    right: 2%;
    top: 0%;
    width: 15%;
}
.icon-bar-register {
    list-style: none;
    display: block;
    z-index: 1000001;
    position: fixed;
    right: 2%;
    top: 55%;
    width: 6%;
}
.icon-bar-vr {
    list-style: none;
    display: block;
    z-index: 1000001;
    position: fixed;
    right: 2%;
    top: 75%;
    width: 6%;
}
/* icon bar */

.ball {
            -webkit-animation-name: bounce;
            -webkit-animation-duration: 0.5s;
            -webkit-animation-direction: alternate;
            -webkit-animation-timing-function: cubic-bezier(
            .5, 0.05, 1, .5);
            -webkit-animation-iteration-count: infinite;
        }
 @-webkit-keyframes bounce {
            from {
                -webkit-transform: translate3d(0, 0, 0);
                transform: translate3d(0, 0, 0);
            }
            to {
                -webkit-transform: translate3d(0, 50px, 0);
                transform: translate3d(0, 50px, 0);
            }
        }