@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    letter-spacing: 1px;
    scroll-behavior: smooth;
}
button {
    cursor: pointer;
}
a {
    text-decoration: none;
    margin: 10px;
}
.container:not(.templates-name):not(.__connected) {
    display: flex;
    align-items: center;
    justify-content: center;
}
.container {
    min-height: 40vh;
    width: 100%;
    max-width: 1300px;
    padding: 100px 20px;
    margin: 0 auto;
}
.container_instructions {
    min-height: 100vh;
    width: 100%;
    align-items: center;
    justify-content: center;
    max-width: 1300px;
    padding: 100px 28px;
    margin: 0 auto;
}

/* Basics */
h1 {
    display: block;
    width: fit-content;
    font-size: 64px;
    color: #e54b4d;
    position: relative;
    text-transform: uppercase;
    font-weight: bold;
}
h2 {
    display: block;
    width: fit-content;
    font-size: 48px;
    color: #e54b4d;
    position: relative;
    font-weight: normal;
    margin-bottom: 40px;
}
h3 {
    display: block;
    width: fit-content;
    font-size: 40px;
    color: #e54b4d;
    position: relative;
    font-weight: normal;
    margin-bottom: 16px;
}
h4 {
    display: block;
    width: fit-content;
    font-size: 36px;
    color: #051b2c;
    position: relative;
    font-weight: normal;
    margin-bottom: 25px;
}
h5 {
    display: block;
    width: fit-content;
    font-size: 30px;
    color: #051b2c;
    position: relative;
    font-weight: normal;
    margin-bottom: 20px;
}
h6 {
    display: block;
    width: fit-content;
    font-size: 24px;
    color: #fff;
    position: relative;
    font-weight: 500;
    margin-bottom: 16px;
}
p {
    color: #646d74;
    font-size: 16px;
    display: block;
    position: relative;
    margin-bottom: 10px;
}
p.underlined::after {
    content: "";
    width: 80%;
    height: 4px;
    background: #e54b4d;
    position: relative;
    bottom: 0;
    margin: 30px auto;
    display: block;
}
.cta {
    display: inline-block;
    padding: 17px 25px;
    color: #fff;
    background-color: #e54b4d;
    box-shadow: 0 0 10px #00000025;
    border-radius: 5px;
    transition: .3s ease;
}
.cta:hover {
    background-color: #c24042;
    box-shadow: 0 0 13px #00000035;
}
.cta-email {
    display: inline-block;
    padding: 17px 25px;
    color: #051b2c;
    background-color: #fff;
    border-radius: 5px;
    border: 1px solid #909090;
}
input.cta-email {
    display: inline-block;
    padding: 17px 25px !important;
    color: #051b2c;
    background-color: #fff;
    border-radius: 5px;
    border: 1px solid #909090;
    font-size: 15px;
}
.cta-classic {
    display: inline-block;
    color: #343434;
    background: none;
    text-decoration: underline;
    margin: 0;
}
section {
    position: relative;
    width: 100%;
    float: left;
}
img {
    max-width: 100%;
}
/* END Basics */
/* Header Sectiom */
#header {
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100vw;
    height: auto;
    max-width: initial;
}
#header .header {
    min-height: 8vh;
    background-color: rgba(255, 255, 255, 0);
    padding: 0 20px;
    transition: .3s ease;
}
.header .nav-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    max-width: 1300px;
}
.header .nav-list ul {
    list-style: none;
    position: absolute;
    background-color: #333;
    width: 100vw;
    height: 100vh;
    left: 100%;
    top: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1;
    overflow-x: hidden;
    transition: .3s ease;
}
.header .nav-list ul > div {
    display: flex;
    align-items: center;
}
.header .nav-list ul.active {
    left: 0;
}
.header .nav-list ul a {
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    color: white;
    text-transform: uppercase;
    padding: 14px;
    display: block;
    letter-spacing: .5rem;
    margin: 10px 5px;
}
.header .nav-list ul a::after {
    content: attr(data-after);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%) scale(0);
    color: rgba(240, 248, 255, 0.021);
    font-size: 10rem;
    letter-spacing: 50px;
    z-index: -1;
    transition: .3s ease;
}
#header .nav-list ul li:hover a::after {
    transform: translate(-50%,-50%) scale(1);
    letter-spacing: initial;
}
#header .nav-list ul li:hover a {
    color: #e54b4d;
}
#header .hamburger {
    height: 60px;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #fff;
    border-radius: 50%;
    position: relative;
    z-index: 100;
    cursor: pointer;
    transform: scale(.8);
}
#header.nav-on .hamburger {
    border: 3px solid #333;
}
#header .hamburger::after {
    position: absolute;
    content: '';
    height: 100%;
    width: 100%;
    border-radius: 50%;
    border: 3px solid #fff;
    animation: hamburger_puls 2s ease infinite;
}
#header.nav-on .hamburger::after {
    border: 3px solid #333;
}
#header .hamburger .bar {
    height: 2px;
    width: 30px;
    position: relative;
    background-color: #fff;
    z-index: -1;
}
#header.nav-on .hamburger .bar {
    background-color: #333;
}
#header .hamburger .bar::after,
#header .hamburger .bar::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    background-color: #fff;
}
#header.nav-on .hamburger .bar::after,
#header.nav-on .hamburger .bar::before {
    background-color: #333;
}
#header .hamburger .bar::after {
    top: 8px;
    transition: .3s ease;
}
#header .hamburger .bar::before {
    bottom: 8px;
    transition: .3s ease;
}
#header .hamburger.active .bar::before {
    bottom: 0;
}
#header .hamburger.active .bar::after {
    top: 0;
}
.nav-on {
    background: #fff;
    transition: .3s ease;
    box-shadow: 0 0 10px #3333334f;
}
.nav-on .header .nav-list ul a {
    color: #e54b4d;
}
.nav-list {
    width: 100%;
    display: flex;
    justify-content: flex-end;
}
.nav-on .header .nav-list ul a.cta {
    color: #fff !important;
}
ul.active a {
    color: #fff !important;
    padding: 10px !important;

}
ul.active {
    justify-content: space-around !important;
}
.hamburger.active::after {
    border: 3px solid #fff !important;
}
.hamburger.active .bar {
    background-color: #fff !important;
}
.hamburger.active .bar::after, .hamburger.active .bar::before {
    background-color: #fff !important;
}
.brand {
    margin-right: 20px;
}
.brand a {
    margin: 0;
}
.brand a img {
    width: 120px;
}
/* END Header Sectiom */
/* Hero Sectio */
#hero {
    background: #ccd5e1;
}
#hero .hero {
    justify-content: flex-start;
    overflow: hidden;
    min-height: initial;
    padding: 0 20px;
}
#hero h1 {
    color: transparent;
    animation: text_reveal .5s forwards;
    animation-delay: 1.5s;
}
#hero h2 {
    color: transparent;
    animation: text_reveal .5s forwards;
    animation-delay: 2.5s;
}
#hero p {
    font-size: 24px;
    font-weight: normal;
    color: #051b2c7a;
}
#hero h1 span {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background-color: #e54b4d;
    animation: box_reveal 1s ease;
    animation-delay: 1s;
}
#hero h2 span {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background-color: #e54b4d;
    animation: box_reveal 1s ease;
    animation-delay: 2s;
}
#hero .hero > div {
    display: flex;
}
#hero .hero-wrap {
    width: 60%;
    position: relative;
    z-index: 1;
    padding-top: 80px;
}
#hero div.hero-wrap {
    padding: 150px 0;
}
#hero .hero-wrap.hero-wom {
    margin: 0;
}
#hero .hero-wrap.hero-wom img.wom {
    bottom: 0;
    z-index: 1;
}
#hero .hero-wrap.hero-wom {
    width: 40%;
    display: flex;
    align-items: end;
    padding: 0;
    position: relative;
}
#hero .hero-wrap.hero-wom .hovering-wom {
    position: absolute;
}
#hero .hero-wrap.hero-wom .hovering-wom:nth-child(2) {
    transform: translate(220px,-360px);
    animation: hovering1 5s ease infinite;
    animation-direction: alternate;
}
@keyframes hovering1 {
    0%{
        transform: translate(220px,-360px);
    }
    100%{
        transform: translate(220px,-340px);
    }
}
#hero .hero-wrap.hero-wom .hovering-wom:nth-child(3) {
    transform: translate(70px,-320px) rotate(340deg);
    animation: hovering2 3s ease infinite;
    animation-direction: alternate;
    z-index: 0;
}
@keyframes hovering2 {
    0%{
        transform: translate(70px,-320px) rotate(340deg);
    }
    100%{
        transform: translate(70px,-320px) rotate(359deg);
    }
}
#hero .hero-wrap.hero-wom .hovering-wom:nth-child(4) {
    transform: translate(340px,-250px);
    animation: hovering3 3s ease infinite;
    animation-direction: alternate;
}
@keyframes hovering3 {
    0%{
        transform: translate(340px,-250px) scale(.9);
    }
    100%{
        transform: translate(340px,-250px) scale(1);
    }
}
#hero .hero-wrap.hero-wom .hovering-wom:nth-child(5) {
    transform: translate(160px,-100px);
    z-index: 2;
}
#hero .hero-wrap.hero-wom .hovering-wom:nth-child(6) {
    transform: translate(410px,-190px);
    animation: hovering4 1s ease infinite;
    animation-direction: alternate;
    transform-origin: bottom;
}
@keyframes hovering4 {
    0%{
        transform: translate(410px,-190px) rotate(1deg);
    }
    100%{
        transform: translate(410px,-190px) rotate(15deg);
    }
}
#hero .hero-wrap.hero-wom .hovering-wom:nth-child(7) {
    transform: translate(60px,-200px);
}


