:root {
    --gray: #2B2E31;
    --blue: #29B7C1;
    --red: #DC1D4A;
    --green: #49AD48;
    --yellow: #FEC726;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Jost', sans-serif;
}

html {
    scrollbar-width: none;
}

body {
    margin: 0;
    padding: 0;
    opacity: 0;
    transition: opacity 0.5s, filter 0.5s;
    background-color: white;
    color: var(--gray);
    overflow-x: hidden;
}

body.grayscale {
    filter: grayscale(100%);
}

/* body.negative-contrast {
    background-color: #111;
} */

/* body.negative-contrast h2,
body.negative-contrast h3,
body.negative-contrast h4,
body.negative-contrast h5,
body.negative-contrast h6,
body.negative-contrast p,
body.negative-contrast li {
    color: white !important;
} */

.body-wrapper {
    overflow-x: hidden;
    width: 100vw;
}

html.lenis,
html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-scrolling iframe {
    pointer-events: none;
}

.container {
    padding: 0;
    max-width: 1140px;
    margin: 0 auto;
    width: 100%;
}

strong {
    font-weight: 600;
}

h1 {
    font-size: 64px;
    margin: 0;
    font-weight: 600;
    text-transform: uppercase;
}

h2 {
    font-size: 66px;
    line-height: 1.1;
    margin-bottom: 105px;
    margin-top: 180px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--gray);
    position: relative;
    padding-left: 100px;
}

h2::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%) scale(0);
    width: 180px;
    height: 180px;
    border-radius: 999px;
    z-index: -1;
    transition: transform 0.5s ease-out;
    background-color: var(--blue);
}

h2.active::before {
    transform: translateY(-50%) scale(1);
}

h2.red::before {
    background-color: var(--red);
}

h2.green::before {
    background-color: var(--green);
}

h2.blue::before {
    background-color: var(--blue);
}

h2.yellow::before {
    background-color: var(--yellow);
}

h2 span {
    color: var(--gray);
    transition: color 0.5s;
}

h2.active span.white {
    color: white;
}

h3 {
    font-size: 18px;
    line-height: 1.3;
    font-weight: 600;
    margin-bottom: 40px;
}

h4 {
    font-weight: 600;
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 10px;
}

h5 {
    font-weight: 600;
    font-size: 16px;
    margin: 20px 0 0;
}

h6 {
    font-weight: 600;
    font-style: italic;
    font-size: 16px;
    margin: 20px 0 0;
}

p,
li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
    margin-top: 0;
}

li {
    margin: 0;
    margin-left: 16px;
}

ul {
    margin-bottom: 20px;
}

section {
    margin: 140px 0;
    padding: 0 20px;
}

#step {
    margin: 0;
    padding: 0;
}

#basketcontent {
    margin-top: 40px;
}

#basketpage .secret {
    visibility: hidden;
}

.primary-link,
#myModal .btn {
    padding: 13px 22px 12px;
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    transition: background-color 0.3s, color 0.3s, border 0.3s;
    border-radius: 99px;
    display: block;
    width: fit-content;
    background-color: transparent;
    border: 1px solid var(--gray);
    text-transform: uppercase;
    outline: none;
    white-space: nowrap;
}

.primary-link:hover,
#myModal .btn:hover {
    border: 1px solid var(--gray);
    background-color: var(--gray) !important;
    color: white;
}

.primary-link img,
.primary-link svg {
    transition: all 0.3s;
    transform: translateX(3px);
    display: inline-block;
    width: 15px !important;
    vertical-align: baseline;
    margin-top: 0 !important;
}

.primary-link:hover img {
    filter: invert(1) brightness(2);
    transform: translateX(8px);
}

.primary-link:hover svg {
    transform: translateX(8px);
}

.primary-link svg path {
    transition: all 0.3s;
}

.primary-link.blue {
    background-color: var(--blue);
    border: 1px solid var(--blue);
    color: white;
}

.primary-link.blue:hover {
    color: var(--blue);
    background-color: white !important;
}

.primary-link.blue:hover svg path {
    fill: var(--blue);
}

.primary-link.red {
    background-color: var(--red);
    border: 1px solid var(--red);
    color: white;
}

.primary-link.red:hover {
    color: var(--red);
    background-color: white !important;
}

.primary-link.red:hover svg path {
    fill: var(--red);
}

.primary-link.yellow {
    background-color: var(--yellow);
    border: 1px solid var(--yellow);
    color: var(--gray) !important;
}

.primary-link.yellow:hover {
    color: var(--yellow) !important;
    background-color: white !important;
}

.primary-link.yellow:hover svg path {
    fill: var(--yellow);
}

.primary-link.green {
    background-color: var(--green);
    border: 1px solid var(--green);
    color: white;
}

.primary-link.green:hover {
    color: var(--green);
    background-color: white !important;
}

.primary-link.green:hover svg path {
    fill: var(--green);
}

.primary-link.blue-outline {
    border: 1px solid var(--blue);
    color: var(--blue);
}

.primary-link.blue-outline svg path {
    fill: var(--blue);
}

.primary-link.blue-outline:hover {
    color: white;
    background-color: var(--blue) !important
}

.primary-link.red-outline {
    border: 1px solid var(--red);
    color: var(--red);
}

.primary-link.red-outline svg path {
    fill: var(--red);
}

.primary-link.red-outline:hover {
    color: white;
    background-color: var(--red) !important;
}

.primary-link.green-outline {
    border: 1px solid var(--green);
    color: var(--green);
}

.primary-link.green-outline svg path {
    fill: var(--green);
}

.primary-link.green-outline:hover {
    color: white;
    background-color: var(--green) !important;
}

.primary-link.yellow-outline {
    border: 1px solid var(--yellow);
    color: var(--yellow);
}

.primary-link.yellow-outline:hover {
    color: white;
    background-color: var(--yellow) !important;
}

.primary-link.blue-outline:hover svg path,
.primary-link.red-outline:hover svg path,
.primary-link.green-outline:hover svg path {
    fill: white;
}

.form-control:focus {
    border-color: var(--blue);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

::selection {
    background: #5DCCD4;
    color: white;
}

::-moz-selection {
    background: #5DCCD4;
    color: white;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: none;
    opacity: 0;
    background-color: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    transition: opacity 0.4s;
    z-index: 996;
}

.overlay.active {
    opacity: 1;
}

.rccookie-container h4, h5 {
    margin-top: 0;
}

.custom-control-input:checked ~ .custom-control-label::before {
    background-color: var(--blue) !important;
    border-color: var(--blue) !important;
}

.custom-control-label::before {
    border: 1px solid var(--gray);
}

.g-recaptcha {
    filter: brightness(1.08) hue-rotate(310deg);
}

.slider:hover {
    background: var(--blue);
    border: 2px solid var(--blue) !important;
}

.sliderMask {
    border-color: var(--blue) !important;
    background-color: var(--blue) !important;
}

/* .submitButton,
.btn-warning {
    background-color: var(--blue);
    border: 2px solid var(--blue);
    color: white;
    font-weight: 500;
}

.submitButton:hover,
.btn-warning:hover {
    background-color: white;
    color: var(--blue);
    border: 2px solid var(--blue);
}

.submitButton:focus,
.btn-warning:focus {
    background-color: white;
    color: var(--blue);
    border: 2px solid var(--blue);
    outline: none !important;
} */

a {
    transition: color 0.3s;
    text-decoration: none;
    cursor: pointer;
    color: var(--gray);
}

a:hover,
a:focus-visible {
    text-decoration: none;
    color: var(--blue);
}

button {
    transition: background-color 0.3s, color 0.3s;
    border: none;
    outline: none;
    cursor: pointer;
    background: transparent;
}

button:focus {
    outline: none !important;
}

.vbox-container {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.vbox-close {
    padding: 20px !important;
    top: 10px !important;
    right: 20px !important;
}

.vbox-next {
    right: 40px !important;
}

.vbox-prev {
    left: 40px !important;
}

.vbox-title {
    display: none !important;
}

/* CALENDAR */

#ui-datepicker-div {
    max-width: 400px;
    width: 100%;
    background-color: white;
    padding: 25px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: -100%;
    left: -100%;
}

.ui-datepicker-header {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.ui-datepicker-prev,
.ui-datepicker-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    cursor: pointer;
}

.ui-datepicker-prev span,
.ui-datepicker-next span {

    font-size: 30px;
    line-height: 24px;
    font-weight: 500;
}


.ui-datepicker-prev {
    left: 0;
}

.ui-datepicker-next {
    right: -15px;
}

.ui-datepicker-calendar {
    width: 100%;
    border-spacing: 0;
    border-collapse: collapse;
}

.ui-datepicker-calendar td {
    width: calc(100% / 7);
}

.ui-state-default {
    color: var(--gray);
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.ui-datepicker-current-day a {
    color: white;
    background-color: var(--blue);
    border-radius: 5px;
}

.ui-datepicker-unselectable span {
    color: #bbb;
    cursor: default;
}

.ui-datepicker-calendar thead {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--blue);
}

.ui-datepicker-title {
    font-size: 18px;
    font-weight: 600;
}

.ui-datepicker-calendar th span {
    color: var(--blue);
    text-transform: uppercase;
    font-weight: 600;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* DESKTOP NAVBAR */

.desktop-navbar {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    padding: 1vw 1.5vw;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.5s, box-shadow 0.5s;
}

.desktop-navbar.active {
    background-color: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.desktop-navbar .left {
    background-color: white;
    border-radius: 99px;
    padding: 0 1.75vw 0 1.25vw;
    display: flex;
    align-items: center;
    height: 4vw;
}

.desktop-navbar .links {
    display: flex;
    align-items: center;
    gap: 1.7vw;
}

.desktop-navbar .logo {
    height: 1.5vw;
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
}

.desktop-navbar .logo img {
    height: 100%;
    width: auto;
    display: none;
}

.body-wrapper.red .desktop-navbar .logo img:first-of-type {
    display: block;
}

.body-wrapper.blue .desktop-navbar .logo img:nth-of-type(2) {
    display: block;
}

.body-wrapper.green .desktop-navbar .logo img:nth-of-type(3) {
    display: block;
}

.desktop-navbar .links .nav-item {
    font-size: 2vmin;
    font-weight: 600;
    display: flex;
    align-items: center;
    position: relative;
    white-space: nowrap;
}

.desktop-navbar .links .nav-item:hover {
    color: var(--yellow);
}

.desktop-navbar .links .link:nth-of-type(2) .nav-item:hover {
    color: var(--blue);
}

.desktop-navbar .links .link:nth-of-type(3) .nav-item:hover {
    color: var(--green);
}

.desktop-navbar .links .link:nth-of-type(4) .nav-item:hover {
    color: var(--red);
}

.desktop-navbar .links a svg {
    width: 0.7vw;
    margin-top: 0.08vw;
    margin-left: 0.4vw;
    transition: transform 0.3s;
}

.desktop-navbar .links a svg path {
    transition: stroke 0.3s;
    stroke: var(--gray);
}

.desktop-navbar .links .link:nth-of-type(2) a:hover svg path {
    stroke: var(--blue);
}

.desktop-navbar .links .link:nth-of-type(3) a:hover svg path {
    stroke: var(--green);
}

.desktop-navbar .links .link:nth-of-type(4) a:hover svg path {
    stroke: var(--red);
}

.desktop-navbar .links a.active svg {
    transform: rotate(180deg);
}

.desktop-navbar .right {
    display: flex;
    align-items: center;
    gap: 1.5vw;
}

.desktop-navbar .right button {
    height: 4vw;
    width: 4vw;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 99px;
}

.desktop-navbar .right button img,
.desktop-navbar .right button svg {
    height: 1.6vw;
}

.desktop-navbar .right button.support {
    width: fit-content;
    font-size: 2vmin;
    color: white;
    text-transform: uppercase;
    font-weight: 600;
    transition: background-color 0.3s, color 0.3s;
}

.desktop-navbar .right button.support.red {
    border: 1px solid var(--red);
    background-color: var(--red);
    padding: 0 4vmin;
}

.desktop-navbar .right button.support.red:hover,
.body-wrapper.red:not(.main) .desktop-navbar:not(.active) .right button.support.red {
    background-color: white;
    color: var(--red);
}

.desktop-navbar .right button.support span {
    margin-top: 0.2vmin;
}

.desktop-navbar .right button.search {
    background-color: var(--yellow);
    border: 1px solid var(--yellow);
}

.desktop-navbar .right button.search:hover,
.desktop-navbar .right button.basket:hover,
.desktop-navbar .right button.accessibility:hover,
.body-wrapper.blue .desktop-navbar:not(.active) .right button.basket,
.body-wrapper.green .desktop-navbar:not(.active) .right button.accessibility {
    background-color: white;
}

.desktop-navbar .right button.search svg * {
    transition: stroke 0.3s;
}

.desktop-navbar .right button.search:hover svg * {
    stroke: var(--yellow);
}

.desktop-navbar .right button.basket {
    background-color: var(--blue);
    border: 1px solid var(--blue);
}

.desktop-navbar .right button.basket svg path,
.desktop-navbar .right button.accessibility svg path {
    transition: fill 0.3s;
}

.desktop-navbar .right button.basket:hover svg path,
.body-wrapper.blue .desktop-navbar:not(.active) .right button.basket svg path {
    fill: var(--blue);
}

.desktop-navbar .right button.accessibility {
    background-color: var(--green);
    border: 1px solid var(--green);
}

.desktop-navbar .right button.accessibility:hover svg path,
.body-wrapper.green .desktop-navbar:not(.active) .right button.accessibility svg path {
    fill: var(--green);
}

/* NAVBAR DROPDOWN */

.desktop-navbar .navbar-dropdown {
    position: absolute;
    top: calc(100% + 1vw);
    left: -1.5vw;
    width: 100vw;
    height: fit-content;
    overflow: hidden;
    z-index: 998;
    height: 70vh;
    max-height: 0;
    transition: max-height 0.4s cubic-bezier(0.33, 1, 0.68, 1) 0s;
}

.desktop-navbar .navbar-dropdown.active {
    max-height: 70vh;
    z-index: 999;
}

.navbar-dropdown.red .rect {
    border: 15px solid var(--red);
}

.navbar-dropdown.blue .rect {
    border: 15px solid var(--blue);
}

.navbar-dropdown.green .rect {
    border: 15px solid var(--green);
}

.navbar-dropdown.yellow .rect {
    border: 15px solid var(--yellow);
}

.navbar-dropdown .rect {
    background-color: white;
    padding-bottom: 20vh;
    height: 100%;
}

.desktop-navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 100%;
    width: 100%;
    gap: 1.5vw;
    position: relative;
}

.navbar-dropdown .container {
    display: flex;
    padding: 40px 0;
    max-width: 1200px;
    width: 100%;
    justify-content: center;
    gap: 5vw;
    align-items: flex-start;
}

.navbar-dropdown .container .item {
    position: relative;
    z-index: 1;
}

.navbar-dropdown h3,
.sidenav h3 {
    font-size: 2.6vmin;
    margin-bottom: 2.6vmin;
}

.navbar-dropdown .cols {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    max-height: 36vmin;
}

.navbar-dropdown a,
.sidenav a {
    display: block;
    width: fit-content;
    margin-bottom: 1.3vmin;
    font-size: 2vmin;
}

.navbar-dropdown.blue a:hover,
.sidenav-wrapper.blue .sidenav a:hover {
    color: var(--blue);
}

.navbar-dropdown.green a:hover,
.sidenav-wrapper.green .sidenav a:hover {
    color: var(--green);
}

.navbar-dropdown.red a:hover,
.sidenav-wrapper.red .sidenav a:hover {
    color: var(--red);
}

.navbar-dropdown.yellow a:hover,
.sidenav-wrapper.yellow .sidenav a:hover {
    color: var(--yellow);
}

.navbar-dropdown .image {
    position: absolute;
    bottom: 0;
    right: -1vw;
    height: 45vh;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    gap: 3vw;
}

.navbar-dropdown .image::before {
    content: "";
    position: absolute;
    bottom: -7vh;
    right: -5vh;
    height: 50vh;
    width: 50vh;
    border-radius: 999px;
    z-index: 1;
}

.navbar-dropdown.red .image::before {
    background-color: var(--red);
}

.navbar-dropdown.blue .image::before {
    background-color: var(--blue);
}

.navbar-dropdown.green .image::before {
    background-color: var(--green);
}

.navbar-dropdown.yellow .image::before {
    background-color: var(--yellow);
}

.navbar-dropdown .image .quote {
    font-style: italic;
    font-size: 3.5vmin;
    line-height: 1.3;
    font-weight: 500;
    max-width: 50vmin;
    margin-bottom: 10vh;
    text-align: center;
}

.navbar-dropdown .image img {
    height: 100%;
    position: relative;
    z-index: 2;
}

#myModal .modal-content{
    border-radius: 15px 15px 0 0;
}

#myModal .modal-header,
#myModal .modal-body {
    padding: 20px;
}

