@font-face {
    font-family: 'Museo-500';
    src: url('../fonts/Museo500-Regular-webfont.eot');
    src: url('../fonts/Museo500-Regular-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/Museo500-Regular-webfont.woff2') format('woff2'),
         url('../fonts/Museo500-Regular-webfont.woff') format('woff'),
         url('../fonts/Museo500-Regular-webfont.ttf') format('truetype'),
         url('../fonts/Museo500-Regular-webfont.svg#museo500') format('svg');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Museo-700';
    src: url('../fonts/Museo700-Regular-webfont.eot');
    src: url('../fonts/Museo700-Regular-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/Museo700-Regular-webfont.woff2') format('woff2'),
         url('../fonts/Museo700-Regular-webfont.woff') format('woff'),
         url('../fonts/Museo700-Regular-webfont.ttf') format('truetype'),
         url('../fonts/Museo700-Regular-webfont.svg#museo700') format('svg');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'AdelleBasic-Light';
    src: url('../fonts/2D978B_0_0.eot');
    src: url('../fonts/2D978B_0_0.eot?#iefix') format('embedded-opentype'),
         url('../fonts/2D978B_0_0.woff') format('woff'),
         url('../fonts/2D978B_0_0.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'FuturaFuturis-Bold';
    src: url('../fonts/2D978B_1_0.eot');
    src: url('../fonts/2D978B_1_0.eot?#iefix') format('embedded-opentype'),
         url('../fonts/2D978B_1_0.woff') format('woff'),
         url('../fonts/2D978B_1_0.ttf') format('truetype');
}


/*** SINGLE PAGE FRAME ***/

@-ms-viewport {
  width: device-width;
}


html, body {
    height: 100%;
}

body {
    margin: 0;

    /* moved to JS */
    
    overflow-y: hidden;
    overflow-x: hidden;
    
    font-family: Museo-500;
    font-size: 62.5%;   /* 1em = 10px */
    color: #383127;

}


@media screen and (max-width: 480px) {
    body {
        overflow-y: auto;
    }
}

.site {
    height: 100%;
    top: 0;
    position: relative;
    z-index: 1;
    overflow-y: visible;

}

.site-head {
    height: 100%;
    overflow: hidden;
    background: #fdfbf8;
}
.site.transition {
    -webkit-transition: transform .6s ease;
    transition: transform .6s ease;
}
.site.transform {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
}


.site-body {
    overflow-x: hidden;
}

/* workaround to support ios */
.footer-margin {
    display: block;
    width: 1px;
    height: 440px;
}

.site-footer {
    position: fixed;
    bottom: 0;
    left: 50%;
    /*height: 415px;*/
    width: 100%;
    max-width: 980px;
    -webkit-transform: translate(-50%);
    transform: translate(-50%);
    box-sizing: border-box;
}
@media only screen and (max-width: 1000px) {
    .site-footer {
        padding: 0 2.5%;
    }
}

/* pages */

.page-holder {
    background: #fdfbf8;
}
.page {
    -webkit-transition: transform .6s ease;
    transition: transform .6s ease;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    
    background: url(../img/background.jpg) repeat center;
    overflow-x: hidden;
}
@media only screen and (max-width: 740px) {
    .page {
        background: url(../img/background_mobile.jpg) repeat center;
        background-size: 425px;
    }
}


.page.fadeToLeft {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
}
.page.fadeToRight {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
}

.page-content {
    max-width: 980px;
    margin: 0 auto;
    box-sizing: border-box;
    padding: 0 2.5%;
    text-align: center;
}
@media only screen and (max-width: 740px) {
    .page-content {
        padding: 0 4%;
        overflow: hidden; /* to prevent scrolling out of viewport on drag/swipe */
    }
}


/*** PRELOADER ***/

#preloader {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 100000;
    background: transparent;
}
#preloader .background {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    background: #f4f4f4;
    border-radius: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}
#preloader .background::before {
    content: "";
    display: block;
    margin-top: 100%;
}


@-webkit-keyframes spin360 {
    from { -webkit-transform: rotate(0deg); }
    to { -webkit-transform: rotate(360deg); }
}
@keyframes spin360 {
    from {transform:rotate(0deg);}
    to {transform:rotate(360deg);}
}


@-webkit-keyframes preload-close-bg {
    99% {
        opacity: 1;
        width: 1%;
        display: block;
    }
    100% {
        width: 1%;
        opacity: 0;
        display: none;
    }
}
@keyframes preload-close-bg {
    99% {
        opacity: 1;
        width: 1%;
        display: block;
    }
    100% {
        width: 1%;
        opacity: 0;
        display: none;
    }
}

@-webkit-keyframes preload-close-content {
    50% {
        opacity: 1;
    }
    61% {
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}
@keyframes preload-close-content {
    50% {
        opacity: 1;
    }
    61% {
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}


@-webkit-keyframes preload-hide {
    99% {
        display: block;
    }
    100% {
        display: none;
    }
}
@keyframes preload-hide {
    99% {
        display: block;
    }
    100% {
        display: none;
    }
}



/* Perform closing animation after the page is completely loaded */
#preloader.loaded {
    -webkit-animation: preload-hide 1s ease forwards;
    animation: preload-hide 1s ease forwards;
}
#preloader.loaded .background {
    -webkit-animation: preload-close-bg 1s ease forwards;
    animation: preload-close-bg 1s ease forwards;
    -webkit-animation-delay: inherit;
    animation-delay: inherit;
}
#preloader.loaded .content {
    -webkit-animation: preload-close-content 1s ease forwards;
    animation: preload-close-content 1s ease forwards;
    -webkit-animation-delay: inherit;
    animation-delay: inherit;
}
#preloader.loaded-fallback {
    display: none;
    opacity: 0;
    z-index: -1;
}
@media only screen and (max-height: 740px) { /* quicker hiding of spinning logo */
    #preloader.loaded .content {
        -webkit-animation: preload-close-content .7s ease forwards;
        animation: preload-close-content .7s ease forwards;
        -webkit-animation-delay: inherit;
        animation-delay: inherit;
    }    
}

#preloader .content {
    display: block;
    width: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}
#preloader .logo-holder {
    opacity: 1;
    -webkit-animation: animate-loading 1s cubic-bezier(0.7,0,0.3,1) both;
    animation: animate-loading 1s cubic-bezier(0.7,0,0.3,1) both;
}
#preloader .logo {
    display: block;
    width: 250px;
    height: 250px;
    background: url(../img/sirius_logo_frontpage.png) no-repeat center center;
    background-size: contain;
    -webkit-animation: spin360 10s linear infinite;
    animation: spin360 10s linear infinite;    
}
@media only screen and (max-height: 800px) {
    #preloader .logo {
        width: 200px;
        height: 200px;
    }
}
#preloader .loading-text {
    font-family: Museo-700;
    font-size: 2em;
    text-transform: uppercase;
    text-align: center;
    margin: 50px auto 0;
    display: block;
    color: #939598;
    opacity: 1;
    -webkit-animation: animate-loading-text 1.5s cubic-bezier(0.7,0,0.3,1) both;
    animation: animate-loading-text 1.5s cubic-bezier(0.7,0,0.3,1) both;
    -webkit-animation-delay: 2.5s;
    animation-delay: 2.5s;
}

@-webkit-keyframes animate-loading-text {
    from {
        opacity: 0;
    }
}
@keyframes animate-loading-text {
    from {
        opacity: 0;
    }
}

@-webkit-keyframes animate-loading {
	from { 
		opacity: 0; 
		-webkit-transform: translate3d(0,600px,0); 
	}
}
@keyframes animate-loading {
	from { 
		opacity: 0; 
		transform: translate3d(0,600px,0); 
	}
}

/* preloader - end */

/*** CUSTOM STYLES ***/

a {
    color: #383127;
}

body {
    background: #d5d8db;
}
/*@media only screen and (max-width: 740px) {
    body {
        background: url(../img/background_mobile.jpg) repeat center;
        background-size: 425px;
    }
}*/

.mobile-logo {
    display: none;
}
@media only screen and (max-width: 740px) {
    .mobile-logo {
        display: block;
        position: fixed;
        top: 12px;
        left: 17px;
        width: 30px;
        height: 37px;
        background: url(../img/icon_anchor@2x.png) no-repeat center;
        background-size: 100%;
        z-index: 10;
        cursor: pointer;
    }
}