/*
#hero .hero-wrap img:first-child {
    left: 10%;
    position: absolute;
    top: -110px;
    animation: myOrbit1 20s linear infinite;
    transform: rotate(0deg) translateX(150px) rotate(0deg) scale(.5);
}
#hero .hero-wrap img:nth-child(2) {
    left: 20%;
    position: absolute;
    top: 190px;
    animation: myOrbit2 25s linear infinite;
    transform: rotate(0deg) translateX(150px) rotate(0deg) scale(.5);

}
#hero .hero-wrap img:nth-child(3) {
    left: 40%;
    position: absolute;
    top: 50px;
    animation: myOrbit3 30s linear infinite;
    transform: rotate(0deg) translateX(150px) rotate(0deg) scale(.5);
}
#hero .hero-wrap img:nth-child(4) {
    left: -5%;
    position: absolute;
    top: 60px;
    animation: myOrbit4 35s linear infinite;
    transform: rotate(0deg) translateX(150px) rotate(0deg) scale(.5);
}
*/
/* End Hero Sectio */
/* Templates Section */
#templates {
    background: #e54b4d;
}
#templates .templates {
    justify-content: flex-start;
    align-items: flex-start;
}
#templates h3 {
    color: #fff;
}
#templates p {
    color: #fff;
}
#templates .template-funkctions-item {
    margin-top: 50px;
    margin-right: 50px;
    float: left;
}
#templates .template-funkctions-item:last-child {
    margin-right: 0;
}
#templates .tfi-icon {
    margin-bottom: 25px;
}

