@font-face {
    font-family: Gellix-ExtraBold;
    src: url(../font/Gellix-ExtraBold.otf);
}

@font-face {
    font-family: Gellix-Light;
    src: url(../font/Gellix-Light.otf);
}

* {
    padding: 0;
    margin: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #FCFCFC;
}

button, input {
    border: 0;
    outline: 0 !important;
    cursor: pointer;
}

ul li {
    list-style-type: none;
}

textarea {
    resize: none;
    outline: 0!important;
}

select {
    outline: 0!important;
}

a {
    text-decoration: none;
    color: inherit;
}

a:hover {
    text-decoration: none;
    color: inherit;
}

.overflow-hidden {
    overflow: hidden;
}

.container, .container-xs {
    max-width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-left: 15px;
    padding-right: 15px;
}

.wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.wrapper.center {
    align-items: center;
}

.col {
    flex: 0 0 50%;
    max-width: 50%;
}

.col-full {
    flex: 0 0 100%;
    max-width: 100%;
}

.col3 {
    flex: 0 0 24.6%;
    max-width: 25%;
}

.padding-top-xl {
    padding-top: 200px;
}

.relative {
    position: relative;
    overflow: hidden;
    height: 100vh;
}

.page-background {
    height: 100%;
    width: 100%;
    /* position: fixed; */
    top: 0;
    left: 0;
    z-index: -2;
    opacity: .5;
}

.page-background img {
    position: absolute;
    left: 0;
    top: 0;
    object-fit: cover;
    min-width: 100%;
    min-height: 100%;
    width: 100%;
}

.btn {
    font-size: 14px;
    font-family: Gellix-Light;
    color: #fff;
    padding: 1.2rem 2rem;
    background: #E85C44;
    border-radius: 50px;
    display: inline-block;
    transition: .5s;
}

.btn:hover {
    transition: .5s;
    color: #fff;
    opacity: .7;
}

#header {
    position: fixed;
    width: 100%;
    z-index: 99;
}

#header.fixed {
    box-shadow: 0 0 5px -1px rgba(0, 0, 0, 0.3);
    background: #fff;
    -webkit-transition: all 0.75s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -moz-transition: all 0.75s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transition: all 0.75s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.header {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 1rem 0;
}

.header-logo {
    display: flex;
    align-items: flex-start;
}

.header-logo img {
    width: auto;
    height: auto;
    max-width: 60px;
    max-height: 40px;
}

.header-nav {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.header-nav ul {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 2rem;
}

.header-nav ul li {
    font-size: 14px;
    font-family: Gellix-Light;
    color: #000;
    padding: 0 1rem;
}

.header-collapse {
    margin-left: 20px;
    display: none;
}

.header-collapse div {
    width: 24px;
    height: 2px;
    background: #000;
    margin: 5.5px;
    transition: all 0.3s ease;
}

.header-toggle .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.header-toggle .line2 {
    transition: all 0.7s ease;
    width: 0;
}

.header-toggle .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
}

.hero {
    width: 80%;
}

.hero-img {
    width: 100%;
    text-align: center;
}

.hero-img img {
    width: 80%;
}

.hero-hand-img {
    position: absolute;
    background-image: url(../img/hand.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 300px;
    height: 300px;
    top: 0;
    right: 0;
}

.hero-grass-img {
    position: absolute;
    background-image: url(../img/grass.svg);
    background-position: bottom left;
    background-repeat: no-repeat;
    background-size: contain;
    width: 150px;
    height: 150px;
    bottom: 0;
    left: 0;
}

.note {
    margin-bottom: 1rem;
}

.note span {
    font-size: 14px;
    font-family: Gellix-Light;
    color: #000;
    display: flex;
    align-items: center;
}

.note span::before {
    content: '';
    width: 15px;
    height: 15px;
    background: #E85C44;
    display: inline-block;
    margin-right: 10px;
}

.heading {
    font-family: Gellix-ExtraBold;
    font-size: 48px;
    color: #000;
    text-align: left;
    margin-bottom: 2rem;
}

.heading span {
    color: #E85C44;
}

.desc {
    font-size: 16px;
    font-family: Gellix-Light;
    color: #000;
    line-height: 2rem;
    margin-bottom: 2rem;
}

.desc span {
    font-family: Gellix-ExtraBold;
}

.section-desc {
    width: 100%;
}

.section-desc .heading {
    font-size: 36px;
    text-align: center;
    margin-bottom: 1rem;
}

.section-desc .heading.sm {
    font-size: 28px;
    margin-bottom: 2rem;
}

.section-desc .desc {
    text-align: center;
}

.section-desc .button {
    text-align: center;
}

.calendar {
    width: 100%;
    text-align: center;
    margin-bottom: 2rem;
}

.calendar-image {
    position: relative;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    cursor: pointer;
}

.calendar-image:hover {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
    -webkit-transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36);
    transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36);
}