header {
    height: 100%;
    width: 100%;
    background: url(../img/background.jpg) repeat center;
}
@media only screen and (max-width: 740px) {
    header {
        background: url(../img/background_mobile.jpg) repeat center;
        background-size: 425px;
    }
}

header nav {
    position: relative;
    z-index: 1; 
}
header nav ul {
    text-align: center;
    margin: 0;
    padding: 0;
}
header nav ul li {
    list-style: none;
    display: inline-block;
    padding: 50px 25px;
}
header nav ul li a {
    font-size: 2em;
    color: #00597d;
    text-decoration: none;
    font-family: Museo-700;
    text-transform: uppercase;
    transition: font-size .5s ease;
}

@media only screen and (max-width: 1200px) {
    header nav ul li {
        padding: 50px 15px;
    }
    header nav ul li a {
        font-size: 1.8em;
    }
}
@media only screen and (max-width: 100px) {
    header nav ul li {
        padding: 50px 10px;
    }
    header nav ul li a {
        font-size: 1.6em;
    }
}
@media only screen and (max-width: 900px) {
    header nav ul li {
        padding: 50px 10px;
    }
    header nav ul li a {
        font-size: 1.5em;
    }
}

header nav .frame {
    position: relative;
    margin-top: -85px;
    height: 40px;
    border: 1px solid #383127;
    border-radius: 3px;
    z-index: -1;
}

header .page-info {
    position: absolute;
    top: 18%;
    width: 100%;
    text-align: center;
}


/*header .page-info h1 {
    font-size: 2em;
    text-transform: uppercase;
}*/
header .page-info p {
    font-size: 1.7em;
    font-family: AdelleBasic-Light;
}

header .sirius-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-150px);
    transform: translateX(-50%) translateY(-150px);
}
header .sirius-logo .logo {
    width: 249px;
    display: block;
    margin: 0 auto;
    
    /* force HW acceleration */ 
   -webkit-transform: translateZ(0);
   -moz-transform: translateZ(0);
   -ms-transform: translateZ(0);
   -o-transform: translateZ(0);
   transform: translateZ(0);
}
header .sirius-logo .logo-text {
    width: 258px;
    display: block;
    margin: 40px 0;
}
header .sirius-logo .nav-right,
header .sirius-logo .nav-left {
    display: block;
    /*background: url(../img/arrow_frontpage_right.png) no-repeat center center;*/
    width: 50px;
    height: 49px;
    position: absolute;
    top: 98px;
    cursor: pointer;
    -webkit-transition: background 0.3s ease;
    transition: background 0.3s ease;
}
header .sirius-logo .nav-right:hover,
header .sirius-logo .nav-left:hover {
/*background-image: url(../img/arrow_frontpage_right_hover.png);*/
}
header .sirius-logo .nav-right {
    right: -100px;
}
header .sirius-logo .nav-left {
    left: -100px;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}
header .language {
    position: absolute;
    bottom: 30px;
    right: 35px;
}

@media only screen and (max-height: 800px) and (min-width: 740px) {
    header .sirius-logo {
        top: 60%;
    }
    header .sirius-logo .logo {
        width: 200px;
    }
    header .sirius-logo .logo-text {
        margin: 20px auto;
        width: 200px;
    }
}
/* MOBILE */
@media only screen and (max-width: 740px) {
    header nav {
        display: none;
    }
    header .page-info {
        display: none;
    }
    header .sirius-logo .nav-right,
    header .sirius-logo .nav-left {
        display: none;
    }
    header .sirius-logo {
        position: relative;
        top: 38%;
        left: 0;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        overflow: hidden;
    }
    header .sirius-logo .logo {
        width: 210px;
    }
    header .sirius-logo .logo-text {
        margin: 40px auto;
    }
    header .language {
        position: absolute;
        bottom: 20%;
        width: auto;
        right: 50%;
        -webkit-transform: translateX(50%);
        transform: translateX(50%);
    }
}
@media only screen and (max-height: 530px) and (max-width: 740px) {
    header .sirius-logo .logo {
        display: none;
    }
    header .language {
        bottom: 30%;
    }
}

header .page-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    -webkit-transform: translate(-50%);
    transform: translate(-50%);
    text-align: center;
}

@media only screen and (max-width: 740px) {
    header .page-down img {
        display: none;
    }
}
#menu-down-button.animate {
  -webkit-animation: bounce 1000ms linear both;
  animation: bounce 1000ms linear both;
}

@-webkit-keyframes bounce {
  0%, 20%, 53%, 80%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }

  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0,-4px,0);
    transform: translate3d(0,-4px,0);
  }
}

@keyframes bounce {
  0%, 20%, 53%, 80%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }

  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0,-4px,0);
    transform: translate3d(0,-4px,0);
  }
}

/* footer */

.site-footer {

}

.site-footer .center {
    text-align: center;
}
.site-footer .language {
    margin: 25px auto;
}

.site-footer .quote {
    margin: 50px 0 40px;
}
.site-footer .quote .q {
    font-family: 'FuturaFuturis-Bold';
    font-size: 1.6em;
    color: #383127;
    display: block;
    margin: 5px 0;
}
.site-footer .quote .author {
    font-family: AdelleBasic-Light;
    font-size: 1.2em;
    color: #383127;
    display: block;
    margin: 5px 0;
}


.site-footer .line::before {
    background: #6a6a6a none repeat scroll 0 0;
    content: "";
    display: block;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    -webkit-transform: translate(-50%);
    transform: translate(-50%);
    width: 200vw;
    z-index: -1;
}
.site-footer .line::after {
    content: "";
    display: table;
    clear: both;
}

.site-footer .line {
    width: 100%;
    position: relative;
    padding: 25px 0 45px;
    margin: 25px 0 0 0;
    background: #6a6a6a none repeat scroll 0 0;
    color: white;
}
.site-footer .line a {
    color: white;
}
.site-footer .copyright {
    float: left;
    font-family: AdelleBasic-Light;
    font-size: 1.2em;
}
.site-footer .copyright p {
    margin: 0 0 10px;
}
.site-footer .line .social-buttons {
    float: right;
}
.site-footer .line .social-buttons a {
    display: inline-block;
    width: 44px;
    height: 42px;
    margin: 0 1px;
    -webkit-transition: background 0.3s ease;
    transition: background 0.3s ease;
}
.site-footer .navigate-to-contact-info:hover {
    cursor: pointer;
    color: white;
    text-decoration: underline;
}
.social-buttons .facebook {
    background: url(../img/button_facebook.png) no-repeat center center;
}
.social-buttons .twitter {
    background: url(../img/button_twitter.png) no-repeat center center;
}
.social-buttons .linkedin {
    background: url(../img/button_linkedin_white.png) no-repeat center center;
    background-size: 44px;
}
/*.social-buttons .linkedin:hover {
    background: url(../img/button_linkedin_hover.png) no-repeat center center;
}*/

/* MOBILE */
@media only screen and (max-width: 740px) {
    .site-footer {
        padding: 30px 0 0 0;
    }
    .site-footer .center img {
        display: none;
    }
    .site-footer .line {
        border-top: 0 none;
        background: #6a6a6a;
        height: 150px;
        padding: 40px 40px 0;
        box-sizing: border-box;
        color: white;
    }
    .site-footer .line a {
        color: white;
    }
    .site-footer .copyright {
        font-size: 1em;
        width: 210px;
    }
    .site-footer .button.language {
        display: none;
    }
    .social-buttons .linkedin,
    .social-buttons .linkedin:hover{
        background: url(../img/button_linkedin_white.png) no-repeat center center;   
        background-size: 100%;
    }
}


/* pages */

.page-header {
    width: 100vw;
    height: 300px;
    line-height: 300px;
    position: relative;
    left: 50%;
    -webkit-transform: translate(-50%);
    transform: translate(-50%);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
}
.page-header.investicni-pristup {
    background-image: url(../img/hlavicka_investicni_pristup.jpg);
    background-position: 50% 85%;/*modified: center bottom -> 50% 85%*/
}
.page-header.produkty {
    background-image: url(../img/hlavicka_mapa.jpg);
    background-position: 50% 85%;/*added*/
}
.page-header.pro-investory {
    background-image: url(../img/hlavicka_pro_investory.jpg);
    background-position: 50% 85%;/*modified: center bottom -> 50% 85%*/
}
.page-header.dulezite-informace {
    background-image: url(../img/hlavicka_kompas.jpg);
    background-position: 50% 85%;/*added*/
}
.page-header.o-nas {
    display: none;
    height: 200px;
    line-height: 200px;
}
.page-header.o-nas h2 {
    margin: 0 auto;
}