#templates .tpi-title {
    text-transform: uppercase;
    font-weight: 500;
}
#templates .tpi-img {
    margin-bottom: 15px;
}
.mySwiper {
    scroll-behavior: smooth;
    max-width: 1260px;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    margin: 0 auto;
    position: relative;
    height: auto;
    padding: 60px 0;
    margin: 0;
}
.swiper-button-next:after, .swiper-button-prev:after {
    font-family: "Font Awesome 6 Free";
    display: inline-block;
    padding-right: 3px;
    vertical-align: middle;
    font-weight: 900;
    font-size: 42px;
    color: #051b2c;
}
.swiper-button-next:after {
    content: "\f054";
}
.swiper-button-prev:after {
    content: "\f053";
}
.swiper-button-prev:hover, .swiper-rtl .swiper-button-next:hover {
    transition: .3s ease;
    left: 6px;
}
.swiper-button-next:hover, .swiper-rtl .swiper-button-prev:hover {
    transition: .3s ease;
    right: 2px;
}
.swiper-button-next, .swiper-button-prev {
    margin-top: calc(0px - (var(--swiper-navigation-size)/ 1));
}
.swiper-button-prev, .swiper-rtl .swiper-button-next {
    left: 15px;
}
/* End Templates Section */
/* Tryout Section */
#tryout {
    background: #f9f9f9;
}
#tryout .cta-group {
    display: flex;
}
#tryout .cta-classic {
    color: #ce4346;
}
#tryout .tryout {
    min-height: auto;
}
#tryout .tryout > div {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
/* ENDTryout Section */
/* Content-info Section */
.content-info > div {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    width: 100%;
}
.content-info-box {
    display: flex;
    width: 100%;
    justify-content: center;
}
.content-info-box:nth-child(odd) {
    flex-direction: row-reverse;
}
.content-info-text-box,
.content-info-img-box {
    width: 50%;
}
.content-info-text-box {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    padding: 40px;
}
.content-info-img-box {
    padding: 40px;
    position: relative;
}
/* END Content-info Section */
/* Review Section */
.review img {
    max-width: 100%;
}
.review > div {
    position: relative;
}
.review > div::after {
    content: "";
    width: 50%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #e54b4d;
}
.review-text-wrap {
    width: 50%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
}
.review-text-wrap p {
    color: #fff;
    font-size: 24px;
    margin: 25px 0;
}
/* END Review Section */
/* contact-hero section */
#contact-hero {
    background: #fafafa;
}
.contact-hero-wrap h2 {
    margin-bottom: 10px;
}
.contact-hero > div {
    display: flex;
    width: 100%;
}
.contact-hero-wrap {
    position: relative;
    width: 50%;
}
.contact-hero-wrap img {
    transform: translate(0, 50px);
    position: absolute;
    z-index: 1;
}
.contact-hero-links {
    display: flex;
    flex-direction: column;
}
.contact-hero-links a {
    margin-top: 20px;
    font-size: 20px;
}
.kontakt #tryout {
    background: #fff;
}

/* END contact-hero section */
/* technical contact  */
#technical-support-hero {
    background: #fafafa;
}
.technical-support {
    flex-direction: column;
    min-height: auto;
}
.technical-support > div {
    width: 100%;
}
.technical-contact {
    flex-direction: column;
}
.technical-contact > img {
    margin: 50px 0;
    opacity: .7;
}
.technical-contact-infos {
    display: flex;
    justify-content: center;
}
.technical-contact-infos-icon {
    padding: 20px 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.technical-contact-infos-block {
    padding: 20px 60px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.technical-contact-infos-block:nth-child(1),
.technical-contact-infos-icon:nth-child(1) {
    border-right: 1px solid #dedede;
}
.technical-contact-infos-icon i,
.technical-contact-infos-icon a {
    color: #e54b4d;
    font-size: 26px;
    margin: 20px;
}
/* END technical contact  */
/* Contact-form Section */
#form-hero {
    background: #fafafa;
}
.form-hero > div {
    position: relative;
    min-width: 1100px;
    min-height: 660px;
    display: flex;
    z-index: 10;
}
.contactInfo {
    position: absolute;
    top: 40px;
    width: 350px;
    height: calc(100% - 80px);
    background: #e54b4d;
    z-index: 1;
    padding: 40px;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    box-shadow: 0 25px 20px rgba(0,0,0,0.15);
}
.contactInfo h2 {
    color: #fff;
}
.contactInfo ul.info {
    position: relative;
    margin: 20px 0;
}
.contactInfo ul.info li {
    position: relative;
    list-style: none;
    display: flex;
    margin: 20px 0;
    cursor: pointer;
    align-items: flex-start;
}
.contactInfo ul.info li span:nth-child(1) {
    width: auto;
}
.contactInfo ul.info li span:nth-child(1) i {
    max-width: 100%;
    color: #fff;
    font-size: 20px;
}
.contactInfo ul.info li span:nth-child(2) {
    color: #fff;
    margin-left: 10px;
}
.contactInfo ul.sci {
    position: relative;
    display: flex;
}
.contactInfo ul.sci li {
    list-style: none;
}
.contactInfo ul.sci li a {
    text-decoration: none;
}
.contactInfo ul.sci li a i {
    font-size: 20px;
    color: #fff;
}
.contactForm {
    position: absolute;
    padding: 70px 50px;
    padding-left: 250px;
    margin-left: 150px;
    width: calc(100% - 150px);
    height: 100%;
    background: #fff;
    box-shadow: 0 50px 50px rgba(0,0,0,0.25);
}
.contactForm .formBox {
    position: relative;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 30px;
}
.contactForm .formBox .inputBox {
    position: relative;
    margin-bottom: 35px;
}
.contactForm .formBox .inputBox.w50 {
    width: 47%;
}
.contactForm .formBox .inputBox.w100 {
    width: 100%;
}
.contactForm .formBox .inputBox input,
.contactForm .formBox .inputBox textarea {
    width: 100%;
    resize: none;
    padding: 5px 0;
    font-size: 18px;
    font-weight: 300;
    color: #333;
    border: none;
    outline: none;
    border-bottom: 1px solid #777;
}
.contactForm .formBox .inputBox textarea {
    height: 120px;
}
.contactForm .formBox .inputBox span {
    position: absolute;
    left: 0;
    padding: 5px 0;
    pointer-events: none;
    font-size: 18px;
    font-weight: 300;
    transition: .3s ease;
}
.contactForm .formBox .inputBox input:focus ~ span,
.contactForm .formBox .inputBox input:valid ~ span,
.contactForm .formBox .inputBox textarea:focus ~ span,
.contactForm .formBox .inputBox textarea:valid ~ span {
    transform: translateY(-20px);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    color: #e54b4d;
}
.contactForm .formBox .inputBox input[type="submit"] {
    position: relative;
    cursor: pointer;
    background: #e54b4d;
    color: #fff;
    border: none;
    max-width: 150px;
    padding: 12px;
}
.contactForm .formBox .inputBox input[type="submit"]:hover {

}
/* END Contact-form Section */
/* FAQ section */
#faq-hero {
    background: #fafafa;
}
.faq-hero {
    flex-direction: column;
    align-items: flex-start;
}
.faq-hero > div {
    margin: 50px 0;
}
.accordion {
    width: 100%;
    padding: 0 5px;
    cursor: pointer;
    margin: 10px 0;
}
.panel {
    padding: 0 15px;
    border-left: 1px solid #e54b4d;
    margin-left: 25px;
    font-size: 14px;
    text-align: justify;
    overflow: hidden;
    max-height: 0;
    transition: .5s ease-in;
}
.accordion-icon {
    padding: 10px 0;
    display: flex;
    align-items: center;
}
.accordion-icon:before {
    content: '';
    margin-right: 5px;
    font-size: 80%;
    background-color: #e54b4d;
    color: #fff;
    font-weight: bold;
    padding: 3px 8px;
    border-radius: 3px;
}
.accordion-icon h5 {
    margin: 0;
}
/* END FAQ section */
/* Function section */
#function-hero {
    background: #fff;
}
.function-hero {
    min-height: initial;
    border-bottom: 1px solid #dedede;
    width: 100%;
    max-width: 1300px;
    padding: 100px 20px;
    margin: 0 auto;
}
.function-hero > div {
    width: 100%;
}
.function-hero-wrap h2 {
    margin-top: 40px;
}
#function-table {
    background: #fbf7ed;
}
.function-table table {
    text-align: left;
    border-spacing: 0;
    border-collapse: collapse;
    background: #fff;
}
.function-table .table th,
.function-table .table td {
    padding: 10px 20px;
    line-height: 1.42857143;
    vertical-align: top;
}
.function-table .table .functions-and-price-list-special-action-class td {
    background-color: #e54b4d;
    color: #FFFFFF;
    font-weight: bold;
}
.function-table .table tr th:nth-child(1),
.function-table .table tr th.text-center {
    background: #dedede;
}
.function-table .table tr:hover {
    background: #efefef;
}
.functions-and-price-list-middle-td-in-package-active {
    text-align: center;
}
.functions-and-price-list-middle-td-in-package-active:after {
    font-family: "Font Awesome 6 Free";
    content: "\f111";
    display: inline-block;
    padding-right: 3px;
    vertical-align: middle;
    font-weight: 900;
    font-size: 12px;
    color: green;
}
.pricing-cards {
    min-height: initial;
    padding-top: 50px;
}

