@keyframes pulse {
    0% {
        transform: scale(1, 1);
        opacity: 0;
    }

    50% {
        transform: scale(1.2);
        opacity: 1;
    }

    100% {
        transform: scale(1, 1);
        opacity: 0;
    }
}

@keyframes slideIn {
    0% {
        opacity: 0;
        transform: translateX(-10rem);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideUp {
    0% {
        opacity: 0;
     }

    55% {
        opacity: 0;
        transform: translateY(3rem);
     }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideDown {
    0% {
        opacity: 0;
     }

    1% {
        opacity: 0;
        transform: translateY(-5rem);
     }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.has-backgound--teal {
    background: #54808C;
}

.has-backgound--green {
    background: #93C1D0;
}

.has-backgound--lightgreen {
    background: #E8F5F1;
}

.has-backgound--darkergreen {
    background: #B3D18D;
}

.has-backgound--beige {
    background: #fcf7ee;
}

.has-backgound--pink {
    background: #FDEDEF;
}

.has-backgound--lilac {
    background: #F4ECF3;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

* {
    padding: 0;
    margin: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #F3F3F3;
    color: #414141;
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 600;
}

.container-fluid {
    position: relative !important;
    width: 100% !important;
    margin-right: auto;
    margin-left: auto;
    overflow-x: hidden;
}

h1 {
    font-family: 'Source Sans Pro', sans-serif;
    color: #fff;
    font-size: 5.625rem;
    line-height: 5.625rem;
    font-weight: 900;
    text-transform: uppercase;
    text-align: center;
    opacity: 0;
    animation: 2s ease 0s normal forwards slideDown;
}

@media (min-width: 992px) {
    h1 {
        font-size: 12.5rem;
        line-height: 11.5625rem;
    }
}

h2,
h4,
ul {
    font-family: "futura-pt";
    font-weight: 600;
}

h2 {
    font-size: 2.8125rem;
    line-height: 3.4375rem;
}

@media (min-width: 800px) {
    h2 {
        font-size: 3.75rem;
        line-height: 3.75rem;
    }
}

h3 {
    padding: 4rem 0 2rem;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 3rem;
    font-weight: 900;
}

h4 {
    font-size: 1.5rem;
}

h6 {
    font-size: .8rem;
    font-weight: 100;
}

a {
    display: block;
    text-decoration: none;
}

p {
    padding: 2rem .5rem 1rem;
    font-size: 1.3rem;
    line-height: 2.3rem;
}

@media (min-width: 800px) {
    p {
        font-size: 1.2rem;
        line-height: 1.8rem;
    }
}

button {
    padding: 1rem 2rem 0.8rem;
    margin: 3rem 0;
    border-radius: 1rem;
    background: #fff;
    color: #93C1D0;
    font-size: 1rem;
    line-height: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    outline: none;
    cursor: pointer;
}

@media (min-width: 992px) {
    button {
        padding: 2rem 3rem 1.8rem;
        margin-top: 1rem;
        border-radius: 2rem;
        font-size: 1.8rem;
    }
}

ul {
    list-style-type: none;
}

header {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    min-height: fit-content;
    padding: 0 1rem;
    margin: 0 auto;
    background: #fdbec7;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

@media (min-width: 600px) {
    header {
        padding-right: 5rem;
        padding-left: 5rem;
    }
}

@media (min-width: 1200px) {
    header {
        padding: 0 5rem;
    }
}

header button {
    animation: 1.5s ease 0s normal forwards 1 slideUp;
}

.header__container {
    position: relative;
    padding: 1rem 0 0;
    margin: 0 auto;
}

@media (min-width: 992px) {
    .header__container {
        width: 100%;
        min-height: fit-content;
        padding: 2rem 0 3rem;
    }
}

.header__image {
    position: relative;
    margin-top: 1rem;
    text-align: center;
}

@media (min-width: 992px) {
    .header__image {
        margin-top: -14.375rem;
    }
}

.header__image img,
.section__triple_column img {
    width: 100%;
}

@media (min-width: 992px) {
    .header__image img  {
        width: auto;
    }
}

.header__main {
    animation: slideIn .6s  cubic-bezier(.57,.21,.69,1.25);
    max-width: 1060px;
    padding-top: 15vh;
}

.header__circle {
    position: absolute;
    width: 45% !important;
}

@media (min-width: 992px) {
    .header__circle {
        width: auto !important;
    }
}

.header__circle--yellow {
    top: 30%;
    left: 75%;
    animation: pulse 3s ease infinite;
    animation-delay: .8s;
    opacity: 0;
}

.header__circle--green {
    top: 0;
    left: 5%;
    z-index: 1;
    animation: pulse 2s ease infinite;
    animation-delay: 2s;
    opacity: 0;
}

@media (min-width: 992px) {
    .header__circle--green {
        left: -5%;
        top: 20%;
    }
}

section {
    position: relative;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    width: 100%;
    padding: 0 1rem 5rem;
    margin: 0 auto;
}

@media (min-width: 800px) {
    header,
    section {
        align-items: center;
    }
}

@media (min-width: 800px) {
    section {
        padding: 0 1rem 5rem;

    }
}

.section__container,
.section__container_fluid {
    position: relative;
    width: 100%;
    min-height: fit-content;
    margin: 0 auto;
    text-align: center;
}

.section__container_fluid {
    flex-direction: column;
    align-items: flex-start;
}

@media (min-width: 600px) {
    .section__container_fluid {
        width: 80%;
    }
}

@media (min-width: 1024px) {
    .section__container_fluid {
        align-items: center;
        width: 90%;
    }

    .section__container {
        width: 50%;
    }
}

.section__container_title {
    text-align: center;
    padding: 0 1rem 1rem;
}

@media (min-width: 1200px) {
    .section__container > p {
        max-width: 90%;
        margin: 0 auto;
    }
}

.section__image {
    position: absolute;
    max-width: 30rem;
}

.section__image img {
    width: 100%;
}

.section__single_column {
    padding: 5rem 2rem 4rem;
    font-weight: 400;
    text-align: center;
}

@media (min-width: 992px) {
    .section__single_column  {
        padding: 5rem 2rem 4rem;
    }
}

.section__triple_column {
    display: flex;
    flex-direction: column;
}

@media (min-width: 800px) {
    .section__triple_column {
        flex-direction: row;
    }
}

.section__triple_column > div {
    margin: 0 .5rem;
}

.section__triple_column div > div {
    width: 90%;
    padding: .5rem 1rem;
    margin: 1rem auto 0;
    background: #B6D8CC;
    color: #FFF;
}

.section__triple_column p {
    padding: 2rem 1.8rem 1rem;
}

.section__triple_column a {
    display: block;
    width: 100%;
    color: #FFF;
}

@media (min-width: 800px) {
    .section__triple_column a {
        width: 33.3%;
    }
}

.section__triple_column a:hover {
    opacity: .9;
    cursor: pointer;
}

#kviz {
    flex-direction: column;
}

#video div p {
    max-width: 50rem;
    margin: 0 auto;
}

#video div p:first-child {
    padding: 0;
}

.calendar__title {
    align-self: flex-start;
    padding: 0 .5rem 2rem;
    color: #54808C;
    font-size: 1.5rem;
}

@media (min-width: 2000px) {
    .calendar__title {
        padding: 0 .5rem 2rem 9rem;
        margin:  0 auto 2rem;
    }
}

.calendar__title_number {
    font-size: 3rem;
    font-weight: 900;
}

.calendar__border--bottom {
    display: none;
}

@media (min-width: 600px) {
    .calendar__border--bottom {
        display: inline-flex;
        color: #f3f3f3;
        border-bottom: 1px solid #54808C;
    }
}

.calendar__items {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    text-align: center;
}

@media (min-width: 800px) {
    .calendar__items {
        flex-direction: row;
        flex-wrap: nowrap;
    }
}

.calendar__item {
    flex-basis: 40%;
    flex-grow: 1;
    position: relative;
    padding: .5rem;
}

@media (min-width: 992px) {
    .calendar__item {
        flex-basis: 30%;
    }
}

.calendar__item div {
    position: relative;
}

.calendar__item img {
    width: 100%;
    object-fit: cover;
}

@media (max-width: 1100px) and (min-width: 992px) {
    .calendar__item img {
        margin-top: 1rem;

    }
}

.item__visible {
    display: block;
}

.item__invisible {
    display: none !important;
}

.calendar__item h6 {
    position: absolute;
    top: 2rem;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    color: #fff;
    font-size: 1.2rem;
}

@media (min-width: 728px) {
    .calendar__item h6 {
        top: .8rem;
        font-size: 1rem;
    }
}

@media (min-width: 992px) {
    .calendar__item h6 {
        top: 2rem;
        font-size: 1.1rem;
    }
}

.calendar__item div p {
    position: absolute;
    top: 15%;
    left: 0;
    right: 0;
    color: #FFF;
    line-height: 1.3rem;
}

.calendar__item:last-child div p {
    top: 20%;
    font-size: 4rem;
    line-height: 3.5rem;
}

@media (min-width: 728px) {
    .calendar__item div p,
    .calendar__item:last-child div p {
        top: 20%;
        font-size: 2rem;
        line-height: 2.1rem;
    }
}

@media (min-width: 800px) {
    .calendar__item div p,
    .calendar__item:last-child div p {
        top: 0;
        line-height: 1rem;
        font-size: .9rem;
    }
}

@media (min-width: 992px) {
    .calendar__item div p,
    .calendar__item:last-child div p {
        top: 15%;
        line-height: 1rem;
        font-size: .9rem;
    }
}

@media (min-width: 1024px) {
    .calendar__item div p,
    .calendar__item:last-child div p {
        font-size: 1.25rem;
        line-height: 1.5rem;
    }
}

.swiper-container {
    width: 100%;
    padding: 2.8125rem 0;
    margin: 2.5rem 0;
    overflow: hidden;
}

.swiper-slide {
    opacity: 0.4;
    overflow: hidden;
    transition: .7s;
}

.swiper-slide a {
    color: #FFF;
}

.swiper-slide h4 {
    display: none;
    margin-top: 1rem;
    font-size: 1.125rem;
}

.swiper-slide p {
    display: none;
    width: 80%;
    padding: 0;
    margin: 0 auto;
}

@media (min-width: 800px) {
    .swiper-slide p {
        width: 100%;
        font-size: 1rem;
        line-height: 1.5rem;
    }
}

.swiper-slide div:nth-child(2) {
    display: none;
    padding: .5rem 1rem;
    margin: 1rem auto;
    background: #B6D8CC;
    color: #FFF;
    width: 70%;
}

.swiper-slide img {
    width: 100%;
}

@media (min-width: 992px) {
    .swiper-slide img {
        width: 100%;
    }
}

.swiper-slide-active {
    margin-top: -1rem !important;
    z-index: 1;
    opacity: 1;
    transform: scale(1.1);
}

.swiper-slide-active h4,
.swiper-slide-active p,
.swiper-slide-active div:nth-child(2) {
    display: block;
}

.swiper-button-next,
.swiper-button-prev {
    top: 58% !important;
    color: #e2b84e !important;
}

@media (min-width: 1024px) {
    .swiper-button-prev {
        left: -3.125rem !important;
    }

    .swiper-button-next {
        right: -3.125rem !important;
    }
}

@media (min-width: 992px) {
    .swiper-button-next,
    .swiper-button-prev {
        top: 50%;
    }
}

.has-image-backgound--white {
    padding: 8rem 2rem;
    background: url(../images/background-image-women.jpeg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

@media (min-width: 800px) {
    .has-image-backgound--white {
        padding: 20rem 0;
    }
}

.has-image-backgound--white img {
    width: 100%;
    max-width: 27.1875rem;
}

@media (min-width: 800px) {
    .has-image-backgound--white img {
        max-width: 39.6875rem;
    }
}

.has-image-backgound--teal {
    background: url(../images/half-height-image.svg), #93C1D0;
    background-repeat: no-repeat;
    background-position: 35% center;
    background-size: contain;
}

@media (min-width: 992px) {
    .has-image-backgound--teal {
        background-size: auto;
    }
}

.has-no-icon {
    display: block;
    height: 5rem;
}

.is-text--orange {
    background: url(../images/lets-get-fit-orange.svg);
    background-repeat: no-repeat;
    background-position: 50% 0;
    background-size: contain;
}

@media (min-width: 992px) {
    .is-text--orange {
        background-size: auto;
    }
}

.is-text--white {
    background: url(../images/lets-get-fit-white.svg);
    background-repeat: no-repeat;
    background-position: 50% 0;
    background-size: contain;
}

@media (min-width: 992px) {
    .is-text--white {
        background-size: auto;
    }
}

.is-white {
    color: #FFF;
}

.is-teal {
    color: #54808C;
}

.privacy__container {
    display: flex;
    justify-content: center;
}

.info__container {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    padding: .5rem;
    margin: 0 auto;
}

@media (min-width: 420px) {
    .info__container {
        padding: 1rem;
    }
}

@media (min-width: 800px) {
    .info__container {
        padding: 1rem 5rem;
    }
}

.info__container h6 {
    font-size: .8rem;
    line-height: 1rem;
}

@media (min-width: 420px) {
    .info__container h6 {
        font-size: 1.1rem;
        line-height: 1.3rem;
    }
}

.info__item {
    display: flex;
    flex-direction: column;
    align-items: center;

    margin: 1rem auto 1rem;
}



@media (min-width: 800px) {
    .info__item {
        display: flex;
        flex-direction: row;
        align-items: center;

        margin: 1rem auto 0;
    }
}


.info__container_item {
    width: auto;
    padding: 0;
    margin: 1rem auto;
}

@media (min-width: 800px) {
    .info__container_item {
        padding: 0 1rem;
    }
}

.info__container_item p a {
    padding: 0 0 0 0.5rem;
    color: #54808C;
    font-size: .8rem;
    line-height: 1.1rem;
}

@media (min-width: 420px) {
    .info__container_item p a {
        padding: 0 0 0 0.5rem;
        font-size: inherit;
    }

    .info__container_item p a:hover {
        text-decoration: underline;
    }
}

.info__container_item img {
    padding: 0 0.5rem;
}

@media (min-width: 800px) {
    .info__container_item img {
        width: 5rem;
    }
}

.container__hide {
    opacity: 0;
}

.container__show {
    animation: 1s ease 0s normal forwards 1 slideDown;
}

.has-pink-background {
    background: #FDBEC7;
}

/*== pages ZDRAVOLOVCI ==*/
body.has-background--white {
    background: #FFF;
}

#pages .single__column {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 1rem;
    text-align: center;
    animation: 1.5s ease 0s normal forwards slideDown;
}

@media (min-width: 600px) {
    #pages .single__column {
        width: 55%;
        padding: 8rem 4rem;
        margin-left: auto;
    }
}

@media (min-width: 1200px) {
    #pages .single__column {
        padding: 8rem;
    }
}

#pages p {
    padding: 0 0.5rem 1rem;
    font-size: 1.15rem;
    line-height: 1.85rem;
    font-weight: 100;
    text-align: left;
}

@media (min-width: 800px) {
    #pages p {
        font-size: 1.25rem;
        line-height: 1.85rem;
        text-align: justify;
    }
}

