@charset "UTF-8"; /*********************FONTS*/
@font-face {
    font-family: 'nocella';
    src: url(fonts/ITCAvantGardeStdMd.otf);
    font-weight: 400;
}

@font-face {
    font-family: 'nocella';
    src: url(fonts/ITCAvantGardeStdDemi.otf);
    font-weight: 600;
}

@font-face {
    font-family: 'nocella';
    src: url(fonts/ITCAvantGardeStdBold.otf);
    font-weight: 700;
}

@font-face {
    font-family: 'nocella';
    src: url(fonts/ITCAvantGardeStdBk.otf);
    font-weight: 800;
}

/**************************CSS_RESET*******************/
/* Box sizing rules */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    font-size: 10px;
    scroll-behavior: smooth;
}

/* Remove default padding */
ul[class], ol[class] {
    padding: 0;
}

/* Remove default margin */
body, h1, h2, h3, h4, p, ul[class], ol[class], li, figure, figcaption, blockquote, dl, dd {
    margin: 0;
}

/* Set core body defaults */
body {
    min-height: 100vh;
    scroll-behavior: smooth;
    text-rendering: optimizeSpeed;
    line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul[class], ol[class] {
    list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
    -webkit-text-decoration-skip: ink;
    text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
    max-width: 100%;
    display: block;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
    margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input, button, textarea, select {
    font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
    * {
        -webkit-animation-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        -webkit-animation-iteration-count: 1 !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

* {
    font-family: nocella;
}

h1, title {
    display: block;
    font-size: 6rem;
    font-weight: 700;
    text-align: center;
    position: relative;
    margin-bottom: 5rem;
    line-height: 1.3em;
}

@media (max-width: 1200px) {
    h1, title {
        font-size: 5rem;
    }
}

@media (max-width: 992px) {
    h1, title {
        font-size: 4.5rem;
    }
}

@media (max-width: 768px) {
    h1, title {
        font-size: 3.5rem;
    }
}

@media (max-width: 576px) {
    h1, title {
        font-size: 3rem;
    }
}

h1::after, title::after {
    content: '';
    position: absolute;
    bottom: -2rem;
    width: 10rem;
    border-bottom: 5px solid #FFF01C;
    left: 50%;
    transform: translateX(-50%);
}

h2 {
    font-size: 3.7rem;
    font-weight: 700;
    margin-bottom: 3rem;
    text-align: center;
    line-height: 1.3em;
}

@media (max-width: 992px) {
    h2 {
        font-size: 3.3rem;
    }
}

@media (max-width: 768px) {
    h2 {
        font-size: 2.7rem;
    }
}

p, li, div {
    font-size: 1.4rem;
    line-height: 2em;
}

em {
    font-style: normal;
}

.btn {
    display: block;
    font-size: 3.7rem;
    font-weight: 800;
    border: 2px solid #000;
    padding: 2rem 5rem;
    border-radius: 5rem;
    font-weight: 700;
    background-color: transparent;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
}

@media (max-width: 992px) {
    .btn {
        font-size: 3.3rem;
    }
}

@media (max-width: 768px) {
    .btn {
        font-size: 2.7rem;
        padding: 1rem 3rem;
    }
}

@media (max-width: 576px) {
    .btn {
        font-size: 2.3rem;
        padding: 1rem 2rem;
    }
}

.btn:hover {
    transform: translateY(-5px);
    border: 2px solid #FFF01C;
    box-shadow: 0px 0px 32px -3px rgba(0, 0, 0, 0.45);
}

.btn a {
    text-decoration: none;
    color: #000;
}

.overlay {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 998;
    display: flex;
    padding: 11rem 2rem 2rem;
    justify-content: center;
    align-items: flex-start;
    display: none;
}

.overlay.show {
    display: flex;
}

.overlay.pub-show .pub {
    display: block;
}

.overlay.pub-show2 .pub2 {
    display: block;
}

.overlay.pub-show3 .pub3 {
    display: block;
}

.overlay.book-show .book {
    display: block;
}

.overlay .book, .overlay .pub, .overlay .pub2, .overlay .pub3 {
    display: none;
}

.overlay .overlay-cont {
    width: 60vw;
    max-height: 100%;
    background-color: #fff;
    border-radius: 5rem;
    padding: 5rem 3rem;
    position: relative;
    overflow: hidden;
}

@media (max-width: 576px) {
    .overlay .overlay-cont {
        padding: 5rem 1rem;
    }
}

@media (max-width: 992px) {
    .overlay .overlay-cont {
        width: 80vw;
    }
}

@media (max-width: 768px) {
    .overlay .overlay-cont {
        width: 90vw;
    }
}

.overlay .overlay-cont .overlay-main-cont {
    overflow-y: scroll;
    max-height: 65vh;
    padding: 2rem;
}

.overlay .overlay-cont .logo {
    width: 40%;
    padding-top: 15%;
    background-image: url(img/logo.svg);
    background-size: contain;
    background-repeat: no-repeat;
    margin: 0 auto;
}

.overlay .overlay-cont .book .choose-period {
    text-align: center;
    margin-bottom: 1rem;
}

.overlay .overlay-cont .book .period-block {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.overlay .overlay-cont .book .period-block .field-wrapper-period {
    position: relative;
}

.overlay .overlay-cont .book .period-block .field-wrapper-period input {
    padding: 1rem;
    border: 1px solid #000;
    width: 100%;
}

.overlay .overlay-cont .book .period-block .field-wrapper-period:first-child input {
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
    border-right: 0px;
    padding-left: 2rem;
}

.overlay .overlay-cont .book .period-block .field-wrapper-period:first-child::before {
    content: 'From:';
    top: -0.5rem;
    left: 2rem;
    font-size: 1rem;
    color: #757575;
    position: absolute;
}

.overlay .overlay-cont .book .period-block .field-wrapper-period:last-child input {
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
    padding-right: 2rem;
}

.overlay .overlay-cont .book .period-block .field-wrapper-period:last-child::before {
    content: 'To:';
    top: -0.5rem;
    left: 1rem;
    font-size: 1rem;
    color: #757575;
    position: absolute;
}

.overlay .overlay-cont .book .btn-wrapper {
    text-align: center;
}

.overlay .overlay-cont .book .btn-wrapper .btn {
    line-height: 1em;
    display: inline-block;
    margin: 0 auto;
    position: relative;
}


.overlay .overlay-cont .book .btn-wrapper .btn input {
    background-color: transparent;
    border: 0;
    width: 100%;
}

.overlay .overlay-cont .book .btn-wrapper .btn .wpcf7-spinner {
    position: absolute;
    top:  50%;
    right: -15px;
    transform: translateY(-50%);
}


.overlay .close-btn {
    position: absolute;
    top: 1rem;
    right: 3rem;
    width: 3rem;
    height: 3rem;
    background-image: url(img/close.svg);
    background-size: cover;
    cursor: pointer;
}

header.site-header {
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2.5rem 5rem;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

header.site-header .logo {
    transition: all 0.3s;
    flex: 0 0 18rem;
    padding-top: 5rem;
    background-image: url(img/logo-black.svg);
    background-size: contain;
    background-repeat: no-repeat;
}

header.site-header.not-on-top {
    background-color: #fff;
    padding: 1rem 5rem;
}

header.site-header.not-on-top .logo {
    padding-top: 3.5rem;
    background-image: url(img/logo-not-black.svg);
}

header.site-header menu {
    padding: 0;
    margin: 0;
    display: flex;
}

@media (max-width: 1200px) {
    header.site-header menu {
        flex-direction: column;
        padding: 1rem;
        background-color: #fff;
        position: absolute;
        top: 2rem;
        right: 0;
        transform: translateX(100%);
        transition: all 0.3s;
    }
}

header.site-header menu.show {
    transform: translateX(0%);
}

header.site-header menu ul {
    display: flex;
}

@media (max-width: 1200px) {
    header.site-header menu ul {
        flex-direction: column;
        text-align: right;
    }
}

header.site-header menu ul.menu-pt-first {
    border-right: 1px solid #000;
}

@media (max-width: 1200px) {
    header.site-header menu ul.menu-pt-first {
        border-right: 0px;
        border-bottom: 1px solid #000;
    }
}

header.site-header menu ul li {
    font-size: 1.3rem;
    padding: 1.5rem;
}

@media screen and (max-width: 1400px) {
    header.site-header menu ul li {
        font-size: 1.2rem;
        padding: 1rem;
    }
}

@media screen and (max-width: 1100px) {
    header.site-header menu ul li {
        font-size: 1.2rem;
        padding: 0.5rem;
    }
}

header.site-header menu ul li a {
    color: #000;
    text-decoration: none;
}

header.site-header menu .lang-switcher {
    font-size: 1.3rem;
    padding: 1.5rem 0;
    text-align: right;
    border-radius: 3px;
}

header.site-header menu .lang-switcher a {
    border: 1px solid #000;
    padding: 0rem 1rem;
    margin-bottom: 0;
    margin-top: -1px;
    display: inline-block;
    text-decoration: none;
    border-radius: 3px;
    color: #000;
}

header.site-header .menu-switch {
    display: none;
}

@media (max-width: 1200px) {
    header.site-header .menu-switch {
        display: block;
        flex: 0 0 4rem;
        height: 4rem;
        background-image: url(img/burger.svg);
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
    }
}

section {
    padding: 10rem 2rem;
    width: 100%;
    overflow-x: hidden;
}

section.no-padding {
    padding: 0;
}

section.yellow-block {
    background-color: #FFF01C;
}

section.block-full .sec-cont-wrapper {
    max-width: 1366px;
}

section.block-90 .sec-cont-wrapper {
    max-width: 819.6px;
}

section .sec-cont-wrapper {
    margin: auto;
}

.illustration.full-width img {
    max-width: 100%;
    height: auto;
    margin: 0 auto;
}

.illustration.mob {
    display: none;
}

@media (max-width: 576px) {
    .illustration.mob {
        display: block;
    }
}

@media (max-width: 576px) {
    .illustration.desc {
        display: none;
    }
}

footer.site-footer #address {
    padding: 5rem 2rem;
}

footer.site-footer .address-wrapper {
    display: flex;
    justify-content: center;
    text-align: center;
}

@media (max-width: 768px) {
    footer.site-footer .address-wrapper {
        flex-direction: column;
    }
}

footer.site-footer .address-wrapper .address-entry {
    padding: 0 4rem;
}

footer.site-footer .address-wrapper .address-entry:first-child {
    /* border-right: 1px solid #000; */
}

@media (max-width: 768px) {
    footer.site-footer .address-wrapper .address-entry:first-child {
        border-right: 0px solid #000;
        margin-bottom: 5rem;
    }
}

@media (max-width: 768px) {
    footer.site-footer .address-wrapper .address-entry h2 {
        margin-bottom: 1rem;
    }
}

footer.site-footer .address-wrapper .address-entry .address > p:first-child {
    font-size: 2.4rem;
}

footer.site-footer .address-wrapper .address-entry .address a {
    color: #000;
}

footer.site-footer .true-footer {
    background-color: #000;
    text-align: center;
    padding-bottom: 2rem;
}

footer.site-footer .true-footer .logo {
    background-image: url(img/logo_w.svg);
    width: 30rem;
    max-width: 100%;
    height: 5rem;
    margin: 0 auto 2rem;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

footer.site-footer .true-footer * {
    color: #fff;
}

footer.site-footer .true-footer .privacy {
    margin-bottom: 5rem;
}

footer.site-footer .true-footer .social-icons {
    display: flex;
    justify-content: center;
    margin: 2rem 0;
}

footer.site-footer .true-footer .social-icons a {
    width: 2rem;
    height: 2rem;
    display: block;
    margin: 0 1rem;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

footer.site-footer .true-footer .copyright {
    font-size: 1.4rem;
    color: #7C7C7C;
}

section.first-banner {
    min-height: 100vh;
    background-color: #FFF01C;
    padding-top: 13rem;
    display: flex;
}

section.first-banner .sec-cont-wrapper {
    display: flex;
    position: relative;
}

@media screen and (max-width: 660px) {
    section.first-banner .sec-cont-wrapper {
        flex-direction: column;
    }
}

section.first-banner .fb-content {
    flex: 0 0 40%;
}

@media screen and (max-width: 660px) {
    section.first-banner .fb-content {
        order: 2;
        text-align: center;
    }
}

@media (max-width: 992px) {
    section.first-banner .fb-content {
        flex: 0 0 50%;
    }
}

section.first-banner .fb-content .fb-header {
    font-weight: 700;
    font-size: 3.7rem;
    line-height: 1.4em;
    margin-bottom: 2.2rem;
    text-align: left;
}

@media (max-width: 660px) {
    section.first-banner .fb-content .fb-header {
        text-align:center;
        font-size: 3rem;
    }
}

section.first-banner .fb-content .fb-header em {
    color: #fff;
}

section.first-banner .fb-content .fb-desc {
    margin-bottom: 2.2rem;
}

section.first-banner .fb-content .fb-footer {
    display: flex;
    margin-bottom: 2.2rem;
}

section.first-banner .fb-content .fb-footer .fb-footer-left {
    flex: 0 1 auto;
    padding-right: 2rem;
    border-right: 2px solid #000;
}

section.first-banner .fb-content .fb-footer .fb-footer-left .price-info {
    font-size: 3.4rem;
    line-height: 1em;
}

section.first-banner .fb-content .fb-footer .fb-footer-left .price-info em {
    font-weight: 700;
}

section.first-banner .fb-content .fb-footer .fb-footer-right {
    flex: 1 1;
    padding-left: 2rem;
}

@media screen and (max-width: 660px) {
    section.first-banner .fb-content .btn {
        margin: auto;
    }
}

section.first-banner .fb-illustrations {
    flex: 1 1 100%;
    position: relative;
}

@media screen and (max-width: 660px) {
    section.first-banner .fb-illustrations {
        padding-top: 42rem;
    }
}

@media screen and (max-width: 500px) {
    section.first-banner .fb-illustrations {
        padding-top: 35rem;
    }
}

section.first-banner .ill {
    position: absolute;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

section.first-banner .ill.illustration-1 {
    background-image: url(img/badges_new.png);
    width: 51rem;
    height: 50rem;
    right: 21rem;
    top: 0;
    z-index: 5;
    /* @media screen and (max-width:865px) {
                right:2rem;
                top:10%;
            }

            @media screen and (max-width:660px) {
                right:15%;
                width:70%;
                top:0;
            } */
}

@media screen and (max-width: 1180px) {
    section.first-banner .ill.illustration-1 {
        right: 3rem;
    }
}

@media (max-width: 992px) {
    section.first-banner .ill.illustration-1 {
        width: 41rem;
        height: 40rem;
        right: 0rem;
    }
}

@media screen and (max-width: 870px) {
    section.first-banner .ill.illustration-1 {
        right: 3rem;
    }
}

@media screen and (max-width: 660px) {
    section.first-banner .ill.illustration-1 {
        right: 10%;
        width: 80%;
    }
}

section.first-banner .ill.illustration-2 {
    background-image: url(img/circles.png);
    width: 30rem;
    height: 30rem;
    right: 37rem;
    top: -6rem;
    /* @media screen and (max-width:865px) {
                right:6rem;
            }

            @media screen and (max-width:660px) {
                right:45%;
                width:70%;
            } */
}

@media screen and (max-width: 1180px) {
    section.first-banner .ill.illustration-2 {
        right: 23rem;
        top: 5rem;
    }
}

@media (max-width: 992px) {
    section.first-banner .ill.illustration-2 {
        width: 28rem;
        height: 28rem;
        right: 12rem;
    }
}

@media screen and (max-width: 850px) {
    section.first-banner .ill.illustration-2 {
        right: 15rem;
        top: 3rem;
        width: 22rem;
        height: 22rem;
    }
}

@media screen and (max-width: 660px) {
    section.first-banner .ill.illustration-2 {
        width: 50%;
        height: 60%;
        right: 40%;
    }
}

section.first-banner .ill.illustration-3 {
    background-image: url(img/white1.png);
    width: 7rem;
    height: 8rem;
    right: 23rem;
    top: 15rem;
    /* @media screen and (max-width:865px) {
                top:35rem;
                right:0;
                z-index: 5;
            }

            @media screen and (max-width:660px) {
                right:10%;
                top:70%;
                width:15%
            } */
}

@media screen and (max-width: 1180px) {
    section.first-banner .ill.illustration-3 {
        right: 5rem;
    }
}

@media (max-width: 992px) {
    section.first-banner .ill.illustration-3 {
        height: 6rem;
        right: 1rem;
    }
}

section.first-banner .ill.illustration-4 {
    background-image: url(img/white1.png);
    width: 10rem;
    height: 9rem;
    right: 35rem;
    top: -8rem;
    /* @media screen and (max-width:865px) {
                right:14rem;
            }

            @media screen and (max-width:660px) {
                top:-10%;
                width:15%;
                right:48%;
            } */
}

@media screen and (max-width: 1180px) {
    section.first-banner .ill.illustration-4 {
        right: 17rem;
    }
}

@media (max-width: 992px) {
    section.first-banner .ill.illustration-4 {
        right: 10rem;
    }
}

@media screen and (max-width: 870px) {
    section.first-banner .ill.illustration-4 {
        right: 13rem;
        height: 8rem;
        top: 2rem;
    }
}

section.first-banner .ill.illustration-5 {
    background-image: url(img/white1.png);
    width: 12rem;
    height: 13rem;
    right: 63rem;
    top: 32rem;
    /* @include md { 
                top:38rem;
                right:16rem;
                z-index: 5;
            }

            @media screen and (max-width:660px) {
                width:20%;
                right:80%;
                top:70%;
            } */
}

@media screen and (max-width: 1180px) {
    section.first-banner .ill.illustration-5 {
        right: 50rem;
    }
}

@media (max-width: 992px) {
    section.first-banner .ill.illustration-5 {
        right: 27rem;
    }
}

@media screen and (max-width: 660px) {
    section.first-banner .ill.illustration-5 {
        right: 27rem;
        top: 20rem;
        height: 17rem;
        width: 20rem;
    }
}

#tracing-and-distancing .illustration {
    background-image: url(img/mac2.png);
    padding-top: 60%;
    width: 100%;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    margin-bottom: 2rem;
}

#tracing-and-distancing .illustration.lang-fi {
    background-image: url(img/mac2.png);
}

#tracing-and-distancing .blk-desc p {
    margin-bottom: 4rem;
    text-align: center;
}

#tracing-and-distancing .blk-desc p:last-child {
    margin-bottom: 0;
}

#keep-you-save {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

#keep-you-save .block-cont p {
    text-align: center;
}

#icons .icon-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: -10rem;
}

#icons .icon-grid .icon-entry {
    flex: 0 0 30%;
    margin-bottom: 5rem;
}

@media (max-width: 768px) {
    #icons .icon-grid .icon-entry {
        flex: 0 0 48.5%;
    }
}