.page-header h1 {
    font-family: Museo-700;
    font-size: 4.8em;
    color: #ffffff;
    text-transform: uppercase;
    margin: 0 auto;
    line-height: 1.2em;
    display: inline-block;
    vertical-align: middle;
    padding: 0 8%;
}
.page-header h1::before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    height: 100%;
}

.page h2 {
    margin: 40px auto 25px;
    color: #00597d;
    font-size: 2.4em;
    font-family: Museo-700;
    text-transform: uppercase;
}
.page h2.big {
    font-size: 3.6em;
    color: #383127;
    margin: 60px auto 40px;
}
.page h3 {
    margin: 40px auto 20px;
    color: #383127;
    font-size: 2em;
    font-family: Museo-700;
    text-transform: uppercase;
}
.page h3 .thin {
    font-family: Museo-500;
    font-weight: normal;
}

.page p {
    margin: 20px 0;
    font-family: AdelleBasic-Light;
    color: #171717;
    font-size: 1.5em;
    text-align: justify;
}

/* MOBILE */
@media only screen and (max-width: 740px) {
    .page-header {
        height: 200px;
        line-height: 200px;
        background-size: cover;
    }
    .page-header h1 {
        font-size: 3.5em;
    }
    .page h2 {
        color: #171717;
        font-size: 1.9em;
    }
    .page h2.big {
        color: #383127;
        font-size: 2em;
    }
    .page h3 {
        font-size: 1.8em;
    }
    
    .page-header.o-nas {
        display: block;
        background-image: url(../img/hlavicka_mapa.jpg);
    }
    .page-header.o-nas h2 {
        font-family: Museo-700;
        font-size: 3em;
        color: #ffffff;
        text-transform: uppercase;
        margin: 0 auto;
        line-height: 1.2em;
        display: inline-block;
        vertical-align: middle;
        padding: 0 8%;
    }
}

.col-2 {
    overflow: hidden;
}
.col-2 .column {
    float: left;
    width: 50%;
    box-sizing: border-box;
}
.col-2 .column:first-of-type {
    padding-right: 2.5%;
}
.col-2 .column:last-of-type {
    padding-left: 2.5%;
}

@media only screen and (max-width: 800px) {
    .col-2 .column,
    .col-2 .column:first-of-type,
    .col-2 .column:last-of-type {
        width: 100%;
        float: none;
        padding: 0;
    }
}

figure.skewed-rect {
    position: relative;
    margin: 6px 0;
    padding: 20px 5% 20px 70px;
    background: url(../img/figure_bullet.png) no-repeat left center;
}
figure.skewed-rect::before {
    content: "";
    width: 200vw;
    height: 100%;
    position: absolute;
    top: 0;
    background: rgba(0, 0, 0, .06);
}
figure.skewed-rect.left::before {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    left: -5%;
}
figure.skewed-rect.right::before {
    -webkit-transform: skewX(-20deg);
    transform: skewX(-20deg);
    right: -5%;
}
figure.skewed-rect figcaption {
    font-family: Museo-700;
    font-size: 2.4em;
    color: #00597d;
    text-align: left;
    margin: 0 0 10px 0;
}
figure.skewed-rect p {
    margin: 10px 0;
}
figure.skewed-rect.type-2 p {
    font-family: Museo-500;
    font-size: 1.8em;
    color: #00597d;
}
@media only screen and (max-width: 1100px) {
    figure.skewed-rect {
        margin: 6px 5%;
    }
}
/* MOBILE */
@media only screen and (max-width: 740px) {
    figure.skewed-rect {
        margin: 6px 8%;
        padding: 10px 3% 5px 45px;
        background-size: 30px;
        background-position: 3px center;
    }
    figure.skewed-rect.left::before {
        -webkit-transform: skewX(15deg);
        transform: skewX(15deg);
    }
    figure.skewed-rect.right::before {
        -webkit-transform: skewX(-15deg);
        transform: skewX(-15deg);
    }
    figure.skewed-rect figcaption {
        font-size: 1.9em;
    }
    figure.skewed-rect.type-2 p {
        font-size: 1.5em;
    }
}

.page h3.fork {
    position: relative;
    margin: 70px 0 40px;
}
.page h3.fork::before {
    content: "";
    position: absolute;
    display: block;
    width: 350px;
    height: 68px;
    bottom: -80px;
    left: 50%;
    -webkit-transform: translate(-50%);
    transform: translate(-50%);
    background: url(../img/fork.png) no-repeat center bottom;
}
@media only screen and (max-width: 800px) {
    .page h3.fork::before {
        display: none;
    }   
}
    
.circle-numero-uno,
.circle-numero-dos {
    padding-top: 100px;
}
.circle-numero-uno {
    background: url(../img/circle_numero_uno@2x.png) no-repeat center top;
    background-size: 84px;
}
.circle-numero-dos {
    background: url(../img/circle_numero_dos@2x.png) no-repeat center top;
    background-size: 84px;
}

.button.rectangle {
    display: inline-block;
    border: 1px solid #383127;
    border-radius: 3px;
    padding: 15px 60px 13px;
    font-family: Museo-700;
    font-size: 1.2em;
    text-transform: uppercase;  
    text-decoration: none;
    color: #383127;
    cursor: pointer;
}

.button.circle.down,
.button.circle.up {
    display: block;
    /*background: url(../img/arrow_down_page@2x.png) no-repeat center center;*/
    /*background-size: 100%;*/
    width: 37px;
    height: 37px;
    cursor: pointer;
    transition: background .3s ease;
}
.button.circle.down {
    margin: 5px auto 0;
}
.button.circle.up {
    margin: 5px auto 0;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}
.button.circle.down:hover,
.button.circle.up:hover {
    /*background-image: url(../img/arrow_down_page_hover@x2.png);*/
}
/* MOBILE */
@media only screen and (max-width: 740px) {
    .button.circle.down,
    .button.circle.up {
        /*background: url(../img/arrow_down_page_mobile@2x.png) no-repeat center center;
        background-size: 100%;*/
        width: 55px;
        height: 55px;    
    }
    .button.circle.down:hover,
    .button.circle.up:hover {
        /*background-image: url(../img/arrow_down_page_mobile_hover@x2.png);*/
    }
}




figure.info-text-icon {
    margin: 40px 0;
    padding: 0 0 0 80px;
    box-sizing: border-box;
}
figure.info-text-icon figcaption {
    font-family: Museo-700;
    font-size: 2.4em;
    color: #00597d;
    text-align: left;
    position: relative;
}
figure.info-text-icon figcaption::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 140px;
    height: 1px;
    background: #939598;
}
figure.info-text-icon figcaption::before {
    content: "";
    display: block;
    position: absolute;
    left: -80px;
    top: 0;
    width: 70px;
    height: 70px;
    background-repeat: no-repeat;
    background-position: center;
}

figure.info-text-icon.icon-top {
    padding: 80px 0 0 0;
}
figure.info-text-icon.icon-top figcaption::before {
    left: 0;
    top: -75px;
}
figure.info-text-icon.icon-top figcaption {
    text-transform: uppercase;
}

.grid-3 {
    overflow: hidden;
}
.grid-3 figure {
    width: 29%;
    float: left;
    box-sizing: border-box;
    margin: 2%;
}

figure.info-text-icon.top-black {
    padding: 80px 0 0 0;
}
figure.info-text-icon.top-black figcaption::before {
    left: 0;
    top: -80px;
    height: 70px;
    width: 110px;
    background-position: center left;
}
figure.info-text-icon.top-black figcaption::after {
    display: none;
}
figure.info-text-icon.top-black figcaption {
    text-transform: uppercase;
    color: #383127;
    font-size: 2em;
}
figure.info-text-icon.top-black p {
    font-size: 1.4em;
    text-transform: none;
}

