.overlay h4 {
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.header-wrapper:after {
    content: "";
    display: table;
    clear: both;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    line-height: 1;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

html {
    box-sizing: border-box;
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

/* FLOATING COOKIE*/
.cookie-consent {
    position: fixed;
    left: 20px;
    bottom: 20px;
    max-width: 420px;
    width: 90vw;
    box-sizing: border-box;
    padding: 18px 16px 14px 16px;
    color: #fff;
    text-align: left;
    background: rgba(41, 41, 41, 0.98);
    z-index: 120;
    border-radius: 7px;
    font-size: 15px;
    line-height: 1.6;
    border: 1px solid #DDBB67;
    display: flex;
    flex-direction: column;
    gap: 12px;
}


.cookie-consent a.cookie-privacy-link {
    color: #DDBB67;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 18px;
    transition: color 0.2s;
}

.cookie-consent a.cookie-privacy-link:hover {
    color: #2e8b3a;
}

.cookie-buttons {
    display: flex;
    flex-direction: row;
    gap: 12px;
    justify-content: flex-start;
    align-items: center;
}

.allow-button,
.deny-button {
    padding: 7px 18px;
    font-size: 13px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.18s, color 0.18s, border 0.18s;
}

.allow-button {
    background: linear-gradient(90deg, #3bb54a, #2e8b3a);
    color: #fff;
    border: 1px solid #2e8b3a;
    box-shadow: 0 1px 4px rgba(60, 180, 80, 0.12);
}

.allow-button:hover {
    background: linear-gradient(90deg, #2e8b3a, #3bb54a);
}

.deny-button {
    background: #fff;
    color: #292929;
    border: 1px solid #bbb;
}

.deny-button:hover {
    background: #f2f2f2;
    border-color: #888;
}

@media (max-width: 900px) {
    .cookie-consent {
        left: 50%;
        bottom: 12px;
        transform: translateX(-50%);
        right: auto;
        max-width: 98vw;
        width: 98vw;
        margin: 0;
        border-radius: 6px;
        font-size: 14px;
        padding: 14px 7px 10px 7px;
    }
}

/* FLOATING MENU*/
.floating-menu {
    position: fixed;
    right: 130px;
    bottom: 90px;
    z-index: 9999;
    width: 100px;
    height: 100px;
    perspective: 1000px;
}

/* Gömb gomb */
.floating-btn {
    width: 100%;
    height: 100%;
    cursor: pointer;
    transform-style: preserve-3d;
}

.floating-btn-inner {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    animation: spinY 6s linear infinite;
}

.floating-btn-inner img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: absolute;
    backface-visibility: hidden;
    object-fit: cover;
}

.floating-btn-inner img:nth-child(2) {
    transform: rotateY(180deg);
}

/* Menüpontok */
.floating-links {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 0;
    height: 0;
    pointer-events: none;
    overflow: visible;
    z-index: 10;
}

.floating-links a {
    --radius: 100px;
    position: absolute;
    left: calc(50% - 40px);
    top: calc(50% - 20px);
    width: 80px;
    height: 40px;
    line-height: 40px;
    color: #DDBB67;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 600;
    opacity: 0;
    transition: all 0.3s ease;
    transform: translate(0, 0);
    z-index: 1;
    white-space: nowrap;
}

.floating-links a:hover {
    color: #C14600;
}

.floating-menu.open .floating-links a {
    opacity: 1;
    pointer-events: auto;
    transform: rotate(calc(72deg * var(--i))) translateY(-70px) rotate(calc(-72deg * var(--i)));
    transition-delay: calc(0.10s * var(--i));
}

/* Animáció */
@keyframes spinY {
    from {
        transform: rotateY(0deg);
    }

    to {
        transform: rotateY(360deg);
    }
}

/* Tablet nézet (900px) */
@media (max-width: 930px) {
    .floating-menu {
        display: none;
        right: 20px;
        bottom: 20px;
        width: 60px;
        height: 60px;
    }

    .floating-links a {
        transform: rotate(calc(72deg * var(--i))) translateY(-70px) rotate(calc(-72deg * var(--i)));
    }
}

/* Mobil nézet (600px) */
@media (max-width: 600px) {
    .floating-menu {
        display: none;
        right: 15px;
        bottom: 95px;
        width: 50px;
        height: 50px;
    }

    .floating-links a {
        transform: rotate(calc(72deg * var(--i))) translateY(-50px) rotate(calc(-72deg * var(--i)));
        width: 70px;
        height: 30px;
        line-height: 30px;
        font-size: 14px;
    }
}

/* HEADER */

.site-header {
    margin-top: 30px;
    margin-bottom: 80px;
    width: 100%;
}

.site-branding h1.logo-text {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.site-branding img.logo-image {
    max-width: 55% !important;
    height: auto;
}

.header-wrapper {
    padding: 20px 0;
    position: relative;
}

.header-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: #DDBB67;
    animation: expand 3s forwards;
}

@keyframes expand {
    0% {
        width: 0;
    }

    100% {
        width: 100%;
    }
}

a.toggle-nav {
    position: absolute;
    top: 7px;
    right: 5px;
    margin: 55px 0;
    width: 46px;
    height: 46px;
    text-align: center;
    line-height: 46px;
    background: none !important;
    border: none !important;
    outline: none !important;
    color: #DDBB67;
}

.menu {
    background-color: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    padding: 0;
}

.menu svg {
    width: 40px;
    height: 40px;
}

.line {
    fill: none;
    stroke: #fff;
    stroke-width: 4;
    transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
        stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.line1 {
    stroke-dasharray: 60 207;
    stroke-width: 6;
}

.line2 {
    stroke-dasharray: 60 60;
    stroke-width: 6;
}

.line3 {
    stroke-dasharray: 60 207;
    stroke-width: 6;
}

.opened .line1 {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
    stroke-width: 6;
}

.opened .line2 {
    stroke-dasharray: 1 60;
    stroke-dashoffset: -30;
    stroke-width: 6;
}

.opened .line3 {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
    stroke-width: 6;
}

a.toggle-nav i {
    font-size: 16px;
}

a.toggle-nav:hover {
    color: #fff;
}

.site-branding h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
}

nav.main-navigation {
    text-align: right;
}

ul.main-menu li {
    display: inline-block;
    margin-left: 10px;
}

ul.main-menu li a {
    padding: 20px 15px;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 400;
    color: #DDBB67;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    align-items: center;
    justify-content: center;
}

ul.main-menu li a:hover {
    transform: scale(1.2);
    font-weight: 500;
    color: #ffd93d;
    z-index: 1;
}

ul.main-menu li a.active {
    color: #fff;
    font-weight: 700;
    border: none !important;
}

@media (min-width: 992px) and (max-width: 1401px) {
    ul.main-menu li {
        display: inline-block;
        margin-left: 10px;
    }

    ul.main-menu li a {
        padding: 0px 0px;
        text-transform: uppercase;
        font-size: 14px;
    }
}

@media screen and (max-width: 992px) {
    .menu-responsive {
        display: none;
    }

    .toggle-nav {
        cursor: pointer;
        position: relative;
        z-index: 1000;
    }

    nav.main-navigation {
        margin-top: 0px;
        text-align: left;
    }

    .site-branding h1 {
        font-size: 14px;
        font-weight: 700;
        margin-right: 40px;
    }

    a.toggle-nav {
        margin: 15px;
    }

    .site-branding img.logo-image {
        max-width: 50% !important;
        height: auto;
    }

    ul.main-menu {
        line-height: 0.1;
        margin: 0;
        width: 100%;
        padding: 20px;
        border-radius: 25px;
        text-align: center;
    }

    ul.main-menu li {
        display: block;
        margin-left: 0;
        margin-right: 0;
    }

    ul.main-menu li a {
        font-size: 15px;
        font-weight: 500;
    }
}

@media screen and (max-width: 992px) {

    html,
    body {
        margin: 0;
        padding: 0;
        overflow-x: hidden;
        height: 100%;
    }

    main {
        flex: 1 0 auto;
    }

    .site-wrapper {
        min-height: 100vh;
        display: flex;
        flex-direction: column;
    }

    .site-header {
        position: fixed;
        top: 2px;
        left: 0;
        right: 0;
        width: 95vw;
        margin: 0 auto;
        z-index: 9999;
        background-color: #000;
        transition: all 0.3s ease;
        padding: 0;
    }

    body {
        padding-top: 120px !important;
    }

    .header-wrapper {
        padding: 20px 15px;
        box-sizing: border-box;
    }

    .site-header.shrink .header-wrapper {
        padding: 10px 15px !important;
        margin-bottom: 10px !important;
    }

    .header-wrapper::after {
        width: 100% !important;
    }

    .site-branding img.logo-image {
        display: block;
        max-width: 50% !important;
        height: auto;
    }

    .site-header.shrink .site-branding img.logo-image {
        max-width: 40% !important;
    }

    .site-header.shrink .menu svg {
        width: 30px;
        height: 30px;
    }

    a.toggle-nav {
        top: 0px;
        right: 2px;
    }

}


/* HERO */

.content {
    display: none;
}

.home-intro {
    margin-bottom: 10px;
}

.image-container {
    margin-top: -30px;
    margin-bottom: 0;
    padding-top: 0;
}

.image-container .responsive-image {
    max-width: 100%;
    width: 700px;
    height: auto;
    margin: 5px auto;
    display: block;
}

.fade-in {
    animation: fadeInScale 4s;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.1);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}


@media screen and (max-width: 992px) {
    h2.welcome-title {
        font-size: 26px;
        font-weight: 600;
    }

    .home-section {
        height: 80vh;
        width: 100%;
        padding-top: 10vh;
    }
}

.home-projects {
    margin-bottom: 100px;
}

.home-projects h2 {
    color: #fff;
    font-size: 36px;
    margin-top: 0;
    margin-bottom: 35px;
}

.home-projects p {
    margin-bottom: 32px;
}

/* RÓLUNK */

.about-section {
    width: 100%;
    margin: 0 auto;
}

.about-section .container {
    width: 100%;
    margin: 0 auto;
}

.our-story {
    padding: 0 20px;
    margin-top: 0px;
    position: relative;
    overflow: hidden;
    width: 100%;
    border-radius: 20px;
    border: 2px solid #DDBB67;
}

.story-bg {
    background: url("../img/background/about_back.png");
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 20px;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    -moz-animation-delay: 1s;
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}

.story-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.1);
    z-index: 0;
}

.inner-story {
    position: relative;
    z-index: 1;
    padding: 15px 10px 15px 10px !important;
    margin: 20px 0px 20px -190px !important;
    width: 70%;
    font-weight: 500;
    border-radius: 10px;
    -moz-animation-delay: 1.4s;
    -webkit-animation-delay: 1.4s;
    animation-delay: 1.4s;
}

.inner-story span {
    color: #ba1828;
    font-weight: 700;
}

.inner-story p {
    margin-bottom: 0;
    font-size: 16px;
    font-weight: 500;
    color: #443627;
    text-align: justify;
    hyphens: auto;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    -moz-hyphens: auto;
}

@media screen and (max-width: 1201px) {
    .about-section {
        width: 100% !important;
    }

    .about-section h2 {
        font-weight: 500;
    }

    .sect-title {
        font-size: 18px !important;
    }

    .about-section p {
        text-align: justify;
        text-justify: inter-word;
        hyphens: auto;
        color: #000;
    }

    .story-bg {
        background: url("../img/background/about_mobile.png") no-repeat center center;
        background-size: cover;
        border-radius: 20px;
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        z-index: 0;
    }

    .story-bg::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(255, 255, 255, 0.8);
        border-radius: 20px;
        z-index: 1;
        pointer-events: none;
    }

    .our-story {
        padding: 0.3px;
        margin-top: 80px;
        width: 100% !important;
    }

    .inner-story {
        padding: 15px 10px 15px 10px;
        margin: 30px 0px 20px 0px !important;
        width: 100%;
    }
}