#myModal .btn-primary {
    background-color: var(--yellow);
    border: 1px solid var(--yellow);
    color: var(--gray);
}

#myModal .btn-secondary {
    color: var(--gray);
}

.modal-body form {
    background: transparent;
    padding: 0;
}

/* KIS LENYÍLÓK */

.desktop-modal {
    position: absolute;
    top: 100%;
    right: 0;
    width: 20vw;
    background-color: white;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.1));
    border-radius: 15px;
    display: none;
    opacity: 0;
    transition: transform 0.3s, opacity 0.3s;
    padding: 20px;
}

.desktop-modal.active {
    transform: translateY(2vw);
    opacity: 1;
}

.desktop-modal::before {
    content: '';
    position: absolute;
    top: -1.2vw;
    height: 1.5vw;
    width: 2.8vw;
    background-image: url('../images/triangle.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.desktop-modal .cancel,
.navbar-dropdown .cancel {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 10px;
    cursor: pointer;
    width: 36px;
}

.desktop-modal.search-modal::before {
    left: 5.6vw;
}

.desktop-modal.basket-modal::before {
    left: 11.1vw;
}

.desktop-modal.accessibility-modal::before {
    left: 16.3vw;
}

.desktop-modal h3,
.accessibility-modal h3,
.search-modal h3 {
    text-align: center;
    margin: 0 0 20px;
    font-weight: 500;
}

.desktop-modal form,
.search-modal form {
    padding: 0;
    width: 100%;
    background-color: transparent;
    gap: 0;
}

.desktop-modal form input,
.search-modal form input {
    width: 100%;
    padding: 10px 20px;
    border: 1px solid var(--gray);
    border-radius: 99px;
    margin-bottom: 15px;
    line-height: 1;
}

.desktop-modal .primary-link,
.search-modal .primary-link {
    height: auto !important;
    margin: 0 auto;
}

.desktop-modal.basket-modal .login {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid var(--blue);
    margin-bottom: 20px;
    padding: 0 0 10px;
    margin-left: -20px;
    margin-right: -20px;
}

.desktop-modal.basket-modal .login img {
    width: 20px;
}

.desktop-modal.basket-modal .login p {
    font-size: 18px;
    font-weight: 500;
    color: var(--blue);
    margin-bottom: 0;
}

.desktop-modal.basket-modal h3 {
    margin-bottom: 10px;
}

.desktop-modal.basket-modal .list {
    max-height: 40vh;
    overflow-y: auto;
    scrollbar-width: thin;
}

.desktop-modal.basket-modal .list .item {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #ccc;
}

.desktop-modal.basket-modal .list img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 10px;
    margin-right: 20px;
}

.desktop-modal.basket-modal .content {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 15px;
}

.desktop-modal.basket-modal .content h4 {
    font-size: 16px;
    font-weight: 400;
    margin: 0;
}

.desktop-modal.basket-modal .numbers {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.desktop-modal.basket-modal .list span {
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
}

.desktop-modal.basket-modal .price {
    font-size: 16px;
    font-weight: 600;
    color: var(--blue);
    margin: 0;
    line-height: 1;
}

.desktop-modal.basket-modal .summary {
    display: flex;
    justify-content: space-between;
    margin: 15px 0;
    align-items: center;
    font-size: 18px;
}

.desktop-modal.basket-modal .summary .price {
    color: var(--green);
}

.desktop-modal.basket-modal .buttons .primary-link.yellow {
    margin-bottom: 15px;
}

.desktop-modal .buttons {
    display: flex;
    flex-direction: column;
}

.accessibility-modal .buttons button {
    width: 100%;
    display: block;
    height: auto;
    padding: 10px 0;
    text-align: left;
    line-height: 1;
}

.accessibility-modal .buttons button svg {
    width: 20px;
    vertical-align: middle;
    margin-right: 10px;
    display: inline-block;
    margin-bottom: 2px;
}

.hero {
    width: 100vw;
    min-height: 118vh;
    position: relative;
    z-index: 2;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 200px;
    padding: 0 20px;
}

.hero.subpage {
    min-height: 100vh;
    margin-bottom: 0;
}

.hero *,
.header * {
    user-select: none;
    -webkit-user-select: none;
}

.hero .circle,
.small-header .circle {
    content: "";
    position: absolute;
    bottom: -8vh;
    right: -12vw;
    width: 85vw;
    height: 79vw;
    background-color: var(--yellow);
    z-index: -1;
    border-radius: 50%;
}

.body-wrapper.red .hero:not(.subpage) .circle {
    background-color: var(--yellow);
}

.hero.blue .circle {
    background-color: var(--blue);
}

.body-wrapper.red .hero .circle {
    background-color: var(--red);
}

.body-wrapper.green .hero .circle {
    background-color: var(--green);
}

.body-wrapper.blue .hero .circle {
    background-color: var(--blue);
}

.hero .image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    clip-path: ellipse(75% 79% at 30% 20%);
}

.hero .image::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--gray);
    opacity: 0.37;
    z-index: 0;
}

.hero .image video,
.hero .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 0%;
}

.hero h1 {
    display: none;
}

.hero h3,
.hero.subpage h1 {
    display: block;
    font-size: 9vmin;
    line-height: 1.3;
    font-weight: 600;
    color: white;
    max-width: 100vmin;
    margin-bottom: 30px;
    text-transform: uppercase;
    margin-top: -5vh;
}

.hero h3 {
    font-size: 10vmin;
    line-height: 1.15;
}

.hero.subpage h1 {
    font-size: 10vmin;
}

.hero .buttons a {
    width: 240px;
    height: 240px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    color: white;
    border-radius: 999px;
    margin-left: -30px;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    transition: scale 0.3s;
    position: relative;
}

.hero .buttons a img {
    width: 40px;
}

.hero .buttons a span {
    margin-top: 15px;
}

.hero .buttons a:hover {
    scale: 1.08 !important;
}

.hero .buttons a:first-of-type {
    background-color: var(--blue);
    margin-left: 0;
    z-index: 1;
}

.hero .buttons a:nth-child(2) {
    background-color: var(--green);
    z-index: 2;
}

.hero .buttons a:nth-child(3) {
    background-color: var(--red);
    z-index: 3;
}

.hero .buttons a:nth-child(4) {
    display: none;
}

/* AKTUALITÁSOK */

.current h2 {
    padding-left: 87px;
}

.current .list {
    max-width: 950px;
    margin: 0 auto;
}

.current .item {
    display: none;
    align-items: center;
    gap: 50px;
    margin-bottom: 40px;
    background-color: transparent;
}

.current .item.active {
    border-radius: 10px;
    box-shadow: 0 0 10px #49AD4833;
    border: 1px solid var(--green);
}

.current .item .image {
    width: 290px;
    height: 200px;
    overflow: hidden;
    border-radius: 10px;
    position: relative;
}

.current .item.active .image::after {
    content: "Aktuális";
    position: absolute;
    top: 20px;
    left: 0;
    background-color: var(--green);
    padding: 10px 20px;
    font-weight: 600;
    font-size: 15px;
    color: white !important;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}

.current .item .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.current .item .image:hover img {
    transform: scale(1.05);
}

.current .item .content {
    max-width: 470px;
}

.current .item h3,
.events .swiper-slide h3 {
    margin-bottom: 5px;
}

.current .item .date,
.events .swiper-slide .date {
    font-weight: 600;
    color: var(--blue);
    margin-bottom: 20px;
}

.current .item p,
.events .swiper-slide p {
    margin-bottom: 0;
}

.current .primary-link.blue,
.current .primary-link.green {
    margin: 60px auto;
}

