@import "/public/fonts/stylesheet.css";
* {
    font-family: VAGRoundedLTPro;
}
html,body {
    height: 100vh;
}

h1 {
    font-size: 60px;
    font-weight: bold;
    font-style: normal;
    font-stretch: normal;
    line-height: 60px;
    letter-spacing: normal;
    text-align: left;
    color: #1b316c;
    margin: 60px 0 10px 0;
    padding-bottom: 20px;
}

h1 small {
    display: inline-block;
    color: #1b316c;
    font-size: 28px;
    line-height: 28px;
}

h2 {
    font-size: 46px;
    font-weight: bold;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: center;
    color: #1b316c;
    margin: 50px 0 10px 0;
}

a.disable {
    pointer-events: none;
    cursor: default;
}

ul {
    list-style-type: none;
}

ol {
    padding-left: 15px;
}

p {
    font-size: 17px;
    font-weight: 300;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.29;
    letter-spacing: normal;
    text-align: left;
    color: #1b316c;
}

hr {
    height: 1px;
    color: #1B316C;
    background: #1B316C;
    font-size: 0;
    border: 0;
}

.navbar {
    background: #fff;
    box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.1);
    border: none;
    height: 80px;
    margin-bottom: 0;
}

.menu {
    color: #1b316c;
    font-size: 16px;
    font-style: normal;
    font-stretch: normal;
    letter-spacing: 0.8px;
    line-height: normal;
    list-style-type: none;
    margin: 0;
    padding: 0;
    text-align: left;
    height: 80px;
}

.menu li {
    position: relative;
    float: left;
    height: 100%;
}

.menu li.active {
    background: #d43e77;
}

.menu li a {
    display: inline-block;
    color: #1b316c;;
    padding: 30px 20px;
}

.menu li:first-child a {
    padding-left: 0;
}

.menu li a:hover {
    text-decoration: underline !important;
}

.menu li a.back-homepage {
    font-size: 18px;
    font-weight: bold;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: 0.8px;
    text-align: left;
    color: #1b316c;
}

.menu li a:hover {
    text-decoration: none;
}

.menu li.active a {
    color: #fff;
    font-weight: bold;
    padding-left: 30px;
}

/*.menu li.active a + span {
  display: inline-block;
  position: absolute;
  height: 80px;
  width: 10px;
}

.menu li.active a + .left {
  background: url('/public/images/menu-left.png') no-repeat;
}*/

.menu li:nth-child(2).active:before {
    content: "";
    display: inline-block;
    position: absolute;
    background: url('/public/images/menu-left.png') no-repeat;
    height: 80px;
    left: 0;
    top: 0;
    width: 10px;
}

.menu li.active:after {
    content: "";
    display: inline-block;
    position: absolute;
    background: url('/public/images/menu-right.png') no-repeat;
    height: 80px;
    right: -10px;
    top: 0;
    width: 10px;
}

.menu li a.btn.btn-pink {
    margin: 18px 0
}

.mobile-icon-menu {
    position      : absolute;
    top           : 15px;
    left         : 0;
    display       : inline-block;
    margin-bottom : 0;
    width         : 50px;
    height        : 50px;
    transition    : .5s ease-in-out;
    transform     : rotate(0deg);
}

.mobile-icon-menu span {
    position         : absolute;
    left             : 16px;
    display          : block;
    width            : 20px;
    height           : 2px;
    background-color : #12306E;
    opacity          : 1;
    transition       : .25s ease-in-out;
    transform        : rotate(0deg);
    transform-origin : left center;
}

.mobile-icon-menu span:nth-child(1) {
    top : 20px;
}

.mobile-icon-menu span:nth-child(2) {
    top : 25px;
}

.mobile-icon-menu span:nth-child(3) {
    top : 30px;

}

#mobile-menu:checked ~ .mobile-icon-menu {
    background-color : #12306E;
}

#mobile-menu:checked ~ .mobile-icon-menu span {
    background-color : #FFFFFF;
}

#mobile-menu:checked ~ .mobile-icon-menu span:nth-child(1) {
    top       : 17px;
    left      : 18px;
    transform : rotate(45deg);
}

#mobile-menu:checked ~ .mobile-icon-menu span:nth-child(2) {
    width   : 0;
    opacity : 0;
}

#mobile-menu:checked ~ .mobile-icon-menu span:nth-child(3) {
    top       : 31px;
    left      : 18px;
    transform : rotate(-45deg);
}