.calendar-image:hover .calendar-image img {
    opacity: .5;
}

.calendar-image_zoom {
    display: none;
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50px;
    background-color: rgba(0, 0, 0, .5);
    background-image: url(../img/zoom.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 24px;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    transition: .5s;
}

.calendar-image_zoom:hover {
    transition: .5s;
    transform: translateX(-50%) translateY(-50%) scale(1.2);
}

.calendar-image:hover .calendar-image_zoom {
    display: block;
}

.calendar-image img {
    width: 80%;
}

.calendar-name {
    margin: 1rem 0 2rem 0;
    font-family: Gellix-ExtraBold;
    font-size: 18px;
    color: #000;
}

.calendar-number {
    width: 100%;
    text-align: center;
}

.calendar-number span {
    margin-left: 10px;
    font-family: Gellix-ExtraBold;
    font-size: 13px;
}

.sum-calendar {
    width: calc(140px - 6rem);
    margin: 0 auto;
    text-align: center;
    background: #FFFFFF;
    box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.1);
    border-radius: 35px;
    padding: 1rem 2.2rem 1rem 3rem;
    font-family: Gellix-ExtraBold;
    font-size: 13px;
    color: #E85C44;
}

.sum-calendar::placeholder {
    color: #000;
}

.footer {
    margin-top: 2rem;
    padding: 4rem 0;
    background-color: #FCFCFC;
    box-shadow: 0 0 3px -1px rgba(0, 0, 0, 0.3);
}

.footer-logo {
    width: 100%;
}

.footer-logo img {
    width: 80%;
}

.footer-info p {
    font-size: 12px;
    font-family: Gellix-Light;
    color: #000;
    line-height: 1.2rem;
    margin-top: .8rem;
}

.footer-links ul li {
    line-height: 3rem;
    font-size: 14px;
    font-family: Gellix-Light;
    color: #000;
}

@media (min-width: 1360px) {
    .container-xs {
        max-width: 1300px;
    }
}

@media (min-width:1200px) {
    .container {
        max-width: 1140px;
    }
}

@media (max-width:992px) {
    .col3 {
        flex: 0 0 98%;
        max-width: 100%;
    }
    .col {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .relative {
        height: 100%;
    }
    .header {
        justify-content: space-between;
    }
    .header-collapse {
        display: block;
        cursor: pointer;
        z-index: 2;
        transition: all 0.7s ease;
    }
    .header-nav ul {
        position: fixed;
        background: #fff;
        height: 100vh;
        width: 100%;
        top: 90px;
        right: 0;
        z-index: 99999;
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 20%;
        clip-path: circle(50px at 90% -20%);
        -webkit-clip-path: circle(50px at 90% -10%);
        transition: all 1s ease-out;
        pointer-events: none;
    }
    #header.fixed .header-nav ul {
        top: 70px;
    }
    .header-nav ul.open {
        clip-path: circle(2000px at 90% -10%);
        -webkit-clip-path: circle(2000px at 90% -10%);
        pointer-events: all;
    }
    .header-nav ul li {
        opacity: 0;
        margin-left: 0;
        padding: 1rem 0;
        font-size: 21px;
    }
    .header-nav ul li:nth-child(1) {
        transition: all 0.5s ease 0.2s;
    }
    .header-nav ul li:nth-child(2) {
        transition: all 0.5s ease 0.4s;
    }
    .header-nav ul li:nth-child(3) {
        transition: all 0.5s ease 0.6s;
    }
    .header-nav ul .btn-transparent {
        transition: 1s;
    }
    .header-nav ul li.fade {
        opacity: 1;
    }
    .hero-hand-img {
        width: 150px;
        height: 150px;
    }
    .hero-grass-img {
        display: none;
    }
    .hero {
        width: 100%;
    }
    .note span {
        justify-content: center;
    }
    .heading {
        text-align: center;
    }
    .desc {
        text-align: center;
    }
    .button {
        text-align: center;
        margin-bottom: 2rem;
    }
    .hero-img {
        margin-bottom: 2rem;
    }
    .footer-logo {
        text-align: center;
        margin-bottom: 2rem;
    }
    .footer-links ul li {
        text-align: center;
    }
    .footer-info p {
        text-align: center;
    }
}

.przeslona {
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 9999;
    background: rgba(255, 255, 255, 0.8);
    display: none;
}

.przeslonaajax {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: url(../../img/ajaxload.gif);
    background-repeat: no-repeat;
    background-position: center center;
}

.bad, .ok {
    color: #fff;
    font-family: 'Lato';
    padding: 20px 25px;
    border-radius: 20px;
    margin: 15px 25%;
    float: left;
    width: 50%;
    font-size: 16px;
    border: 2px solid #FFF;
}

.bad2, .ok2 {
    padding: 5px 25px;
    width: auto;
}

.bad {
    background: #a51635;
}

.ok {
    background: #0bce7e;
}