.current.green .item .date {
    color: var(--green);
}

.current.green .item .content a:hover {
    color: var(--green);
}

.current.green .item .primary-link {
    margin-right: 30px;
}

/* ESEMÉNYNAPTÁR, SWIPER */

.events .content {
    display: flex;
    justify-content: space-between;
    max-width: 1050px;
    margin: 0 auto;
}

.relative {
    position: relative;
}

.events .relative {
    width: 42%;
    margin-left: 40px;
}

.events .event-swiper,
.events .loader {
    transition: opacity 0.3s;
}

.swiper {
    width: 100%;
    position: relative;
}

.swiper-button-prev,
.swiper-button-next {
    width: 40px;
    height: 40px;
    position: absolute;
    top: 50%;
    z-index: 99;
    cursor: pointer;
}

.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 28px !important;
    font-weight: 500;
    color: var(--gray);
}

.swiper-button-prev {
    left: -50px !important;
}

.swiper-button-next {
    right: -50px !important;
}

.events .swiper-slide .image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 20px;
    display: block;
    margin-bottom: 20px;
}

.events .swiper-slide .image.blue {
    background-color: var(--blue);
}

.events .swiper-slide .image.red {
    background-color: var(--red);
}

.events .swiper-slide .image.green {
    background-color: var(--green);
}

.events .swiper-slide .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    clip-path: ellipse(75% 79% at 38% 18%);
}

.events .swiper-slide .primary-link {
    margin-top: 25px;
}

.calendar {
    width: 45%;
}

.calendar .month {
    background: var(--yellow);
    padding: 20px;
    border-radius: 20px;
    position: relative;
}

.calendar .month p {
    text-transform: uppercase;
    font-size: 18px;
    margin: 0;
    font-weight: 600;
}

.calendar .month .arrows {
    position: absolute;
    top: 23px;
    cursor: pointer;
    z-index: 2;
}

.calendar .month .arrows img {
    width: 18px;
}

.calendar .month .arrows.prev {
    left: 20px;
}

.calendar .month .arrows.next {
    right: 20px;
}

.calendar .month .arrows.next img {
    transform: rotate(180deg);
}

.calendar .daysdiv {
    margin-top: 20px;
    padding: 15px 20px 20px;
    border: 1px solid #ccc;
    border-radius: 20px;
    overflow: hidden;
}

.calendar .daysdiv .head {
    border-bottom: 1px solid var(--blue);
    display: flex;
    justify-content: space-between;
}

.calendar .daysdiv .head .day {
    font-weight: 600;
    font-size: 15px;
}

.calendar .daysdiv .days {
    display: flex;
    justify-content: space-between;
}

.calendar .daysdiv .day {
    width: 14.28%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1;
    position: relative;
    font-size: 15px;
    border-radius: 6px;
    overflow: hidden;
}

.calendar .daysdiv .day-with-event span {
    color: white;
    font-weight: 550;
    position: relative;
    z-index: 1;
    pointer-events: none;
}

.calendar .daysdiv .days .othermonthday {
    color: #A8A8A8;
    background-color: #F2F3F7;
    border: 1px solid #F2F3F7;
    border-radius: 0;
}

.calendar .daysdiv .days .links {
    width: 150%;
    height: 150%;
    overflow: hidden;
    display: flex;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}

.calendar .daysdiv .days .links button {
    width: 100%;
}

.calendar .daysdiv .days button.blue {
    background-color: var(--blue);
}

.calendar .daysdiv .days button.red {
    background-color: var(--red);
}

.calendar .daysdiv .days button.green {
    background-color: var(--green);
}

/* MIVEL FOGLALKOZUNK */

.about .content {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 160px;
}

.about .content .item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    max-width: 30%;
}

.about .content .item:nth-of-type(4) {
    display: none;
}

.about .content .item .image {
    width: 240px;
    height: 240px;
    margin: 0 auto 10px;
    position: relative;
}

.about .content .item .image img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.about .content .item .image::before {
    content: "";
    position: absolute;
    top: -15%;
    right: -15%;
    width: 90%;
    height: 90%;
    border-radius: 50%;
    z-index: -1;
}

.about .content .item:nth-of-type(1) .image::before {
    background-color: var(--blue);
}

.about .content .item:nth-of-type(2) .image::before {
    background-color: var(--green);
}

.about .content .item:nth-of-type(3) .image::before {
    background-color: var(--red);
}

.about .content .item h3 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 0;
    text-align: center;
    text-transform: uppercase;
}

.about .content .item:nth-of-type(1) h3 {
    color: var(--blue);
}

.about .content .item:nth-of-type(2) h3 {
    color: var(--green);
}

.about .content .item:nth-of-type(3) h3 {
    color: var(--red);
}

.about .content .item p {
    text-align: center;
    margin-bottom: 0;
}

.about .content .item .links {
    display: flex;
    gap: 20px;
}

/* TÁMOGASS MINKET */

.donation h2 {
    padding-left: 102px;
}

.donation .content {
    display: flex;
    gap: 120px;
}

.donation .content .left,
.donation .content .right {
    width: 50%;
}

.donation .content .right p {
    margin-bottom: 0;
}

.donation .content .right .primary-link {
    margin-top: 20px;
}

/* CONTACT */

.contact h2 {
    padding-left: 94px;
}

.contact .content {
    display: flex;
    gap: 120px;
    max-width: 950px;
    margin: 0 auto;
}

.contact .content .left {
    width: 43%;
}

.contact .content h3 {
    font-size: 18px;
    line-height: 26px;
    font-weight: 700;
    margin-bottom: 40px;
}

.contact .content .left p {
    margin-bottom: 0;
    line-height: 2;
}

.contact .content form {
    width: 57%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
    background-color: var(--yellow);
    padding: 30px;
    border-radius: 10px;
}

form input,
form textarea {
    padding: 15px;
    border: none;
    outline: none;
    background-color: white;
    color: var(--gray) !important;
    border-radius: 7px;
    font-size: 16px;
    font-weight: 500;
    width: 100%;
    resize: none;
}

.form-check {
    margin-left: 37px;
    padding-left: 0 !important;
}

.contact form textarea {
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 0;
}

.form-check-input {
    position: absolute;
    overflow: hidden;
    clip: rect(0 0 0 0);
    height: 1px;
    width: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
}

.form-check-input+label {
    position: relative;
    line-height: 1.5;
    font-size: 14px;
    margin-bottom: 0;
}

.form-check-input+label::before {
    content: " ";
    display: inline-block;
    vertical-align: middle;
    margin-right: 12px;
    margin-left: -37px;
    width: 24px;
    height: 24px;
    background-color: white;
    border-radius: 5px;
    transition: 0.3s ease;
}

.form-check-input:checked+label::before {
    background-color: var(--green);
}

.form-check-input+label::after {
    content: " ";
    background-repeat: no-repeat;
    background-size: 14px 14px;
    background-position: center center;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: -37px;
    left: 0;
    top: -10px;
    text-align: center;
    background-color: transparent;
    font-size: 10px;
    height: 24px;
    width: 24px;
    transition: 0.3s ease;
    opacity: 0;
}

.form-check-input:checked+label::after {
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1MTIgNTEyIj48cGF0aCBmaWxsPSIjZmZmZmZmIiBkPSJNMTczLjg5OCA0MzkuNDA0bC0xNjYuNC0xNjYuNGMtOS45OTctOS45OTctOS45OTctMjYuMjA2IDAtMzYuMjA0bDM2LjIwMy0zNi4yMDRjOS45OTctOS45OTggMjYuMjA3LTkuOTk4IDM2LjIwNCAwTDE5MiAzMTIuNjkgNDMyLjA5NSA3Mi41OTZjOS45OTctOS45OTcgMjYuMjA3LTkuOTk3IDM2LjIwNCAwbDM2LjIwMyAzNi4yMDRjOS45OTcgOS45OTcgOS45OTcgMjYuMjA2IDAgMzYuMjA0bC0yOTQuNCAyOTQuNDAxYy05Ljk5OCA5Ljk5Ny0yNi4yMDcgOS45OTctMzYuMjA0LS4wMDF6Ii8+PC9zdmc+");
    opacity: 1;
    top: 0;
}

.contact form .primary-link {
    background-color: var(--green);
    border: 1px solid var(--green);
    color: white !important;
    margin-top: 20px;
}

.contact form .primary-link:hover {
    color: var(--green) !important;
    background-color: white !important;
    border: 1px solid var(--green);
}

/* TÁMOGATÁS MODAL */

.support-modal,
.worker-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    background-color: var(--yellow);
    overflow: hidden;
    padding: 35px 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: calc(100% - 40px);
    max-width: 950px;
    display: none;
    opacity: 0;
    transition: opacity 0.35s;
}

.worker-modal {
    padding: 30px;
}

.support-modal.active,
.worker-modal.active {
    opacity: 1;
}

.support-modal .cancel,
.worker-modal .cancel {
    opacity: 1 !important;
    width: 24px;
    cursor: pointer;
    position: absolute;
    top: 27px;
    right: 25px;
}

.support-modal .bgshape,
.worker-modal .bgshape {
    height: 110%;
    max-height: 100vw;
    max-width: 75vw;
    object-fit: contain;
    object-position: top right;
    position: absolute;
    top: -20%;
    right: -10%;
    z-index: -1;
    opacity: 0.25;
}

.support-modal .container {
    max-width: 700px;
    margin: 0 auto;
}