.link {

  cursor: pointer;

}
#function-table tr.link th {
    background: #fbf7ed;
    vertical-align: middle;
}
#function-table tr.link th.text-center {
    text-align: center;
}
#function-table tr.link td {
    border: 1px solid #dfdfdf;
}
.pricing-cards > div {
    width: 100%;
}
.pricing-cards .cards {
    padding: 0;
    background: #fff;
    box-shadow: 0 0 30px #e1dada;
    transition: .3s ease;
    text-align: center;
    border-radius: 25px;
}
.pricing-cards .cards:hover {
    transform: translate(0px, -10px);
}
.pricing-cards .cards h6 {
    margin: 10px 0;
    text-align: center;
    color: #fff;
    width: 100%;
}
.pricing-cards .cards p {
    text-align: center;
}
.pricing-cards .cards span.price {
    font-size: 48px;
    font-weight: bold;
    text-align: center;
    display: block;
    transform: translate(0px, 20px);
}
.pricing-cards .cards span.price {
    color: #ffc50c;
}
.pricing-cards .cards:nth-child(2) span.price {
    color: #5881c1;
}
.pricing-cards .cards:nth-child(3) span.price {
    color: #55c0ee;
}
.pricing-cards .cards:nth-child(4) span.price {
    color: #455b66;
}
.pricing-cards .cards .tooltips {
    display: flex;
    flex-direction: column;
    margin:0;
    padding: 30px;
}
.pricing-cards .cards .tooltips span {
    width: 100%;
    border-top: 1px solid #dedede;
    border-bottom: 1px solid #dedede;
    margin-top: -1px;
    padding: 5px 7px;
    text-align: center;
    font-size: 14px;
    position: relative;
    background: #fff;
    color: #787878;
}
.pricing-cards .cards .tooltips span:after {
    content: "\f129";
    font-family: "Font Awesome 6 Free";
    display: inline-block;
    vertical-align: middle;
    font-weight: 900;
    font-size: 16px;
    color: #e54b4d;
    position: absolute;
    right: 0px;
    opacity: 0;
    padding-right: 7px;
}
.pricing-cards .cards .tooltips span:hover:after {
    transition: .3s ease;
    opacity: 1;
}
.pricing-cards .cards .wrap-cards {
    padding: 30px 0;
    background: linear-gradient(90deg, #ffc50c 0%, #ffc60d 100%);
    position: relative;
    border-radius: 25px 25px 0 0;
}
.pricing-cards .cards:nth-child(2) .wrap-cards {
    background: linear-gradient(90deg, #5881c1 0%, #5982c2 100%);
}
.pricing-cards .cards:nth-child(3) .wrap-cards {
    background: linear-gradient(90deg, #55c0ee 0%, #55beed 100%);
}
.pricing-cards .cards:nth-child(4) .wrap-cards {
    background: linear-gradient(90deg, #455b66 0%, #455c62 100%);
}
.pricing-cards .cards .wrap-cards::before{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    background-repeat: repeat;
    height: 10px;
    background-size: 20px 20px;
    background-image:
     radial-gradient(circle at 10px -5px, transparent 12px, #fff 13px);
}
.pricing-cards .cards .wrap-cards::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    background-repeat: repeat;
    height: 15px;
    background-size: 40px 20px;
    background-image:
      radial-gradient(circle at 10px 15px, #fff 12px, transparent 13px);
  }
.pricing-cards .recomended-card .wrap-cards {
    background: #e1ffe1;
}
.pricing-cards .cards .wrap-cards .small-tooltip {
    font-size: 12px;
    color: #fff;
}
.pricing-cards .cards .cta {
    margin: 20px 0;
    transform: translate(0px, 40px);
}
/* End Function section */
/* spoznaj websystem section */
#spoznaj-websystem-hero .spoznaj-websystem {
    padding: 0 20px;
    padding-top: 67px;
}
.spoznaj-websystem #hero {
    background: #fbeded;
}
#spoznaj-websystem-hero {
    background: #ebebed;
}
.spoznaj-websystem-wrap h2 {
    margin-bottom: 10px;
}
.spoznaj-websystem > div {
    display: flex;
    width: 100%;
}
.spoznaj-websystem-wrap {
    position: relative;
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.spoznaj-websystem-wrap > p {
    margin-bottom: 30px;
    margin-top: 10px;
}
.spoznaj-websystem-wrap span.shortcuts {
    display: flex;
    flex-wrap: wrap;
}
.spoznaj-websystem-wrap span.shortcuts a {
    text-decoration: none;
    color: #e54b4d;    
    padding-right: 5px;
    margin-left: 0;
}
.spoznaj-websystem-wrap span.shortcuts a:before {
    content: "\f0da";
    font-family: "Font Awesome 6 Free";
    display: inline-block;
    padding-right: 7px;
    vertical-align: middle;
    font-weight: 900;
    font-size: 16px;
    color: #e54b4d;
    position: relative;
    left: 0;
    top: -2px;
}
.spoznaj-websystem-wrap span.shortcuts a:hover {
    font-weight: bold;
    transition: .3s ease;
}
#spoznaj-websystem-hero .spoznaj-websystem-links p {
    margin-top: 2px;
    font-size: 16px;
    color: #3a3d40;
    padding-left: 20px;
    position: relative;
}
#spoznaj-websystem-hero .spoznaj-websystem-links p::before {
    content: "\f0da";
    font-family: "Font Awesome 6 Free";
    display: inline-block;
    padding-right: 7px;
    vertical-align: middle;
    font-weight: 900;
    font-size: 16px;
    color: #e54b4d;
    position: absolute;
    left: 0;
    top: 2px;
}
#spoznaj-websystem-hero .spoznaj-websystem-links h6 {
    color: #e54b4d;
    font-size: 20px;
}
#spoznaj-websystem-hero .spoznaj-websystem-wrap .wrapper {
    display: flex;
    flex-wrap: wrap;
}
/* End spoznaj websystem section */
/* <!-- Spoznaj system section --> */
#_connected .container {
    min-height: initial;    
    padding: 0;
    margin: 100px auto;
}
._connected > div {
    width: 100%;
    max-width: 1000px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fff8f6;
}
._connected > div:nth-child(2) img {
    transform: translate(-240px, 20px);
}
._connected > div:nth-child(2) {
    padding: 0;
    background: none;
}
._connected:nth-of-type(1) > div {
    background: #fdfff6;
    align-items: flex-start;
}
._connected:nth-of-type(1) > div:nth-child(2) {
    align-items: center;
    position: relative;
}
._connected > div h4 {
    width: 100%;
}
._connected > div h4,
._connected > div p {
    text-align: left;
    width: 100%;
}
._connected > div h6 {
    color: #646d74;
    font-size: 20px;
    font-weight: normal;
}
.some-quote {
    text-align: center;
    max-width: 1000px;
    margin: 100px auto;
}
.some-quote::before {
    content: "\f02e";
    font-family: "Font Awesome 6 Free";
    display: inline-block;
    padding-right: 7px;
    vertical-align: middle;
    font-weight: 900;
    font-size: 16px;
    color: #e54b4d;
    position: relative;
    left: 0;
    top: -20px;
    font-size: 30px;
}
._connected-1 .spoznaj-websystem-links h6 {
    color: #051b2c;
    font-size: 18px;
    font-weight: 400;
}
._connected-1 > div > img {
    float: left;
    padding: 10px;
}
#_connected .__connected {
    background: #fbf7ed;
    padding: 20px 0;
}
#_connected .__connected > div h4 {
    font-size: 20px;
    color: #051b2c;
    margin: 40px 0 20px 0;
    width: 100%;
    text-align: left;
}
#_connected .__connected > div h6 {
    font-size: 16px;
    color: #3a3d40;
    font-weight: normal;
    padding-left: 20px;
}
#_connected .__connected > div h6::before {
    content: "\f1ce";
    font-family: "Font Awesome 6 Free";
    display: inline-block;
    vertical-align: middle;
    font-weight: 900;
    font-size: 16px;
    color: #051b2c;
    position: absolute;
    left: 0px;
    top: 3px;    
    font-size: 12px;
}    
.__connected > div:nth-child(2) img:first-child {
    transform: translate(0px, 0px);
}
._connected .spoznaj-websystem-links {
    width: 100%;
}
._connected .spoznaj-websystem-links span h6::before {
    content: "\f058";
    font-family: "Font Awesome 6 Free";
    display: inline-block;
    padding-right: 7px;
    vertical-align: middle;
    font-weight: 900;
    font-size: 14px;
    color: #e54b4d;
    position: relative;
    left: 0;
    top: -2px;    
}
#_connected .pcksend > div {
    padding: 40px;
    background: #f7f7f7;
}
#_connected .pcksend > div:nth-child(2) {
    background: #d5dedd;
}
#_connected .pcksend > div .spoznaj-websystem-links h6 {
    font-size: 16px;
    color: #051b2c;
    font-weight: 400;
}
#_connected .pcksend > div h4 {
    text-transform: uppercase;
}
#_connected .seccnt {
    background: #fbf7ed;
    padding: 40px;
    margin: 0 auto;
    width: 100%;
    max-width: 1300px;
}
#_connected .seccnt > div {
    margin: 20px;
    padding: 20px;
    background: #fff;
    box-shadow: 0 0 10px #00000035;
    display: flex;
    flex-direction: column;
    align-items: center;
}
#_connected .seccnt > div i {
    font-size: 30px;
    padding: 20px;
    color: #e54b4d;
}
#_connected .seccnt > div h4 {
    font-size: 26px;
    text-align: center;
    width: auto;
}
#_connected .seccnt .spoznaj-websystem-links h6 {
    color: #051b2c;
    font-size: 16px;
    font-weight: 400;
    text-align: center;
    margin: 15px 0;
    width: auto;
}
#_connected .seccnt .spoznaj-websystem-links span {
    border-bottom: 1px solid #dedede;
}
#_connected .seccnt .spoznaj-websystem-links span:last-child {
    border-bottom: none;
}
#_connected .seccnt .spoznaj-websystem-links {
    text-align: center;
    padding: 10px;
}