#icons .icon-grid .icon-entry img {
    margin: 0 auto 1rem;
}

#icons .icon-grid .icon-entry .icon-desc {
    text-align: center;
    max-width: 15rem;
    margin: 0 auto;
}

#list {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

#list ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding-left: 0;
}

#list ul li {
    flex: 0 0 45%;
    list-style-type: none;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

#list ul li:nth-child(2n+1) {
    text-align: right;
    position: relative;
}

#list ul li:nth-child(2n+1)::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -10%;
    transform: translate(100%, -50%);
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    background-color: #fff;
}

#covid .block-desc {
    margin-bottom: 5rem;
}

#covid .block-desc.txt-col-3 {
    -moz-column-count: 3;
    column-count: 3;
    -moz-column-gap: 3rem;
    column-gap: 3rem;
}

@media (max-width: 1400px) {
    #covid .block-desc.txt-col-3 {
        max-height:16rem;
    }
}

@media (max-width: 1100px) {
    #covid .block-desc.txt-col-3 {
        max-height:9999px;
    }
}

@media (max-width: 768px) {
    #covid .block-desc.txt-col-3 {
        -moz-column-count: 2;
        column-count: 2;
    }
}

@media (max-width: 576px) {
    #covid .block-desc.txt-col-3 {
        -moz-column-count: 1;
        column-count: 1;
    }
}