.support-modal h3 {
    font-size: 50px;
    font-weight: 600;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.support-modal form {
    gap: 12px;
}

.support-modal form input {
    font-size: 15px;
    padding: 10px 16px;
}

.worker-modal h3 {
    font-size: 36px;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.worker-modal h4 {
    font-size: 20px;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 20px;
}

.support-modal form {
    background-color: transparent;
    padding: 0;
}

.support-modal form .primary-link {
    margin-top: 15px;
}

.support-modal form input[type="number"] {
    -moz-appearance: textfield;
}

.support-modal form input[type="number"]::-webkit-inner-spin-button,
.support-modal form input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.support-modal .form-check:first-of-type {
    margin-top: 15px;
}

.support-modal .form-check:last-of-type {
    margin-bottom: 0;
}

.support-modal .form-check-input+label {
    font-weight: 600;
}

.support-modal .form-check-input+label a {
    text-decoration: underline;
}

.worker-modal .content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

.worker-modal .content .desc {
    width: 63%;
}

.worker-modal .content .desc p {
    margin-bottom: 0;
}

.worker-modal .content .image {
    width: 27%;
    max-height: 80%;
    position: absolute;
    bottom: 0;
    right: 0;
}

.worker-modal .content .image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* FOOTER */

footer {
    position: relative;
    z-index: 1;
}

footer .footer-image {
    display: none;
    margin: 0 auto;
    height: 430px;
    width: 100%;
    max-width: 1050px;
    object-fit: contain;
}

.body-wrapper.red footer .footer-image.red {
    display: block;
}

.body-wrapper.blue footer .footer-image.blue {
    display: block;
}

.body-wrapper.green footer .footer-image.green {
    display: block;
}

footer .layer {
    width: 100%;
    height: 150px;
    margin-top: -90px;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
}

.body-wrapper.red footer .layer {
    background-color: var(--red);
}

.body-wrapper.blue footer .layer {
    background-color: var(--blue);
}

.body-wrapper.green footer .layer {
    background-color: var(--green);
}

footer .content {
    padding: 60px 25px;
    background-color: var(--yellow);
}

footer .container {
    display: flex;
    justify-content: space-between;
}

footer .item img {
    width: 150px;
    margin-bottom: 20px;
}

footer .item {
    display: flex;
    flex-direction: column;
}

footer .item h3 {
    font-size: 18px;
    margin-bottom: 20px;
    text-transform: none;
}

footer .item p,
footer .item a {
    display: block;
    font-size: 16px;
    margin-bottom: 10px;
}

footer .item a img {
    width: 32px;
    margin-bottom: 0;
}

footer .item:last-of-type a.facebook {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    width: 100%;
}

footer .item:last-of-type a {
    display: inline;
    width: fit-content;
}

/* FOGLALKOZTATÁS */

.sidenav-wrapper {
    display: flex;
    width: 100%;
    margin-top: -20px;
}

.sidenav {
    padding: 15vmin 3vmin 0 5vmin;
    width: 17%;
    position: sticky;
}

.sidenav a {
    font-size: 16px !important;
    margin-bottom: 8px !important;
}

.sidenav::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 100%;
}

.body-wrapper.blue .sidenav-wrapper .sidenav::after {
    background-color: var(--blue);
}

.body-wrapper.red .sidenav-wrapper .sidenav::after {
    background-color: var(--red);
}

.body-wrapper.green .sidenav-wrapper .sidenav::after {
    background-color: var(--green);
}

.sidenav .item {
    margin-bottom: 4vmin;
}

.sidenav-wrapper .main {
    width: 68%;
    padding: 0 2vw;
}

.sidenav-wrapper .main section {
    margin-left: auto;
    margin-right: auto;
}

.program h2 {
    padding-left: 82px;
    margin-bottom: 80px;
}

.program .content {
    max-width: 900px;
    margin: 0 auto;
}

.program h3 {
    font-size: 46px;
    font-weight: 600;
    text-transform: uppercase;
    margin: 70px 0 60px;
}

.program .items,
.workshops .items {
    display: flex;
    justify-content: space-between;
}

.program .items .item,
.workshops .items .item {
    width: 29%;
}

.workshops .items {
    max-width: 950px;
    margin: 0 auto;
}

.program .items h4,
.program .items p,
.workshops .items h4,
.workshops .items p {
    font-size: 20px;
    text-align: center;
    margin-bottom: 20px;
}

.program .items h4,
.workshops .items h4 {
    font-weight: 600;
    text-transform: uppercase;
}

.program .primary-link,
.workshops .primary-link {
    margin: 40px auto;
}

.for-employers h2 {
    padding-left: 75px;
}

.for-employers .content {
    max-width: 900px;
    margin: 0 auto;
}

.for-employers .content h3,
.article .content h3 {
    font-size: 20px;
    margin-bottom: 20px;
}

.for-employers .content p {
    margin-bottom: 0;
}

.article .content p {
    margin-bottom: 10px;
}

.article .content img {
    width: 100%;
    margin: 20px 0;
    border-radius: 15px;
}

/* KOLLEKCIÓK */

.small-header {
    width: 100vw;
    height: 80vh;
    margin: 0;
    padding: 0;
    position: relative;
}

.small-header .circle {
    right: -20vw;
}

.small-header .title {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    clip-path: ellipse(65% 110% at 40% -15%);
    position: relative;
    padding-left: 1.5vw;
}

.body-wrapper.blue .small-header .title {
    background-color: var(--blue);
}

.body-wrapper.red .small-header .title {
    background-color: var(--red);
}

.body-wrapper.green .small-header .title {
    background-color: var(--green);
}

.small-header .nav {
    position: absolute;
    top: 14vh;
    left: 0;
    padding-left: 1.5vw;
    font-size: 16px;
    color: white;
    display: flex;
    flex-direction: column;
}

.small-header .nav .back svg {
    transform: rotate(180deg);
    filter: invert(1) brightness(1.5);
    width: 30px;
    vertical-align: middle;
}

.small-header .nav a {
    color: white !important;
}

.small-header .nav a:last-of-type {
    font-weight: 600;
}

.small-header h1 {
    color: white;
    font-size: 10vmin;
    max-width: 150vmin;
    line-height: 1.1;
    margin-top: 40px;
}

.small-header.article-header h1 {
    font-size: 8vmin;
    line-height: 1.15;
}

.collections {
    margin-top: 200px;
    margin-bottom: 200px;
}

.collections .content {
    display: flex;
    flex-wrap: wrap;
    max-width: 950px;
    margin: 0 auto;
    gap: 100px;
    justify-content: center;
}

.collections .item {
    width: 100%;
    max-width: 400px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    border: 1px solid #D9D9D9;
    border-radius: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s;
    margin-top: 160px;
    position: relative;
    padding-bottom: 75px;
}

.collections .item .image {
    width: calc(100% + 102px);
    aspect-ratio: 420/350;
    margin: -60% -50px 10px -50px;
    position: relative;
}

.collections .item .image img {
    width: 85%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 50%;
    position: relative;
    z-index: 2;
}

.collections .item .image::before {
    content: "";
    position: absolute;
    top: -40px;
    right: 0;
    height: 85%;
    aspect-ratio: 1/1;
    border-radius: 50%;
}

.collections .item.blue .image::before {
    background-color: var(--blue);
}

.collections .item.red .image::before {
    background-color: var(--red);
}

.collections .item.green .image::before {
    background-color: var(--green);
}

.collections .item.yellow .image::before {
    background-color: var(--yellow);
}

.collections .item.blue:hover {
    box-shadow: 0 0 20px #29B7C155;
}

.collections .item.red:hover {
    box-shadow: 0 0 20px #DC1D4A55;
}

.collections .item.green:hover {
    box-shadow: 0 0 20px #49AD4855;
}

.collections .item.yellow:hover {
    box-shadow: 0 0 20px #FEC72655;
}

.collections .item h3 {
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.collections .item.blue:hover h3 a {
    color: var(--blue);
}

.collections .item.red:hover h3 a {
    color: var(--red);
}

.collections .item.green:hover h3 a {
    color: var(--green);
}

.collections .item.yellow:hover h3 a {
    color: var(--yellow);
}

.collections .item p {
    margin-bottom: 25px;
}

.collections .item.last {
    max-width: 100%;
    margin-left: 170px;
    flex-direction: row;
    align-items: center;
    margin-top: 0;
    padding-bottom: 40px;
}

.collections .item.last .image {
    min-width: 340px;
    margin: -40px 80px -40px -170px;
}

.collections .item .primary-link {
    position: absolute;
    bottom: 40px;
    left: 40px;
}

.collections .item.last .primary-link {
    position: static;
}

/* KOLLEKCIÓ */

.collection-intro .container > img {
    height: 140px;
    margin-bottom: 20px;
}

.collection-intro .quote {
    font-weight: 500;
    font-style: italic;
    font-size: 28px;
}

.collection-intro .quote.red {
    color: var(--red);
}

.collection-intro .quote.blue {
    color: var(--blue);
}

.collection-intro .quote.green {
    color: var(--green);
}

.collection-intro .quote.yellow {
    color: var(--yellow);
}

.collection-intro .content {
    display: flex;
    align-items: flex-start;
    gap: 70px;
    margin-top: 40px;
}

.collection-intro .content .left {
    width: 45%;
}

.collection-intro .content .images {
    width: 55%;
}

.collection-intro .left a {
    display: block;
    width: fit-content;
    color: var(--blue);
    font-size: 18px;
    font-weight: 500;
    border-bottom: 1px solid var(--blue);
    transition: border-bottom-color 0.3s;
}

.collection-intro .left a:hover {
    border-bottom-color: transparent;
}

.collection-intro .left a svg {
    margin-left: 4px;
    transition: margin-left 0.3s;
}

.collection-intro .left a:hover svg {
    margin-left: 10px;
}

.collection-intro .images {
    display: flex;
    gap: 20px;
}

.collection-intro .image {
    width: 50%;
    aspect-ratio: 1/1;
    border-radius: 10px;
    overflow: hidden;
}

.collection-intro .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease-out;
}

.collection-intro .image img:hover {
    transform: scale(1.06);
}

.collection-products .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 80px;
}

.collection-products .item {
    width: 100%;
    max-width: 27%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding-bottom: 65px;
    position: relative;
}

.collection-products .item .image {
    width: 290px;
    height: 290px;
    overflow: hidden;
    border-radius: 50%;
    margin-bottom: 10px;
}

.collection-products .item .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.collection-products .item .image img:hover {
    transform: scale(1.06);
}

.collection-products .item h3 {
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 0;
}

.collection-products .item p {
    text-align: center;
    margin-bottom: 0;
}

.collection-products .item .price {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.collection-products .item .links {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 20px;
    position: absolute;
    bottom: 0;
    left: 0;
}

.collection-products .primary-link.blue {
    margin: 60px auto;
}

/* TERMÉK ALOLDAL */

.product-header {
    height: 40vh;
}

.product-header .title {
    clip-path: ellipse(65% 130% at 40% -30%);
}

.product-header .circle {
    bottom: -12vh;
}

.product-1 {
    position: relative;
    margin-top: 0;
}

.product-1 .product {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 100px;
    margin-top: -40px;
}

.product-1 .product .left {
    width: 50%;
}

.product .productSwiper {
    width: 100%;
    height: 600px;
    margin-bottom: 20px;
    border-radius: 10px;
}

.product .productThumbsSwiper {
    width: 100%;
    height: 127px;
}

.product .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product .productThumbsSwiper .swiper-slide img {
    border-radius: 10px;
    cursor: pointer;
}

.product .right {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.product .right * {
    margin-bottom: 0;
}

.product .right h1 {
    font-size: 44px;
    font-weight: 700;
}

.product .price,
.basket-list .price {
    font-size: 22px;
    font-weight: 600;
    margin: 0;
}

.product .inputs,
.basket-list .inputs {
    display: block;
    background-color: transparent;
    padding: 0;
    width: fit-content;
}

.product .inputs .row,
.basket-list .inputs .row {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 20px;
}

.product .input,
.basket-list .input {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 16px;
    border: 1px solid #aaa;
    border-radius: 99px;
    height: 54px;
    width: 150px;
}

.product .input img,
.basket-list .input img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    vertical-align: middle;
}

.product .input input,
.basket-list .input input {
    width: 52px;
    border: none;
    outline: none;
    font-size: 22px;
    font-weight: 500;
    text-align: center;
    padding: 5px;
}

.product .inputs .primary-link {
    font-size: 18px;
    padding: 18px 32px 16px;
    font-weight: 600;
    margin-top: 0;
}

.alapitvany-about h2 {
    padding-left: 113px;
}

.alapitvany-about .content {
    max-width: 900px;
    margin: 0 auto;
}

.alapitvany-about .content p {
    font-weight: 600;
}

.alapitvany-about .content h3 {
    text-align: center;
    font-size: 26px;
    margin: 60px 0;
}

.alapitvany-about .items {
    background-color: var(--red);
    padding: 40px 100px;
    position: relative;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    border-radius: 15px;
}

.alapitvany-about .items img {
    position: absolute;
    width: 210px;
    top: -80px;
    right: -30px;
    opacity: 0.2;
}

.alapitvany-about .items p {
    color: white;
    position: relative;
    margin-right: 37px;
    margin-bottom: 0;
    line-height: 1.8;
    font-size: 20px;
}

.alapitvany-about .items p::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -20px;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background-color: white;
    border-radius: 50%;
}

.workers .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 80px;
}

.workers .worker {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 26%;
    position: relative;
    padding-bottom: 20px;
}

.workers .worker .image {
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
    margin-bottom: 30px;
}

.workers .worker .image::before {
    content: "";
    position: absolute;
    top: 52%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 240px;
    height: 240px;
    border-radius: 50%;
    z-index: -1;
}

.workers .worker:nth-of-type(4n+1) .image::before {
    background-color: var(--red);
}

.workers .worker:nth-of-type(4n+2) .image::before {
    background-color: var(--blue);
}

.workers .worker:nth-of-type(4n+3) .image::before {
    background-color: var(--green);
}

.workers .worker:nth-of-type(4n+4) .image::before {
    background-color: var(--yellow);
}

.workers .worker .image img {
    width: 240px;
    height: 260px;
    object-fit: contain;
}

.workers .worker h3 {
    text-align: center;
    margin-bottom: 6px;
}

.workers .worker .title {
    text-align: center;
    font-size: 18px;
}

.workers .worker .open-worker {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    text-transform: uppercase;
    font-weight: 500;
}

.workers .worker .open-worker::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 1.75px;
    transition: width 0.3s;
}

.workers .worker .open-worker:hover::after {
    width: 100%;
    background-color: var(--green);
}

.workers .worker:nth-of-type(4n+1) .open-worker {
    color: var(--red);
}

.workers .worker:nth-of-type(4n+1) .open-worker::after {
    background-color: var(--red);
}

.workers .worker:nth-of-type(4n+2) .open-worker {
    color: var(--blue);
}

.workers .worker:nth-of-type(4n+2) .open-worker::after {
    background-color: var(--blue);
}

