/*
Theme Name: My Awesome Theme
Theme URI: https://www.myawesometheme.com
Author: John Doe
Author URI: https://www.johndoe.com
Description: My Awesome Theme is a responsive, modern, and feature-rich WordPress theme designed for all kinds of websites. It comes with a custom homepage layout, multiple widget areas, and full compatibility with popular plugins.
Version: 1.0.0
License: GNU General Public License v3 or later
License URI: http://www.gnu.org/licenses/gpl-3.0.html
Text Domain: my-awesome-theme
Tags: responsive, modern, custom-background, custom-header, custom-menu, featured-images, threaded-comments, translation-ready
*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

:root {
    --darkblue: #01778C;
    --lightblue: #05a6c3;
    --turkiz: #00c5bc;
    --pink: #f59faf;
    --orange: #f2b85a;
    --beige: #e8e0d8;
    --light: #fffaf5;
    --dark: #00252b;
    --hero-gradient: linear-gradient(247deg, #00C5BC 9.03%, #05A6C3 47.26%, #017F91 77.9%);
    --rolam-gradient: linear-gradient(74deg, #00C5BC 2.42%, #05A6C3 55.35%, #017F91 97.8%);
    --button-gradient: linear-gradient(94deg, #F2B85A 1.26%, #F8CC85 96.74%);
    --radius: 20px;
    --shadow: 0px 8px 15px 0px rgba(0, 0, 0, 0.10);
}


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

html {
    font-size: 18px;
    scroll-behavior: smooth;
}

@media only screen and (max-width: 768px) {
    :root {
        --gap: 30px;
    }
}

@media only screen and (max-width: 480px) {
    html {
        font-size: 16px;
    }
}

body {
    margin: 0;
    padding: 0;
    font-family: "Rubik", sans-serif;
    color: var(--dark);
}

h1,
h2,
h3,
h4,
summary {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    line-height: 1.3;
}

summary {
    font-size: 1.2rem;
}

h1,
h2 {
    font-size: 2rem;
    padding-bottom: 1rem;
}

.small_h2 {
    font-size: 1.6rem;
    margin: 0;
}

h3 {
    font-size: 1.3rem;
}

.big_h3 {
    font-size: 2.3rem;
    margin: 0;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: var(--orange);
    text-decoration: none;
}

a:hover {
    color: var(--turkiz);
}


p,
li {
    line-height: 1.5;
}

ul {
    padding-left: 20px;
    list-style-type: square;
}

ul li::marker {
    color: var(--turkiz);
}

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


.button a,
input[type=submit],
button[type=submit] {
    display: inline-block;
    padding: 20px 30px;
    color: var(--dark);
    background: var(--button-gradient);
    border-radius: var(--radius);
    text-transform: uppercase;
    font-weight: bold;
    border: none;
    font-family: inherit;
    font-size: 0.8rem;
    line-height: 1;
    box-shadow: var(--shadow);
    transition: all 0.3s ease-in-out;
}

.button a:hover,
input[type=submit]:hover,
button[type=submit]:hover {
    background: var(--lightblue);
    color: #fff;
    transform: scale(1.1);
}

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

.card,
#termekek-category a {
    padding: 20px 40px;
    align-items: center;
    border: 1px solid #ded9d9;
    background: #fff;
    box-shadow: var(--shadow);
    border-radius: var(--radius);
    position: relative;
    z-index: 1000;
}

.card > h3 {
    margin-bottom: 0;
}

.single-card {
    padding: 20px 40px;
    align-items: center;
    border: 1px solid #ded9d9;
    background: #fff;
    box-shadow: var(--shadow);
    border-radius: var(--radius);
    max-width: 30%;
    margin: auto;
    margin-top: 1.5rem;
}

.review-slider {
    overflow: hidden;
    position: relative;
    width: 80%;
    margin: auto;
}

.reviews {
    display: block;
    white-space: nowrap;
    position: relative;
    font-size: 0;
    padding: 0;
    margin: 0;
}

.reviews li {
    list-style-type: none;
    padding: 1rem 2rem;
    display: inline-block;
    position: relative;
    min-width: 100%;
    white-space: initial;
    font-size: initial;
    vertical-align: middle;
}

.next-review,
.prev-review {
    display: block;
    position: absolute;
    bottom: 40%;
    width: 50px;
    height: 50px;
    margin-top: -25px;
    z-index: 5;
    cursor: pointer;
    border-radius: 50%;
}

.prev-review {
    left: 5%;
}

.prev-review:before {
    position: absolute;
    top: 40%;
    right: 50%;
    margin-top: -6px;
    content: "";
    width: 0;
    height: 0;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-right: 16px solid var(--turkiz);
}

.next-review {
    right: 5%;
}

.next-review:before {
    position: absolute;
    top: 40%;
    left: 50%;
    margin-top: -6px;
    content: "";
    width: 0;
    height: 0;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-left: 16px solid var(--turkiz);
}

.card-testimonials {
    max-width: 75%;
    margin: auto;
    margin-bottom: 20px;
    padding: 20px 40px;
    align-items: center;
    border: 1px solid #ded9d9;
    background: #fff;
    box-shadow: var(--shadow);
    border-radius: var(--radius);
    position: relative;
    z-index: 1000;
}


/*.card-testimonials:before {
    content: "";
    width: 50px;
    height: 50px;
    position: absolute;
    display: block;
    background: url(img/quote_fent.png);
    background-size: cover;
    top: -10%;
    left: -2%;
}

.card-testimonials:after {
    content: "";
    width: 50px;
    height: 50px;
    position: absolute;
    display: block;
    background: url(img/quote_lent.png);
    background-size: cover;
    bottom: -10%;
    right: -2%;
}*/