#covid .block-desc.bottom-bg {
    padding-bottom: 35rem;
    background-image: url(img/masks.png);
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: 100%;
}

@media (max-width: 992px) {
    #covid .block-desc.bottom-bg {
        padding-bottom: 25rem;
    }
}

@media (max-width: 576px) {
    #covid .block-desc.bottom-bg {
        background-size: 190%;
    }
}

#covid .illustration {
    margin: 5rem 0;
}

.card-grid {
    width: 100%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    margin-bottom: 10rem;
}

@media (max-width: 768px) {
    .card-grid {
        flex-wrap: wrap;
    }
}

.card-grid.no-btm-margin {
    margin-bottom: 0;
}

.card-grid.col-1 .card {
    flex: 0 0 100%;
}

.card-grid.col-2 .card {
    flex: 0 0 48%;
}

@media (max-width: 768px) {
    .card-grid.col-2 .card {
        flex: 0 0 100%;
    }
}

.card-grid.col-2 .card.show-on-scroll {
    transform: translateX(-15rem);
}

.card-grid.col-2 .card.show-on-scroll:last-child {
    transform: translateX(15rem);
}

.card-grid.col-2 .card.show-on-scroll.is-vis {
    transform: translateX(0rem);
}

.card-grid.col-3 .card {
    flex: 0 0 29.3%;
}