#mobile-menu ~ .menu-holder {
    position   : fixed;
    top        : 65px;
    left       : 0;
    display    : none;
    overflow-y : auto;
    width      : 100%;
    height     : 100%;
}

#mobile-menu:checked ~ .menu-holder {
    display : block;
}

#mobile-menu:checked ~ .menu-holder .menu {
    margin           : 0;
    background-color : #12306E;
    height           : auto;
}

#mobile-menu:checked ~ .menu-holder .menu > li {
    float         : none;
    width         : 100%;
    border-bottom : solid 1px #41598B;
    background    : url(/images/mobile-icon-arrow-r-white.png) right 30px top 20px no-repeat;
    padding       : 10px 15px 10px 30px;
}

#mobile-menu:checked ~ .menu-holder .menu > li.expandable {
    background-image : url(/images/mobile-icon-arrow-d-white.png);
}

#mobile-menu:checked ~ .menu-holder .menu > li.expandable.open {
    background-image : url(/images/mobile-icon-arrow-u-white.png);
}

#mobile-menu:checked ~ .menu-holder .menu > li > a {
    padding : 0 0 0 30px;
    color   : #FFFFFF;
}

#mobile-menu:checked ~ .menu-holder .menu > li.transparent > a {
    color : rgba(255, 255, 255, .5);
}

/*#mobile-menu:checked ~ .menu-holder .menu > li:first-of-type {
    padding       : 30px 15px 50px 30px;
    border-bottom : 0;
    background    : none;
    color         : #FFFFFF;
}*/

#mobile-menu:checked ~ .menu-holder .menu > li:first-of-type a {
    acolor : #4DB70C;
}

#mobile-menu:checked ~ .menu-holder .menu > li:first-of-type span {
    display     : block;
    font-weight : normal;
}

#mobile-menu:checked ~ .menu-holder .menu > li:last-of-type {
    margin-bottom : 50px;
}

.navbar .logo {
    display: block;
    float: right;
    background: url('/public/images/logo-cz.svg');
    height: 24px;
    margin: 24px 0;
    width: 184px;
}

.btn.btn-pink {
    background-color: #e72a77;
    color: white;
    font-size: 16px;
    font-weight: 700;
    line-height: 18px;
    padding: 12px 33px;
    text-align: center;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    border: 2px #e72a77 solid;
}

.btn.btn-blue {
    background-color: #1B316C;
    color: white !important;
    font-size: 16px;
    font-weight: 700;
    line-height: 18px;
    padding: 12px 33px;
    text-align: center;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    border: 2px #1B316C solid;
}

.homepage.first {
    background: #fff;
    min-height: 490px;
    amax-height: 468px;
    background-size: cover;
    overflow: hidden;
}

.homepage.third {
    padding: 0 30px 50px 30px;
}

.homepage p {
    margin-top: 50px;
}

.homepage .btn {
    border-radius: 100px;
    margin-top: 20px;
    font-size: 22px;
    font-weight: bold;
}

.homepage .btn.btn-large {
    font-size: 28px;
    margin-left: 0;
    padding: 30px;
    margin-bottom: 30px;
}

.homepage .partner-logo {
    display: block;
    background: url('/public/images/autoklub.svg') no-repeat;
    height: 88px;
    margin: 40px auto 30px auto;
    width: 230px;
}

/*.homepage .vimeo-embed-wrap {
    position: relative;
    width: 100%;
    height: 100%;
}*/

.homepage .vimeo-embed {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    margin: 0 10%;
    width: 80%;
    height: 80%;
    z-index: -1;
}

.homepage .pulse {
    display: block;
    -webkit-animation: pulse 4s infinite;
    -moz-animation: pulse 4s infinite;
    animation: pulse 4s infinite cubic-bezier(0.66, 0, 0, 1);
    background: transparent url('/public/images/play.svg') no-repeat;
    border-radius: 50%;
    box-shadow: 0 0 0 rgba(27, 49, 108, 0.4);
    height: 80px;
    margin: 150px auto;
    width: 80px;
}