figure.info-text-icon.coins figcaption::before {
    background-image: url(../img/icon_coins@2x.png);
    background-size: 51px;
}
figure.info-text-icon.calendar figcaption::before {
    background-image: url(../img/icon_calendar@2x.png);
    background-size: 49px;
}
figure.info-text-icon.arrows figcaption::before {
    background-image: url(../img/icon_arrows@2x.png);
    background-size: 61px;
}
figure.info-text-icon.arrow-down-topline figcaption::before {
    background-image: url(../img/icon_arrow_down_topline@2x.png);
    background-size: 54px;
}
figure.info-text-icon.recycle figcaption::before {
    background-image: url(../img/icon_recycle@2x.png);
    background-size: 56px;
}
figure.info-text-icon.magnifier figcaption::before {
    background-image: url(../img/icon_magnifier@2x.png);
    background-size: 58px;
}
figure.info-text-icon.book figcaption::before {
    background-image: url(../img/icon_book@2x.png);
    background-size: 52px;
}
figure.info-text-icon.wrench figcaption::before {
    background-image: url(../img/icon_wrench@2x.png);
    background-size: 66px;
}
figure.info-text-icon.calculator figcaption::before {
    background-image: url(../img/icon_calculator@2x.png);
    background-size: 54px;
}
figure.info-text-icon.zero figcaption::before {
    background-image: url(../img/icon_zero@2x.png);
    background-size: 45px;
}
figure.info-text-icon.bubble figcaption::before {
    background-image: url(../img/icon_bubble@2x.png);
    background-size: 79px;
}
figure.info-text-icon.bars figcaption::before {
    background-image: url(../img/icon_bars@2x.png);
    background-size: 68px;
}
figure.info-text-icon.guy figcaption::before {
    background-image: url(../img/icon_guy@2x.png);
    background-size: 50px;
}
figure.info-text-icon.more-coins figcaption::before {
    background-image: url(../img/icon_more_coins@2x.png);
    background-size: 106px;
}

/* MOBILE */
@media only screen and (max-width: 740px) {

    figure.info-text-icon {
        margin: 20px 0;
        padding: 0;
        box-sizing: border-box;
    }
    figure.info-text-icon figcaption {
        font-size: 1.6em;
        text-align: center;
        text-transform: uppercase;
        margin: 0 40px;
    }
    figure.info-text-icon figcaption::after {
        content: "";
        display: block;
        position: absolute;
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        bottom: -8px;
        width: 90%;
        max-width: 305px;
        height: 1px;
        background: #939598;
    }
    figure.info-text-icon figcaption::before {
        content: "";
        display: block;
        position: relative;
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        top: 0px;
        width: 70px;
        height: 70px;
        background-repeat: no-repeat;
        background-position: center;
    }   
    figure.info-text-icon.icon-top {
        padding: 30px 0 0 0;
    }
    figure.info-text-icon.icon-top figcaption::before {
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        top: -10px;
    }
    figure.info-text-icon.icon-top figcaption {
        text-transform: uppercase;
    }
    
    .grid-3 {
        text-align: left;
    }
    
    .grid-3 figure.info-text-icon.top-black {
        width: 40%;
        margin: 4.5%;
        float: none;
        display: inline-block;
        vertical-align: top;
    }
    
    figure.info-text-icon.top-black {
        padding: 0;
    }
    figure.info-text-icon.top-black figcaption::before {
        position: relative;
        left: 0;
        top: -15px;
        height: 70px;
        width: 110px;
        background-position: center left;
        -webkit-transform: none;
        transform: none;
    }
    figure.info-text-icon.top-black figcaption::after {
        display: none;
    }
    figure.info-text-icon.top-black figcaption {
        font-size: 1.6em;
        margin: 0;
        text-align: left;
    }
    figure.info-text-icon.top-black p {
        text-align: left;
    }
    
   


}



.compass-line {
    width: 100%;
    height: 140px;
    border-top: 1px solid #383127;
    background: url(../img/compass_half.png) no-repeat center top;
    margin: 40px 0 70px;
}
.img-banner {
    width: 100vw;
    height: 300px;
    position: relative;
    left: 50%;
    -webkit-transform: translate(-50%);
    transform: translate(-50%);
    background-repeat: no-repeat;
    /*background-size: cover;*/
    background-position: center;
    margin: 65px 0;
}
.img-banner.rope {
    background-image: url(../img/dulezite-informace_lano.jpg);
    background-position: 50% 20%;/*přidáno - provaz*/
    background-size: 100%;
}


/* MOBILE */
@media only screen and (max-width: 740px) {
    .compass-line {
        display: none;
    }
    .img-banner {
        height: 170px;
    }
    
    
}


table.basic {
    margin: 20px auto;
    position: relative;
    font-family: Museo-500;
    border-collapse: collapse;
    min-width: 600px;
}
/* table background gradient */
table.basic::before {
    content: "";
    display: block;
    width: 1028px;
    height: 162px;
    background: url(../img/table_gradient.png) no-repeat center top;
    position: absolute;
    left: 50%;
    top: 0;
    -webkit-transform: translate(-50%);
    transform: translate(-50%);
}
table.basic th,
table.basic td {
    font-size: 1.5em;
    text-align: left;
    padding: 12px 0px;
    border-top: 1px solid rgba(56, 49, 39, .12);
}
table.basic th {
    font-weight: normal;
    text-transform: uppercase;
}
table.basic td {
    
}
table.basic tr:first-of-type th,
table.basic tr:first-of-type td {
    border: 0 none;
    padding-top: 20px;
}
table.basic th:last-child,
table.basic td:last-child {
    text-align: right;
    margin-right: 10px;
}

table.basic caption {
    margin-left: -20px;
    margin-right: -20px;
    height: 36px;
    line-height: 36px;
    background: #7a7369;
    color: white;
    font-family: Museo-700;
    font-size: 2em;
    position: relative;
    transition: background 0.3s ease;
}
table.basic.collapsible caption:hover {
    cursor: pointer;
    background: #383127;
}
table.basic.collapsible caption::after {
    content: "";
    display: block;
    height: 17px;
    width: 10px;
    background: url(../img/table_basic_arrow_right.png) no-repeat center center;
    position: absolute;
    top: 9px;
    right: 40px;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    -webkit-transition: -webkit-transform .5s ease;
    transition: transform .5s ease;
}

table.basic.collapsible caption.rotate::after {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
}
table.basic.collapsible.collapsed tbody {
    display: none;
    height: 0;
}
table.basic.collapsible.collapsed caption::after {
    -webkit-transform: none;
    transform: none;
}
table.basic.collapsible.collapsed::before {
    display: none;
}

table.basic.no-shadow::before {
    display: none !important;
}

/* MOBILE */
@media only screen and (max-width: 740px) {
    
    table.basic {
        min-width: 0;
        width: 100%;
    }
    table.basic::before {
        background-size: 50%;
    }
    table.basic th,
    table.basic td {
        font-size: 1.3em;
        vertical-align: top;
    }
    table.basic th:first-child,
    table.basic td:first-child {
        padding-right: 15px;
    }
    
}


/*** files download ***/


ul.inline {
    display: block;
    margin: 0;
    padding: 0;
    list-style: none;
}
ul.inline li {
    display: inline-block;
    vertical-align: top;
}

.big-square-button {
    display: inline-block;
    height: 215px;
    width: 215px;
    margin: 20px 0 20px;
    text-decoration: none;
    box-sizing: border-box;
    position: relative;
    z-index: 0;
}
.big-square-button span.top-layer {
    display: block;
    width: 100%;
    height: 100%;
    background-color: #4d879a;
    color: white;
    font-family: AdelleBasic-Light;
    font-size: 1.6em;
    padding: 25px;
    box-sizing: border-box;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transition: transform 0.4s;
    transition: transform 0.4s;
}
.big-square-button span.bot-layer {
    display: block;
    position: absolute;
    box-sizing: border-box;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70px;
    line-height: 70px;
    z-index: -1;
    font-family: Museo-700;
    font-size: 1.4em;
    color: white;
    padding: 0 0 0 10px;
    background: url(../img/download_button_arrow.png) no-repeat 34px center #00597d;
}
.big-square-button:hover span.top-layer {
    -webkit-transform: translateY(-70px);
    transform: translateY(-70px);
}
.big-square-button.icon-pdf span.top-layer {
    background-image: url(../img/icon_pdf_big.png);
    background-repeat: no-repeat;
    background-position: center 100px;
}

.big-square-button.bg-transition {
    margin: 20px 2px 50px;
    text-decoration: none;
    box-sizing: border-box;
    position: relative;
    z-index: 0;
}
.big-square-button.bg-transition span.top-layer {
    background-color: #1c5369;
    color: #37a5d2;
    font-family: Museo-500;
    font-size: 1.6em;
    padding: 130px 25px 25px 25px;
    box-sizing: border-box;
    -webkit-transition: background 0.4s ease, color .4s ease;
    transition: background 0.4s ease, color .4s ease;
}
.big-square-button.bg-transition span.bot-layer {
    display: none;
}
.big-square-button.bg-transition:hover span.top-layer {
    -webkit-transform: none;
    transform: none;
    background-color: #37a5d2;
    color: white;
}

