:root {
    --primary-red: #C42922;
    --primary-beige: #E9E3D3;
    --secondary-red: #94000B;
    --secondary-beige: #F3EFE3;
    --lighter-beige: #FFFCF2;
}

body,
p,
span,
label,
input,
li,
ul,
ol,
div {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    color: black;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0 auto;
    padding: 0;
    background-color: var(--secondary-beige);
    font-weight: 300;
    opacity: 0;
    transition: all 0.5s;
    overflow-x: hidden;
    -ms-overflow-style: none;
    scrollbar-width: none;
    max-width: 2500px;
}

*::-webkit-scrollbar {
    display: none;
}

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

.vbox-close, .vbox-next, .vbox-prev, .vbox-num {
    padding: 25px !important;
}

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

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

.navigation {
    margin-top: -110px;
    margin-bottom: 110px;
}

strong {
    font-weight: 500;
}

h1,
h2,
h3,
h4,
a {
    font-family: 'Sansita', sans-serif;
    text-transform: uppercase;
}

h1 {
    font-size: clamp(1.7rem, 1.6rem + 1.8vw, 4rem);
    line-height: 1.3;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 4px;
    font-weight: 700;
    color: var(--primary-red);
}

h1::before,
h1::after {
    content: '';
    display: block;
    width: 16px;
    height: 16px;
    background-color: var(--primary-red);
    border-radius: 99px;
    margin-top: 10px;
}

h1::before {
    margin-right: 24px;
}

h1::after {
    margin-left: 24px;
}

h2 {
    font-size: clamp(1.5625rem, 1.25rem + 1.5625vw, 3.125rem);
    line-height: 1.3;
    margin-bottom: 30px;
    font-weight: 700;
    letter-spacing: 2px;
}

h3 {
    font-size: clamp(1.5625rem, 1.4375rem + 0.625vw, 2.1875rem);
    color: var(--primary-red);
    font-weight: 400;
    margin-bottom: 30px;
}

p {
    font-size: clamp(1.125rem, 1.0375rem + 0.4375vw, 1.5625rem);
    line-height: 1.5em;
    margin-bottom: 30px;
    color: black;
}

.cookiealert {
    opacity: 0;
    transition: all 0.5s;
}

.cookiealert.active {
    opacity: 1;
}

.cookiealert p {
    font-size: 14px;
}

.modal {
    z-index: 9999;
}

.modal-backdrop {
    display: none !important;
}

.primary-link, .primary-link:focus, .primary-link:not([href]) {
    background-color: var(--primary-red);
    color: white;
    padding: 10px 24px;
    font-weight: 400;
    border: 1px solid var(--primary-red);
    transition: all 0.3s;
    border-radius: 10px;
    letter-spacing: 1px;
    display: block;
    width: fit-content;
}

.primary-link:hover, .primary-link:not([href]):hover {
    background-color: transparent;
    color: var(--primary-red);
}

.secondary-link {
    background-color: transparent;
    color: var(--primary-red);
    padding: 10px 20px;
    font-weight: 600;
    border: 1px solid var(--primary-red);
    transition: all 0.3s;
}

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

::selection {
    background: var(--primary-red);
    color: white;
}

::-moz-selection {
    background: var(--primary-red);
    color: white;
}

textarea:focus,
input:focus,
.uneditable-input:focus {
    border-color: var(--primary-red);
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px var(--primary-red);
    outline: none !important;
    transition: all 0.25s;
}

div:focus {
    outline: none !important;
}

a {
    transition: all 0.3s;
    cursor: pointer;
}

a:hover,
a:focus {
    text-decoration: none;
    color: black;
}

.bg {
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
}

.mc {
    display: flex;
    align-items: center;
    justify-content: center;
}

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

#wrapper {
    margin-top: 90px;
}

.marker {
    margin-top: -140px;
    padding-bottom: 140px;
}

/* LOADER */