@-webkit-keyframes pulse {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(27, 49, 108, 0.4);
    }
    50% {
        -webkit-box-shadow: 0 0 0 30px rgba(27, 49, 108, 0);
    }
    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(27, 49, 108, 0);
    }
}
@keyframes pulse {
    0% {
        -moz-box-shadow: 0 0 0 0 rgba(27, 49, 108, 0.4);
        box-shadow: 0 0 0 0 rgba(27, 49, 108, 0.4);
    }
    50% {
        -moz-box-shadow: 0 0 0 30px rgba(27, 49, 108, 0);
        box-shadow: 0 0 0 30px rgba(27, 49, 108, 0);
    }
    100% {
        -moz-box-shadow: 0 0 0 0 rgba(27, 49, 108, 0);
        box-shadow: 0 0 0 0 rgba(27, 49, 108, 0);
    }
}

.homepage .pulse:hover {
    animation: none;
}

.homepage ul.socials {
    margin: 90px 10px 0 0;
    padding: 0;
}

.homepage ul.socials li {
    float: none;
}

.homepage ul.socials li a {
    background: url('/public/images/icons.svg');
}

.main-box ul.socials li .facebook {
    background-position: -3px -10px; 
}

.main-box ul.socials li .facebook:hover {
    background-position: -53px -10px;
}

.main-box ul.socials li .twitter {
    background-position: -3px -60px; 
}

.main-box ul.socials li .twitter:hover {
    background-position: -53px -60px; 
}

.main-box ul.socials li .youtube {
    background-position: -3px -110px; 
}

.main-box ul.socials li .youtube:hover {
    background-position: -53px -110px; 
}

.main-box ul.socials li .email {
    background-position: -3px -160px; 
}

.main-box ul.socials li .email:hover {
    background-position: -53px -160px; 
}

.homepage.third p.perex {
    font-weight: bold;
}

.homepage.second {
    background: #fff;
    padding: 0 30px 50px 30px;
}

.homepage.second ul {
    margin: 50px 0 0 0;
    padding: 0;
}

.homepage.second ul li {
    display: block;
    float: left;
    margin-right: 30px;
    height: 300px;
    width: 190px;
}

.homepage.second ul li:last-child {
    margin-right: 0;
}

.homepage.second ul li:before {
    display: block;
    content: "";
    background: url('/public/images/icons.svg');
    height: 190px;
    width: 100%;
}

.homepage.second ul li.glasses:before {
    background-position: -330px -10px;
}

.homepage.second ul li.pc:before {
    background-position: -330px -210px;
}

.homepage.second ul li.mobile:before {
    background-position: -530px -10px;
}

.homepage.second ul li.meassure:before {
    background-position: -530px -210px;
}

.homepage.second ul li.space:before {
    background-position: -730px -10px;
}

.homepage.second ul p {
    font-size: 18px;
    font-weight: 300;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.06;
    letter-spacing: normal;
    text-align: center;
    color: #1b316c;
    margin-top: 20px;
}

.homepage.third ul.faq {
    margin: 50px 0 0 0;
    padding: 0;
}

.homepage.third ul.faq>li {
    aposition: relative;
    font-size: 18px;
    line-height: 18px;
    color: #1b316c;
    margin: 20px 0 30px 0;
}

@media (max-width: 465px) {
    .homepage.third ul.faq>li {
        line-height: 58px;
    }
}

@media (max-width: 400px) {
    .homepage.third ul.faq>li {
        line-height: 98px;
    }
}

.homepage.third ul.faq>li li {
    list-style-type: disc;
    padding: 10px 0;
}

.homepage.third ul.faq>li:before {
    display: inline-block;
    content: "";
    background: url('/public/images/icons.svg');
    background-position: -2px -215px; 
    margin-right: 10px;
    height: 21px;
    width: 22px;
}

.homepage.third ul.faq>li a {
    position: absolute;
    display: inline-block;
    color: #1b316c;
    font-size: 18px;
    line-height: 20px;
    font-weight: bold;
}

.homepage.third ul.faq>li.active:before {
    background-position: -29px -215px; 
}

.homepage.third ul.faq>li a+span {
    display: none;
    color: #1b316c;
    font-size: 16px;
    line-height: 18px;
    margin: 20px 0 20px 30px;
}

.homepage.third ul.faq>li.active a+span {
    display: block;
}

footer {
    background-color: #1b316c;
    margin-top: 40px;
    padding: 20px 0;
}

footer .row div {
    margin: 30px 0;
}

footer .row .row div {
    margin: 20px 0;
    padding: 0;
}

footer .row .row .row div {
    margin: 0;
    padding: 0;
}