.workers .worker:nth-of-type(4n+3) .open-worker {
    color: var(--green);
}

.workers .worker:nth-of-type(4n+3) .open-worker::after {
    background-color: var(--green);
}

.workers .worker:nth-of-type(4n+4) .open-worker {
    color: var(--yellow);
}

.workers .worker:nth-of-type(4n+4) .open-worker::after {
    background-color: var(--yellow);
}

.workers .worker .primary-link {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: none;
}

.programs .program,
.informations .program {
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    margin-bottom: 40px;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.15);
}

.informations .program {
    margin: 40px 0 60px;
}

.programs.awards h2 {
    padding-left: 108px;
}

.programs.awards .program {
    box-shadow: none;
    border-radius: 0;
}

.programs .program .header,
.informations .program .header {
    padding: 50px;
    display: flex;
    justify-content: space-between;
    background-color: var(--red);
    cursor: pointer;
}

.programs.awards .program .header {
    padding: 25px 0;
    background-color: transparent;
    border-bottom: 1px solid var(--gray);
}

.programs .program .header h3,
.informations .program .header h3 {
    text-transform: uppercase;
    color: white;
    font-size: 18px;
    margin: 0;
    line-height: 1;
}

.programs.awards .program .header h3 {
    font-size: 44px;
    color: var(--gray);
}

.programs .program .header img,
.informations .program .header img {
    transition: transform 0.3s;
    width: 25px;
}

.informations .program .header img {
    width: 20px;
    margin-top: 0;
    transform: none !important;
}

.programs .program.active .header img,
.informations .program.active .header img {
    transform: rotate(180deg);
}

.programs .program .content,
.informations .program .content {
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s ease-out;
}

.programs.awards .program .content .item {
    padding: 40px 0;
    display: flex;
    justify-content: space-between;
}

.programs.awards .program .content .item .left {
    width: 282px;
}

.programs.awards .program .content .item .left .image {
    width: 100%;
    height: 267px;
    position: relative;
    display: flex;
    align-items: flex-end;
}

.programs.awards .program .content .item .left .image img {
    width: 238px;
    height: 238px;
    object-fit: cover;
    border-radius: 999px;
}

.programs.awards .program .content .item .left .image::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 238px;
    height: 238px;
    border-radius: 999px;
    z-index: -1;
}

.programs.awards .program .content .item.blue .left .image::after {
    background-color: var(--blue);
}

.programs.awards .program .content .item.red .left .image::after {
    background-color: var(--red);
}

.programs.awards .program .content .item.green .left .image::after {
    background-color: var(--green);
}

.programs.awards .program .content .item.yellow .left .image::after {
    background-color: var(--yellow);
}

.programs.awards .program .content .item .right {
    width: calc(100% - 342px);
}

.programs.awards .program .content {
    max-width: 100%;
}

.programs.awards .program .content .item .right h3 {
    margin: 0 0 20px;
    font-size: 28px;
}

.programs.awards .program .content .item .right .title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.programs:not(.awards) .program p,
.informations .program p {
    margin-bottom: 10px;
}

.programs:not(.awards) .program .inner-content,
.informations .program .inner-content {
    padding: 40px;
}

.programs.awards .program .content .item .right a {
    font-weight: 600;
    text-decoration: underline;
}

.programs .program .shape,
.informations .program .shape {
    width: 370px;
    opacity: 0.1;
    position: absolute;
    bottom: -100px;
    right: -50px;
    pointer-events: none;
    z-index: -1;
}

.programs .program:nth-of-type(2n) .shape,
.informations .program:nth-of-type(2n) .shape {
    right: auto;
    left: -50px;
}

.programs .program .infos,
.informations .program .infos {
    padding: 40px 0 25px 50px;
}

.programs .program .details,
.informations .program .details {
    padding-left: 50px;
}

.programs .program .details h4,
.informations .program .details h4 {
    margin-top: 0;
}

.programs .program .amount,
.informations .program .amount {
    padding: 25px 0 40px 50px;
}

.article .header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 100px;
    max-width: 1000px;
    margin: 0 auto 60px;
}

.article .header .image,
.article .header .subtitle {
    width: 50%;
}

.article .header .image {
    height: 350px;
    overflow: hidden;
    border-radius: 10px;
}

.article .header .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article .header h3 {
    max-width: 400px;
    font-size: 24px;
    margin-bottom: 0;
}

.article .content {
    max-width: 1000px;
    margin: 0 auto;
}

.documents .group {
    margin-bottom: 80px;
}

.documents .group h3 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 40px;
}

.documents .group .list {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.15);
}

.documents .header {
    padding: 20px 40px;
    background-color: var(--red);
    color: white;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
}

.documents.blue .header {
    background-color: var(--blue);
}

.documents .header h3 {
    font-size: 24px;
    margin: 0;
}

.documents .header h3:first-of-type {
    width: 75%;
}

.documents .header h3:last-of-type {
    width: 25%;
}

.documents .item {
    padding: 20px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--yellow);
}

.documents .item:last-of-type {
    border-bottom: none;
}

.documents .item .name {
    font-size: 18px;
    font-weight: 600;
    width: 75%;
    margin-bottom: 0;
}

.documents .item .buttons {
    display: flex;
    width: 25%;
}

.documents .item .buttons img {
    margin-right: 8px;
    height: 32px;
}

.documents .item .buttons .type,
.documents .item .buttons .download {
    width: 50%;
}

.documents .item .buttons .download:hover {
    color: var(--gray);
}

.informations h2,
.programs h2 {
    padding-left: 99px;
}

.informations .content {
    max-width: 900px;
    margin: 0 auto;
}

.informations .content p {
    margin-bottom: 10px;
}

.institutions h2 {
    padding-left: 106px;
}

.institutions .items {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.institutions .item {
    width: 45%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.15);
}

.institutions .item .header {
    background-color: var(--red);
    padding: 30px;
}

.institutions .item .header h3 {
    color: white;
    font-size: 20px;
    margin: 0;
    text-align: center;
    text-transform: uppercase;
    font-weight: 600;
}

.institutions .item .content {
    padding: 30px;
}

.institutions .item .content p {
    margin-bottom: 10px;
}

.institutions .item .content .info {
    color: var(--red);
    font-weight: 600;
}

.programs.services .program {
    max-width: 950px;
    margin: 40px auto;
}

.programs .program .header h4 {
    color: white;
    margin-bottom: 0;
}

.program .service-content {
    max-width: 100%;
}

.program .service-details {
    padding: 30px 50px;
}

.programs .images {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    padding: 30px 50px;
}

.programs .images img {
    width: 260px;
    height: 195px;
    object-fit: cover;
}

.yellowcontent {
    position: relative;
    border-radius: 10px;
    background-color: var(--yellow);
    margin: 40px 0;
    overflow: hidden;
}

.yellowcontent.blue {
    background-color: var(--blue);
    color: white;
    max-width: 950px;
    margin: 40px auto;
}

.yellowcontent img {
    position: absolute;
    top: -50px;
    right: -50px;
    height: 100%;
    opacity: 0.2;
    z-index: 0;
}

.yellowcontent .content {
    padding: 40px;
    max-width: 450px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.yellowcontent.blue .content {
    max-width: 750px;
}

.yellowcontent .content p {
    margin-bottom: 0;
    font-size: 18px;
    text-align: center;
}

.yellowcontent .content h4 {
    margin-bottom: 20px;
    margin-top: 0;
    font-size: 20px;
    text-align: center;
}

.documents .infos {
    max-width: 900px;
    margin: 0 auto 60px;
}

.documents .infos p {
    margin-bottom: 0;
    font-size: 20px;
}

.documents.blue h2 {
    padding-left: 88px;
    width: 90%;
}

.supporters .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 80px;
    padding: 60px 0;
}

.supporters .container img {
    max-width: 220px;
    max-height: 150px;
    object-fit: contain;
}

.donation.subpage h2 {
    padding-left: 85px;
}

.volunteering h2 {
    padding-left: 73px;
}

.volunteering .content {
    max-width: 900px;
    margin: 0 auto;
}

.volunteering .options {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}

.volunteering .option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    max-width: 22%;
}

.volunteering .option p {
    text-align: center;
    margin-bottom: 0;
}

.volunteering .option img {
    height: 72px;
}

.informations .content img {
    width: 100%;
    margin-top: 20px;
}

.informations .primary-link.green {
    margin: 40px auto;
}

.informations.buying h2 {
    padding-left: 104px;
}

.contact h2.green {
    padding-left: 85px;
}

.informations.contact-informations .content {
    display: flex;
    flex-direction: column;
    align-content: space-between;
    flex-wrap: wrap;
    max-width: 1000px;
    max-height: 1400px;
}

.informations.contact-informations .content .item {
    max-width: 50%;
    margin-right: 60px;
    margin-bottom: 20px;
}

.informations.contact-informations h2 {
    padding-left: 107px;
}

.informations.contact-informations h4 {
    color: var(--red);
    margin-top: 30px;
    margin-bottom: 5px;
    line-height: 1.5;
}

.informations.contact-informations p {
    margin-bottom: 0;
}

.informations.art h2 {
    padding-left: 107px;
    line-height: 0.98;
}

.informations.art h2::before {
    width: 200px;
    height: 200px;
}

.informations.art .content a {
    text-decoration: underline;
}

.artists .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.artists .artist {
    width: 100%;
    max-width: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.artists .artist .image {
    width: 100%;
    height: 226px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
}

.artists .artist .image img {
    width: 213px;
    height: 213px;
    object-fit: cover;
    border-radius: 999px;
}

.artists .artist .image::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 210px;
    height: 210px;
    border-radius: 50%;
    z-index: -1;
}

.artists .artist:nth-of-type(8n+1) .image::before {
    background-color: var(--red);
}

.artists .artist:nth-of-type(8n+2) .image::before {
    background-color: var(--yellow);
}

.artists .artist:nth-of-type(8n+3) .image::before {
    background-color: var(--green);
}

.artists .artist:nth-of-type(8n+4) .image::before {
    background-color: var(--blue);
}

.artists .artist:nth-of-type(8n+5) .image::before {
    background-color: var(--blue);
}

.artists .artist:nth-of-type(8n+6) .image::before {
    background-color: var(--green);
}

.artists .artist:nth-of-type(8n+7) .image::before {
    background-color: var(--yellow);
}

.artists .artist:nth-of-type(8n+8) .image::before {
    background-color: var(--red);
}

.artists .artist h4 {
    margin-top: 10px;
    font-size: 18px;
}

.artist-intro .content {
    display: flex;
    justify-content: space-between;
    gap: 80px;
    margin-top: 60px;
    max-width: 950px;
    margin: 0 auto;
}

.artist-intro .content .left {
    width: 100%;
    max-width: 280px;
}

.artist-intro .content .right {
    width: 100%;
    max-width: 600px;
}

.artist-intro .content .left img {
    width: 280px;
    height: 280px;
    object-fit: cover;
    border-radius: 50%;
}

.artist-intro .gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 60px;
}

.artist-intro .gallery .venobox {
    width: 100%;
    max-width: 366px;
    height: 280px;
}

.artist-intro .gallery .venobox img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.artist-intro .artist-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 80px;
    padding: 0 40px;
}

.artist-intro .artist-nav a {
    font-weight: 600;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--gray) !important;
}

.artist-intro .artist-nav img {
    width: 24px;
}

.article .facebook-event {
    display: block;
    width: 100%;
    max-width: 1000px;
    margin: 30px auto;
    color: var(--green);
    font-weight: 600;
    text-decoration: underline;
}

.article .facebook-event img {
    width: 24px;
    vertical-align: middle;
    margin-right: 10px;
}

.informations .links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin: 40px auto;
}

.informations .links .primary-link {
    margin: 0 !important;
}

.laurus .intro {
    display: flex;
    align-items: center;
    gap: 100px;
    max-width: 950px;
    margin: 0 auto;
}

.laurus .intro .left {
    width: 45%;
}

.laurus .intro .right {
    width: 55%;
}

.laurus .intro .left img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.laurus .images {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin: 60px auto 80px;
}

.laurus .images img {
    width: 290px;
    height: 290px;
    object-fit: cover;
    border-radius: 999px;
}

.laurus .quote {
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.15);
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}

.laurus .quote img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0.6;
    z-index: -1;
}