/* SZOLGÁLTATÁSOK */

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* SZOLGÁLTATÁSOK - 3D-s verzió */

.services-3d-section {
    width: 100%;
    margin: 0 auto;
    padding: 40px 0;
    padding-top: 60px;
    margin-top: 18vh;
}

.services-3d-header {
    margin-bottom: 60px;
    text-align: center;
}

.services-3d-header h2 {
    color: #fff;
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
}

.services-3d-header p {
    color: #ddd;
    font-size: 17px;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.services-3d-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    perspective: 1200px;
}

.services-3d-parent {
    flex: 1 1 300px;
    max-width: 350px;
    min-height: 400px;
    perspective: 1000px;
    transform-style: preserve-3d;
}

.services-3d-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    text-align: center;
    height: 100%;
    border: 3px solid #DDBB67;
    border-radius: 25px;
    transform-style: preserve-3d;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0px 30px 60px -15px rgba(221, 187, 103, 0.3);
    cursor: pointer;
    backface-visibility: hidden;
}

.services-3d-card:hover {
    transform:
        rotateX(3deg) rotateY(10deg) translateZ(25px) scale(1.03);
    box-shadow: 0px 50px 100px -10px rgba(221, 187, 103, 0.4);
}

.services-3d-content-box {
    background: #102E50;
    width: auto;
    height: 340px;
    max-width: 280px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

.services-3d-card-title {
    display: block;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    margin: 0 0 15px 0;
    margin-top: 25px;
}

.services-3d-card-content {
    color: #f2f2f2;
    font-size: 15px;
    line-height: 1.5;
    text-align: center;
    margin: 0;
}

.services-3d-date-box {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 100px;
    height: 100px;
    transform: translateZ(50px);
}

.services-3d-date-box img {
    width: 100%;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.3));
}