#pages h2 {
    margin-bottom: 3rem;
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 900;
    text-transform: uppercase;
}

#pages aside div:nth-child(1) {
    position: relative;
    z-index: 2;
    width: 35%;
}

#pages aside div:nth-child(1) div {
    position: absolute;
    top: 0;
    display: block;

    color: #fff;
    font-size: 2rem;
    text-align: center;
}

@media (max-width: 576px) {
    #pages aside div:nth-child(1) div {
        display: none;
    }
}

@media (min-width: 800px) {
    #pages aside div:nth-child(1) div {
        top: 1rem;
        width: 100%;
    }
}

@media (min-width: 1200px) {
    #pages aside div:nth-child(1) div {
        font-size: 3rem;
    }
}

#pages aside div:nth-child(1) div span:nth-child(1) {
    font-size: 1rem;
}

#pages aside div:nth-child(2) {
    text-align: center;
    animation: 1.2s ease 0s normal forwards 1 slideIn;
}

#pages .single__column a.image__link {
    position: relative;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

#pages .single__column a {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0;
    margin: 0;
}

@media (min-width: 992px) {
    #pages .single__column a {
        top: 4rem;
        right: 4rem;
    }
}

#pages .single__column > a:first-child img {
    width: 3rem;
}

#pages .single__column > div {
    padding: 0 0 1rem;
}