/* <!-- END Spoznaj system section --> */
/* Footer Section */
.footer {
    background: #051b2c;
}
footer .container {
    max-width: 100%;
}
footer .container .wrapper {
    max-width: 1300px;
    width: 100%;
    text-align: center;
}
.footer {
    min-height: initial;
}
.footer-links a {
    margin: 0;
    color: #fff;
    text-decoration: none;
}
.footer-links {
    max-width: 300px;
    display: inline-block;
    vertical-align: top;
}
.footer-links a p:hover {
    color: #fff;
    transition: .3s ease;
}
.footer-links i {
    font-size: 24px;
    color: #e54b4d;
    padding-right: 10px;
    vertical-align: sub;
}
.open-time {
    color: #fff;
    font-size: 12px;
    padding-left: 33px;
}
.footer-links .foot-contact-link {
    color: #e54b4d;
}
.social-wrapper i {
    color: #fff;
}
.social-wrapper i:hover {
    color: #e54b4d;
    transition: .3s ease;
}
.form-group input {
    height: 42px;
    border-radius: 5px 0 0 5px;
    background-color: #fff;
    color: #5b6165;
    font-size: 13px;
    font-weight: 400;
    padding-right: 15px;
    padding-left: 15px;
    border: 0;
    float: left;
    width: auto;
}
.form-group button {
    height: 42px;
    background-color: #e54b4d;
    border-radius: 0 5px 5px 0;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    padding-right: 15px;
    padding-left: 15px;
    float: left;
    transition: all .2s;
    border-color: #374247 #2f3a3f #303b40;
    border-style: solid;
    border-width: 1px;
}
.form-group button:hover {
    background-color: #cf4345;
    transition: .3s ease;
}
.newsletter-wrap {
    float: left;
    padding: 20px 0;
    margin-top: 20px;
    border-top: 1px solid #fff;
}
.newsletter-wrap h6 {
    font-size: 18px;
}
/*<!-- sablony-Hero Section -->*/
.mySwiperTemplates {
    scroll-behavior: smooth;
    max-width: 1260px;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    margin: 0 auto;
    position: relative;
    height: auto;
    padding: 60px 0;
    margin: 0;
}
.mySwiperTemplates {
    width: 100%;
    height: 100%;
  }