@media (max-width: 992px) {
    .services-3d-section {
        width: 80%;
    }

    .services-3d-card {
        min-height: auto;
        padding: 40px 20px;
    }

    .services-3d-content-box {
        min-height: 320px;
        padding: 50px 20px 20px 20px;
        padding-top: 60px;
    }

    .services-3d-date-box {
        width: 50px;
        height: 50px;
        top: 10px;
        right: 10px;
    }
}

@media (max-width: 768px) {
    .services-3d-section .services-3d-header {
        margin-top: 70px;
        padding-top: 40px !important;
    }
    .services-3d-header h2 {
        font-size: 32px !important;
    }

    .services-3d-parent {
        flex: 1 1 100%;
    }

    .services-3d-date-box {
        width: 90px;
        height: 90px;
        top: 30px;
        right: 30px;
    }
}

/* GYIK */

.faq .container {
    margin: 0 auto;
    padding: 2rem 1rem;
    width: 100%;
    max-width: 58rem;
    box-sizing: border-box;
}

.faq .container h2 {
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: #fff;
}

.faq .accordion {
    border: 1px solid #fff;
    border-radius: 5px;
    box-shadow: rgba(255, 255, 255, 0.25) 0px 54px 55px, rgba(255, 255, 255, 0.12) 0px -12px 30px, rgba(255, 255, 255, 0.12) 0px 4px 6px, rgba(255, 255, 255, 0.17) 0px 12px 13px, rgba(255, 255, 255, 0.09) 0px -3px 5px;
}

.faq .accordion .accordion-item {
    border-bottom: 1px solid #102E50;
    background-color: #000;
}

.faq .accordion .accordion-item button[aria-expanded='true'] {
    border-bottom: none;
    margin-bottom: -3vh;
}

.faq .accordion button {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    width: 100%;
    padding: 1em;
    color: #fff;
    font-size: 1.15rem;
    font-weight: 400;
    border: none;
    background: none;
    outline: none;
}

.faq .accordion button:hover,
.faq .accordion button:focus {
    cursor: pointer;
    color: #DDBB67;
}

.faq .accordion button:hover::after,
.faq .accordion button:focus::after {
    cursor: pointer;
    color: #EFDCAB;
    border: 1px solid #03b5d2;
}

.faq .accordion button .accordion-title {
    flex: 1 1 auto;
    padding: 1em 0.5em 1em 0;
    min-width: 0;
    word-break: break-word;
    font-size: 0.8em;
}

.faq .accordion button .icon {
    flex: 0 0 auto;
    margin-left: 0.5em;
    width: 20px;
    height: 20px;
    min-width: 20px;
    min-height: 20px;
    position: relative;
    top: auto;
    right: auto;
}

.faq .accordion button .icon::before {
    display: block;
    position: absolute;
    content: '';
    top: 9px;
    left: 5px;
    width: 10px;
    height: 2px;
    background: currentColor;
}

.faq .accordion button .icon::after {
    display: block;
    position: absolute;
    content: '';
    top: 5px;
    left: 9px;
    width: 2px;
    height: 10px;
    background: currentColor;
}

.faq .accordion button[aria-expanded='true'] {
    color: #EFDCAB;
}

.faq .accordion button[aria-expanded='true'] .icon::after {
    width: 0;
}

.faq .accordion button[aria-expanded='true']+.accordion-content {
    opacity: 1;
    max-height: 9em;
    transition: all 200ms linear;
    will-change: opacity, max-height;
}

.faq .accordion .accordion-content {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 200ms linear, max-height 200ms linear;
    will-change: opacity, max-height;
}

.faq .accordion .accordion-content p {
    font-size: 1rem;
    font-weight: 300;
    margin: 1em;
    color: #fff;
    text-align: justify;
    text-justify: inter-word;
    hyphens: auto;
}

@media (max-width: 900px) {
    .faq .container {
        padding: 1.5rem 0.5rem;
        max-width: 98vw;
    }
}

@media (max-width: 600px) {
    .faq .container {
        padding: 1rem 0.2rem;
        max-width: 100vw;
    }

    .faq .container h2 {
        font-size: 1.3em;
        margin-top: 5vh;
    }

    .faq .accordion-title {
        font-size: 0.98em;
        padding-right: 0.2em;
    }

    .faq .accordion button[aria-expanded='true']+.accordion-content {
        max-height: 19em;
    }

    .faq .accordion .accordion-content p {
        font-size: 0.98rem;
        margin: 0.7em;
    }

    .faq .accordion button .icon {
        width: 18px;
        height: 18px;
        min-width: 18px;
        min-height: 18px;
        margin-left: 0.2em;
    }
}

/* REFERENCIA */

.reference-section {
    width: 80%;
}

.reference-header {
    margin-top: 30px;
    margin-bottom: 80px;
    text-align: center;
}

.reference-header h2 {
    color: #fff;
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 30px;
    -moz-animation-delay: 0.5s;
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
}

.reference-section h3 {
    font-size: 16px;
    font-weight: 600;
    color: #ff9000;
    text-align: center;
    text-transform: uppercase;
}

.reference-section p {
    font-size: 12px;
    font-weight: 600;
    color: #ff9000;
    text-align: center;
    margin: 10px;
}