.laurus .quote p {
    padding: 70px 20px;
    max-width: 650px;
    margin: 0 auto;
    font-size: 18px;
    font-weight: 500;
}

.support-1 h2 {
    padding-left: 114px;
}

.support-1 .content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    max-width: 950px;
    margin: 0 auto;
}

.support-1 .content .left,
.support-1 .content .right {
    width: 50%;
}

.support-1 .content .right img {
    width: 100%;
    border-radius: 10px;
}

.support-1 .primary-link {
    margin: 40px auto;
}

.support-2 h2 {
    padding-left: 83px;
    margin-bottom: 80px;
}

.support-2 .content {
    max-width: 900px;
    margin: 0 auto;
}

.support-2 .primary-link {
    margin: 40px auto;
}

.workshops h2 {
    padding-left: 75px;
}

.workshops .content {
    display: flex;
    align-items: center;
    gap: 80px;
    max-width: 950px;
    margin: 0 auto 40px;
}

.workshops .content .left,
.workshops .content .right {
    width: 50%;
}

.workshops .content .right img {
    width: 100%;
    border-radius: 10px;
}

.gifts-1 h2 {
    width: max-content;
    max-width: 90%;
}

.gifts-1 h2::before {
    width: 200px;
    height: 200px;
}

.gifts-1 .content {
    max-width: 900px;
    margin: 0 auto;
}

.gifts-1 h3 {
    font-size: 46px;
    margin: 80px 0 130px;
    text-transform: uppercase;
}

.gifts-1 .step {
    display: flex;
    justify-content: flex-end;
    max-width: 950px;
    margin: 0 auto;
}


.gifts-1 .step:nth-of-type(2n) {
    justify-content: flex-start;
}

.gifts-1 .step .content {
    width: 50%;
    position: relative;
    z-index: 1;
    margin: 0;
    border-top: 3px dotted var(--blue);
    padding-left: 60px;
    padding-right: 130px;
    min-height: 230px;
    padding-bottom: 50px;
}

.gifts-1 .step:nth-of-type(2n) .content {
    padding-right: 60px;
    padding-left: 130px;
    text-align: right;
}

.gifts-1 .step:last-of-type .content {
    padding-bottom: 40px;
    min-height: 0;
}

.gifts-1 .step:nth-of-type(4n+2) .content {
    border-top-color: var(--yellow);
    z-index: 2;
}

.gifts-1 .step:nth-of-type(4n+3) .content {
    border-top-color: var(--red);
    z-index: 3;
}

.gifts-1 .step:nth-of-type(4n+4) .content {
    border-top-color: var(--green);
    z-index: 4;
}

.gifts-1 .step .content .image {
    position: absolute;
    top: 0;
    right: 0;
    transform: translate(50%, -50%);
}

.gifts-1 .step:nth-of-type(2n) .content .image {
    left: 0;
    right: auto;
    transform: translate(-50%, -50%);
}

.gifts-1 .step .content .image::before {
    content: "";
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: var(--blue);
    z-index: -1;
}

.gifts-1 .step:nth-of-type(2n) .content .image::before {
    right: auto;
    left: -20px;
}

.gifts-1 .step:nth-of-type(4n+2) .content .image::before {
    background-color: var(--yellow);
}

.gifts-1 .step:nth-of-type(4n+3) .content .image::before {
    background-color: var(--red);
}

.gifts-1 .step:nth-of-type(4n+4) .content .image::before {
    background-color: var(--green);
}

.gifts-1 .step .content .image img {
    width: 160px;
    height: 160px;
    object-fit: cover;
    border-radius: 50%;
}

.gifts-1 .step .content .line {
    position: absolute;
    top: 0;
    left: -7px;
    width: 14px;
    height: 100%;
    border-radius: 7px;
    background-color: var(--blue);
}

.gifts-1 .step:first-of-type .content .line {
    top: -84px;
    height: calc(100% + 84px);
}

.gifts-1 .step:nth-of-type(2n) .content .line {
    left: auto;
    right: -7px;
}

.gifts-1 .step:nth-of-type(4n+2) .content .line {
    background-color: var(--yellow);
}

.gifts-1 .step:nth-of-type(4n+3) .content .line {
    background-color: var(--red);
}

.gifts-1 .step:nth-of-type(4n+4) .content .line {
    background-color: var(--green);
}

.gifts-1 .step .content .circle {
    position: absolute;
    z-index: 99;
    top: -27px;
    left: -27px;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background-color: white;
    border: 23px solid var(--blue);
}

.gifts-1 .step:nth-of-type(2n) .content .circle {
    left: auto;
    right: -27px;
}

.gifts-1 .step:nth-of-type(4n+2) .content .circle {
    border-color: var(--yellow);
}

.gifts-1 .step:nth-of-type(4n+3) .content .circle {
    border-color: var(--red);
}

.gifts-1 .step:nth-of-type(4n+4) .content .circle {
    border-color: var(--green);
}

.gifts-1 .step .content h4 {
    margin-top: -40px;
    margin-bottom: 30px;
}

.gifts-1 .step .content a {
    text-decoration: underline;
}

.collection-products .container>h3 {
    text-transform: uppercase;
    margin-right: auto;
    font-size: 46px;
    margin-bottom: 60px;
}

.collection-intro h2 {
    margin-bottom: 120px;
}

.supporters.gifts-supporters h2 {
    margin-right: auto;
    padding-left: 86px;
}

.supporters.gifts-supporters .container:first-of-type {
    padding: 0;
    display: block;
}

.partners h2 {
    padding-left: 70px;
    width: 85%;
}

.partners .search {
    padding: 0;
    margin: 60px auto;
    background-color: transparent;
    display: flex;
    flex-direction: row;
    align-items: center;
    max-width: 900px;
}

.partners .search input {
    width: 100%;
    padding: 0 30px;
    height: 56px;
    border: 1px solid var(--gray);
    border-radius: 99px;
    font-size: 18px;
    font-weight: 500;
    outline: none;
}

.partners .search .primary-link {
    height: 56px;
    width: 180px;
    margin: 0;
    font-weight: 550;
}

.partners .osm-map {
    width: 100%;
    height: 500px;
    border-radius: 30px;
    overflow: hidden;
    margin-bottom: 60px;
}

.partners #map {
    width: 100%;
    height: 100%;
}

.leaflet-popup {
    margin-left: 0;
    margin-bottom: 54px !important;
    max-width: 250px;
}

.leaflet-marker-icon {
    width: 30px !important;
    height: 30px !important;
}

.leaflet-marker-icon img {
    width: 100% !important;
    position: absolute;
    bottom: 100%;
    left: 0;
}

.leaflet-bottom,
.leaflet-top {
    z-index: 990;
}

.leaflet-popup-content p {
    margin: 0 !important;
    text-align: center;
    font-size: 14px;
}

.leaflet-popup-content p:first-of-type {
    font-weight: 600;
    margin-bottom: 10px;
}

.leaflet-popup-content a {
    text-align: center;
}

.partners .items {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    max-height: 630px;
    max-width: 950px;
    margin: 0 auto;
}

.partners .items .item {
    padding: 0 50px;
    margin-bottom: 30px;
    max-width: 50%;
}

.partners .items .item p {
    margin-bottom: 0;
    font-size: 18px;
}

.partners .items .item .name {
    font-size: 18px;
    font-weight: 600;
}

.partners .items .item .address {
    font-weight: 500;
    color: var(--blue);
}

.partners .items .item .link a {
    text-decoration: underline;
}

.market-schedule h2 {
    padding-left: 89px;
    margin-bottom: 110px;
}

.market-schedule .content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    max-width: 950px;
    margin: 0 auto;
}

.market-schedule .content .items,
.market-schedule .content .right {
    width: 50%;
}

.market-schedule .content .item .name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 0;
}

.market-schedule .content .item .date {
    font-weight: 500;
    color: var(--blue);
}

.workshop-1 h2 {
    padding-left: 104px;
}

.workshop-1 .content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 120px;
    max-width: 1000px;
    margin: 0 auto 60px;
}

.workshop-1 .content .text {
    width: 55%;
}

.workshop-1 .content .image {
    width: 45%;
}

.workshop-1 .content .image img {
    width: 100%;
    border-radius: 10px;
}

.workshop-1 .content:nth-of-type(2n) {
    flex-direction: row-reverse;
}

.workshop-workers h2 {
    padding-left: 76px;
}

.workshop-workers .container:first-of-type {
    display: block;
}

.basket-list .item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 0;
    border-bottom: 1px solid var(--gray);
}

.basket-list .item .left {
    display: flex;
    align-items: center;
    gap: 40px;
}

.basket-list .item .left img {
    width: 260px;
    height: 210px;
    object-fit: cover;
    border-radius: 10px;
}

.basket-list .item .left .name {
    font-size: 26px;
    font-weight: 600;
}

.basket-list .item .inputs .row {
    gap: 40px;
}

.basket-list .price {
    font-size: 26px;
    font-weight: 600;
    color: var(--blue);
}

.basket-list .summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 40px 0 60px;
}

.basket-list .summary h3 {
    margin: 0;
    font-size: 26px;
    text-transform: uppercase;
}

.basket-list .summary .price {
    color: var(--green);
}

.basket-list .buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.galleries .relative {
    width: calc(100% - 90px);
    margin: 0 auto;
}

.galleries h3 {
    margin: 80px 0 40px;
    font-size: 26px;
    text-transform: uppercase;
}

.galleries .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.en-header {
    .bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: top center;
        z-index: -1;
        pointer-events: none;
    }
}

.flex-content {
    display: flex;
    gap: 80px;
}

.side {
    width: 50%;

    img {
        max-width: 100%;
    }
}

.en-who-are-we {
    h2 {
        padding-left: 61px;
    }

    .left.side {
        width: 55%;
    }

    .right.side {
        width: 45%;
        position: relative;

        img {
            border-radius: 999px;
            width: 87%;
            margin-top: -50px;
        }

        .circle {
            position: absolute;
            top: -100px;
            right: 0;
            width: 360px;
            height: 360px;
            background-color: var(--blue);
            border-radius: 50%;
            z-index: -1;
        }
    }

    .primary-link {
        font-weight: 600;
    }
}

.en-goals {
    h2 {
        padding-left: 79px;
    }

    .items {
        display: flex;
        gap: 40px;
        flex-wrap: wrap;

        .item {
            width: calc(20% - 32px);
            text-align: center;

            .image {
                margin: 0 auto 20px;

                .circle {
                    width: 75px;
                    height: 75px;
                    background-color: var(--yellow);
                    border-radius: 50%;
                    display: inline-block;
                    margin-left: -60px;
                    position: relative;
                    z-index: -1;
                }

                img {
                    display: inline-block;
                    height: 75px;
                    vertical-align: top;
                    margin-top: 18px;
                }
            }

            h3 {
                font-size: 20px;
                letter-spacing: 0.01em;
                font-weight: 500;
                margin-bottom: 0;
            }
        }
    }
}

.en-support {
    margin-bottom: 0;

    h2 {
        padding-left: 95px;
    }

    .left {
        width: 45%;
    }

    .right {
        width: 55%;
        margin-top: -180px;
        position: relative;
        pointer-events: none;

        img {
            display: block;
            width: 70%;
            margin-left: auto;
        }

        svg {
            position: absolute;
            bottom: 13%;
            right: 44%;
            width: 88%;
            height: auto;
        }
    }
}

.en-donation {
    position: relative;
    z-index: 1;
    margin-top: -10px;

    .container {
        background-color: var(--yellow);
        border-radius: 15px;
        position: relative;
        padding: 40px 10%;

        .bgshape {
            position: absolute;
            top: 0;
            right: 0;
            width: 50%;
            height: auto;
            pointer-events: none;
        }

        h3 {
            font-size: 60px;
            max-width: 520px;
            text-transform: uppercase;
            line-height: 1.15;
            position: relative;
            z-index: 1;
        }

        form {
            padding: 0;

            .form-check:first-of-type {
                margin-top: 20px;
            }

            .primary-link {
                margin-top: 20px;
                max-width: 222px;
                text-align: center;
                white-space: normal;
                line-height: 1.3;
            }
        }
    }
}

.en-contact {
    h2 {
        padding-left: 80px;
    }

    .content .left p {
        line-height: 1.5;
        margin-bottom: 20px;

        &:last-child {
            margin-bottom: 0;
        }
    }
}