.big-square-button.bg-transition .top-layer {
    background-repeat: no-repeat;
    background-position: center 55px;
}
.big-square-button.bg-transition.icon-tel .top-layer {
    background-image: url(../img/icon_tel_blue@2x.png);
    background-size: 44px;
}
.big-square-button.bg-transition.icon-tel:hover .top-layer {
    background-image: url(../img/icon_tel_white@2x.png);
}
.big-square-button.bg-transition.icon-linkedin .top-layer {
    background-image: url(../img/icon_linkedin_blue@2x.png);
    background-size: 44px;
}
.big-square-button.bg-transition.icon-linkedin:hover .top-layer {
    background-image: url(../img/icon_linkedin_white@2x.png);
}
.big-square-button.bg-transition.icon-mail .top-layer {
    background-image: url(../img/icon_mail_blue@2x.png);
    background-size: 44px;
}
.big-square-button.bg-transition.icon-mail:hover .top-layer {
    background-image: url(../img/icon_mail_white@2x.png);
}

ul.files-dwnld {
    display: block;
    margin: 0 auto;
    padding: 0;
    list-style: none;
    text-align: left;
    overflow: hidden;
    max-width: 800px;
}
ul.files-dwnld li {
    display: inline-block;
    float: left;
    width: 50%;
    box-sizing: border-box;
    margin: 5px 0;
}
ul.files-dwnld li a {
    display: inline-block;
    font-size: 1.5em;
    background-repeat: no-repeat;
    background-position: left center;
    min-height: 35px;
    padding: 16px 0 0px 50px;
    text-decoration: none;
}
ul.files-dwnld li a:hover {
    color: #00597d;
    text-decoration: underline;
}
ul.files-dwnld li a.icon-pdf {
    background-image: url(../img/icon_pdf_small.png);
}

/* MOBILE */
@media only screen and (max-width: 740px) {

   .big-square-button {
        display: inline-block;
        height: 165px;
        width: 165px;
        margin: 0;
        text-decoration: none;
        box-sizing: border-box;
        position: relative;
        z-index: 0;
    } 
    .big-square-button.bg-transition {
        height: 215px;
        width: 215px;
        margin: 10px;
    }
    .big-square-button span.top-layer {
        font-size: 1.4em;
        padding: 15px;
    }
    .big-square-button span.bot-layer {
        font-size: 1.1em;
        background: url(../img/download_button_arrow.png) no-repeat 18px center #00597d;
    }
    .big-square-button.icon-pdf span.top-layer {
        background-image: url(../img/icon_pdf_big.png);
        background-repeat: no-repeat;
        background-position: center 85px;
        background-size: 45px;
    }
    
    ul.files-dwnld li {
        width: 100%;
    }
    ul.files-dwnld li a.icon-pdf {
        background-image: url(../img/icon_pdf_small@2x.png);
        background-size: 35px;
    }
    
}



.side-img-container {
    position: relative;
    clear: both;
}
figure.side-img {
    min-height: 280px;
    position: relative;
    max-width: 420px;
    padding: 30px 60px 30px 3%;
    box-sizing: border-box;
    margin: 0;
}
figure.side-img::before {
    content: "";
    display: block;
    position: absolute;
    width: 60vw;
    height: 100%;
    top: 0;
    background-repeat: no-repeat;
    background-size: cover;
}
figure.side-img.from-right::before {
    left: 100%;
}
figure.side-img.from-left {
    padding: 30px 3% 30px 60px;
    float: right;
}
figure.side-img.from-left::before {
    right: 100%;
}
figure.side-img.chain::before {
    background-image: url(../img/onas_racci.jpg);
}
figure.side-img.compass::before {
    background-image: url(../img/onas_kompas.jpg);
}
figure.side-img.lighthouse::before {
    background-image: url(../img/onas_majak.jpg);
    background-position: center;
}
figure.side-img figcaption {
    font-family: Museo-700;
    font-size: 6em;
    color: #00597d;
    position: relative;
    text-align: left;
    margin: 0 0 25px 0;
}
figure.side-img figcaption::after {
    content: "";
    display: block;
    width: 140px;
    height: 1px;
    background: #939598;
    position: absolute;
    bottom: -10px;
}
figure.side-img p {}

.scroll-animate figure.side-img::before {
    opacity: 0;
}
.scroll-animate.animated figure.side-img.from-right::before {
    -webkit-animation: fadeInRight 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) both;
    animation: fadeInRight 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) both;
}
.scroll-animate.animated figure.side-img.from-left::before {
    -webkit-animation: fadeInLeft 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) both;
    animation: fadeInLeft 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) both;
}
.scroll-animate.delayed :first-child figure.side-img::before {
    -webkit-animation-delay: .4s;
    animation-delay: .4s;
}
.scroll-animate.delayed :nth-child(2) figure.side-img::before {
    -webkit-animation-delay: .55s;
    animation-delay: .55s;
}
.scroll-animate.delayed :nth-child(3) figure.side-img::before {
    -webkit-animation-delay: .7s;
    animation-delay: .7s;
}

.animate-children > * {
    opacity: 0;
}
.animate-children.animated > * {
    opacity: 1;
    -webkit-animation-duration: 0.6s;
    -webkit-animation-fill-mode: both;
    -webkit-animation-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
    animation-duration: 0.6s;
    animation-fill-mode: both;
    animation-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
}
.animate-children.animated > .from-right {
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight;
}
.animate-children.animated > .from-left {
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
}
.animate-children > :first-child {
    -webkit-animation-delay: .3s;
    animation-delay: .3s;
}
.animate-children > :nth-child(2) {
    -webkit-animation-delay: .6s;
    animation-delay: .6s;
}
.animate-children > :nth-child(3) {
    -webkit-animation-delay: .9s;
    animation-delay: .9s;
}

.animate-icons .from-bot figcaption::before {
    opacity: 0;
}
.animate-icons.animated .from-bot figcaption::before {
     opacity: 1;
    -webkit-animation-duration: 0.8s;
    -webkit-animation-fill-mode: backwards;
    -webkit-animation-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
    animation-duration: 0.8s;
    animation-fill-mode: backwards;
    animation-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);   
}
.animate-icons.animated .from-bot figcaption::before {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}
.animate-icons.animated :nth-child(1) figcaption::before {
    -webkit-animation-delay: .15s;
    animation-delay: .15s;
}
.animate-icons.animated :nth-child(2) figcaption::before {
    -webkit-animation-delay: .3s;
    animation-delay: .3s;
}
.animate-icons.animated :nth-child(3) figcaption::before {
    -webkit-animation-delay: .45s;
    animation-delay: .45s;
}
.animate-icons.animated :nth-child(4) figcaption::before {
    -webkit-animation-delay: .6s;
    animation-delay: .6s;
}
.animate-icons.animated :nth-child(5) figcaption::before {
    -webkit-animation-delay: .75s;
    animation-delay: .75s;
}

/* MOBILE */
@media only screen and (max-width: 740px) { 
    figure.side-img {
        min-height: 0;
        max-width: none;
        padding: 0;
    }
    figure.side-img::before {
        display: none;
    }
    figure.side-img.from-left {
        padding: 0;
        float: none;
    }
    figure.side-img.from-right {
        padding: 0;
        float: none;
    }
    figure.side-img figcaption {
        font-family: Museo-700;
        font-size: 4em;
        color: #00597d;
        position: relative;
        text-align: center;
        margin: 0 0 25px 0;
    }
    figure.side-img figcaption::after {
        content: "";
        display: block;
        width: 140px;
        height: 1px;
        background: #939598;
        position: absolute;
        bottom: -10px;
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }
    figure.side-img p {}

}


/*** cards - people ***/ 