.reference-section .refi-container {
    display: flex;
    justify-content: center;
    padding: 0px;
    flex-wrap: wrap;
    text-align: center;
}

.reference-section .refi-container img {
    max-width: 180px;
    margin: 15px;
    border: 5px solid #e99f3e;
    border-radius: 10px;
}

.reference-section .card_box img {
    width: 170px;
    height: 170px;
    object-fit: contain;
}

.reference-section .card_box2 img {
    width: 170px;
    height: 170px;
    object-fit: contain;
}

.reference-section .card_box {
    width: 230px;
    height: 350px;
    border-radius: 20px;
    background: linear-gradient(170deg, rgba(58, 56, 56, 0.623) 0%, rgb(31, 31, 31) 100%);
    position: relative;
    box-shadow: rgba(255, 255, 255, 0.7) 0px 0px 40px 4px;
    cursor: pointer;
    transition: all .3s;
    margin: 40px;
}

.reference-section .card_box:hover {
    transform: scale(0.9);
}

.reference-section .card_box span {
    position: absolute;
    overflow: hidden;
    width: 150px;
    height: 150px;
    top: -10px;
    left: -10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reference-section .card_box span::before {
    content: 'One page';
    position: absolute;
    width: 150%;
    height: 40px;
    background-image: linear-gradient(45deg, #ff6547 0%, #ffb144 51%, #ff7053 100%);
    transform: rotate(-45deg) translateY(-20px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.23);
}

.reference-section .card_box span::after {
    content: '';
    position: absolute;
    width: 10px;
    bottom: 0;
    left: 0;
    height: 10px;
    z-index: -1;
    box-shadow: 140px -140px #cc3f47;
    background-image: linear-gradient(45deg, #FF512F 0%, #F09819 51%, #FF512F 100%);
}

.reference-section .card_box2 {
    width: 230px;
    height: 350px;
    border-radius: 20px;
    background: linear-gradient(170deg, rgba(58, 56, 56, 0.623) 0%, rgb(31, 31, 31) 100%);
    position: relative;
    box-shadow: rgba(255, 255, 255, 0.7) 0px 0px 40px 4px;
    cursor: pointer;
    transition: all .3s;
    margin: 40px;
}

.reference-section .card_box2:hover {
    transform: scale(0.9);
}

.reference-section .card_box2 span {
    position: absolute;
    overflow: hidden;
    width: 150px;
    height: 150px;
    top: -10px;
    left: -10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reference-section .card_box2 span::before {
    content: 'Complex';
    position: absolute;
    width: 150%;
    height: 40px;
    background-image: linear-gradient(45deg, #ff6547 0%, #ffb144 51%, #ff7053 100%);
    transform: rotate(-45deg) translateY(-20px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.23);
}

.reference-section .card_box3 {
    width: 230px;
    height: 350px;
    border-radius: 20px;
    background: linear-gradient(170deg, rgba(58, 56, 56, 0.623) 0%, rgb(31, 31, 31) 100%);
    position: relative;
    box-shadow: rgba(255, 255, 255, 0.7) 0px 0px 40px 4px;
    cursor: pointer;
    transition: all .3s;
    margin: 40px;
}

.reference-section .card_box3:hover {
    transform: scale(0.9);
}

.reference-section .card_box3 span {
    position: absolute;
    overflow: hidden;
    width: 150px;
    height: 150px;
    top: -10px;
    left: -10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reference-section .card_box3 span::before {
    content: 'Multi';
    position: absolute;
    width: 150%;
    height: 40px;
    background-image: linear-gradient(45deg, #ff6547 0%, #ffb144 51%, #ff7053 100%);
    transform: rotate(-45deg) translateY(-20px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.23);
}

.reference-section .card_box3 span::after {
    content: '';
    position: absolute;
    width: 10px;
    bottom: 0;
    left: 0;
    height: 10px;
    z-index: -1;
    box-shadow: 140px -140px #cc3f47;
    background-image: linear-gradient(45deg, #FF512F 0%, #F09819 51%, #FF512F 100%);
}


.reference-section .card_box4 {
    width: 230px;
    height: 350px;
    border-radius: 20px;
    background: linear-gradient(170deg, rgba(58, 56, 56, 0.623) 0%, rgb(31, 31, 31) 100%);
    position: relative;
    box-shadow: rgba(255, 255, 255, 0.7) 0px 0px 40px 4px;
    cursor: pointer;
    transition: all .3s;
    margin: 40px;
}

.reference-section .card_box4:hover {
    transform: scale(0.9);
}

.reference-section .card_box4 span {
    position: absolute;
    overflow: hidden;
    width: 150px;
    height: 150px;
    top: -10px;
    left: -10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reference-section .card_box4 span::before {
    content: 'webshop';
    position: absolute;
    width: 150%;
    height: 40px;
    background-image: linear-gradient(45deg, #ff6547 0%, #ffb144 51%, #ff7053 100%);
    transform: rotate(-45deg) translateY(-20px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.23);
}

.reference-section .card_box4 span::after {
    content: '';
    position: absolute;
    width: 10px;
    bottom: 0;
    left: 0;
    height: 10px;
    z-index: -1;
    box-shadow: 140px -140px #cc3f47;
    background-image: linear-gradient(45deg, #FF512F 0%, #F09819 51%, #FF512F 100%);
}

@media (max-width: 1202px) {
    .reference-header h2 {
        font-size: 36px !important;
        margin-top: 0px;
        margin-bottom: -25px;
    }
}

@media (max-width: 992px) {
    .reference-header h2 {
        font-size: 28px !important;
        margin-top: 60px;
        margin-bottom: -25px;
    }
}

/* ÁRAK */

.price-section {
    width: 80%;
}

.price-header {
    margin-top: 30px;
    margin-bottom: 80px;
    text-align: center;
}

.price-header h2 {
    color: #fff;
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 30px;
    -moz-animation-delay: 0.5s;
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
}

.price-header p {
    font-size: 17px;
    line-height: 1.75em;
    -moz-animation-delay: 1s;
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}

.price-section .pri-container {
    display: flex;
    justify-content: center;
    padding: 0px;
    flex-wrap: wrap;
    text-align: center;
}

.price-section h3 {
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    text-align: center;
}

.e-card {
    margin: 30px 20px 30px 20px;
    background: transparent;
    box-shadow: rgba(255, 255, 255, 0.25) 0px 24px 55px,
        rgba(255, 255, 255, 0.12) 0px -12px 30px,
        rgba(255, 255, 255, 0.12) 0px 4px 6px,
        rgba(255, 255, 255, 0.17) 0px 12px 13px,
        rgba(255, 255, 255, 0.09) 0px -3px 5px;

    position: relative;
    width: 300px;
    height: 710px;
    border-radius: 16px;
    overflow: hidden;
}

.e-card2 {
    margin: 30px 20px 30px 20px;
    background: transparent;
    box-shadow: rgba(255, 255, 255, 0.25) 0px 24px 55px,
        rgba(255, 255, 255, 0.12) 0px -12px 30px,
        rgba(255, 255, 255, 0.12) 0px 4px 6px,
        rgba(255, 255, 255, 0.17) 0px 12px 13px,
        rgba(255, 255, 255, 0.09) 0px -3px 5px;

    position: relative;
    width: 300px;
    height: 620px;
    border-radius: 16px;
    overflow: hidden;
}

.wave {
    position: absolute;
    width: 540px;
    height: 750px;
    opacity: 0.6;
    left: 0;
    top: 0;
    margin-left: -50%;
    margin-top: -70%;
    background: linear-gradient(744deg, #0f1952, #ff9000 60%, #085ee7);
}

.price-section .icon {
    width: 100px;
    height: 100px;
    object-fit: contain;
}

.price-section .infotop {
    text-align: center;
    font-size: 20px;
    position: absolute;
    top: 3em;
    left: 0;
    right: 0;
    color: rgb(255, 255, 255);
    font-weight: 700;
}

.name {
    font-size: 14px;
    font-weight: 500;
    position: relative;
    top: 1em;
    text-transform: uppercase;
    margin: 20px 10px 0px 10px;
}

.wave:nth-child(2),
.wave:nth-child(3) {
    top: 400px;
}

.playing .wave {
    border-radius: 40%;
    animation: wave 15000ms infinite linear;
}

.wave {
    border-radius: 40%;
    animation: wave 15s infinite linear;
}

.playing .wave:nth-child(2) {
    animation-duration: 12000ms;
}

.wave:nth-child(2) {
    animation-duration: 500s;
}

.playing .wave:nth-child(3) {
    animation-duration: 18000ms;
}

.wave:nth-child(3) {
    animation-duration: 45s;
}

@keyframes wave {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* 2.hullám  */

.wave2 {
    position: absolute;
    width: 540px;
    height: 700px;
    opacity: 0.6;
    left: 0;
    top: 0;
    margin-left: -50%;
    margin-top: -70%;
    background: linear-gradient(744deg, #253fd3, #e99f3e 60%, #48515f);
}

.wave2:nth-child(2),
.wave2:nth-child(3) {
    top: 400px;
}

.playing .wave2 {
    border-radius: 40%;
    animation: wave 16000ms infinite linear;
}

.wave2 {
    border-radius: 40%;
    animation: wave 185s infinite linear;
}

.playing .wave2:nth-child(2) {
    animation-duration: 9000ms;
}

.wave2:nth-child(2) {
    animation-duration: 300s;
}

.playing .wave2:nth-child(3) {
    animation-duration: 6000ms;
}

.wave2:nth-child(3) {
    animation-duration: 85s;
}

@keyframes wave2 {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* 3.hullám  */

.wave3 {
    position: absolute;
    width: 540px;
    height: 700px;
    opacity: 0.6;
    left: 0;
    top: 0;
    margin-left: -50%;
    margin-top: -70%;
    background: linear-gradient(744deg, #0b102c, #794807 60%, #b3c5e2);
}

.wave3:nth-child(2),
.wave3:nth-child(3) {
    top: 400px;
}

.playing .wave3 {
    border-radius: 40%;
    animation: wave 11000ms infinite linear;
}

.wave3 {
    border-radius: 40%;
    animation: wave 200s infinite linear;
}

.playing .wave3:nth-child(2) {
    animation-duration: 11000ms;
}

.wave3:nth-child(2) {
    animation-duration: 600s;
}

.playing .wave3:nth-child(3) {
    animation-duration: 11000ms;
}

.wave3:nth-child(3) {
    animation-duration: 105s;
}

@keyframes wave3 {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.price-section .btn {
    font-size: 1rem;
    padding: 0.8rem 2rem;
    border: none;
    outline: none;
    align-items: flex-end;
    border-radius: 0.4rem;
    cursor: pointer;
    text-transform: uppercase;
    background-color: rgb(255, 128, 0);
    color: rgb(24, 61, 61);
    font-weight: 700;
    transition: 0.6s;
    box-shadow: 0px 0px 60px #1f4c65;
    -webkit-box-reflect: below 10px linear-gradient(to bottom, rgba(0, 0, 0, 0.0), rgba(0, 0, 0, 0.4));
    margin-top: 30px;
}

.price-section .btn:active {
    scale: 0.92;
}

.price-section .btn:hover {
    background: rgb(24, 61, 61);
    background: linear-gradient(270deg, rgba(101, 135, 197, 0.681) 0%, rgba(24, 61, 61, 0.873) 60%);
    color: rgb(234, 234, 234);
}


@media (max-width: 1202px) {
    .price-header h2 {
        font-size: 36px !important;
    }

    .price-header p {
        font-size: 14px !important;
        font-weight: 500;
        margin-bottom: -40px !important;
    }
}


@media (max-width: 992px) {
    .price-section .price-header {
        margin-top: 70px;
        padding-top: 30px;
    }
    .price-header h2 {
        font-size: 28px !important;
    }

    .price-header p {
        font-size: 14px !important;
        font-weight: 500;
        margin-bottom: -40px !important;
    }

    .e-card,
    .e-card2 {
        margin: 30px 0px 30px 0px !important;
        width: 350px !important;
        height: 710px;
        border-radius: 16px;
        overflow: hidden;
    }

}

/* ONE-PAGE */
.one-section {
    background-color: #000;
    padding: 60px 15px;
}

.one-section .csomagcim {
    font-size: 36px;
    text-transform: uppercase;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
}

.one-info {
    background-color: transparent;
    padding: 10px 10px;
}

.one-info p {
    color: #fff;
    text-align: justify;
    text-justify: inter-word;
    hyphens: auto;
    line-height: 1.7;
}

.one-info u {
    font-size: 18px;
    text-decoration: none;
    font-weight: 700;
}

.one-image-wrap {
    position: relative;
    aspect-ratio: 16 / 9;
    width: 100%;
    border: 2px solid #e99f3e;
    border-radius: 20px;
    overflow: hidden;
}

.one-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Responsive spacing */
@media (max-width: 992px) {
    .one-section {
        padding: 40px 10px;
    }

    .one-section h2 {
        text-align: center;
    }

    .one-section .zarszoveg {
        padding: 10px;
    }

    .csomagcim {
        font-size: 26px;
    }
}

/* MULTI-PAGE */
.multi-section {
    background-color: #000;
    padding: 60px 15px;
}

.multi-section .csomagcim {
    font-size: 36px;
    text-transform: uppercase;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
}

/* Responsive spacing */
@media (max-width: 992px) {
    .multi-section {
        padding: 40px 10px;
    }

    .multi-section h2 {
        text-align: center;
    }

    .multi-section .zarszoveg {
        padding: 10px;
    }

    .csomagcim {
        font-size: 26px;
    }
}

/* COMPLEX-PAGE */
.complex-section {
    background-color: #000;
    padding: 60px 15px;
}

.complex-section .csomagcim {
    font-size: 36px;
    text-transform: uppercase;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
}

/* Responsive spacing */
@media (max-width: 992px) {
    .complex-section {
        padding: 40px 10px;
    }

    .complex-section h2 {
        text-align: center;
    }

    .complex-section .zarszoveg {
        padding: 10px;
    }

    .csomagcim {
        font-size: 26px;
    }
}

/* CONTACT */

.contact-section {
    max-width: 900px !important;
    margin-bottom: 80px;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    box-shadow:
        0 0 40px rgba(221, 187, 103, 0.4),
        0 0 80px rgba(221, 187, 103, 0.25),
        0 0 120px rgba(221, 187, 103, 0.15);
    border-radius: 25px;
    border: 1px solid #DDBB67;
}

.contact-header {
    margin-top: 35px !important;
    margin-bottom: 80px;
    text-align: center;
}

.contact-section h2 {
    color: #fff;
    font-size: 48px;
    font-weight: 800;
    margin-top: 15px !important;
    margin-bottom: 10px !important;
    -moz-animation-delay: 0.5s;
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
}

.contact-section h3 {
    font-size: 18px;
    font-weight: 600;
    color: #DDBB67;
    text-align: center;
    text-transform: uppercase;
}

.contact-section p {
    font-size: 20px !important;
    text-transform: uppercase;
    font-weight: 600;
    color: #ff9000;
    text-align: center;
    margin: 10px;
}

.contact-section .contact-left {
    margin-top: 50px;
    text-align: right;
    flex: 1 1 300px;
    justify-self: flex-end;
}

.contact-section .contact-right {
    margin-top: 100px !important;
    text-align: left;
    flex: 1 1 300px;
    justify-self: flex-start;
}

.contact-text a {
    color: white;
    text-decoration: none;
}

.contact-text a:hover {
    color: #DDBB67;
    font-weight: 500;
}

.contact-section .main {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    margin: 30px 0;
}

.contact-section .up,
.contact-section .down {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.card1,
.card2,
.card3,
.card4 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    outline: none;
    border: none;
    background: #F2F2F2;
    box-shadow:
        0 0 40px 10px rgba(221, 187, 103, 0.5),
        0 0 80px 20px rgba(221, 187, 103, 0.18);
    transition: 0.2s ease-in-out;
    text-decoration: none;
}


.card1 {
    border-radius: 90px 5px 5px 5px;
}

.card2 {
    border-radius: 5px 90px 5px 5px;
}

.card3 {
    border-radius: 5px 5px 5px 90px;
}

.card4 {
    border-radius: 5px 5px 90px 5px;
}

.whatsapp {
    margin-top: 1.5em;
    margin-left: 1.2em;
    fill: #16c716;
}

.facebook {
    margin-top: 1.5em;
    margin-left: -0.9em;
    fill: #1877f2;
}

.messenger {
    margin-top: -0.6em;
    margin-left: 1.2em;
    fill: #00b2ff;
}

.instagram {
    margin-top: -0.9em;
    margin-left: -1.2em;
    fill: #e1306c;
}

.card1:hover {
    cursor: pointer;
    scale: 1.1;
    background-color: #25d366;
}

.card1:hover .whatsapp {
    fill: white;
}

.card2:hover {
    cursor: pointer;
    scale: 1.1;
    background-color: #1877f2;
}

.card2:hover .facebook {
    fill: white;
}

.card3:hover {
    cursor: pointer;
    scale: 1.1;
    background-color: #00b2ff;
}

.card3:hover .messenger {
    fill: white;
}

.card4:hover {
    cursor: pointer;
    scale: 1.1;
    background-color: #e1306c;
}

.card4:hover .instagram {
    fill: white;
}

.share {
    width: 100%;
    margin: 0 auto 0 auto;
    text-align: center;
    margin-top: 70px;
}

.share img {
    width: 400px;
    height: 150px;
    object-fit: cover;
    border-radius: 20px;
    border: 2px solid #DDBB67;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.share img:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow:
        0 10px 20px rgba(0, 0, 0, 0.2),
        0 0 40px rgba(221, 187, 103, 0.4);
}


.contact-list {
    list-style: none;
    padding: 0;
    margin: 0 auto 30px;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.contact-list .list-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-size: 16px;
    text-align: left;
    flex-wrap: wrap;
}

@media (max-width: 1202px) {
    .contact-section h2 {
        font-size: 42px !important;
    }
}

@media (max-width: 800px) {
    .contact-section {
        flex-direction: column;
        align-items: center;
        margin: 0 auto;
        width: 90%;
    }

    .row {
        flex-direction: column !important;
        align-items: center !important;
    }

    .contact-section .contact-left,
    .contact-section .contact-right {
        width: 100%;
        text-align: center;
        margin-top: 30px;
        align-items: center;
        justify-content: center;
        margin-left: 0;
        margin-right: 0;
    }

    .contact-list {
        align-items: center;
        justify-content: center;
        margin-top: -15vh !important;
    }

    .contact-section h2 {
        font-size: 36px !important;
    }

    .share {
        margin-top: -30vh !important;
    }

    .share img {
        width: 95vw;
        max-width: 100%;
        height: auto;
    }
}

/* IMPRESSUM */
.impressum-section h2 {
    color: #fff;
    font-size: 48px;
    font-weight: 800;
    margin-top: 15px !important;
    margin-bottom: 10px !important;
    -moz-animation-delay: 0.5s;
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
    text-align: center;
}

.impressum-section p {
    font-size: 16px !important;
    text-transform: uppercase;
    font-weight: 500;
    color: #DDBB67;
    text-align: center;
    margin: 10px;
}

.impressum-section span {
    font-size: 22px;
    color: #ffffff;
}

@media (max-width: 800px) {
    .impressum-section h2 {
        font-size: 36px;
    }

    .impressum-section span {
        font-size: 16px !important;
    }

    .impressum-section p {
        font-size: 14px !important;
    }
}

/* ADATKEZELÉS */
.data-section h2 {
    color: #fff;
    font-size: 48px;
    font-weight: 800;
    margin-top: 15px !important;
    margin-bottom: 10px !important;
    -moz-animation-delay: 0.5s;
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
    text-align: center;
}

.data-section h3 {
    font-size: 22px;
    font-weight: 600;
    color: #DDBB67;
    text-align: center;
    text-transform: uppercase;
}

.data-section h4 {
    font-size: 18px;
    font-weight: 600;
    color: #DDBB67;
    text-align: center;
    text-transform: uppercase;
    margin-top: 30px;
}

.data-section p {
    font-size: 16px !important;
    font-weight: 500;
    color: #ffffff;
    text-align: center;
    margin: 20px;
}


@media (max-width: 800px) {
    .data-section h2 {
        font-size: 36px;
    }

    .data-section h3 {
        font-size: 18px;
    }

    .data-section p {
        font-size: 14px !important;
        text-align: justify;
        hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        -moz-hyphens: auto;
    }
}

/* TOP BUTTON */
.scroll-top-btn {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 9999;
    background: transparent;
    border: none;
    padding: 0;
    width: 56px;
    height: 56px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.18);
    opacity: 0.85;
    transition: opacity 0.2s, box-shadow 0.2s;
}

.scroll-top-btn:hover,
.scroll-top-btn:focus,
.scroll-top-btn:active {
    background: transparent;
    box-shadow: none;
    border: none;
    outline: none;
    opacity: 1;
}

.scroll-top-btn img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    border-radius: 50%;
    background: none;
    padding: 0;
    transition: none;
}

/* FOOTER */

.footer {
    margin-top: 10vw;
    padding: 40px 0;
    background: #000000;
    background: linear-gradient(180deg, rgba(0, 0, 0, 1) 3%, rgba(221, 187, 103, 1) 100%);
    color: white;
    flex-shrink: 0;
}

.footer ul {
    padding: 0;
    list-style: none;
    text-align: center;
    font-size: 18px;
    text-transform: uppercase;
    line-height: 1.6;
    margin-bottom: 0;
}

.footer li {
    display: inline-block;
    padding: 0 10px;
}

.footer ul a {
    color: inherit;
    text-decoration: none;
    opacity: 0.8;
}

.footer ul a:hover {
    opacity: 1;
    font-weight: 600;
}

.footer .social {
    text-align: center;
    padding-bottom: 25px;
}

.footer .social>a {
    font-size: 24px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    display: inline-block;
    text-align: center;
    border-radius: 50%;
    border: 1px solid #ccc;
    margin: 0 8px;
    color: inherit;
    opacity: 0.75;
    transition: transform 0.5s ease-in-out;
}

.footer .social>a:hover {
    color: #1877F2;
    border: 1px solid #1877F2;
    transform: scale(1.35);
}

.footer .copyright {
    margin-top: 15px;
    text-align: center;
    font-size: 13px;
    font-weight: 500;
    color: #EAE4DD;
    margin-bottom: 0;
}

.footer .copyright a {
    display: inline-block;
    transition: transform 0.5s ease-in-out !important;
}

.footer .copyright a:hover {
    transform: scale(1.4) !important;
    margin-left: 40px;
    margin-right: 40px;
    color: #FBD288 !important;
    font-weight: 600;
}

.footer .footer-break {
    height: 2px;
    border-width: 0;
    width: 0;
    color: gray;
    background-color: white;
    margin: auto;
    animation: expand 1s forwards;
    margin-bottom: 25px;
}

@keyframes expand {
    from {
        width: 0;
    }

    to {
        width: 80vw;
    }
}

@media screen and (max-width: 992px) {
    .footer {
        padding: 0px 5px 25px 5px !important;
    }

    .footer-links {
        padding: 2px;
    }

    .footer ul {
        font-size: 12px;
        line-height: 1.5;
        margin-bottom: 0;
    }

    .footer li {
        display: inline-block;
        padding: 0 4px;
    }
}

/* 404 ERROR PAGE*/

:root {
    --background-color: #353b48;
    --font: "Montserrat", sans-serif;
    --white: #f5f6fa;
    --black: #0C0E10;
    --gray: #202425;
    --blue: #446182;
}

/* Main Layout Styles */
* {
    box-sizing: border-box;
}

/* Háttér */
.background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(var(--black), var(--blue));
}

.background .ground {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 25vh;
    background: var(--black);
}

@media (max-width: 770px) {
    .background .ground {
        height: 0vh;
    }
}

.error-container {
    position: relative;
    margin: 0 auto;
    width: 85%;
    height: 100vh;
    padding-bottom: 25vh;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

@media (max-width: 770px) {
    .error-container {
        flex-direction: column;
        padding-bottom: 0vh;
    }
}

.left-section,
.right-section {
    position: relative;
}

/* Left Section Styles */
.left-section {
    width: 40%;
}

@media (max-width: 770px) {
    .left-section {
        width: 100%;
        height: 40%;
        position: absolute;
        top: 0;
    }
}

.left-section .inner-content {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

@media (max-width: 770px) {
    .left-section .inner-content {
        position: relative;
        padding: 1rem 0;
    }
}

.heading {
    text-align: center;
    font-size: 9em;
    line-height: 1.3em;
    margin: 2rem 0 0.5rem 0;
    padding: 0;
    text-shadow: 0 0 1rem #fefefe;
}

@media (max-width: 770px) {
    .heading {
        font-size: 7em;
        line-height: 1.15;
        margin: 0;
    }
}

.subheading {
    text-align: center;
    max-width: 480px;
    font-size: 1.5em;
    line-height: 1.15em;
    padding: 0 1rem;
    margin: 0 auto;
}

@media (max-width: 770px) {
    .subheading {
        font-size: 1.3em;
        line-height: 1.15;
        max-width: 100%;
    }
}

/* Right Section Styles */
.right-section {
    width: 50%;
}

@media (max-width: 770px) {
    .right-section {
        width: 100%;
        height: 60%;
        position: absolute;
        bottom: 0;
    }
}

.svgimg {
    position: absolute;
    bottom: 0;
    padding-top: 10vh;
    padding-left: 1vh;
    max-width: 100%;
    max-height: 100%;
}

@media (max-width: 770px) {
    .svgimg {
        padding: 0;
    }
}

.svgimg .bench-legs {
    fill: var(--black);
}

.svgimg .top-bench,
.svgimg .bottom-bench {
    stroke: var(--black);
    stroke-width: 1px;
    fill: #5B3E2B;
}

.svgimg .bottom-bench path:nth-child(1) {
    fill: #4e3526;
}

.svgimg .lamp-details {
    fill: var(--gray);
}

.svgimg .lamp-accent {
    fill: #282c2d;
}

.svgimg .lamp-bottom {
    fill: var(--gray);
}

.svgimg .lamp-light {
    fill: #EFEFEF;
}

/* Animáció */
@keyframes glow {
    0% {
        text-shadow: 0 0 1rem #fefefe;
    }

    50% {
        text-shadow: 0 0 1.85rem #ededed;
    }

    100% {
        text-shadow: 0 0 1rem #fefefe;
    }
}

.error-container a {
    position: absolute;
    top: 90%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px 10px;
    color: #EFE4D2;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 5px;
    font-size: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .5);
    overflow: hidden;
}

.error-container a::before {
    content: "";
    position: absolute;
    top: 2px;
    left: 2px;
    bottom: 2px;
    width: 50%;

}

.error-container a span:nth-child(1) {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, #0c002b, #1779ff);
    animation: animate1 2s linear infinite;
    animation-delay: 1s;

}

@keyframes animate1 {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

.error-container a span:nth-child(2) {
    position: absolute;
    top: 0;
    right: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, #0c002b, #1779ff);
    animation: animate2 2s linear infinite;
    animation-delay: 2s;
}

@keyframes animate2 {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(100%);
    }
}

.error-container a span:nth-child(3) {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to left, #0c002b, #1779ff);
    animation: animate3 2s linear infinite;
    animation-delay: 1s;

}

@keyframes animate3 {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

.error-container a span:nth-child(4) {
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(to top, #0c002b, #1779ff);
    animation: animate4 2s linear infinite;
    animation-delay: 2s;

}

@keyframes animate4 {
    0% {
        transform: translateY(100%);
    }

    100% {
        transform: translateY(-100%);
    }
}

@media (max-width: 770px) {
    .error-container {
        width: 98vw;
        height: 100vh;
        min-height: 100vh;
        padding-bottom: 0;
        justify-content: flex-start;
        align-items: stretch;
    }

    .left-section {
        width: 100%;
        height: auto;
        position: relative;
        top: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .left-section .inner-content {
        position: relative;
        top: 0;
        transform: none;
        padding: 2.5rem 0 0.5rem 0;
        margin-bottom: 1.2rem;
    }

    .heading {
        font-size: 4.5em;
        margin: 0.5rem 0 0.2rem 0;
        line-height: 1.1;
    }

    .subheading {
        font-size: 1.1em;
        max-width: 95vw;
        padding: 0 0.5rem;
        margin-bottom: 0.7rem;
    }

    .error-container a.button {
        left: 50%;
        transform: translateX(-50%);
        display: block;
        min-width: 260px !important;
        text-align: center;
        max-width: 130vw;
        width: auto;
        padding: 12px 10px;
        box-sizing: border-box;
        z-index: 10;
        margin-right: 20px;
        font-size: 10px;
    }

    .error-container a.button span {
        height: 1.1px !important;
        width: 1.1px !important;
    }

    .right-section {
        width: 100%;
        height: auto;
        position: relative;
        margin-top: 1.5rem;
        display: flex;
        justify-content: center;
        align-items: flex-end;
        z-index: 1;
    }

    .svgimg {
        position: relative;
        display: block;
        margin: 0 auto;
        left: 0;
        bottom: 0;
        max-width: 80vw;
        max-height: 38vh;
        z-index: 0;
    }
}


/* GLOBAL+*/

html {
    font-size: 93.75%;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
}

body {
    background: #000;
    font-size: 15px;
    font-weight: 400;
    color: #b7bcbe;
    padding: 0px;
    font-family: "Montserrat", sans-serif;
    line-height: 1.55;
    text-rendering: optimizeLegibility;
    -webkit-backface-visibility: hidden;
    overflow-x: hidden;
    width: 100%;
    margin: 0 auto;
    min-height: 100vh;
}

main {
    flex-grow: 1;
}

footer {
    margin-top: auto;
    bottom: 0;
    width: 100%;
}

p {
    margin-bottom: 30px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    text-transform: uppercase;
}

h1 {
    font-size: 36px;
}

h2 {
    font-size: 30px;
}

h3 {
    font-size: 24px;
}

h4 {
    font-size: 20px;
}

h5 {
    font-size: 18px;
}

h6 {
    font-size: 15px;
}

a {
    color: #fff;
    text-decoration: none;
    -webkit-transition: all 100ms ease-in-out;
    -moz-transition: all 100ms ease-in-out;
    -ms-transition: all 100ms ease-in-out;
    -o-transition: all 100ms ease-in-out;
    transition: all 100ms ease-in-out;
}

a:hover {
    color: inherit;
    text-decoration: none;
}

span[class*="border-"] {
    position: fixed;
    background: #1f2122;
}

.border-top {
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
}

.border-left {
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
}

.border-bottom {
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
}

.border-right {
    top: 0;
    right: 0;
    width: 5px;
    height: 100%;
}

.main-button,
.pink-button {
    color: #fff;
    text-transform: uppercase;
    font-size: 12px;
    padding: 10px 15px;
    display: inline-block;
    background: #a95bc3;
    font-weight: normal;
}

.pink-button:hover {
    color: #fff;
}