@media (max-width: 1240px) {
    .desktop-navbar {
        display: none;
    }
}

@media (max-width: 1079px) {

    p,
    li {
        font-size: 14px;
        line-height: 1.7;
        margin-bottom: 10px;
    }

    li {
        margin-bottom: 0;
    }

    h2 {
        font-size: 28px;
        padding-left: 40px;
        margin-top: 100px;
        margin-bottom: 48px;
        max-width: 280px;
    }

    h2::before {
        width: 80px;
        height: 80px;
    }

    h3 {
        font-size: 18px;
    }

    h4 {
        font-size: 16px;
    }

    section {
        margin: 40px 0;
    }

    .primary-link {
        font-size: 14px;
        padding: 12px 20px;
    }

    .primary-link img,
    .primary-link svg {
        width: 12px !important;
    }

    .g-recaptcha {
        transform: scale(0.93);
        transform-origin: 0 0;
    }

    .vbox-close {
        padding: 20px !important;
        top: 5px !important;
        right: 5px !important;
    }

    .vbox-next {
        right: 25px !important;
    }

    .vbox-prev {
        left: 25px !important;
    }

    .container {
        max-width: 600px;
    }

    .hero {
        min-height: 80vh;
        margin-bottom: 120px;
    }

    .hero .container {
        margin-top: 10vh;
    }

    .hero .image {
        clip-path: ellipse(100% 78% at 40% 20%);
    }

    .hero .buttons {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    .hero .buttons a {
        width: 50%;
        height: auto;
        aspect-ratio: 1;
        max-width: 200px;
        font-size: 14px;
        display: flex;
        margin: 0 0 -20px;
        gap: 10px;
    }

    .hero .buttons a:nth-of-type(2) {
        margin-left: -8px;
    }

    .hero .buttons a:nth-of-type(3) {
        margin-top: -50px;
    }

    .hero .buttons a img {
        width: 28px;
    }

    .current h2 {
        padding-left: 40px;
    }

    .current .list {
        display: flex;
        align-items: center;
        flex-direction: column;
    }

    .current .item {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        max-width: 400px;
    }

    .current .item .image {
        width: 100%;
        max-width: 400px;
    }

    .current .item .content {
        max-width: 100%;
    }

    .current .item .content h3 {
        font-size: 18px;
    }

    .current .item .date,
    .events .swiper-slide .date {
        margin-bottom: 10px;
    }

    .current .primary-link.blue,
    .current .primary-link.green {
        margin: 20px auto 40px;
    }

    .events h2 {
        padding-left: 45px;
    }

    .events .content {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .events .relative {
        width: 81%;
        max-width: 400px;
        margin: 0 auto;
    }

    .swiper-button-prev,
    .swiper-button-next {
        width: 30px;
        height: 30px;
    }

    .swiper-button-prev::after,
    .swiper-button-next::after {
        font-size: 22px !important;
    }

    .swiper-button-prev {
        left: -40px !important;
    }

    .swiper-button-next {
        right: -40px !important;
    }

    .events .swiper-slide .image {
        height: 180px;
        margin-bottom: 15px;
    }

    .events .swiper-slide .primary-link {
        margin-top: 15px;
    }

    .calendar {
        width: 100%;
    }

    .calendar .month p {
        font-size: 16px;
    }

    .about .content {
        flex-direction: column;
        gap: 80px;
        margin-top: 80px;
    }

    .about .content .item {
        max-width: 100%;
        gap: 25px;
    }

    .about .content .item .image {
        width: 160px;
        height: 160px;
    }

    .about .content .item h3 {
        font-size: 22px;
    }

    .donation h2 {
        padding-left: 54px;
        font-size: 27px;
    }

    .donation h2::before {
        width: 90px;
        height: 90px;
    }

    .donation .content {
        flex-direction: column;
        gap: 0;
    }

    .donation .content .left,
    .donation .content .right {
        width: 100%;
    }

    .contact h2 {
        padding-left: 43px;
    }

    .contact .content {
        flex-direction: column;
        gap: 40px;
    }

    .contact .content .left,
    .contact .content form {
        width: 100%;
    }

    .contact .content .left h3 {
        font-size: 16px;
        line-height: 22px;
        margin-bottom: 20px;
    }

    .support-modal,
    .worker-modal {
        padding: 20px;
    }

    .worker-modal {
        padding-bottom: 0;
    }

    .support-modal .cancel,
    .worker-modal .cancel {
        top: 20px;
        right: 20px;
    }

    .support-modal h3,
    .worker-modal h3 {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .worker-modal h3 {
        margin-bottom: 10px;
    }

    .worker-modal h4 {
        font-size: 16px;
    }

    .support-modal .form-check:first-of-type {
        margin-top: 10px;
    }

    .support-modal form .primary-link {
        margin: 10px auto 0;
        white-space: normal;
        max-width: 200px;
        line-height: 1.5;
        padding: 10px 20px;
    }

    .worker-modal .content {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .worker-modal .content .desc {
        width: 100%;
    }

    .worker-modal .content .image {
        position: static;
        width: 63%;
    }

    form {
        padding: 20px;
    }

    form input,
    form textarea {
        padding: 12px 16px;
        font-size: 14px;
    }

    .form-check-input+label {
        font-size: 13px;
        text-align: left;
    }

    .form-check:first-of-type {
        margin-top: 0;
    }

    form .primary-link {
        margin: 20px auto 0;
    }

    footer .footer-image {
        width: 90%;
        height: auto;
    }

    footer .layer {
        height: 15vw;
        margin-top: -8vw;
    }

    footer .container {
        flex-direction: column;
        gap: 40px;
        align-items: center;
    }

    footer .item {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    footer .item img {
        width: 150px;
    }

    footer .item a,
    footer .item p {
        margin-bottom: 8px;
        font-size: 14px;
    }

    footer .item:last-of-type a.facebook {
        justify-content: center;
    }

    footer .raccoon {
        margin-top: 20px;
    }

    footer .raccoon a {
        display: block !important;
        width: 100% !important;
        margin-bottom: 0;
        text-align: center;
    }

    .hero.subpage {
        min-height: 50vh;
        margin-bottom: 120px;
    }

    .hero.subpage .image {
        clip-path: ellipse(75% 75% at 35% 25%);
    }

    .hero.subpage h1 {
        font-size: 36px;
        margin-top: 3vh;
    }

    .sidenav {
        display: none;
    }

    .sidenav-wrapper .main {
        width: 100%;
        padding: 0;
    }

    .program h2 {
        padding-left: 38px;
        margin-bottom: 40px;
        margin-top: 0;
    }

    .program h3 {
        margin: 45px 0 25px;
        font-size: 30px;
    }

    .program .items,
    .workshops .items {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .program .items .item,
    .workshops .items .item {
        width: 45%;
    }

    .program .items h4,
    .program .items p,
    .workshops .items h4,
    .workshops .items p {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .program .items p,
    .workshops .items p {
        margin-bottom: 0;
    }

    .yellowcontent .content {
        padding: 20px;
    }

    .yellowcontent .content h4 {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .yellowcontent .content p {
        font-size: 15px;
    }

    .for-employers h2 {
        padding-left: 36px;
    }

    .for-employers .content h3,
    .article .content h3 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .small-header {
        height: 40vh;
        margin-top: 72px;
        margin-bottom: 120px;
    }

    .small-header .title {
        padding: 0 20px;
        clip-path: ellipse(80% 100% at 40% 0%);
    }

    .small-header .nav {
        padding: 0 20px;
        top: 20px;
        font-size: 14px;
    }

    .small-header .nav .back img {
        width: 26px;
    }

    .small-header h1 {
        font-size: 32px;
        max-width: 100%;
        line-height: 1.2;
    }

    .collections {
        margin-top: 140px;
        margin-bottom: 60px;
    }

    .collections .item {
        padding: 20px 20px 25px;
        gap: 15px;
    }

    .collections .item p {
        margin-bottom: 18px;
    }

    .collections .content {
        gap: 20vw;
    }

    .collections .item .image {
        width: calc(100% + 62px);
        margin: -55% -30px 10px -30px;
    }

    .collections .item .primary-link {
        position: static !important;
    }

    .collection-intro .container > img {
        height: auto;
        width: 200px;
    }

    .collection-intro .quote {
        font-size: 22px;
    }

    .collection-intro .content {
        flex-direction: column-reverse;
        gap: 30px;
        margin-top: 30px;
    }

    .collection-intro .content .left,
    .collection-intro .content .images {
        width: 100%;
    }

    .collection-intro .left a {
        font-size: 16px;
    }

    .collection-intro .images {
        gap: 10px;
    }

    .collection-intro .images .image {
        width: 50%;
        height: auto;
        aspect-ratio: 1;
    }

    .collection-products {
        margin: 80px 0;
    }

    .collection-products .container {
        gap: 60px;
    }

    .collection-products .item {
        max-width: 100%;
        gap: 15px;
        padding-bottom: 55px;
    }

    .collection-products .item .image {
        width: 240px;
        height: 240px;
    }

    .product-header {
        height: 20vh;
    }

    .product-header .circle {
        bottom: -8vh;
    }

    .product-1 .product {
        flex-direction: column;
        gap: 40px;
    }

    .product-1 .product .left {
        width: 100%;
    }

    .product .productSwiper {
        height: auto;
        aspect-ratio: 1;
    }

    .product .productThumbsSwiper {
        width: calc(100% - 50px);
        height: auto;
        aspect-ratio: 3/1;
    }

    .product .relative .swiper-button-next {
        right: -8px !important;
    }

    .product .relative .swiper-button-prev {
        left: -8px !important;
    }

    .product .right {
        width: 100%;
        gap: 20px;
    }

    .product .right h1 {
        font-size: 30px;
    }

    .product .inputs,
    .basket-list .inputs {
        width: 100%;
    }

    .basket-list .input {
        width: 100px;
        height: 40px;
        border-radius: 10px;
        padding: 10px;
    }

    .basket-list .input img {
        width: 18px;
        height: 18px;
    }

    .basket-list .input input {
        width: 42px;
        font-size: 18px;
    }

    .product .inputs .row,
    .basket-list .inputs .row {
        justify-content: center;
    }

    .product .inputs .primary-link {
        margin: 0;
    }

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

    .alapitvany-about h2 {
        padding-left: 44px;
        margin-top: 0;
        font-size: 25px;
    }

    .alapitvany-about h2::before {
        width: 70px;
        height: 70px;
    }

    .alapitvany-about .content h3 {
        text-align: center;
        font-size: 22px;
        margin: 40px 0;
    }

    .alapitvany-about .items {
        padding: 20px;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }

    .alapitvany-about .items p {
        font-size: 16px;
        margin-right: 0;
    }

    .alapitvany-about .items p::before {
        display: none;
    }

    .workers .container {
        flex-direction: column;
        gap: 60px;
    }

    .workers .worker {
        max-width: 100%;
    }

    .workers .worker .image::before {
        width: 200px;
        height: 200px;
    }

    .workers .worker .image img {
        width: 200px;
        height: 215px;
    }

    .workers .worker .title {
        text-align: center;
        font-size: 16px;
    }

    .programs .program {
        margin-bottom: 25px;
    }

    .informations .program {
        margin: 25px 0 40px;
    }

    .programs.awards h2 {
        padding-left: 50px;
    }

    .programs .program .header {
        padding: 20px;
    }

    .programs.awards .program .header {
        padding: 15px 0;
    }

    .programs .program .header h3 {
        font-size: 16px;
        line-height: 1.5;
        max-width: 80%;
    }

    .programs.awards .program .header h3 {
        font-size: 28px;
    }

    .programs .program .header img {
        width: 18px;
    }

    .informations .program .header img {
        width: 15px;
    }

    .programs.awards .program .content .item {
        padding: 20px 0;
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .programs .program .content {
        transition: max-height 0.7s ease-out;
    }

    .programs.awards .program .content .item {
        padding: 20px 0;
    }

    .programs.awards .program .content .item .right {
        width: 100%;
    }

    .programs.awards .program .content .item .right h3 {
        font-size: 22px;
        text-align: center;
    }

    .programs.awards .program .content .item .right .title {
        font-size: 16px;
        text-align: center;
    }

    .programs .program .details,
    .programs .program .infos {
        padding: 20px 20px 0;
    }

    .programs .program .amount {
        padding: 20px;
    }

    .programs .program .shape {
        width: 200px;
        bottom: -50px;
        right: -25px;
    }

    .programs .program:nth-of-type(2n) .shape {
        right: auto;
        left: -25px;
    }

    .donation .content .right .primary-link {
        margin-top: 15px;
    }

    .small-header.article-header h1 {
        font-size: 24px;
        margin-top: 0;
    }

    .article .header {
        flex-direction: column;
        align-items: center;
        gap: 25px;
        margin: 0 auto 40px;
    }

    .article .header .image,
    .article .header .subtitle {
        width: 100%;
        text-align: center;
    }

    .article .header .image {
        height: 280px;
    }

    .article .header h3 {
        font-size: 20px;
    }

    .documents .group {
        margin-bottom: 40px;
    }

    .documents .group h3 {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .documents .header {
        padding: 20px;
    }

    .documents .header h3 {
        font-size: 18px;
        margin: 0;
    }

    .documents .header h3:first-of-type {
        width: 70%;
    }

    .documents .header h3:last-of-type {
        width: 30%;
    }

    .documents .item {
        padding: 20px;
        gap: 15px;
    }

    .documents .item .name {
        font-size: 14px;
        width: 70%;
    }

    .documents .item .buttons {
        gap: 20px;
        width: 30%;
    }

    .documents .item .buttons .type,
    .documents .item .buttons .download {
        font-size: 12px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }

    .documents .item .buttons img {
        margin-right: 0;
        height: 20px;
    }

    .informations h2,
    .programs h2 {
        padding-left: 45px;
        margin-bottom: 50px;
    }

    .institutions h2 {
        padding-left: 49px;
    }

    .institutions .items {
        flex-direction: column;
        gap: 20px;
    }

    .institutions .item {
        width: 100%;
        border-radius: 15px;
    }

    .institutions .item .header {
        padding: 20px;
    }

    .institutions .item .header h3 {
        font-size: 18px;
    }

    .institutions .item .content {
        padding: 20px;
    }

    .institutions .item .content p {
        margin-bottom: 5px;
    }

    .programs.services h2 {
        padding-left: 42px;
    }

    .programs.services .program {
        margin: 20px auto;
    }

    .programs .program .header h4 {
        font-size: 14px;
        padding-right: 15px;
        margin-top: 10px;
    }

    .programs .service-details {
        padding: 20px;
    }

    .documents.blue h2 {
        padding-left: 41px;
        width: 100%;
    }

    .documents .infos {
        margin: 0 auto 40px;
    }

    .documents .infos p {
        margin-bottom: 0;
        font-size: 16px;
    }

    .supporters .container {
        gap: 20px;
        padding: 40px 0 0;
    }

    .supporters .container img {
        max-width: 145px;
        max-height: 100px;
        object-fit: contain;
    }

    .donation.subpage h2 {
        padding-left: 50px;
    }

    .volunteering h2 {
        padding-left: 35px;
    }

    .volunteering .options {
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
    }

    .volunteering .options .option {
        width: 45%;
        max-width: 100%;
    }

    .szja h2 {
        padding-left: 42px;
    }

    .informations.buying h2 {
        padding-left: 40px;
    }

    .contact-header h1 {
        margin-top: 0;
    }

    .contact h2.green {
        padding-left: 31px;
    }

    .informations.contact-informations h2 {
        padding-left: 49px;
    }

    .informations.contact-informations .content {
        max-height: 100%;
    }

    .informations.contact-informations .content .item {
        margin-right: 0;
        max-width: 100%;
    }

    .informations.art h2 {
        padding-left: 38px;
        line-height: 0.98;
        margin-top: 0;
    }

    .informations.art h2::before {
        width: 80px;
        height: 80px;
    }

    .artists .artist {
        margin-bottom: 20px;
    }

    .artists .artist:nth-of-type(8n+5) .image::before {
        background-color: var(--red);
    }

    .artists .artist:nth-of-type(8n+6) .image::before {
        background-color: var(--yellow);
    }

    .artists .artist:nth-of-type(8n+7) .image::before {
        background-color: var(--green);
    }

    .artists .artist:nth-of-type(8n+8) .image::before {
        background-color: var(--blue);
    }

    .artist-intro .content {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .artist-intro .gallery {
        margin-top: 40px;
    }

    .artist-intro .artist-nav {
        margin-top: 40px;
        padding: 0;
    }

    .artist-intro .artist-nav a {
        font-size: 14px;
        gap: 10px;
    }

    .artist-intro .artist-nav img {
        width: 20px;
    }

    .current.green .item.active .content {
        padding: 20px 20px 0;
    }

    .current.green .item.active .primary-link {
        margin-left: 20px;
        margin-bottom: 20px;
    }

    .informations .links {
        flex-direction: column;
    }

    .laurus h2 {
        max-width: 260px;
    }

    .laurus .intro {
        flex-direction: column;
        gap: 20px;
    }

    .laurus .intro .left {
        width: 75%;
        max-width: 300px;
        margin: 20px 0;
    }

    .laurus .intro .right {
        width: 100%;
    }

    .laurus .images {
        margin: 30px auto 50px;
        gap: 20px;
    }

    .laurus .images img {
        width: 140px;
        height: 140px;
    }

    .laurus .quote p {
        padding: 20px;
        font-size: 15px;
        text-align: center;
    }

    .support-1 h2 {
        padding-left: 48px;
        font-size: 26px;
    }

    .support-1 .content {
        flex-direction: column-reverse;
        gap: 20px;
    }

    .support-1 .content .left,
    .support-1 .content .right {
        width: 100%;
    }

    .support-2 h2 {
        padding-left: 47px;
        font-size: 24px;
        margin-bottom: 50px;
    }

    .workshops h2 {
        padding-left: 35px;
    }

    .workshops .content {
        flex-direction: column-reverse;
        gap: 20px;
        margin: 0 auto 20px;
    }

    .workshops .content .left,
    .workshops .content .right {
        width: 100%;
    }

    .gifts-1 h2 {
        padding-left: 42px;
        font-size: 25px;
    }

    .gifts-1 h2::before {
        width: 80px;
        height: 80px;
    }

    .gifts-1 h3 {
        font-size: 22px;
        margin: 40px 0 90px;
    }

    .gifts-1 .step .content {
        width: 100%;
        padding-right: 125px;
        padding-left: 30px;
        min-height: 200px;
        padding-bottom: 80px;
    }

    .gifts-1 .step:nth-of-type(2n) .content {
        text-align: left;
        padding-right: 125px;
        padding-left: 30px;
    }

    .gifts-1 .step:last-of-type .content {
        padding-bottom: 20px;
    }

    .gifts-1 .step .content .image {
        transform: translateY(-50%);
        right: 12px;
    }

    .gifts-1 .step:nth-of-type(2n) .content .image {
        left: auto;
        right: 12px;
        transform: translateY(-50%);
    }

    .gifts-1 .step .content .image::before {
        top: -12px;
        right: -12px;
    }

    .gifts-1 .step:nth-of-type(2n) .content .image::before {
        right: -20px;
        left: auto;
    }

    .gifts-1 .step .content .image img {
        width: 110px;
        height: 110px;
    }

    .gifts-1 .step .content .line {
        top: 0;
        left: 0;
        width: 8px;
        height: 100%;
        border-radius: 5px;
    }

    .gifts-1 .step:first-of-type .content .line {
        top: -60px;
        height: calc(100% + 60px);
    }

    .gifts-1 .step:nth-of-type(2n) .content .line {
        right: auto;
        left: 0;
    }

    .gifts-1 .step .content .circle {
        top: -16px;
        left: -11px;
        width: 30px;
        height: 30px;
        border-radius: 50%;
        border: 10px solid var(--blue);
    }

    .gifts-1 .step:nth-of-type(2n) .content .circle {
        left: -11px;
        right: auto;
    }

    .gifts-1 .step .content h4 {
        margin-top: -35px;
        margin-bottom: 25px;
    }

    .gifts-1 .step .content p {
        font-size: 13px;
    }

    .collection-products .container>h3 {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .collection-intro h2 {
        margin-bottom: 60px;
    }

    .supporters.gifts-supporters h2 {
        padding-left: 37px;
        margin-bottom: 30px;
        margin-top: 60px;
    }

    .partners h2 {
        width: 300px;
        padding-left: 44px;
        font-size: 24px;
    }

    .partners .osm-map {
        height: 260px;
    }

    .partners .items {
        max-height: max-content;
    }

    .partners .items .item {
        max-width: 100%;
        padding: 0;
        margin-bottom: 20px;
    }

    .partners .items .item p {
        font-size: 16px;
    }

    .market-schedule h2 {
        padding-left: 42px;
        margin-bottom: 60px;
    }

    .market-schedule .content {
        flex-direction: column-reverse;
        gap: 30px;
    }

    .market-schedule .content .items,
    .market-schedule .content .right {
        width: 100%;
    }

    .workshop-1 h2 {
        padding-left: 41px;
        font-size: 25px;
    }

    .workshop-1 h2::before {
        width: 70px;
        height: 70px;
    }

    .workshop-1 .content {
        flex-direction: column-reverse;
        gap: 20px;
        margin: 0 auto 20px;
    }

    .workshop-1 .content .text,
    .workshop-1 .content .image {
        width: 100%;
    }

    .workshop-1 .content:nth-of-type(2n) {
        flex-direction: column-reverse;
    }

    .workshop-workers h2 {
        padding-left: 35px;
    }

    .basket-list .item {
        padding: 20px 0;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 20px;
    }

    .basket-list .item .left img {
        width: 100px;
        height: 100px;
        border-radius: 10px;
    }

    .basket-list .item .left .name {
        font-size: 18px;
    }


    .basket-list .item .left {
        gap: 20px;
    }

    .basket-list .item .inputs .row {
        justify-content: space-between;
    }

    .basket-list .price {
        font-size: 18px;
    }

    .basket-list .summary {
        margin: 20px 0 40px;
    }

    .basket-list .summary h3 {
        font-size: 18px;
    }

    .basket-list .buttons {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .galleries .relative {
        width: calc(100% - 60px);
    }

    .galleries h3 {
        margin: 60px 0 30px;
        font-size: 22px;
    }

    .programs:not(.awards) .program .inner-content {
        padding: 20px;
    }

    .flex-content {
        flex-direction: column-reverse;
        gap: 20px;
    }

    .en-who-are-we {
        h2 {
            padding-left: 28px;
        }

        .left.side {
            width: 100%;
        }

        .right.side {
            width: 70%;
            margin: 20px auto 0;

            img {
                width: 100%;
                display: block;
                margin-top: 0;
            }

            .circle {
                width: 100%;
                height: 100%;
                top: -30px;
                right: -30px;
            }
        }
    }

    .en-goals {
        h2 {
            padding-left: 37px;
        }

        .items {
            gap: 35px;

            .item {
                width: 100%;

                .image {
                    margin: 0 auto 14px;

                    .circle {
                        width: 60px;
                        height: 60px;
                        margin-left: -45px;
                    }

                    img {
                        height: 60px;
                        margin-top: 14px;
                    }
                }

                h3 {
                    font-size: 17px;
                }
            }
        }
    }

    .en-support {

        h2 {
            padding-left: 42px;
        }

        .flex-content {
            flex-direction: column;
        }

        .left {
            width: 100%;
        }

        .right {
            width: 100%;
            margin-top: 0;

            img {
                width: 60%;
            }

            svg {
                right: 38%;
                width: 62%;
                bottom: 20%;
            }
        }
    }

    .en-donation {
        .container {
            padding: 20px;

            h3 {
                font-size: 26px;
                max-width: 280px;
                margin-bottom: 20px;
            }

            form {
                
                .form-check:first-of-type {
                    margin-top: 15px;
                }

                .primary-link {
                    margin-top: 15px;
                    max-width: 200px;
                }
            }
        }
    }

    .en-contact {
        h2 {
            padding-left: 36px;
        }
    }

    .en-contact + footer::after {
        content: '';
        display: block;
        background-color: var(--red);
        width: 100%;
        height: 80px;
    }

}

@media (min-width: 1080px) and (max-width: 1299px) {}