.wide {
    width: calc(100vw - 18px);
    position: relative;
    left: calc(50% + 8px);
    margin-left: -50vw;
}

.light {
    color: #fff;
}

/*Layout*/
section {
    padding-top: 100px;
    padding-bottom: 100px;
}

.tanfolyam-slider-mobil {
    display: none;
}

.hero-text {
    max-width: 75%;
    padding: 0 2rem;
    margin: auto;
}

figure img {
    border-radius: 20px;
}

.form-box {
    max-width: 70%;
    margin: auto;
}

.fluentform {
    margin-top: 1.5rem;
}

.bulb_bg {
    background: url(img/bulb_bg.png);
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.bulb_bg:before {
    content: url(img/bulb_bg_pink.png);
    position: absolute;
    top: -30%;
    left: -10%;
    z-index: 0;
}

.bulb_bg:after {
    content: url(img/bulb_bg_blue.png);
    position: absolute;
    bottom: -20%;
    right: -10%;
}

.margin-col {
    margin: 0 40px;
}

.bulb_bg img,
.bulb_bg .button {
    position: relative;
    z-index: 1000;
}

.light-bg {
    background: var(--light);
}

#logo svg {
    width: 3.2rem;
}

.top-margin {
    margin-top: 1.5rem;
}

.dark-link a {
    text-decoration: none;
    color: var(--dark);
}

.narrow-p {
    max-width: 75%;
    margin: auto;
}

header .content-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px;
}

.index-about figure {
    max-width: 75%;
}

.popular-products {
    /* background: url(img/popular_bg.jpg);
    background-size: cover;
    background-position: bottom left;*/
    background: var(--hero-gradient);

}

.index-varras,
.rolunk_varras,
.egyeni_hero {
    background-image: url(img/varras_bg.jpg);
    background-size: cover;
}

.egyeni_hero {
    background-position: bottom;
}

.rolunk_varras {
    background-position: bottom;
}

.varrogep {
    position: relative;
}

.varrogep:before {
    /* content: url(img/varrogep.png); */
    content: url(img/varrogep.png);
    width: 100%;
    display: block;
    height: auto;
    position: absolute;
    bottom: -50%;
    right: 75%;
    overflow: visible;
}

.hero {
    background: var(--hero-gradient);
    background-image: url(img/hero_bg.jpg);
    background-size: cover;
}

.eszter {
    background: var(--hero-gradient);
    position: relative;
}

.hero-gradient-bg,
.termekek_blokk:nth-of-type(even) {
    background: var(--hero-gradient);
}

.termekek_blokk:nth-of-type(even) p,
.termekek_blokk:nth-of-type(even) h3 {
    color: #fff;
}