#pages .single__column div img {
    width: 100%;
    max-width: 480px;
}

@media (min-width: 800px) {
    #pages .single__column div img {
        width: auto;
    }
}

#pages .single__column_icon {
    padding: 4rem 0 0;
    max-width: 10rem;
}

@media (min-width: 600px) {
    #pages .single__column_icon {
        padding: 0 0 4rem;
        max-width: fit-content;
    }
}

#pages .double__column {
    position: relative;
    left: 0;
    display: inline-flex;
    max-height: 50vh ;
}

@media (min-width: 600px) {
    #pages .double__column {
        position: fixed;
        width: 45%;
        min-height: 100vh;
    }
}

#pages .double__column div img {
    object-fit: contain;
    max-width: 100%;
    height: 100%;
}

#pages .double__column > div img {
    object-fit: cover;
}

#pages .double__column div:nth-child(1) img {
    object-position: 33%;
}

.is-tooltip {
    visibility: hidden;
}

.is-tooltip img {
    visibility: visible;
}

@media (min-width: 992px) {
    .is-tooltip {
        position: relative;
        visibility: visible;
    }

    .is-tooltip::before,
    .is-tooltip::after {
        left: 50%;
        opacity: 0;
        position: absolute;
        z-index: -100;
    }

    .is-tooltip:hover::before,
    .is-tooltip:focus::before,
    .is-tooltip:hover::after,
    .is-tooltip:focus::after {
        opacity: 1;
        transform: scale(1) translateY(0);
        z-index: 100;
    }

    .is-tooltip::before {
        border-style: solid;
        border-width: 1em 0.75em 0 0.75em;
        border-color: #F7CE8C transparent transparent transparent;
        bottom: 270%;
        content: "";
        margin-left: -0.5em;
        transition: all .65s cubic-bezier(.84,-0.18,.31,1.26), opacity .65s .5s;
        transform:  scale(.6) translateY(-90%);
    }

    .is-tooltip:hover::before,
    .is-tooltip:focus::before {
        transition: all .65s cubic-bezier(.84,-0.18,.31,1.26) .2s;
    }

    .is-tooltip::after {
        background: #F7CE8C;
        border-radius: 0.25em;
        bottom: 350%;
        color: #FFF;
        content: attr(data-tip);
        margin-left: -3rem;
        padding: 0.5rem;
        transition: all .65s cubic-bezier(.84,-0.18,.31,1.26) .2s;
        transform: scale(.6) translateY(50%);
        width: 6.5rem;
    }

    .is-tooltip:hover::after,
    .is-tooltip:focus::after  {
        transition: all .65s cubic-bezier(.84,-0.18,.31,1.26);
    }
}

@media (max-width: 760px) {
    .is-tooltip::after {
        width: 10em;
        margin-left: -5em;
        font-size: .7rem;
    }
}

.facebook__share_container {
    display: flex;
    justify-content: space-evenly;
    width: 100%;
}

#pages .single__column .facebook__share_btn a {
    position: relative;
    max-width: 7rem;
    padding: 0.5rem;
    background: #b6d8cc;
    color: #54808c;
    font-size: 0.8rem;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
}

#pages .single__column .facebook__share_btn a:hover {
    background: #54808c;
    color: #b6d8cc;
}

@media (min-width: 600px) {
    #pages .single__column .facebook__share_btn a {
        top: 0;
        right: 0;
        max-width: inherit;
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

#navigation .navigation-bar li a.fb__share_navigation {
    color: #F7CE8C;
}

#navigation .navigation-bar li a.fb__share_navigation:hover {
    color: #54808c;
}