.loader {
    width: 100%;
    height: 100vh;
    background: #fff;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9996;
    transition: all 0.3s ease-out;
}

.loader.loaded {
    opacity: 0;
    pointer-events: none;
}

.loader .cut {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 590px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader img {
    width: 600px;
}

.kocsi {
    position: absolute;
    top: calc(50% + 5px);
    left: 50%;
    transform: translate(-50%, -50%);
    width: 130px;
    object-fit: contain;
    z-index: 9997;
    transition: opacity 0.3s, top 0.8s, width 0.8s;
    opacity: 0;
}

.kocsi.active {
    opacity: 1;
    top: 30%;
    width: 150px;
}

.kocsi .filled {
    fill: #a2301f;
}

.kocsi .stroked {
    stroke: #a2301f;
    stroke-width: 3.26298;
    stroke-miterlimit: 10;
}

.kocsi.active .filled {
    fill: #F3EFE3;
}

.kocsi.active .stroked {
    stroke: #F3EFE3;
}

/* DESKTOP NAVBAR */

.desktop-navbar {
    width: 105%;
    max-width: 2500px;
    height: 150px;
    background: var(--primary-red);
    position: fixed;
    top: -150px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    transition: all 0.5s ease-in-out;
    opacity: 0;
}

.desktop-navbar.active {
    height: 100px;
}

.desktop-navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    position: relative;
}

.desktop-navbar .container .logo {
    height: 120px;
    object-fit: contain;
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
}

.desktop-navbar .container .left-side,
.desktop-navbar .container .right-side {
    display: flex;
    align-items: center;
    gap: 40px;
}

.desktop-navbar .container .left-side a,
.desktop-navbar .container .right-side a {
    color: var(--primary-beige);
    font-size: 20px;
    font-weight: 400;
}

/* HERO */

#hero {
    width: 100%;
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

#hero .circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140vw;
    height: 140vw;
    object-fit: cover;
    z-index: -1;
}

#hero .container {
    position: relative;
    width: 100%;
    height: 100%;
}

#hero .container .content {
    position: absolute;
    top: 65%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    z-index: 1;
    width: 100%;
    padding: 0 25px;
}

#hero .bgshapes {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    max-width: 700px;
    object-fit: contain;
    z-index: 0;
}

#hero h2,
#hero p {
    color: var(--secondary-beige);
    margin: 0;
}

#hero h2 {
    font-size: clamp(1.875rem, 0.9999rem + 4.375vw, 6.25rem);
    font-weight: 700;
    line-height: 1.3;
    text-align: center;
}

#hero p {
    font-size: clamp(1.125rem, 1.1rem + 1.1vw, 1.7rem);
    line-height: 1.5em;
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
    max-width: 750px;
}

#hero .links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin: 25px 0;
}

#hero .links a {
    font-size: 18px;
    font-weight: 400;
    padding: 8px 24px;
    border: 1px solid var(--secondary-beige);
    transition: all 0.3s;
    color: var(--secondary-beige);
    border-radius: 10px;
    letter-spacing: 1px;
}

#hero .links a:first-child {
    background-color: var(--secondary-beige);
    color: var(--primary-red);
}

#hero .links a:hover {
    background-color: var(--secondary-beige);
    color: var(--primary-red);
}

#hero .links a:first-child:hover {
    background-color: transparent;
    color: var(--secondary-beige);
}

/* ABOUT */

#about {
    padding: 80px 25px 140px;
    position: relative;
    background-color: var(--secondary-beige);
}

#about .wave {
    width: 200%;
    height: 150px;
    position: absolute;
    z-index: 1;
    top: -80px;
    left: -40%;
}

#about .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
}

#about .container .left-side {
    width: 50%;
}

#about .container .left-side .content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

#about h2 {
    color: var(--primary-red);
    margin-bottom: 30px;
}

#about p {
    font-size: 18px;
    color: black;
    margin-bottom: 40px;
}