@media (max-width: 768px) {
    .card-grid.col-3 .card {
        flex: 0 0 100%;
    }
}

.card-grid.letters {
    margin-top: 6rem;
}

.card-grid.letters .card {
    position: relative;
    padding-top: 5rem;
}

@media (max-width: 768px) {
    .card-grid.letters .card {
        margin-bottom: 6rem;
    }
}

.card-grid.letters .card .letter {
    font-size: 6rem;
    font-weight: 700;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 5rem;
    background-color: #FFF01C;
    width: 8rem;
    height: 8rem;
    line-height: 1.17em;
}

.card-grid .card {
    border-radius: 5rem;
    box-shadow: 0px 0px 99px -17px rgba(0, 0, 0, 0.45);
    text-align: center;
    padding: 2rem;
}

@media (max-width: 768px) {
    .card-grid .card {
        margin-bottom: 3rem;
    }
}

.card-grid .card.no-btn-margin {
    margin-bottom: 0;
}

.card-grid .card ul {
    padding-left: 0;
}

.card-grid .card ul li {
    margin-bottom: 1rem;
    list-style-type: none;
}

.card-grid .card ul li::before {
    content: "• ";
}

.card-grid .card ol {
    display: flex;
    justify-content: space-between;
    padding: 0;
}

@media (max-width: 768px) {
    .card-grid .card ol {
        flex-direction: column;
    }
}