.mySwiperTemplates .swiper-slide {
    font-size: 18px;
    background: #fff;

    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}
#sablony-hero .sablony-hero {
    min-height: initial;
}
#sablony-hero {
    background: #fff;
    border-bottom: 1px solid #dedede;
}
#sablony-hero .hero {
    justify-content: flex-start;
    overflow: hidden;
}
#sablony-hero h1 {
    color: transparent;
    animation: text_reveal .5s forwards;
    animation-delay: 1.5s;
}
#sablony-hero h2 {
    color: transparent;
    animation: text_reveal .5s forwards;
    animation-delay: 2.5s;
    margin-bottom: 10px;
}
#sablony-hero p {
    font-size: 24px;
    font-weight: normal;
    color: #051b2c7a;
}
#sablony-hero h1 span {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background-color: #e54b4d;
    animation: box_reveal 1s ease;
    animation-delay: 1s;
}
#sablony-hero h2 span {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background-color: #e54b4d;
    animation: box_reveal 1s ease;
    animation-delay: 2s;
}
#sablony-hero .sablony-hero > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    overflow: hidden;
}
#sablony-hero .hero-wrap {
    width: 50%;
    position: relative;
    z-index: 1;
    padding-top: 80px;
}
#sablony-hero .hero-wrap img {
    float: right;
}
/*<!-- END sablony-Hero Section -->*/
/*<!-- _Templates Sectop -->*/
#_templates .templates {
    min-height: initial;
    padding: 40px 20px;
}
#_templates .templates > div {
    display: flex;
    flex-direction: row-reverse;
}
#_templates .templates .templates-preview {
    text-align: center;
    width: 100%;
}
#_templates .templates .sablony {
    width: 70%;
}
#_templates .templates .templates-preview-item {
    width: 100%;
    max-width: 280px;
    margin: 0 15px;
    display: inline-block;
    vertical-align: top;
}
#_templates .templates .templates-preview-item img {
    border: 1px solid #dedede;
}
#_templates .templates .templates-preview-item img:hover {
    box-shadow: 0 0 10px #333;
    transition: .3s ease;
}
#_templates .templates .templates-preview-item > div {
    width: 100%;
}
#_templates .templates .templates-wrap {
    width: 30%;
    padding: 0 20px;
}
#_templates .templates .templates-preview-item p {
    padding: 10px 0;
}
#_templates .templates-name > div {
    flex-direction: column;
}
#_templates .templates-name .templates-wrap {
    width: 100%;
}
#_templates .templates-name .sablony {
    width: 100%;
    margin: 20px 0;
}
#_templates .templates-favourite {
    background: #f0f1f2;
}
#_templates .templates.reverse-me > div {
    flex-direction: row;
}