#about .container .right-side {
    width: 50%;
}

#about .container .right-side .image {
    width: 100%;
    height: 400px;
    border-radius: 25px;
    border: 4px solid var(--primary-red);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

#about .container .right-side .image img {
    width: 100%;
    height: 100%;
    transform: scale(1.01);
    object-fit: cover;
    transition: all 0.3s;
}

#about .container .right-side .image img:hover {
    transform: scale(1.07);
}

/* BANNER */

#banner {
    width: 100%;
    background-color: var(--secondary-beige);
}

#banner img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* PRODUCTS */

#products {
    padding: 80px 25px;
}

#products .container {
    position: relative;
}

#products .container .bgshapes {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 800px;
    object-fit: contain;
    z-index: -1;
}

#products .container .content {
    z-index: 1;
}

#products p {
    font-weight: 600;
    text-align: center;
    margin-bottom: 80px;
}

.layer {
    position: absolute;
    top: -15px;
    left: -15px;
    width: 104%;
    height: 104%;
    background: #00000015;
    z-index: 99;
    display: none;
    transition: all 0.5s;
}

.layer .icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #ffffff;
    width: 100px;
    height: 50px;
    padding: 10px;
    border-radius: 99px;
}

.layer img {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    height: 30px;
    object-fit: contain;
    animation-name: move;
    animation-duration: 3s;
    animation-iteration-count: infinite;
}

@keyframes move {
    0% {
        transform: translateX(0) translateY(-50%);
    }

    50% {
        transform: translateX(40px) translateY(-50%);
    }

    100% {
        transform: translateX(0) translateY(-50%);
    }
}

#products .products, #products #moreProducts {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 30px;
    position: relative;
}

#products #moreProducts {
    max-height: 0;
    overflow: hidden;
    width: 100%;
    transition: all 1.25s linear;
}

#products #moreProducts.show {
    max-height: 3000px;
}

#products .products .product {
    flex-basis: 31.5%;
}

#products .products .product .image {
    width: 100%;
    height: 250px;
    border-radius: 25px;
    overflow: hidden;
    cursor: pointer;
}

#products .products .product .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s;
    transform: scale(1.02);
}

#products .products .product img:hover {
    transform: scale(1.07);
}

#products .products .product h4 {
    font-size: 20px;
    font-weight: 700;
    margin: 20px 0;
    text-align: center;
    text-transform: none;
    color: var(--primary-red);
    cursor: pointer;
}

#products .product-modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 100%;
    height: 100vh;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s;
}

#products .product-modal.active {
    transform: scale(1);
    opacity: 1;
}

#products .darkbg {
    width: 100vw;
    height: 100vh;
    background-color: transparent;
    position: fixed;
    top: 0;
    left: 0;
    transition: all 0.3s;
    transform: scale(3);
}

#products .darkbg.active {
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 9999;
}

#products .product-modal .content {
    position: absolute;
    padding: 30px;
    max-width: 600px;
    width: 100%;
    height: fit-content;
    background-color: var(--primary-red);
    border-radius: 25px;
    margin-top: 20vh;
    left: 50%;
    transform: scale(0) translateX(-50%);
    transition: all 0.3s;
    z-index: 9999;
}

#products .product-modal.active .content {
    transform: scale(1)  translateX(-50%);
}

#products .product-modal .content .close-modal {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.25s;
}

#products .product-modal .content .close-modal:hover {
    transform: scale(1.1);
}

#products .product-modal .content h2 {
    color: var(--secondary-beige);
    font-size: 30px;
    text-transform: uppercase;
    margin-bottom: 30px;
    letter-spacing: 1px;
    text-align: left;
    cursor: auto;
    margin-top: 0;
    white-space: normal;
}

#products .product-modal .content h3 {
    font-size: 22px;
    font-weight: 500;
    color: var(--secondary-beige);
    margin-bottom: 30px;
    text-transform: none;
    font-family: 'Open Sans', sans-serif;
}