.cards {
    max-width: 850px;
    overflow: hidden;
    margin: 50px auto 60px;
}
.cards .card {
    width: 50%;
    float: left;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: black;
}
.cards .card img {
    width: 100%;
    display: block;
    -webkit-transition: transform .3s ease;
    transition: transform .3s ease;
}
.cards .card .overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
    opacity: 0;
    -webkit-transition: opacity .3s ease;
    transition: opacity .3s ease;
}
.cards .card .overlay .name {
    display: block;
    margin: 45% 5% 5px 5%;
    font-family: Museo-700;
    color: #ffffff;
    font-size: 4.6em;
}
.cards .card .overlay .pos {
    display: block;
    margin: 0 5%;
    font-family: Verdana;
    font-size: 1.8em;
    text-transform: uppercase;
    font-weight: normal;
    color: #37a5d2;
}
.cards .card:hover .overlay {
    opacity: 1;
}
.cards .card:hover img {
    -webkit-transform: scale(1.03);
    transform: scale(1.03);
}

@media only screen and (max-width: 740px) { 

    .cards .card .overlay .name {
        margin: 35% 5% 5px 5%;
        font-size: 2.8em;
    } 
    .cards .card .overlay .pos {
        margin: 0 5%;
        font-size: 1.3em;
    }

}


/* contact info */

.contact-info {
    width: 100%;
    height: 400px;
    background: white;
    position: relative;
}
.contact-info::before {
    content: "";
    display: block;
    width: 100vw;
    height: 100%;
    position: absolute;
    left: 0;
    -webkit-transform: translate(-100%);
    transform: translate(-100%);
    background: white;
}
.contact-info .address {
    width: 50%;
    height: 100%;
    float: left;
    text-align: left;
    padding: 50px 20px;
    box-sizing: border-box;
}
.contact-info .address h4 {
    font-family: Museo-700;
    font-size: 2.4em;
    color: #00597d;
    text-transform: uppercase;
    margin: 25px 0;
}
.contact-info .address p {
    font-family: AdelleBasic-Light;
    font-size: 1.5em;
    color: #171717;
    margin: 25px 0;
}
.contact-info .map {
    width: 50vw;
    height: 100%;
    position: absolute;
    left: 50%;
}
.contact-info .map.mobile {
    background: url(../img/map.png) no-repeat center center;
    background-size: cover;
    cursor: pointer;
}

@media only screen and (max-width: 740px) { 
 
    #contact-info {
        display: none;
    }
    
    .contact-info {
        height: auto;
    }
    .contact-info::before {
        display: block;
        width: 100vw;
        height: 100%;
        position: absolute;
        left: -5%;
        -webkit-transform: none;
        transform: none;
        z-index: -1;
    }
    .contact-info .address {
        display: inline-block;
        width: auto;
        height: auto;
        float: none;
        text-align: left;
        padding: 5px 20px;
        box-sizing: border-box;
    }
    .contact-info .address h4 {
        font-size: 1.9em;
        text-align: center;
    }
    .contact-info .address p {
        font-size: 1.4em;
    }
    .contact-info .map {
        width: 100vw;
        height: 250px;
        position: relative;
        left: -5%;
        background: url(../img/map_mobile.jpg) no-repeat center center;
        background-size: cover;
    }
    
}


/* contact form */

.contact-form {
    width: 100%;
    min-height: 320px;
    background: #00597d;
    position: relative;
    padding: 20px 0;
    box-sizing: border-box;
}
.contact-form::before {
    content: "";
    display: block;
    width: 100vw;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    -webkit-transform: translate(-100%);
    transform: translate(-100%);
    background: #00597d;
}
.contact-form::after {
    content: "";
    display: block;
    width: 100vw;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    -webkit-transform: translate(100%);
    transform: translate(100%);
    background: #00597d;
}

.contact-form h4 {
    font-family: Museo-700;
    color: white;
    font-size: 2.4em;
    text-transform: uppercase;
    display: block;
    margin: 20px auto 50px;
}

.contact-form input:not([type=checkbox]) {
    height: 34px;
    line-height: 34px;
    padding: 0 12px;
    box-sizing: border-box;
    border-radius: 2px;
    font-family: AdelleBasic-Light;
    font-size: 1.4em;
    border: 0 none;
}
.contact-form input.half-row {
    width: 300px;
    margin: 5px;
}
.contact-form input.row {
    width: 610px;
    margin: 5px;
}
/* MOBILE */
@media only screen and (max-width: 740px) {
    .contact-form input.row {
        width: 300px;    
    }
}
.contact-form button[type=submit] {
    border-radius: 4px;
    background-color: #ffffff;
    box-shadow: 0px 1px 3px 0px rgba(30, 27, 28, 0.37);
    width: 166px;
    height: 41px;
    border: 0 none;
    margin: 25px auto;
    display: block;
    font-family: Museo-500;
    font-size: 1.3em;
    color: #505050;
    text-transform: uppercase;
    cursor: pointer;
    -webkit-transition: background .3s ease;
    transition: background .3s ease;
}
.contact-form button[type=submit]:hover {
    background: #cee0e8;
    color: #0e5c80;
}


/*** PPL POPUP OVERLAY ***/

.fullscreen-overlay {
    display: none;
    opacity: 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    background: black;
    overflow: auto;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 85px;
    -webkit-perspective: 1000px;
    perspective: 1000px;
}

.overlay-close {
    display: none;
    position: fixed;
    top: 20px;
    right: 37px;
    width: 30px;
    height: 30px;
    z-index: 11000;
    background: black;
}
.overlay-close .close-button {
    display: block;
    width: 30px;
    height: 30px;
    background: url(../img/fullscreen_close_cross.png) no-repeat center center;
    background-size: 12px;
    cursor: pointer;
}


    .close-button, .close-button * {
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }
    .close-button .pie {
        width: 50%;
        height: 100%;
        position: absolute;
        background: transparent;
        border: 1px solid white;
    }
    .close-button .spinner {
        border-radius: 100% 0 0 100% / 50% 0 0 50%;
        z-index: -200;
        border-right: none;
        animation: rota .6s linear forwards paused;
        transform-origin: right center;
        -webkit-animation: rota .6s linear forwards paused;
        -webkit-transform-origin: right center;
    }
    .close-button .filler {
        display: block;
        border-radius: 0 100% 100% 0 / 0 50% 50% 0;
        z-index: -300;
        border-left: none;
        -webkit-animation: fill .6s steps(1, end) forwards paused;
        animation: fill .6s steps(1, end) forwards paused;
        left: 50%;
        opacity: 0;
    }
    .close-button .mask {
        width: 50%;
        height: 100%;
        position: absolute;
        z-index: -100;
        opacity: 1;
        background: black;
        -webkit-animation: mask .6s steps(1, end) forwards paused;
        animation: mask .6s steps(1, end) forwards paused;
    }
    .close-button:hover .mask,
    .close-button:hover .pie {
        -webkit-animation-play-state: running; 
        animation-play-state: running; 
    }

@-webkit-keyframes rota {
  0%   { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}
@keyframes rota {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@-webkit-keyframes fill {
  0%        { opacity: 0; }
  50%, 100% { opacity: 1; }
}
@keyframes fill {
  0%        { opacity: 0; }
  50%, 100% { opacity: 1; }
}

@-webkit-keyframes mask {
  0%        { opacity: 1; }
  50%, 100% { opacity: 0; }
}  
@keyframes mask {
  0%        { opacity: 1; }
  50%, 100% { opacity: 0; }
}  

.fullscreen-overlay .content {
    text-align: center;
    max-width: 665px;
    margin: 0 auto;
}
.fullscreen-overlay img {
    border-top: 12px solid #37a5d2;
    max-width: 100%;
}
.fullscreen-overlay hgroup {
    margin: 80px 0;
}
.fullscreen-overlay h1 {
    font-family: Museo-700;
    font-size: 4.6em;
    color: white;
    text-align: center;
    margin: 10px 0 5px;
}
.fullscreen-overlay h2 {
    font-family: Verdana;
    font-size: 1.8em;
    color: #37a5d2;
    text-align: center;
    text-transform: uppercase;
    font-weight: normal;
    margin: 0px 0 10px 0;
}
.fullscreen-overlay p {
    font-family: AdelleBasic-Light;
    font-size: 1.5em;
    color: white;
    text-align: justify;
}

/* MOBILE */
@media only screen and (max-width: 740px) {
 
    .fullscreen-overlay {
        padding: 50px 5%;
    }
    .fullscreen-overlay img {
        border-top: 8px solid #37a5d2;
        max-width: 70%;
    }
    .overlay-close {
        top: 10px;
        right: 10px;
    }
    
    .fullscreen-overlay ul.inline {
        margin-top: 60px;
    }
    
}

@-webkit-keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  50% {
    opacity: 1;
  }
}

@keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  50% {
    opacity: 1;
  }
}