.card-grid .card ol li {
    flex: 0 0 33.3%;
    border-right: 1px solid #000;
    padding: 0 2rem;
    list-style-type: none;
}

@media (max-width: 768px) {
    .card-grid .card ol li {
        border-right: 0px solid #000;
        padding: 2rem 0;
        border-bottom: 1px solid #000;
    }
}

.card-grid .card ol li:last-child {
    border-right: 0px solid #000;
}

@media (max-width: 768px) {
    .card-grid .card ol li:last-child {
        border-bottom: 0px solid #000;
    }
}

.card-grid .card ol li .priority {
    position: relative;
    z-index: 2;
}

.card-grid .card ol li .priority ::before {
    content: "#";
    position: absolute;
    color: #FFF01C;
    top: 0;
    left: 50%;
    z-index: -1;
    font-weight: 700;
    font-size: 5rem;
    transform: translateX(-100%);
}

#publications .pub-top-ittustration {
    width: calc(100% + 4rem);
    padding-top: 30%;
    background-size: cover;
    background-position: bottom;
    background-image: url(img/pub_bg.jpg);
    margin: 0 -2rem 4rem;
}

@media (max-width: 992px) {
    #publications .pub-top-ittustration {
        padding-top: 50%;
    }
}

@media (max-width: 768px) {
    #publications .pub-top-ittustration {
        padding-top: 75%;
    }
}