#products .product-modal .content p {
    color: var(--secondary-beige);
    font-size: 18px;
    margin-bottom: 20px;
    text-align: left;
    cursor: auto;
    font-weight: 400;
    line-height: 1.7;
}

#products .primary-link {
    margin: 20px auto;
    display: block;
    width: fit-content;
    font-family: 'Sansita', sans-serif;
    text-transform: uppercase;
}

#product-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    height: 320px;
    margin: 0;
    padding: 0;
}

#product-banner .content {
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    z-index: 1;
}

#product-banner .left-side,
#product-banner .right-side {
    width: 60%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    padding-right: 100px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    z-index: -1;
}

#product-banner .left-side .darker {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

#product-banner .right-side {
    background-image: url(../images/eventbannerred.png);
    margin-left: -5%;
    z-index: 1;
    width: 65%;
    display: flex;
    background-position: left center;
}

#product-banner .content h2 {
    color: var(--secondary-beige);
    font-size: clamp(1.875rem, 0.9999rem + 3vw, 3.5rem);
    font-weight: 700;
    margin: 0;
    text-align: right;
}

#product-banner .content a {
    margin-top: 30px;
    display: block;
    width: fit-content;
    margin-left: auto;
    background-color: var(--secondary-beige);
    color: var(--primary-red);
    border: 1px solid var(--secondary-beige);
}

#product-banner .content a:hover {
    background-color: transparent;
    color: var(--secondary-beige);
}

#images {
    padding: 80px 25px 180px;
    position: relative;
}

#images .wave {
    width: 200%;
    height: 150px;
    position: absolute;
    z-index: 1;
    top: -60px;
    left: -40%;
    display: none;
}

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

#images .container .left-side {
    width: 40%;
}

#images h2 {
    color: var(--primary-red);
    margin-bottom: 30px;
}

#images p {
    font-size: 20px;
    color: black;
    margin-bottom: 40px;
}

#images .container .left-side .redshapes {
    display: none;
    width: 120px;
    margin: 0 auto;
}

#images .container .right-side {
    width: 60%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#images .container .right-side .first-row,
#images .container .right-side .second-row {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
    width: 100%;
}

#images .container .right-side .first-row {
    height: 280px;
}

#images .container .right-side .logo {
    width: 100%;
    height: 50%;
    object-fit: contain;
}

#images .container .right-side .logo-with-image {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    width: 40%;
    height: 100%;
}

#images .container .right-side .image {
    border-radius: 25px;
    border: 4px solid var(--primary-red);
    overflow: hidden;
}

#images .container .right-side .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s;
    transform: scale(1.01);
}

#images .container .right-side .image img:hover {
    transform: scale(1.07);
}

#images .container .right-side .image1 {
    width: 40%;
    height: 100%;
}

#images .container .right-side .image2 {
    width: 100%;
    height: 45%;
}

#images .container .right-side .image3 {
    width: 40%;
    height: 175px;
}

#images .container .right-side .image4 {
    width: 60%;
    height: 220px;
}

#images .container .right-side .primary-link {
    display: none;
    margin: 30px auto;
}

#events {
    padding: 80px 25px;
    background-color: var(--primary-red);
    position: relative;
}

#events .wave {
    width: 200%;
    height: 150px;
    position: absolute;
    z-index: 1;
    top: -60px;
    left: -40%;
}

#events .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#events h1 {
    color: var(--secondary-beige);
    margin-bottom: 30px;
}

#events h1::after,
#events h1::before {
    background-color: var(--secondary-beige);
}

#events p {
    font-size: 24px;
    color: var(--secondary-beige);
    margin: 20px auto 80px;
    font-weight: 600;
    text-align: center;
    max-width: 700px;
}

#events .events, #events #moreEvents {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 30px;
    width: 100%;
}