.tanfolyam-gradient_bg {
    background: linear-gradient(254deg, #017F91 23.16%, #05A6C3 57.5%, #00C5BC 100.34%);
}

.eszter-kep {
    position: relative;
    bottom: -120px;
}

.product-img {
    border-radius: 40px;
}

.product-hero,
#termekek-hero {
     background: var(--hero-gradient);
    /*background: url(img/hero_bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;*/
}

#termekek-category {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

#termekek-category a {
    display: inline-block;
    flex-basis: 30%;
    list-style-type: none;
    text-align: center;
    padding-top: 10rem;
    position: relative;
    z-index: 1;
    font-size: 1.3rem;
    color: inherit;
    margin: 1rem;
}

#termekek-category a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 10rem;
    top: 0;
    left: 0;
    background-image: url(img/term_logo.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

#termekek-hero h1 {
    font-size: 1.6rem;
    margin-bottom: 0;
}

#termekek-hero h2 {
    margin-top: 0;
}

#termekek-hero-txt {
    margin-left: 2rem;
    width: 60%;
    color: white;
}

.vedono {
    background: url(img/vedono_hatter_color.jpg);
    background-size: cover;
    color: #fff;
}

.varras-hero {
    background: url(img/varras_hero_bg.jpg);
    background-size: cover;
    background-position: top;
}

.taxonomy-hero {
     background: var(--hero-gradient);
   /* background: url(img/hero_bg.jpg);
    background-size: cover;
    background-position: left bottom -300px;*/
}

.taxonomy-hero-text {
    color: #fff;
    width: 70%;
    margin: 0 40px;
}

.babyproduct-hero {
    background: url(img/babyproduct_hero_bg.jpg);
    background-size: cover;
    background-position: left bottom -300px;
}

.ovis_hero {
    background: url(img/ovi_hero_bg.jpg);
    background-size: cover;
    background-position: center;
}

.bathroom_hero {
    background: url(img/bathroom_hero_bg.jpg);
    background-size: cover;
    background-position: center;
}

.kitchen_hero {
    background: url(img/kitchen_hero_bg.jpg);
    background-size: cover;
    background-position: center;
}

.nover_hero {
    background: url(img/nover_hero_bg.jpg);
    background-size: cover;
    background-position: center;
}

.gift_hero {
    background: url(img/gift_hero_bg.jpg);
    background-size: cover;
    background-position: center;
}

.kostolo_hero {
    background: url(img/kostolo_hero_bg.jpg);
    background-size: cover;
    background-position: center;
}

.kezdo_hero {
    background: url(img/kezdo_hero_bg.jpg);
    background-size: cover;
    background-position: center;
}

.kismama_hero {
    background: url(img/kismama_hero_bg.jpg);
    background-size: cover;
    background-position: center;
}

.gyerek_hero {
    background: url(img/gyerek_hero_bg.jpg);
    background-size: cover;
    background-position: center;
}

.halado_hero {
    background: url(img/halado_hero.jpg);
    background-size: cover;
    background-position: top;
}

.workshop_hero {
    background: url(img/workshop_hero_bg.jpg);
    background-size: cover;
    background-position: top;
}

.jelentkezes_tanfolyam {
    text-transform: uppercase;
}

.jelentkezes_tanfolyam a {
    font-weight: bold !important;
    color: var(--orange) !important;
}

footer {
    background: var(--hero-gradient);
    color: #fff;
    padding-top: 100px;
    padding-bottom: 50px;
}

footer h3 {
    font-size: 1.1rem;
}

footer p {
    margin: 0;
}

footer a {
    color: #fff;
}

footer a:hover {
    color: var(--orange);
}

.social {
    width: 50px;
}

.social-cont {
    max-width: 70%;
    margin-top: 1rem;
}

.nyitvatartasp {
    margin-top: 0.5rem;
}

#copywright {
    font-size: smaller;
}

iframe {
    max-width: 100% !important;
}

.termekek-oldalsav {
    padding: 2rem 1rem;
    background-color: var(--light);
}

.termekek-oldalsav-ul li {
    list-style-type: none;
    margin: 1rem 0;
}

.termekek-oldalsav-ul li a {
    padding: 1rem 0;
}