/* END <!-- _Templates Sectop -->*/
/*<!-- Templates info -->*/
#templates-info .templates-info {
    min-height: initial;
}
#templates-info .templates-info > div {
    display: flex;
}
#templates-info .templates-info .templates-info-box h6 {
    color: #999;
    font-size: 20px;
}
#templates-info .templates-info .templates-info-box > div {
    padding: 20px;
}
/* END Footer Section */
/* Keyframes */
/*template-article*/
#template-article-hero {
    background: #fafafa;
}
.template-article-hero-wrap h2 {
    margin-bottom: 10px;
}
.template-article-hero > div {
    display: flex;
    width: 100%;
}
.template-article-hero-wrap {
    position: relative;
    width: 50%;
}
.template-article-hero-wrap img {
    transform: translate(0, 50px);
    position: absolute;
    z-index: 1;
}
/* end template-article*/
#abrakadabra h2 {
    text-align: center;
    width: 100%;
    float: left;
}
#abrakadabra .form-group {
    width: 100%;
    float: left;
    margin: 5px 0;
}
#abrakadabra .form-group:last-child {
    text-align: center;
}
#abrakadabra .form-group:last-child button {
    float: none;
    display: inline-block;
    border-radius: 5px;
}
#abrakadabra .form-group input:not(#setup-eshop-conditions-required) {
    width: 100%;
    border: 1px solid #e54b4d;
    border-radius: 5px;
}
#abrakadabra .form-group input#setup-eshop-conditions-required {
    height: auto;
    margin: 2px 10px 0 0;
}
#abrakadabra .form-group label a {
    margin: 0;
    color: #e54b4d;
}
.alert {
    width: 100%;
    float: left;
    padding: 10px 20px;
    box-sizing: border-box;
}
.alert-success {
    border: 2px solid #00cc44;
    color: #00cc44;
}
.alert-danger {
    border: 2px solid #e54b4d;
    color: #e54b4d;
}
#abrakadabra .conditions-row {
    margin: 10px 0;
}
#abrakadabra form a {
    margin: 0;
    color: #e54b4d;
    text-decoration: underline;
}
.kontakt .tryout.container {
    padding: 120px 20px 100px 20px;
}
#second-point {
    text-align: center;
}
#second-point > div {
    display: inline-block !important;
    text-align: left;
    vertical-align: top;
    max-width: 249px;
    width: 100%;
    margin: 20px;
}
#third-point {
    width: 100%;
    max-width: 1300px;
    min-height: initial;
    padding: 0;
    margin: 100px auto;
}
._connected-1 > div:nth-child(2) {
    padding: 40px;    
    background: #fff8f6ed;
    box-shadow: 0 0 10px #78787861;
}
.pricing-cards {
    width: 100%;
    max-width: 1300px;
    padding: 100px 20px;
    padding-top: 100px;
    margin: 0 auto;
}
section#templates > .templates > div,.templates-preview-item .tpi-img img {
    width: 100%;
}
.slider_content > div > span {
    width: 100px;
    float: left;
    margin: 10px;
}
.slider_content > h2 {
    font-weight: bold;
}
@media screen and (max-width: 1200px) {
    #hero .hero-wrap.hero-wom .hovering-wom {
        display: none;
    }
}
@media screen and (min-width: 901px) {
    #templates .template-funkctions-item {
        width: calc(33.3% - 50px);
    }
    .content-info-img-box img {
        position: absolute;
        transition: .3s ease;
    }
    .content-info-img-box img:first-child {
        transform: translate(60px,-40px);
    }
    .content-info-img-box:hover img:first-child {
        transform: translate(100px,-50px);
    }
    .content-info-img-box img:nth-child(2) {
        transform: translate(130px,100px);
    }
    .content-info-img-box:hover img:nth-child(2) {
        transform: translate(190px,120px);
    }
    .content-info-img-box img:nth-child(3) {
        position: relative;
    }
    .content-info-img-box:hover img:nth-child(3) {
        transform: translate(-20px,20px);
    }
    .prpjn img:nth-child(2) {
        transform: translate(-30px,100px);
    }
    .prpjn:hover img:nth-child(2) {
        transform: translate(-50px,120px);
    }
    .prpjn img:nth-child(3) {
        transform: translate(120px,0px);
    }
    .prpjn:hover img:nth-child(3) {
        transform: translate(140px,20px);
    }
    .sprvobj img:first-child {
        transform: translate(70px,90px);
    }
    .sprvobj:hover img:first-child {
        transform: translate(80px,100px);
    }
    .sprvobj img:nth-child(2) {
        transform: translate(100px,-20px);
    }
    .sprvobj:hover img:nth-child(2) {
        transform: translate(120px,-30px);
    }
    .sprvobj img:nth-child(3) {
        transform: translate(0px,0px);
    }
    .sprvobj:hover img:nth-child(3) {
        transform: translate(10px,20px);
    }
    #templates-info .templates-info .templates-info-box > div {
        width: 50%;
    }
    #templates-info .templates-info .templates-info-box {
        display: flex;
    }
    #third-point {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    ._connected-1 > div {
        width: 50%;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-evenly;
    }
    ._connected-1 > div:nth-child(2) {
        justify-content: flex-end;
        transform: translate(-120px, 30px);
    }
    ._connected-1 > div:nth-child(2) .spoznaj-websystem-links {
        display: flex;
        align-items: flex-end;
        padding: 0;
        float: left;
        width: 100%;
        flex-direction: column;
    }
    ._connected-1 > div:nth-child(2):before {
        content: "\f29a";
        font-family: "Font Awesome 6 Free";
        display: inline-block;
        padding-right: 7px;
        vertical-align: middle;
        font-weight: 900;
        font-size: 16px;
        color: #e54b4d;
        position: absolute;
        top: -30px;
        font-size: 50px;
        opacity: .7;
    }
    #_connected .pcksend {
        display: flex;
        flex-direction: row-reverse;
        align-items: center;
        justify-content: center;
    }
    #_connected .pcksend > div {
        width: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }
    #_connected .pcksend > div:nth-child(2) {
        align-items: flex-start;
        padding: 80px;
    }
    ._connected > div {
        padding: 50px;
    }
    #_connected .seccnt,.function-hero,.pricing-cards {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    #_connected .seccnt > div {
        max-width: 300px;
    }
    .spoznaj-websystem-wrap img {
        position: relative;
        z-index: 1;
        float: left;
    }
    .function-hero > div {
        display: flex;
        justify-content: space-between;
    }
    .function-hero-wrap {
        width: 50%;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .function-hero-wrap > p {
        max-width: 400px;
    }
    .pricing-cards > div {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }
    .pricing-cards .cards {
        width: 25%;
        margin: 10px;
    }
    #function-table tr.link th {
        padding: 40px 20px 10px 20px;
        font-size: 20px;
    }
}
@media screen and (max-width: 900px) {
    .content-info-box,#templates-info .templates-info .templates-info-box > div.template-info-img-box,.function-hero > div {
        text-align: center;
    }
    .content-info-text-box h5,.content-info-text-box p {
        width: 100%;
    }
    .content-info-img-box img {
        display: none;
    }
    .content-info-img-box img:last-child,#templates-info .templates-info .templates-info-box > div.template-info-img-box img {
        display: inline-block;
    }
    #templates-info .templates-info .templates-info-box > div,#_connected .pcksend > div {
        width: 100%;
    }
    #_connected #first-point > div:nth-child(2),#third-point > div:first-child,#fourth-point > div:first-child,.spoznaj-websystem-wrap img {
        display: none;
    }
    #_connected .pcksend > div:nth-child(2),._connected > div {
        padding: 40px;
    }
    .function-hero-wrap {
        width: 100%;
        display: inline-block;
    }
    .function-hero-wrap > p,.function-hero-wrap > h2 {
        width: 100%;
        float: left;
    }
    .pricing-cards > div {
        text-align: center;
    }
    .pricing-cards .cards {
        display: inline-block;
        margin: 10px 10px 40px 10px;
    }
    #function-table tr.link th {
        font-size: 12px;
    }
}
@media screen and (min-width: 501px) and (max-width: 900px) {
    #templates .template-funkctions-item {
        width: calc(50% - 50px);
    }
    .pricing-cards .cards {
        width: calc(50% - 40px);
    }
}
@media screen and (min-width: 501px) {
    .footer-links a,.footer-links .newsletter-wrap > p,.footer-links > p {
        text-align: left;
    }
    .social-wrapper {
        display: flex;
    }
    .footer-links {
        margin: 0 20px 20px 0;
    }
}
@media screen and (max-width: 500px) {
    #templates .template-funkctions-item {
        width: 100%;
        margin-right: 0;
    }
    .footer-links h6 {
        width: 100%;
    }
    .footer-links .social-wrapper > p {
        display: inline-block;
    }
    .footer-links {
        margin: 0 0 10px 0;
    }
    .pricing-cards .cards {
        width: calc(100% - 40px);
    }
}
@keyframes  hamburger_puls {
    0%{
        opacity: 1;
        transform: scale(1);
    }
    100%{
        opacity: 0;
        transform: scale(1.3);
    }
}
@keyframes box_reveal {
    50%{
        width: 100%;
        left: 0;
    }
    100%{
        width: 0;
        left: 100%;
    }
}
@keyframes text_reveal {
    100% {
        color: #051b2c;
    }
}
@keyframes myOrbit1 {
    0% { transform: rotate(0deg) translateX(150px) rotate(0deg) scale(.5); }
    50%   { transform: rotate(180deg) translateX(150px) rotate(-180deg) scale(.8); }
    100%   { transform: rotate(360deg) translateX(150px) rotate(-360deg) scale(.5); }
}
@keyframes myOrbit2 {
    0% { transform: rotate(0deg) translateX(150px) rotate(0deg) scale(.5); }
    50%   { transform: rotate(180deg) translateX(150px) rotate(-180deg) scale(.8); }
    100%   { transform: rotate(360deg) translateX(150px) rotate(-360deg) scale(.5); }
}
@keyframes myOrbit3 {
    0% { transform: rotate(0deg) translateX(150px) rotate(0deg) scale(.5); }
    50%   { transform: rotate(180deg) translateX(150px) rotate(-180deg) scale(.8); }
    100%   { transform: rotate(360deg) translateX(150px) rotate(-360deg) scale(.5); }
}
@keyframes myOrbit4 {
    0% { transform: rotate(0deg) translateX(150px) rotate(0deg) scale(.5); }
    50%   { transform: rotate(180deg) translateX(150px) rotate(-180deg) scale(.8); }
    100%   { transform: rotate(360deg) translateX(150px) rotate(-360deg) scale(.5); }
}
/* End Keyframes */

  @keyframes spin {
    0% {
        transform:rotate(0deg) translate(100px) rotate(0deg) scale(.2); z-index: initial;
      }
    50% {
        transform:rotate(140deg) translate(100px) rotate(-140deg) scale(.8); z-index: 10;
      }
    100% {
      transform:rotate(360deg) translate(100px) rotate(-360deg) scale(.2); z-index: initial;
    }
  }