#events #moreEvents {
    max-height: 0;
    overflow: hidden;
    width: 100%;
    transition: all 1.25s linear;
}

#events #moreEvents.show {
    max-height: 1500px;
}

#events .events .event {
    flex-basis: 31.5%;
}

#events .events .event .image {
    width: 100%;
    height: 250px;
    border-radius: 25px;
    overflow: hidden;
}

#events .events .event .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s;
}

#events .events .event img:hover {
    transform: scale(1.07);
}

#events .events .event h4 {
    font-size: 32px;
    font-weight: 700;
    margin: 20px 0 10px;
    color: var(--secondary-beige);
    text-transform: none;
}

#events .events .event p {
    color: black;
    text-align: left;
    text-transform: uppercase;
    margin: 0;
    margin-bottom: 10px;
    font-size: 16px;
}

#events .primary-link {
    margin: 40px auto 60px;
    display: block;
    width: fit-content;
    background-color: var(--secondary-beige);
    color: var(--primary-red);
    border: 1px solid var(--secondary-beige);
    font-family: 'Sansita', sans-serif;
    text-transform: uppercase;

}

#events .primary-link:hover {
    background-color: transparent;
    color: var(--secondary-beige);
}

#contact {
    display: flex;
}

#contact .left-side,
#contact .right-side {
    width: 50%;
}

#contact .right-side {
    display: flex;
    flex-direction: column;
    padding: 70px;
}

#contact .left-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#contact h1,
#contact h2 {
    color: var(--primary-red);
    margin-bottom: 30px;
    font-size: 42px;
    font-weight: 700;
    letter-spacing: 4px;
    text-align: left;
    width: fit-content;
}

#contact h1::after,
#contact h1::before {
    display: none;
}

#contact .infos {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

#contact .infos .info p:first-of-type {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
}

#contact .infos .info p:last-of-type,
#contact .infos .info p a {
    font-size: 18px;
    font-weight: 400;
    font-family: 'Open Sans', sans-serif;
    color: var(--primary-red);
}

input,
textarea {
    display: block;
    width: 100%;
    padding: 12px 20px;
    border: 2px solid var(--primary-red);
    border-radius: 10px;
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 400;
    font-family: 'Open Sans', sans-serif;
    color: var(--primary-red);
    resize: none;
    transition: all 0.3s;
}

.form-check {
    margin: 0 0 20px 15px;
}

.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;
}

.form-check-input+label::before {
    content: " ";
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
    margin-left: -35px;
    width: 24px;
    height: 24px;
    background-color: #fff;
    border-radius: 4px;
    border: 2px solid var(--primary-red);
    transition: 0.3s ease;
}

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

.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: -35px;
    left: 0px;
    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: 2px;
}

#contact button:not(.close) {
    color: white;
    font-weight: 400;
    border: 1px solid var(--primary-red);
    transition: all 0.3s;
    border-radius: 10px;
    letter-spacing: 1px;
    display: block;
    width: fit-content;
    background-color: white;
    color: var(--primary-red);
    border: 2px solid var(--primary-red);
    font-family: 'Sansita', sans-serif;
    text-transform: uppercase;
    padding: 8px 24px;
    margin-top: 40px;
}

#contact button:hover {
    background-color: var(--primary-red);
    color: white;
}

#contact .modal-title {
    font-size: 16px;
}

#contact .card-header {
    padding: 10px;
}

footer {
    background-color: var(--primary-red);
    padding: 60px 25px;
}

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

footer .container .item {
    width: 18%;
}

footer .container .item.form {
    width: 35%;
}

footer .container .item img {
    width: 80%;
    object-fit: contain;
}

footer .container .item h4 {
    color: var(--secondary-beige);
    margin-bottom: 20px;
    font-weight: 700;
    font-size: 18px;
}

footer .container .item a {
    color: var(--secondary-beige);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5em;
    display: block;
    text-transform: none;
    margin-bottom: 10px;
}