@media (max-width: 576px) {
    #publications .pub-top-ittustration {
        padding-top: 100%;
    }
}

#publications .card-grid {
    margin-bottom: 0;
    display: flex;
    flex-wrap: wrap;
}

#publications .card {
    padding-top: 3rem;
    padding-bottom: 3rem;
    margin-bottom: 4rem;
}

#publications .card :last-child {
    margin-bottom: 0;
}

#publications .pub-show {
    text-decoration: underline;
    cursor: pointer;
    font-weight: 700;
}

#publications .pub-title {
    font-size: 2rem;
    font-weight: 700;
}

#pricing {
    padding-bottom: 0;
}

#pricing-2 {
    padding: 5rem 2rem;
}

.price-blk .price-val {
    font-size: 4.6rem;
    text-align: center;
    line-height: 1em;
}

.price-blk .price-desc {
    text-align: center;
    margin-bottom: 3rem;
}

.button-block {
    display: flex;
    justify-content: center;
}

.button-block .btn {
    margin: 0 1rem;
    line-height: 1em;
}

#whats_in {
    padding-bottom: 0;
}

#whats_in .flex-row {
    display: flex;
    justify-content: space-between;
}

@media (max-width: 768px) {
    #whats_in .flex-row {
        flex-direction: column;
    }
}