#go-to-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 10px;
    border: 0.5px solid var(--turkiz);
}

#go-to-top:before {
    content: "";
    position: absolute;
    left: 30%;
    bottom: 20%;
    border: solid var(--turkiz);
    border-width: 0 4px 4px 0;
    display: inline-block;
    padding: 6px;
    transform: rotate(-135deg);
}

.ff-message-success p {
    color: white;
    text-align: center;
}

#fluentform_3_success p,
#fluentform_4_success p {
    color: inherit;
}

/*The event calendar megjelnése*/
.tribe-events-widget-events-list__header,
.tribe-events-widget-events-list__view-more {
    display: none !important;
}

.tribe-common-g-row {
    border: 1px solid #ded9d9;
    background: #fff;
    box-shadow: var(--shadow);
    border-radius: var(--radius);
    padding: 1rem 0 !important;
}

.tribe_events .button {
    background-color: transparent;
    border: none;
    overflow: visible;
    display: block;
}

/*Blog oldal*/
.blog h2 {
    font-size: 1.5rem;
}

.blog img {
    border-radius: 20px;
}

.nav-links {
    text-align: center;
    margin-bottom: 2rem;
}

.nav-links span {
    display: inline-block;
    width: 1.5rem;
    height: 1.5rem;
    line-height: 1.5rem;
    text-align: center;
    background: var(--orange);
}

@media only screen and (max-width: 1024px) {
    .wide {
        width: 100vw;
        left: 50%;
        margin-left: -50vw;
    }

    header .content-box {
        flex-wrap: wrap;
    }

    .eszter-kep {
        bottom: -300px;
    }
}

@media only screen and (max-width: 820px) {
    h3 {
        font-size: 1.1rem;
    }

    .card-icon img {
        width: 75px !important;
        height: 75px !important;
    }

    #termekek-category a {
        flex-basis: 45%;
    }

}


@media only screen and (max-width: 781px) {
    .index-about figure {
        margin-top: 0;
    }

    .eszter-kep {
        bottom: 0px;
    }

    .varrogep:before {
        bottom: -160%;
        right: 30%;
    }

    .babyproduct-hero {
        background-position: left bottom;
    }

    .termekek_blokk {
        display: flex;
        flex-wrap: wrap;
    }

    .termekek_blokk .wp-block-columns .wp-block-column {
        flex-basis: 45% !important;
        box-sizing: border-box;

    }
}

@media only screen and (max-width: 480px) {
    section {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .hero-text {
        max-width: 90%;
    }

    #termekek-hero-txt {
        width: 80%;
    }

    #termekek-hero h1 {
        font-size: 1.3rem;
        text-align: center;
    }

    #termekek-category {
        display: block;
        padding-left: 0;
    }

    #termekek-category a {
        display: block;
        max-width: 80%;
        margin: 1rem auto;
    }

    .tanfolyam-slider-mobil {
        display: block;
    }

    .card {
        max-width: 80%;
        margin: auto !important;
        padding: 10px 25px;
    }

    h2 {
        font-size: 1.5rem;
        margin-left: 15px;
        margin-right: 15px;
        text-align: center !important;
    }

    .hero h2 {
        text-align: left !important;
    }

    h3 {
        font-size: 1rem;
    }

    .varrogep:before {
        display: none;
    }

    .varrogep {
        background: url(img/varrogep.png);
        background-size: cover;
        background-position: left bottom;
    }

    .index-varras {
        padding-bottom: 0;
    }

    figure {
        max-width: 80%;
        margin: auto;
    }



    .card-testimonials:before {
        top: -5%;
        left: -7%;
    }

    .card-testimonials:after {
        bottom: -5%;
        right: -7%;
    }

    .wp-block-button {
        margin: auto !important;
    }

    .big_h3 {
        font-size: 2rem;
    }

    .small_h2 {
        text-align: left !important;
    }

    .narrow-p {
        max-width: 100%;
        margin: 0;
    }

    .single-card {
        max-width: 70%;
        padding: 10px 25px;
    }

    .form-box {
        max-width: 90%;
    }

    .termekek_blokk .wp-block-columns .wp-block-column {
        flex-basis: 100% !important;
    }

}


@media only screen and (max-width: 320px) {}