footer form {
    display: flex;
    gap: 10px;
}

footer input {
    font-size: 14px;
    padding: 8px 16px;
    margin-bottom: 10px;
}

footer .form-check {
    margin-left: 8px;
}

footer .form-check-input+label::before {
    border: 2px solid var(--secondary-beige);
    width: 18px;
    height: 18px;
    margin-left: -28px;
}

footer .form-check-input+label::after {
    background-size: 10px 10px;
    width: 18px;
    height: 18px;
    margin-left: -28px;
}

footer .form-check-input:checked+label::after {
    top: 3px;
}

footer .form-check-input+label {
    color: var(--secondary-beige);
    font-size: 11px;
    line-height: 2;
}

footer button {
    font-weight: 400;
    border: 1px solid var(--primary-red);
    transition: all 0.3s;
    border-radius: 10px;
    letter-spacing: 1px;
    display: block;
    width: fit-content;
    height: fit-content;
    background-color: white;
    color: var(--primary-red);
    padding: 8px 24px;
    font-size: 15px;
    font-family: 'Sansita', sans-serif;
    text-transform: uppercase;
    border: 2px solid white;
}

footer button:hover {
    background-color: var(--primary-red);
    color: white;
}

footer .social {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

footer .social a {
    width: 50px;
    height: 50px;
    position: relative;
    border-radius: 50%;
    border: 2px solid var(--secondary-beige);
    transition: all 0.3s;
    padding: 0;
    margin: 0;
}

footer .social a:hover {
    transform: scale(1.1);
}

footer .social a img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

footer .logo2 {
    display: none;
}

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

@media (max-width: 1079px) {

    p {
        font-size: 15px;
    }

    h1 {
        font-size: 28px;
    }

    h1::before,
    h1::after {
        width: 12px;
        height: 12px;
    }

    h1::before {
        margin-right: 16px;
    }

    h1::after {
        margin-left: 16px;
    }

    h2 {
        font-size: 32px;
    }

    h3 {
        font-size: 20px;
    }

    h4 {
        font-size: 18px;
    }

    #hero .circle {
        width: 300vw;
        height: 300vw;
    }

    #hero .container {
        padding: 0 25px;
    }

    #hero .container .content h2 {
        max-width: 90%;
        font-size: 46px;
        margin-bottom: 10px;
    }

    #hero .container .content p {
        font-size: 20px;
        margin-bottom: 10px;
    }

    #hero .container .links {
        flex-direction: column;
        gap: 20px;
    }

    #about {
        padding: 60px 25px;
    }

    #about .wave {
        top: -80px;
        width: 250%;
    }

    #about .container {
        flex-direction: column;
        gap: 30px;
    }

    #about .container .left-side {
        width: 100%;
        margin-bottom: 40px;
    }

    #about .container h2,
    #about .container p {
        text-align: center;
    }

    #about p {
        font-size: 16px;
    }

    #about .primary-link {
        margin: 0 auto;
    }

    #about .container .right-side {
        width: 100%;
    }

    #about .container .right-side .image {
        max-width: 600px;
        margin: 0 auto;
    }

    #banner {
        display: none;
    }

    #products {
        padding: 60px 0 5px;
        background-color: var(--primary-red);
    }

    #products * {
        color: var(--secondary-beige);
    }

    #products .container {
        flex-direction: column;
    }

    #products h1::before,
    #products h1::after {
        background-color: var(--secondary-beige);
    }

    #products p {
        max-width: 80%;
        margin: 0 auto 40px;
        font-size: 20px;
    }

    #products .container .content {
        margin-bottom: 40px;
    }

    #products .products .product .image {
        height: 200px;
    }

    .layer {
        display: block;
    }

    #products .products {
        padding: 20px 30px;
        width: 100%;
        overflow-x: scroll;
        overflow-y: hidden;
        white-space: nowrap;
        transition: all 0.2s;
        user-select: none;
        display: block;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    #products .products::-webkit-scrollbar {
        display: none;
    }

    #products .products .product {
        height: fit-content;
        display: inline-block;
        vertical-align: top;
        margin-right: 20px;
        width: 85%;
        max-width: 300px;
    }

    #products #moreProducts {
        max-height: fit-content;
        display: inline-block;
        vertical-align: top;
        margin-right: 20px;
        width: fit-content;
        overflow: visible;
    }

    #products .products .product h4 {
        font-size: 20px;
        color: var(--secondary-beige);
        white-space: normal;
    }

    #products .product-modal .content {
        width: calc(100% - 60px);
        padding: 25px 0 25px 25px;
        max-height: 60vh;
        overflow-y: auto;
    }

    #products .product-modal .content .close-modal {
        top: 25px;
        right: 25px;
    }

    #products .product-modal .content h2 {
        font-size: 24px;
        width: 76%;
        margin-bottom: 20px;
    }

    #products .product-modal .content h3 {
        font-size: 20px;
        width: 80%;
        margin-bottom: 20px;
    }

    #products .product-modal .content p {
        font-size: 14px;
        white-space: normal;
        margin: 0;
        width: 100%;
        display: block;
    }

    #products .primary-link {
        display: none;
    }

    #products .content {
        margin-bottom: 0;
    }

    #product-banner {
        flex-direction: column;
        height: 280px;
    }

    #product-banner .left-side,
    #product-banner .right-side {
        width: 100%;
        padding: 0;
    }

    #product-banner .left-side .darker {
        background-color: rgba(0, 0, 0, 0.35);
        z-index: -1;
    }

    #product-banner .right-side {
        display: none;
    }

    #product-banner .content {
        top: 47%;
        right: 50%;
        transform: translate(50%, -50%);
        width: 100%;
        padding: 0 25px;
    }

    #product-banner .content h2 {
        font-size: 24px;
        margin-bottom: 10px;
        text-align: center;
        width: 100%;
    }

    #product-banner .content .primary-link {
        margin: 30px auto;
    }

    #images {
        padding: 60px 25px 30px;
        margin: 0;
    }

    #images .wave {
        display: block;
        top: -80px;
        width: 250%;
    }

    #images .container {
        flex-direction: column;
    }

    #images .container .left-side {
        width: 100%;
        margin-bottom: 40px;
    }

    #images .container .left-side .primary-link,
    #images .container .right-side .logo {
        display: none;
    }

    #images .container .left-side .redshapes {
        display: block;
    }

    #images .container .left-side h2 {
        text-align: center;
    }

    #images .container .left-side p {
        font-size: 16px;
    }

    #images .container .right-side {
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
        gap: 10px;
    }

    #images .container .right-side .first-row {
        height: 135px;
        gap: 10px;
    }

    #images .container .right-side .second-row {
        height: 110px;
        gap: 10px;
    }

    #images .container .right-side .logo-with-image {
        width: 100%;
    }

    #images .container .right-side .image {
        border: 2px solid var(--primary-red);
        border-radius: 15px;
    }

    #images .container .right-side .image1 {
        width: 90%;
    }

    #images .container .right-side .image2 {
        width: 100%;
        height: 100%;
    }

    #images .container .right-side .image3 {
        width: 70%;
        height: 100%;
    }

    #images .container .right-side .image4 {
        width: 100%;
        height: 100%;
    }

    #images .container .right-side .primary-link {
        display: block;
        margin-bottom: 60px;
    }

    #events .wave {
        top: -80px;
        width: 250%;
    }

    #events {
        padding: 60px 0 30px;
    }

    #events p {
        font-size: 20px;
        margin-bottom: 60px;
    }

    #events .desc {
        padding: 0 25px;
    }

    #events .container {
        flex-direction: column;
    }

    #events .container .events {
        flex-direction: column;
    }

    #events .container .events .event {
        flex-basis: 100%;
        margin-bottom: 40px;
    }

    #events .container .events {
        padding: 20px 30px;
        position: relative;
        width: 100%;
        overflow-x: scroll;
        overflow-y: hidden;
        white-space: nowrap;
        transition: all 0.2s;
        will-change: transform;
        user-select: none;
        display: block;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    #events .container .events::-webkit-scrollbar {
        display: none;
    }

    #events .container .events .event {
        height: fit-content;
        display: inline-block;
        vertical-align: top;
        margin-right: 20px;
        width: 85%;
        max-width: 300px;
    }

    #events #moreEvents {
        max-height: fit-content;
        display: inline-block;
        vertical-align: top;
        margin-right: 20px;
        width: fit-content;
        overflow: visible;
    }

    #events .container .events .event .image {
        height: 200px;
    }

    #events .container .events .event h4 {
        font-size: 22px;
    }

    #events .container .events .event p {
        font-size: 14px;
    }

    #events .primary-link {
        display: none;
    }

    #contact {
        flex-direction: column;
    }

    #contact .left-side,
    #contact .right-side {
        width: 100%;
    }

    #contact .left-side img {
        height: 250px;
        object-fit: cover;
    }

    #contact .right-side {
        padding: 40px 25px;
        max-width: 700px;
        margin: 0 auto;
    }

    #contact .right-side h1,
    #contact .right-side h2 {
        font-size: 26px;
        margin-bottom: 20px;
    }

    #contact .right-side .infos {
        justify-content: space-between;
        margin-bottom: 20px;
    }

    #contact .right-side .infos .info {
        width: 100%;
    }

    #contact .right-side .infos .info p:first-of-type {
        font-size: 14px;
        margin-bottom: 5px;
    }

    #contact .right-side .infos .info p:last-of-type,
    #contact .right-side .infos .info p a {
        font-size: 12px;
    }

    #contact input,
    #contact textarea {
        font-size: 12px;
        padding: 8px 16px;
        margin-bottom: 15px;
    }

    #contact label {
        font-size: 12px;
        line-height: 2;
    }

    #contact button {
        margin: 30px auto;
    }

    footer .container {
        flex-direction: column;
        align-items: center;
        max-width: 600px;
        margin: 0 auto;
    }

    footer .container .item {
        width: 100%;
        margin-bottom: 40px;
    }

    footer .container .item>* {
        text-align: center;
    }

    footer .container .item.form {
        width: 100%;
    }

    footer .container .item img {
        width: 100%;
    }

    footer .container .item h4 {
        font-size: 20px;
    }

    footer .container .item a {
        font-size: 14px;
    }

    footer form {
        flex-direction: column;
    }

    footer .form-check-input+label::before {
        border: 2px solid white;
    }

    footer .form-check-input+label {
        color: white;
        font-size: 11px;
        text-align: left;
    }

    footer button {
        margin: 0 auto;
    }

    footer .logo1 {
        display: none;
    }

    footer .container .item.logo2 {
        display: block;
        width: 80%;
        max-width: 450px;
        margin: 40px auto;
    }

    footer .container .item.logo2 img {
        width: 100%;
    }

    footer .social {
        justify-content: center;
        margin-top: 60px;
    }
}

@media (min-width: 1080px) and (max-width: 1140px) {
    #products .products .product {
        flex-basis: 30%;
    }

    #events .container .events .event {
        flex-basis: 30%;
    }
}

@media (max-width: 767px) {
    .kocsi.active {
        width: 100px;
        top: 25%;
    }

    #hero .bgshapes {
        display: none;
    }
}

@media (max-width: 340px) {

    #hero .container .content {
        gap: 5px;
    }

    #hero .container .content h2 {
        font-size: 30px;
        max-width: 70%;
    }

    #hero .container .content p {
        font-size: 14px;
    }

}