#whats_in .flex-row .whats-in-entry {
    flex: 0 0 33%;
    padding: 2rem;
    text-align: center;
    border-right: 1px solid #000;
    text-align: center;
}

@media (max-width: 768px) {
    #whats_in .flex-row .whats-in-entry {
        border-right: 0px solid #000;
        border-bottom: 1px solid #000;
    }
}

#whats_in .flex-row .whats-in-entry img {
    max-width: 100%;
    max-height: 25rem;
    margin: auto;
}

@media (max-width: 768px) {
    #whats_in .flex-row .whats-in-entry img {
        max-width: 60%;
        max-height: 20rem;
    }
}

#whats_in .flex-row .whats-in-entry:last-child {
    border-right: 0px solid #000;
}

@media (max-width: 768px) {
    #whats_in .flex-row .whats-in-entry:last-child {
        border-bottom: 0px solid #000;
    }
}

#technical {
    padding-bottom: 0;
}

#technical img {
    margin: 2rem auto 5rem;
}

#technical .senders {
    margin: auto;
    width: 100%;
    max-width: 70rem;
}

#technical-2 {
    padding: 5rem 2rem;
}

#technical-2 ul {
    padding-left: 0;
}

#technical-2 li {
    list-style-type: none;
    text-align: center;
}

#technical-2 li::before {
    content: "• ";
}

#technical-3 {
    padding-bottom: 0;
}

#technical-3 img {
    margin: 2rem auto 5rem;
}

.gal-wrapper {
    width: 100%;
    padding-top: 30%;
    position: relative;
    overflow-x: hidden;
}

.gal-wrapper .gal-slider {
    width: 200%;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    display: flex;
    align-items: stretch;
    transition: all 0.3s;
}

.gal-wrapper .gal-slider .gal-slider-entry {
    flex: 0 0 16.6%;
    position: relative;
}

.gal-wrapper .gal-slider .gal-slider-entry:first-child {
    margin-left: 8.3%;
}

.gal-wrapper .gal-slider .gal-slider-entry:nth-child(2) {
    margin-right: 8.3%;
}

.gal-wrapper .gal-slider .gal-slider-entry .gal-slider-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.gal-wrapper .gal-slider .gal-slider-entry a {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 5;
}

.slide-nav {
    display: flex;
    justify-content: center;
}

.slide-nav .slide-nav-btn {
    flex: 0 0 2rem;
    height: 2rem;
    margin: 0 1rem;
    border-radius: 50%;
    background-color: #000;
    cursor: pointer;
    transition: all 0.3s;
}

.slide-nav .slide-nav-btn.active-slide {
    background-color: #FFF01C;
}

#technical-4 table {
    margin-bottom: 5rem;
}

#technical-4 table thead th {
    color: #fff;
    background-color: #000;
}

#technical-4 table tbody .section-head {
    background-color: #FFF01C;
    font-weight: 700;
}

#technical-4 table tbody tr:nth-child(2n) {
    background-color: #F2F2F2;
}

#technical-4 table tbody tr td {
    padding: 0.5rem 1rem;
}