.homepage footer .center {
    border-right: 2px solid #384b7e;
}

@media (max-width: 1200px) {
    footer .center {
        border-right: 0;
    }
}

footer .right {
    padding-left: 50px;
}

@media (max-width: 1200px) {
    footer .right {
        padding-left: 0;
    }
}

footer .copy {
    padding: 0;
    opacity: .75
}

footer ul {
    clear: both;
    float: left;
    width: 100%;
    list-style-type: none;
    padding: 0;
}

footer ul.links li {
    padding: 5px 0;
}

footer ul.links li::before {
    content: "• ";
    color: #e72a77;
    margin-right: 10px;
}

footer ul.contacts li {
    padding-bottom: 5px;
}

footer ul.contacts li:before {
    display: inline-block;
    content: "";
    background: url('/public/images/icons.svg');
}

footer ul.contacts li.phone:before {
    background-position: -5px -250px;
    height: 18px;
    width: 18px;
}

footer ul.contacts li.email:before {
    background-position: -40px -250px;
    height: 20px;
    width: 20px;
}

footer ul.contacts li a {
    font-size: 20px;
    line-height: 20px;
    margin-left: 10px;
}

ul.socials {
    margin-top: 20px;
}

ul.socials li {
    float: left;
    margin-right: 10px;
}

ul.socials li a {
    display: inline-block;
    background: url('/public/images/icons.svg');
    height: 45px;
    width: 45px;
}

footer ul.socials li .facebook {
    background-position: -103px -10px;
}

footer ul.socials li .twitter {
    background-position: -103px -60px;
}

footer ul.socials li .youtube {
    background-position: -103px -110px;
}

footer ul.socials li .email {
    background-position: -103px -160px;
}

ul.downloads {
    margin-top: 50px;
    padding: 0;
}

ul.downloads li {
    float: left;
    margin-right: 10px;
}

ul.downloads li a {
    display: inline-block;
}

ul.downloads li .apple {
    background: url('/public/images/apple-copy.png');
    height: 50px;
    width: 142px;
}

ul.downloads li .google {
    background: url('/public/images/google-copy.png');
    height: 51px;
    width: 173px;
}

ul.downloads li span {
    display: block;
    margin-left: 50px;
    font-size: 15px;
    font-weight: 300;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: left;
    color: #1b316c;
}

footer ul.downloads {
    margin-top: 20px;
}

footer ul.downloads li span {
    color: #fff;
}

footer ul li a, footer ul li a:hover {
    color: #fff;
}

footer h2 {
    color: #fff;
    margin: 0 0 20px 0;
    font-size: 24px;
    font-weight: bold;
    font-style: normal;
    font-stretch: normal;
    line-height: 0.75;
    letter-spacing: normal;
    text-align: left;
}

footer p {
    color: #fff;
    margin-top: 20px;
}

footer label {
    color: #fff;
    font-size: 90%;
}

input[type="text"],input[type="email"] {
    background: #fff;
    color: #000;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    border: 2px #fff solid;
    margin-right: 10px;
    padding: 10px;
    width: 300px;
}

.clear {
    clear: both;
}

.embed-container {
    position: relative;
    overflow: hidden;
    max-width: 100%;
    height: 100%;
}

.embed-container-in {
    background: url(/public/images/homepage.jpg);
    background-size: cover;
    height: 100%;
    margin: 0 auto;
    width: 1920px;
}

.embed-container iframe:not(.vimeo-embed), .embed-container object, .embed-container embed, .embed-container video {
    display: block;
    position: absolute;
    background-size: cover;
    object-fit: cover;
    overflow: hidden;
    transform: translateY(-50%);
    width: 1920px;
    z-index: 100;
}

.video-cover {
    position: absolute;
    height: 100%;
    width: 100%;
    abackground: url(/public/images/video-cover.png) no-repeat center center;
    background: rgba(255, 255, 255, 0.7);
    background-size: cover;
    z-index: 101;
}

.upper-box {
    z-index: 102;
}

.fancybox-content {
    border: 10px solid #fff;
    -moz-border-radius:10px 10px 10px 10px;
    border-radius:10px 10px 10px 10px;
    -webkit-border-radius: 10px 10px 10px 10px;
}

.no-padding {
    padding: 0;
}

.pre-redirect-message strong {
    display: inline-block;
    color: #23af4d;
    font-size: 20px;
    margin-top: 60px;
}