.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
}

@-webkit-keyframes zoomOut {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  100% {
    opacity: 0;
  }
}

@keyframes zoomOut {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  100% {
    opacity: 0;
  }
}

.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}

@-webkit-keyframes rotateOut {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}

@keyframes rotateOut {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}

.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
}

@-webkit-keyframes flipInX {
  0% {
    -webkit-transform: perspective(1000px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(1000px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
        -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  }

  40% {
    -webkit-transform: perspective(1000px) rotate3d(1, 0, 0, -10deg);
    transform: perspective(1000px) rotate3d(1, 0, 0, -10deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
        -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  }

  60% {
    -webkit-transform: perspective(1000px) rotate3d(1, 0, 0, 5deg);
    transform: perspective(1000px) rotate3d(1, 0, 0, 5deg);
    opacity: 1;
        -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  }

  80% {
    -webkit-transform: perspective(1000px) rotate3d(1, 0, 0, 0deg);
    transform: perspective(1000px) rotate3d(1, 0, 0, 0deg);
        -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  }

  100% {
    -webkit-transform: perspective(1000px) rotate3d(1, 0, 0, 0deg);
    transform: perspective(1000px) rotate3d(1, 0, 0, 0deg);
        -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  }
}

@keyframes flipInX {
  0% {
    -webkit-transform: perspective(1000px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(1000px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
        -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  }

  40% {
    -webkit-transform: perspective(1000px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(1000px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
        -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  }

  60% {
    -webkit-transform: perspective(1000px) rotate3d(1, 0, 0, 5deg);
    transform: perspective(1000px) rotate3d(1, 0, 0, 5deg);
    opacity: 1;
        -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  }

  80% {
    -webkit-transform: perspective(1000px) rotate3d(1, 0, 0, 0deg);
    transform: perspective(1000px) rotate3d(1, 0, 0, 0deg);
        -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  }
  100% {
    -webkit-transform: perspective(1000px) rotate3d(1, 0, 0, 0deg);
    transform: perspective(1000px) rotate3d(1, 0, 0, 0deg);
        -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  }
}

.flipInX {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

@-webkit-keyframes flipOutX {
  0% {
    -webkit-transform: perspective(1000px) rotate3d(1, 0, 0, 0deg);
    transform: perspective(1000px) rotate3d(1, 0, 0, 0deg);
  }

  25% {
    -webkit-transform: perspective(1000px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(1000px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
    
    65% {
        opacity: 0;
    }

  100% {
    -webkit-transform: perspective(1000px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(1000px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}

@keyframes flipOutX {
  0% {
    -webkit-transform: perspective(1000px) rotate3d(1, 0, 0, 0deg);
    transform: perspective(1000px) rotate3d(1, 0, 0, 0deg);
  }

  25% {
    -webkit-transform: perspective(1000px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(1000px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  650% {
    opacity: 0;
  }

  100% {
    -webkit-transform: perspective(1000px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(1000px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}

.flipOutX {
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

.fullscreen-overlay.animated {
    display: block;
    opacity: 1;
  -webkit-animation-duration: .8s;
  animation-duration: .8s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.fullscreen-overlay.disable-transform {
    -webkit-transform: none !important;
    transform: none !important;   
    -webkit-animation-fill-mode: none !important;
    animation-fill-mode: none !important;
}



/*** ANIMATED MENU ***/

.navbar-button {
	top: 18px;
	right: 30px;
	margin: 0px;
	display: block;
	width: 24px;
	height: 15px;
	cursor: pointer;
	position: fixed;
	z-index: 999;
	background: url(../img/icon_rect.png) repeat center;
}

.navbar-button-close {
	top: 18px;
	right: 30px;
	margin: 0px;
	display: block;
	width: 24px;
	height: 14px;
	cursor: pointer;
	position: absolute;
	z-index: 1000;
	background: url(../img/arrow_up_white@2x.png) repeat center;
    background-size: 24px;
}

.navbar {
    display: none;
	height: 50px;
	line-height: 50px;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	-webkit-transform: translate3d(0,-50px,0);
	transform: translate3d(0,-50px,0);
	-webkit-transition: -webkit-transform 0.4s;
	transition: transform 0.4s;
}

.navbar nav {
	position: absolute;
	width: 100%;
	z-index: 1000;
	text-align: center;
}

.navbar nav a {
	color: #ffffff;
	font-size: 1.4em;
	text-decoration: none;
	text-transform: uppercase;
	padding: 0px 25px;
	display: inline-block;
    -webkit-transition: font-size .5s ease, padding .5s ease;
    transition: font-size .5s ease, padding .5s ease;
}

@media only screen and (max-width: 900px) {
    .navbar nav a {
        font-size: 1.2em;
        padding: 0px 15px;
    }
}

.navbar nav a, .navbar-button-close, .navbar nav .frame {
    opacity: 0;
    -webkit-transform: translate3d(0px, -70px, 0px);
    transform: translate3d(0px, -70px, 0px);
    -webkit-transition: opacity 0.8s ease 0s, transform 0.8s ease 0s;
    transition: opacity 0.8s ease 0s, transform 0.8s ease 0s;
}

.navbar nav .frame {
    position: relative;
    margin-top: -45px;
    height: 30px;
    border: 1px solid #ffffff;
    border-radius: 3px;
    z-index: -1;
}

.morph-shape {
	position: absolute;
	width: 100%;
	width: calc(100% + 200px);
	height: 100%;
	top: 0;
	left: -100px;
	fill: #00597d;
	-webkit-transition: -webkit-transform 0.4s;
	transition: transform 0.4s;
	-webkit-transform: translate3d(100px,0,0);
	transform: translate3d(100px,0,0);
	pointer-events: none;
}

/*** MOBILE ***/
@media only screen and (max-width: 740px) {

    .navbar {
        display: none;
        opacity: 0;
    }
    .navbar nav {
        position: absolute;
        width: 100%;
        z-index: 1000;
        text-align: center;
    }
    
    .navbar-button {
        top: 18px;
        right: 30px;
        margin: 0px;
        display: block;
        width: 24px;
        height: 15px;
        cursor: pointer;
        position: fixed;
        z-index: 999;
        background: url(../img/icon_rect.png) repeat center;
    }

    .navbar nav a {
        color: #ffffff;
        font-size: 1.8em;
        text-decoration: none;
        text-transform: uppercase;
        padding: 0px 25px;
        display: block;
        border: 2px solid white;
        border-radius: 5px;
        margin: 18px 0;
    }
    
    .navbar nav .frame {
        display: none;
    }
    
    .navbar .icon-list {
        max-width: 270px;
        margin: 80px auto;
    }


}

/* Shown menu */
.show-menu .navbar,
.show-menu .navbar nav a,
.show-menu .navbar nav .frame,
.show-menu .navbar-button-close,
.show-menu .morph-shape,
.show-menu .content::before {
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

.show-menu .content::before {
	-webkit-transition-delay: 0s;
	transition-delay: 0s;
}

.show-menu .navbar nav a,
.show-menu .navbar nav .frame,
.show-menu .navbar-button-close,
.show-menu .content::before {
	opacity: 1;
}

.show-menu .navbar nav .frame.item5,
.show-menu .navbar nav a:nth-child(5) {
	-webkit-transition-delay: 0.05s;
	transition-delay: 0.05s;
}

.show-menu .navbar nav .frame.item4,
.show-menu .navbar nav a:nth-child(4) {
	-webkit-transition-delay: 0.1s;
	transition-delay: 0.1s;
}

.show-menu .navbar nav .frame.item3,
.show-menu .navbar nav a:nth-child(3) {
	-webkit-transition-delay: 0.15s;
	transition-delay: 0.15s;
}

.show-menu .navbar nav .frame.item2,
.show-menu .navbar nav a:nth-child(2) {
	-webkit-transition-delay: 0.2s;
	transition-delay: 0.2s;
}

.show-menu .navbar nav .frame.item1,
.show-menu .navbar nav a:nth-child(1) {
	-webkit-transition-delay: 0.25s;
	transition-delay: 0.25s;
}

.show-menu .navbar-button-close {
	-webkit-transition-delay: 0.01s;
	transition-delay: 0.01s;
}

.show-menu .content::before {
	-webkit-transition: opacity 0.8s;
	transition: opacity 0.8s;
}


.mobile-menu {
    display: none;
}

/*** MOBILE ***/
@media only screen and (max-width: 740px) {
 
    
    .mobile-menu {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 0;
        opacity: 0;
        z-index: 1000;
        background: #00597e;
        overflow: hidden;
        -webkit-transform: translate3d(0,-250px,0);
        transform: translate3d(0,-250px,0);
        -webkit-transition: -webkit-transform 0.4s;
        transition: transform 0.4s;
    }
    
    .mobile-menu .mobile-menu-close {
        top: 18px;
        right: 30px;
        margin: 0px;
        display: block;
        width: 27px;
        height: 14px;
        cursor: pointer;
        position: absolute;
        z-index: 1000;
        background: url(../img/arrow_up_white@2x.png) repeat center;
        background-size: 100%;
    }
    
    .mobile-menu nav a {
        color: #ffffff;
        font-size: 1.8em;
        text-decoration: none;
        text-transform: uppercase;
        padding: 0px 25px;
        line-height: 50px;
        text-align: center;
        display: block;
        border: 2px solid white;
        border-radius: 5px;
        margin: 18px 0;
    }
    
    .mobile-menu nav {
        max-width: 270px;
        margin: 100px auto;
    }
    

    .mobile-menu nav a, .mobile-menu-close {
        opacity: 0;
        -webkit-transform: translate3d(0px, -70px, 0px);
        transform: translate3d(0px, -70px, 0px);
        -webkit-transition: opacity 0.8s ease 0s, transform 0.8s ease 0s;
        transition: opacity 0.8s ease 0s, transform 0.8s ease 0s;
    }
    
    
    .show-mobile-menu .mobile-menu {
        display: block;
        opacity: 1;
        height: 100%;
    }
    .show-mobile-menu .mobile-menu,
    .show-mobile-menu .mobile-menu nav a,
    .show-mobile-menu .mobile-menu .mobile-menu-close {
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0);
    }

    .show-mobile-menu .mobile-menu nav a,
    .show-mobile-menu .mobile-menu .mobile-menu-close {
        opacity: 1;
    }

    .show-mobile-menu .mobile-menu nav a:nth-child(5) {
        -webkit-transition-delay: 0.05s;
        transition-delay: 0.05s;
    }

    .show-mobile-menu .mobile-menu nav a:nth-child(4) {
        -webkit-transition-delay: 0.1s;
        transition-delay: 0.1s;
    }

    .show-mobile-menu .mobile-menu nav a:nth-child(3) {
        -webkit-transition-delay: 0.15s;
        transition-delay: 0.15s;
    }

    .show-mobile-menu .mobile-menu nav a:nth-child(2) {
        -webkit-transition-delay: 0.2s;
        transition-delay: 0.2s;
    }

    .show-mobile-menu .mobile-menu nav a:nth-child(1) {
        -webkit-transition-delay: 0.25s;
        transition-delay: 0.25s;
    }

    .show-mobile-menu .mobile-menu .mobile-menu-close {
        -webkit-transition-delay: 0.01s;
        transition-delay: 0.01s;
    }
    
}


@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate(0px, 70px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translate(0px, 0px);
    }
}
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translate(0px, 70px);
    }
    100% {
        opacity: 1;
        transform: translate(0px, 0px);
    }
}
@-webkit-keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translate(-70px, 0px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translate(0px, 0px);
    }
}
@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translate(-70px, 0px);
    }
    100% {
        opacity: 1;
        transform: translate(0px, 0px);
    }
}
@-webkit-keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translate(70px, 0px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translate(0px, 0px);
    }
}
@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translate(70px, 0px);
    }
    100% {
        opacity: 1;
        transform: translate(0px, 0px);
    }
}


/* MOBILE */
@media only screen and (max-width: 740px) {
    .desktop-only {
        display: none;
        opacity: 0;
    }
}


/* matyas */

.ziskove-ztratove {
    font-family: Museo-700;
    color:  #383127;
    font-size: 20px;
    text-align: center;
    display: inline-block;
}

.vs-mesice {
    font-family: Museo-300;
    color:  #383127;
    font-size: 20px;
    text-align: center;
    display: inline-block;
}

#months {
    font-family: FuturaFuturis-Bold;
    font-size: 74px;
    margin: 0 auto;
    margin-left: 20%;
    display: inline-block;
    vertical-align: top;
    position: relative;
    color: #00597d;
    background: -webkit-linear-gradient(40deg, #1A6E91 22%, #00648d 39%, #36839D 56%, #3089AD 72%);
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
                linear-gradient(40deg, #1A6E91 22%, #00648d 39%, #36839D 56%, #3089AD 72%);
                background-clip: text;
                text-fill-color: transparent;
}

#verticalLine {
    border-left: 1px solid black;
    padding-left: 10px;
    display: inline-block;
    overflow: hidden;
    vertical-align: top;
    text-align: left;
    margin: 5px 0px -5px 15px;
    width: 170px;
    opacity: 0;
}

#verticalLine.animated {
    opacity: 1;
    -webkit-animation-duration: 1.5s; 
    animation-duration: 1.5s; 
    -webkit-animation-fill-mode: forwards; 
    animation-fill-mode: forwards;
    -webkit-animation-name: bounceInRight; 
    animation-name: bounceInRight;
}

.noBounce {
    opacity: 0;
}

.textBounceRight {
 -webkit-animation-duration: 1.5s;
animation-duration: 1.5s; 
-webkit-animation-fill-mode: none;
animation-fill-mode: none;
-webkit-animation-name: bounceInRight; 
animation-name: bounceInRight;
}

@-webkit-keyframes bounceInRight { 
    0% { 
        opacity: 0; 
        -webkit-transform: translateX(2000px); 
    } 
    60% { 
        opacity: 1; 
        -webkit-transform: translateX(-15px); 
    } 
    80% { 
        -webkit-transform: translateX(10px); 
    } 
    100% { 
        -webkit-transform: translateX(0); 
    } 
} 

@keyframes bounceInRight { 
    0% { 
        opacity: 0; 
        transform: translateX(2000px); 
    } 
    60% { 
        opacity: 1; 
        transform: translateX(-15px); 
    } 
    80% { 
        transform: translateX(10px); 
    } 
    100% { 
        transform: translateX(0); 
    } 
} 


/* Naira */
.button--naira {
	padding: 0;
	overflow: hidden;
	-webkit-transition: background-color 0.3s;
	transition: background-color 0.3s;
    float: none;
    height: 35px;
	width: 35px;
	display: block;
	margin: 0 auto;
    margin-top: 8px;
	border: 1px solid;
    border-radius: 50%;
	background: url("../img/arrow_down_page_brown@2x.png") no-repeat center;
    background-size: 55%;
	color: inherit;
	vertical-align: middle;
	position: relative;
	z-index: 1;
	-webkit-backface-visibility: hidden;
	-moz-osx-font-smoothing: grayscale;
}
.button--naira::before {
	content: '';
	position: absolute;
	left: -50%;
	width: 200%;
	height: 200%;
	background: url("../img/arrow_down_page_white@2x.png") no-repeat center;
    background-size: 29%;
	top: -50%;
	z-index: -1;
	-webkit-transform: translate3d(0, -100%, 0);
	transform: translate3d(0, -100%, 0);
    -webkit-transition: -webkit-transform 0.3s ease-in;
	transition: transform 0.3s ease-in;
}
.button--naira:hover {
    border-color: #00597d;
	background-color: #00597d;
	-webkit-transition: background-color 0s 0.3s;
	transition: background-color 0s 0.3s;
}
.button--naira:hover::before {
	-webkit-transform: translate3d(0, 0%, 0);
	transform: translate3d(0, 0%, 0);
}


header .sirius-logo .nav-right {
    display: block;
    width: 50px;
    height: 50px;
    position: absolute;
    top: 98px;
    cursor: pointer;
    -webkit-transition: background 0.3s ease;
    transition: background 0.3s ease;
}

header .sirius-logo .nav-left {
    display: block;
    width: 50px;
    height: 50px;
    position: absolute;
    top: 98px;
    cursor: pointer;
    -webkit-transition: background 0.3s ease;
    transition: background 0.3s ease;
}

header .sirius-logo .nav-right {
    right: -100px;
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg);
}
header .sirius-logo .nav-left {
    left: -100px;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}

/* MOBILE */
@media only screen and (max-width: 740px) {
    .button--naira {
        background-size: 30px;
    }  
}

#zakladniCharakteristiky {
    margin: 40px auto 80px;
}