#technical-4 .after-table {
    text-align: center;
    margin-bottom: 2rem;
}

#technical-4 .download-datasheet {
    display: flex;
    justify-content: center;
}

#technical-4 .download-datasheet .datasheet-entry {
    flex: 0 0 30%;
    padding: 0 3rem;
    padding-left: 7rem;
    background-image: url(img/download.svg);
    background-size: 6rem;
    background-position: left 1rem;
    background-repeat: no-repeat;
    position: relative;
    transition: all 0.3s;
}

#technical-4 .download-datasheet .datasheet-entry:hover {
    background-position: left 0rem;
}

#technical-4 .download-datasheet .datasheet-entry a {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

#counters {
    padding: 5rem 2rem;
}

#counters .sec-cont-wrapper {
    display: flex;
    justify-content: center;
}

@media (max-width: 576px) {
    #counters .sec-cont-wrapper {
        flex-wrap: wrap;
    }
}

#counters .sec-cont-wrapper .counter-entry {
    flex: 0 0 25%;
    padding: 0 2rem;
    text-align: center;
}

@media (max-width: 576px) {
    #counters .sec-cont-wrapper .counter-entry {
        flex: 0 0 100%;
        margin-bottom: 3rem;
    }
}

#counters .sec-cont-wrapper .counter-entry .value {
    font-size: 8rem;
    font-weight: 700;
    line-height: 1em;
    white-space: nowrap;
}

@media (max-width: 1200px) {
    #counters .sec-cont-wrapper .counter-entry .value {
        font-size: 7rem;
    }
}

@media (max-width: 992px) {
    #counters .sec-cont-wrapper .counter-entry .value {
        font-size: 6rem;
    }
}

@media (max-width: 768px) {
    #counters .sec-cont-wrapper .counter-entry .value {
        font-size: 5rem;
    }
}

#contact-form .btn-wrapper {
    text-align: center;
}

#contact-form .btn-wrapper .btn {
    line-height: 1em;
    display: inline-block;
    margin: 0 auto;
    position: relative;
}

#contact-form .btn-wrapper .btn input {
    background-color: transparent;
    border: 0;
    width: 100%;
}

#contact-form .btn-wrapper .btn .wpcf7-spinner {
    position: absolute;
    top:  50%;
    right: -15px;
    transform: translateY(-50%);
}

.the-form, .o-the-form {
    max-height: 1800px;
    transition: all 0.3s;
    overflow: hidden;
}

.the-form.hide, .o-the-form.hide {
    max-height: 0px;
}

.status-msg {
    max-height: 0px;
    transition: all 0.3s;
    text-align: center;
    overflow: hidden;
}

.status-msg p {
    text-align: center;
}

.status-msg.show {
    max-height: 300px;
}

.form-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.form-wrapper .field-wrapper {
    flex: 0 0 48.5%;
    border-radius: 5rem;
    border: 1px solid #000;
    margin-bottom: 2rem;
    padding: 1rem;
    display: flex;
    align-items: center;
    transition: all 0.3s;
    width: 48.5%;
}

.form-wrapper .field-wrapper.alert {
    border: 1px solid red;
}

@media (max-width: 768px) {
    .form-wrapper .field-wrapper {
        flex: 0 0 100%;
    }
}

.form-wrapper .field-wrapper.area {
    flex: 1 1 100%;
}

.form-wrapper .field-wrapper label {
    padding-right: 2rem;
    white-space: nowrap;
}

.form-wrapper .field-wrapper input {
    border: 0px;
    flex-grow: 1;
    max-width: 60%;
}

.form-wrapper .field-wrapper textarea {
    border: 0px;
    flex-grow: 1;
    background-color: transparent;
}

.page-body {
    transition: all 0.3s;
}

.page-body.blur {
    -webkit-filter: blur(4px);
    filter: blur(4px);
}

.lightpick {
    width: 30rem;
}

.show-on-scroll {
    opacity: 0;
    transform: translateY(2rem);
    transition: all 0.3s;
}

.show-on-scroll.is-vis {
    opacity: 1;
    transform: translateY(0rem);
}

/*# sourceMappingURL=style.css.map */
.overlay-main-cont img {
    height: auto;
}
