/* input(1612,1): run-time error CSS1019: Unexpected token, found '@import'
input(1612,9): run-time error CSS1019: Unexpected token, found 'url('https://fonts.googleapis.com/icon?family=Material+Icons')' */



.material-group {
    position: relative;
    margin-bottom: 35px;
    margin-top: 10px;
    width: 100%;
}


.form-image-container > img{
    object-fit: contain;
}

.input-invalid {
    display: none;
    color: crimson;
}

.material-input {
    font-size: 18px;
    padding: 15px 15px 10px 5px;
    display: block;
    width: 100%;
    border: none;
    /*border-bottom: 1px solid var(--primary-color);*/
    border-bottom: 1px solid var(--primary-color);
    outline: none !important;
    border-radius: 0px;
}

    .material-input.readonly:read-only, .material-input:read-only {
        background: #e3e3e3;
    }

    .material-input:invalid:not(:empty) {
    }

    .material-input:invalid:not([value=""]) ~ .input-invalid {
        display: block !important;
    }

.bar {
    position: relative;
    display: block;
    width: 100%;
}

input:focus {
    outline: none;
}

/* LABEL ======================================= */
.material-label {
    color: #999;
    font-size: 18px;
    font-weight: normal;
    position: absolute;
    pointer-events: none;
    left: 5px;
    top: 13px;
    transition: 0.2s ease all;
    -moz-transition: 0.2s ease all;
    -webkit-transition: 0.2s ease all;
}

/* active state */



.material-input:focus ~ .material-label, .material-input:not([value=""]) ~ .material-label {
    top: -20px;
    font-size: 14px;
    color: var(--primary-color);
    color: black;
}

/* BOTTOM BARS ================================= */


.bar:before, .bar:after {
    content: '';
    height: 2px;
    width: 0;
    bottom: 0.1px;
    position: absolute;
    background: var(--primary-color);
    transition: 0.2s ease all;
    -moz-transition: 0.2s ease all;
    -webkit-transition: 0.2s ease all;
}

.bar:before {
    left: 50%;
}

.bar:after {
    right: 50%;
}

/* active state */
.material-input:focus ~ .bar:before, .material-input:focus ~ .bar:after {
    width: 50%;
}

/* HIGHLIGHTER ================================== */
.highlight {
    position: absolute;
    height: 60%;
    width: 100px;
    top: 25%;
    left: 0;
    pointer-events: none;
    opacity: 0.5;
}

/* active state */

/* ANIMATIONS ================ */
@-webkit-keyframes inputHighlighter {
    from {
        background: #5264AE;
    }

    to {
        width: 0;
        background: transparent;
    }
}

@-moz-keyframes inputHighlighter {
    from {
        background: #5264AE;
    }

    to {
        width: 0;
        background: transparent;
    }
}

@keyframes inputHighlighter {
    from {
        background: #5264AE;
    }

    to {
        width: 0;
        background: transparent;
    }
}

.pure-material-checkbox.lg {
    width: 42px;
    height: 42px;
    margin-right: 8px;
}

.pure-material-checkbox, .pure-material-radio {
    z-index: 0;
    position: relative;
    display: inline-block;
    font-family: var(--pure-material-font, "Roboto", "Segoe UI", BlinkMacSystemFont, system-ui, -apple-system);
    font-size: 16px;
    line-height: 1.5;
}

    /* Input */
    .pure-material-checkbox > input, .pure-material-radio > input {
        appearance: none;
        -moz-appearance: none;
        -webkit-appearance: none;
        z-index: -1;
        position: absolute;
        left: -10px;
        top: -8px;
        display: block;
        margin: 0;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        box-shadow: none;
        outline: none;
        opacity: 0;
        transform: scale(1);
        pointer-events: none;
    }

    /* Span */
    .pure-material-checkbox > span, .pure-material-radio > span {
        display: inline-block;
        font-weight: bold;
        cursor: pointer;
    }

    .pure-material-checkbox.disabled > span {
        font-weight: normal;
    }

    /* Box */
    .pure-material-checkbox.lg > span {
        width: 42px;
        height: 42px;
        border-radius: 4px;
        position: absolute;
        z-index: 2;
        line-height: 50px;
        text-align: center;
    }

        /* Box */
        .pure-material-checkbox.lg > span::before {
            width: 42px;
            height: 42px;
            border-radius: 4px;
            position: absolute;
            top: 0;
            left: 0;
            z-index: -1;
        }

    .pure-material-checkbox > span::before, .pure-material-radio > span::before {
        content: "";
        display: inline-block;
        box-sizing: border-box;
        margin: 3px 11px 3px 1px;
        border: solid 2px; /* Safari */
        border-radius: 2px;
        width: 18px;
        height: 18px;
        vertical-align: top;
        transition: border-color 0.2s, background-color 0.2s;
        background: #F6F6F6;
    }

    .pure-material-radio > span::before {
        border-radius: 50% !important;
    }

    .pure-material-checkbox.disabled > span::before, .pure-material-radio.disabled > span::before {
        background: #d8d8d8 !important;
    }

    /* Checkmark */
    .pure-material-checkbox > span::after, .pure-material-radio > span::after {
    }

    /* Checked, Indeterminate */

    .pure-material-checkbox.lg > input:checked + span {
        color: #EAEAEA;
    }

        .pure-material-checkbox.lg > input:checked + span::before {
            border-color: black;
        }

    .pure-material-checkbox > input:checked,
    .pure-material-checkbox > input:indeterminate,
    .pure-material-radio > input:checked {
        background-color: var(--primary-color);
    }

        .pure-material-checkbox > input:checked + span::before,
        .pure-material-checkbox > input:indeterminate + span::before,
        .pure-material-radio > input:checked + span::before {
            background-color: var(--primary-color);
        }

        .pure-material-checkbox > input:checked + span::after,
        .pure-material-checkbox > input:indeterminate + span::after {
            border-color: var(--primary-color);
        }

    .pure-material-checkbox:not(.disabled) > input:indeterminate + span::after {
        border-left: none;
        /*transform: translate(4px, 3px);*/
    }

    /* Hover, Focus */


    /* Active */
    .pure-material-checkbox > input:active, pure-material-radio > input:active {
        opacity: 1;
        transform: scale(0);
        transition: transform 0s, opacity 0s;
    }

        .pure-material-checkbox > input:active:not(:disabled) + span::before {
            border-color: var(--primary-color);
        }

    .pure-material-checkbox > input:checked:active + span::before {
        border-color: transparent;
        background-color: var(--primary-color);
    }

    .pure-material-checkbox.disabled {
        color: grey;
        border-color: grey;
    }

        .pure-material-checkbox.disabled > input {
            color: grey;
            border-color: grey;
        }

.form-register > .material-group {
    float: left;
}



/* select starting stylings ------------------------------*/
.select {
    font-family: 'Roboto','Helvetica','Arial',sans-serif;
    position: relative;
    width: 100%;
    margin-top: 10px;
    margin-bottom: 35px;
    background: white;
}

.select-text {
    position: relative;
    font-family: inherit;
    background-color: transparent;
    width: 100%;
    padding: 15px 15px 10px 5px;
    font-size: 18px;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid var(--primary-color);
    caret-color: transparent;
}

    /* Remove focus */
    .select-text:focus {
        outline: none;
    }

/* Use custom arrow */
.select .select-text {
    appearance: none;
    -webkit-appearance: none
}

.select:after {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 12px;
    /* Styling the down arrow */
    width: 0;
    height: 0;
    padding: 0;
    content: '';
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid var(--mainColor);
    pointer-events: none;
}


/* LABEL ======================================= */
.select-label {
    color: #999;
    font-size: 18px;
    font-weight: normal;
    position: absolute;
    pointer-events: none;
    left: 5px;
    top: 13px;
    transition: 0.2s ease all;
}

    /* active state */
    .select-text:focus ~ .select-label, .select-text:valid ~ .select-label, .select-label.active {
        color: black;
        top: -20px;
        left: 5px;
        transition: 0.2s ease all;
        font-size: 14px;
    }

.select-text.active ~ .select-label {
    color: black;
    top: -20px;
    left: 5px;
    transition: 0.2s ease all;
    font-size: 14px;
}

.select-text.disabled {
    background: rgb(227, 227, 227);
}

.select-text.selector-date ~ .select-label {
    color: black;
    top: -20px;
    left: 5px;
    transition: 0.2s ease all;
    font-size: 14px;
}

.select-text.custom:not(:placeholder-shown) ~ .select-label {
    color: black;
    top: -20px;
    left: 5px;
    transition: 0.2s ease all;
    font-size: 14px;
}

/* BOTTOM BARS ================================= */
.select-bar {
    position: relative;
    display: block;
    width: 100%;
}

    .select-bar:before, .select-bar:after {
        content: '';
        height: 2px;
        width: 0;
        bottom: 1px;
        position: absolute;
        background: var(--primary-color);
        transition: 0.2s ease all;
    }

    .select-bar:before {
        left: 50%;
    }

    .select-bar:after {
        right: 50%;
    }

/* active state */
.select-text:focus ~ .select-bar:before, .select-text:focus ~ .select-bar:after {
    width: 50%;
}

/* HIGHLIGHTER ================================== */
.select-highlight {
    position: absolute;
    height: 60%;
    width: 100%;
    top: 25%;
    left: 0;
    pointer-events: none;
}

.select-text.custom {
    user-select: none;
}

    .select-text.custom:hover {
        cursor: pointer !important;
    }

.select-custom-list {
    position: absolute;
    display: none;
    width: 100%;
    top: 53px;
    height: auto;
    background: #FBFBFB;
    z-index: 30;
    list-style: none;
    padding-left: 0;
    box-shadow: 0px 4px 4px rgba(174, 174, 174, 0.25);
    border-radius: 0px 0px 5px 5px;
}

    .select-custom-list.active {
        display: block !important;
    }

    .select-custom-list > li {
        height: 50px;
        font-weight: normal;
        font-size: 19px;
        line-height: 50px;
        padding-left: 10px;
        position: relative;
        user-select: none;
    }

        .select-custom-list > li:hover {
            background: #EFEFEF;
            cursor: pointer;
        }

.select-badge {
    height: 28px;
    font-size: 14px;
    color: white;
    background: var(--mainColor);
    text-transform: uppercase;
    padding: 5px 10px;
    line-height: 20px;
    border-radius: 5px;
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-weight: 400;
}

.select-filtered-list {
    max-height: 200px;
    overflow-y: scroll;
}



.material-dropdown-container {
    position: relative;
    display: inline-block;
}


.material-dropdown-target {
    position: absolute;
    width: auto;
    background: #FBFBFB;
    border-radius: 3px;
    box-shadow: 2px 2px 8px rgba(180, 180, 180, 0.41);
    overflow: hidden;
    height: 0;
    transition-duration: .3s;
    transition-property: height;
    z-index: 2;
}

    .material-dropdown-target.active {
        height: auto !important;
    }

    .material-dropdown-target > button {
        width: 100%;
        white-space: nowrap;
        text-align: left;
        height: 48px;
        line-height: 48px;
        font-size: 18px;
        padding-left: 16px;
        padding-right: 16px;
        text-transform: uppercase;
        color: #474747;
        background: none;
        border: none;
        font-weight: 500;
    }

        .material-dropdown-target > button:hover {
            background: #efefef;
        }

.chip-container {
    padding: 0 15%;
    text-align: center;
}

.chip {
    display: inline-block;
    margin: 2px 4px;
    font-weight: bold;
    font-size: 14px;
    line-height: 20px;
    color: #313131;
    padding: 6px 9px;
    box-shadow: -2px 4px 10px rgba(0, 0, 0, 0.05);
    border-radius: 5px;
    text-transform: uppercase;
    background: #e3e3e3;
}

    .chip > input:checked ~ label {
        background: var(--mainColor);
        color: white;
    }

.chip-dismiss {
    display: inline;
    width: 18px;
    height: 18px;
    background: rgba(0, 0, 0, 0.15);
    border: none;
    outline: none;
    padding: 2px;
    position: relative;
    vertical-align: middle;
    border-radius: 50%;
    margin-left: 4px;
}

    .chip-dismiss > i.material-icons {
        font-size: 14px;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: white;
    }


.material-chip {
    user-select: none;
    display: inline-block;
    background: white;
    position: relative;
    border: solid 1px #e0e0e0;
    padding: 5px 10px;
    margin: 8px;
    border-radius: 32px;
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 400;
    box-shadow: 0;
    transition-property: background,color, box-shadow;
    transition-duration: .3s;
}

.material-chip-active {
    background: var(--primary-color);
    color: white;
    border: solid 1px var(--primary-color);
    transition-property: background,color, box-shadow;
    transition-duration: .3s;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.material-chip:hover {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
    transition-property: box-shadow,background,color;
    transition-duration: .3s;
}

.material-pills {
    width: 150px;
    border-radius: 3px;
    padding: 10px 12px !important;
    font-weight: 400 !important;
    background: white !important;
    color: var(--primary-color) !important;
    display: inline-block !important;
    margin: 5px 5px;
}

    .material-pills.active {
        background: var(--primary-color) !important;
        color: white !important;
    }

.neo-chip {
    border-radius: 50px;
    padding: 8px 12px;
    text-transform: uppercase;
    font-weight: 500;
    background: white;
}

    .neo-chip:hover {
        cursor: pointer;
        color: var(--mainColor);
    }




.neo-input {
    border: none !important;
    width: 100%;
    height: 60px;
    border-radius: 10px;
    padding-left: 18px;
}

    .neo-input::before {
        right: 5px;
        top: 5px;
        color: var(--main-color);
        content: '\e315';
        font-family: 'Material Icons';
    }


a {
    text-decoration: none !important;
}

    a.button {
        line-height: 10px;
        font-size: 20px;
        border-radius: 30px;
        padding: 10px 24px;
        text-align: center;
        border: 3px solid var(--primary-color);
        background: none;
        color: var(--primary-color);
        vertical-align: middle !important;
    }

.material-symbols-outlined {
    font-size: 30px !important;
    vertical-align: middle !important;
}


.button {
    display: inline-flex;
    align-items: center; /* Vertically center the content */
    justify-content: center; /* Optional: centers horizontally too */
}

.material-symbols-outlined {
    font-size: 24px; /* Adjust the icon size as needed */
    margin-left: 8px; /* Optional: space between text and icon */
}



.btn-email-helper {
    background: white;
    border-radius: 5px;
    border: solid 1px var(--mainColor);
    padding: 4px 8px;
    box-shadow: 2px 2px 4px #aaaaaa;
    margin: 4px 4px;
}

    .btn-email-helper > span {
        background: rgba(217, 33, 76, 0.3);
    }

.btn-material-simple {
    font-family: Roboto;
    font-weight: bold;
    font-size: 24px;
    letter-spacing: 0.015em;
    text-transform: uppercase;
    color: #9D9D9D;
    background: none;
    border: none;
    border-radius: 5px;
    padding: 4px 6px;
}

    .btn-material-simple:hover {
        text-decoration: none;
        background: #e4e4e4;
    }

        .btn-material-simple:hover:disabled {
            text-decoration: none;
            background: none;
            color: #9D9D9D;
        }

    .btn-material-simple.sm {
        font-size: 18px;
    }

    .btn-material-simple.xs {
        font-size: 16px;
    }

    .btn-material-simple > .material-icons {
        vertical-align: middle;
        margin: 0 4px;
        margin-top: -3px;
    }



    .btn-material-simple.valid {
        color: var(--mainColor) !important;
    }


button.remove {
    color: #C44040 !important;
}


.btn-neo {
    background: #f0f0f0;
    border-radius: 25px;
    font-size: 22px;
    padding: 12px 16px;
    border: none !important;
    color: var(--mainColor)
}

    .btn-neo.disabled {
        color: #4d4d4d !important;
    }


.btn-cta-placeholder {
    padding: 12px 16px;
    color: white;
    background: var(--mainColor);
    font-size: 22px;
    border-radius: 35px;
    margin-top: 22px;
    text-transform: uppercase;
}

.btn-topic {
    padding: 5px 10px;
    background: none;
    border: solid 2px white;
    color: white;
    border-radius: 15px;
    text-transform: uppercase;
    font-weight: 500;
    margin: 5px;
}

    .btn-topic:hover {
        color: white;
    }



.btn-unstyled {
    border: none;
    background: none;
    outline: none;
}

    .btn-unstyled:focus {
        border: none;
        outline: none;
    }

.btn-inherit {
    color: inherit !important;
    background: inherit !important;
    border: none !important;
    padding: 10px !important;
    font-weight: 500;
}


.btn-value-toggle.topic-choice-label {
    font-weight: bold;
}

    .btn-value-toggle.topic-choice-label::before {
        background: white;
        background-image: url(/images/check-main.png);
        color: white;
        background-size: 25px;
        background-repeat: no-repeat;
        background-position-y: 0px;
        background-position-x: 0px;
        border-color: white;
        border-width: 2px;
    }



.btn-material-cta {
    border: solid 1px var(--primary-color);
    background: var(--primary-color);
    text-transform: uppercase;
    color: white;
    font-size: 28px;
    font-weight: 400;
    padding: 8px 10px;
    border-radius: 3px;
}

    .btn-material-cta:hover {
        color: white !important;
    }

.btn-material {
    font-weight: 500;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
    transition-property: box-shadow;
    transition-duration: .3s;
    font-size: 20px;
}

    .btn-material:hover {
        /*transition-property: box-shadow;
        transition-duration: .3s;
        box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;*/
    }

    .btn-material.active {
        background: var(--primary-color);
        color: white;
    }

.btn-material-card {
    position: absolute;
    right: 15px;
    bottom: 15px;
    border-radius: 3px;
    font-weight: 400;
}


.btn-material:hover {
    text-decoration: none;
}

.btn-material-secondary {
    color: black;
    background: #e0e0e0;
}

.btn-material-danger {
    background: #ba524a;
    color: white;
}



.btn-topic-black {
    background: var(--primary-color);
    color: white;
    border-radius: 3px;
    margin: 10px;
    font-weight: 500;
}


    .btn-topic-black:hover {
        color: white !important;
    }



.btn-login-google {
    font-size: 30px;
    font-weight: 500;
    cursor: pointer !important;
    border: solid 1px #e0e0e0;
    background: white !important;
}


.btn-value {
    border: solid 1px var(--primary-color);
    border-radius: 3px;
    position: relative;
    background: white;
    padding: 8px;
    margin: 6px;
    font-size: 20px;
    box-shadow: none;
    transition-property: box-shadow;
    transition-duration: .3s;
}

    .btn-value:hover {
        box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
        transition-property: box-shadow;
        transition-duration: .3s;
    }


.btn-value-toggle:hover {
    color: white !important;
}

.btn-value-toggle {
    background: var(--primary-color);
    color: white;
}


.navbar {
    padding: 0 !important;
    background-color: white;
    border-radius: 0 0 30px 30px;
    position: absolute;
    z-index: 100;
    width: 100vw;
    -webkit-box-shadow: 1px 3px 24px 0px rgba(20, 20, 20, 0.31);
    -moz-box-shadow: 1px 3px 24px 0px rgba(20, 20, 20, 0.31);
    box-shadow: 1px 3px 24px 0px rgba(20, 20, 20, 0.31);
}

.navbar-toggler {
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
    color: black !important;
}

    .navbar-toggler:focus {
        outline: none !important;
        border: none !important;
    }

.navbar-container {
    padding: 18px 80px;
    font-weight: 600;
}

.nav-link{
    padding: 12px 48px !important;
    display: inline-block;
}

.material-symbols-outlined.nav-icon{
    font-size: 40px !important;
}

a.contact-form-button{
    color:black;
    font-weight: 400;
}

@media only screen and (max-width : 1146px) {
    .nav-link {
        padding: 12px 32px !important;
    }
}

@media only screen and (max-width : 992px) {
    a.nav-link{
        padding-left: 0 !important;
    }

    .navbar-container {
        padding: 18px 40px;
        font-weight: 600;
    }
}

@media only screen and (max-width : 768px) {

    .navbar-container {
        padding: 8px 40px;
    }
}

@media only screen and (max-width : 576px) {
}


#section-socials {
    padding-top: 88px;
    background-color: #FBF3E5;
}

.marquee-wrapper {
    overflow: hidden;
    white-space: nowrap;
    background-color: #fdf3e3; /* optional, based on your image background */
}

.marquee {
    display: inline-block;
    white-space: nowrap;
    animation: scroll-left 20s linear infinite;
}

    .marquee span {
        display: inline-block;
        padding-right: 2rem; /* spacing between items */
        color: var(--primary-color); /* goldish tone based on your image */
        font-weight: 400;
        font-size: 1.25rem;
    }

    .marquee img {
        display: inline-block;
        height: 236px;
        margin-left: 15px;
        margin-right: 15px;
    }

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}


#section-contact-form {
    padding-top: 148px;
    padding-bottom: 148px;
    background-color: #212121;
    color: white;
}

    #section-contact-form > div > h3{
        font-size:30px;
    }


.footer-subheader-text {
    max-width: 482px;
    font-weight: 400;
    font-size: 14px;
    margin-top: 38px;
    margin-bottom: 38px;
}

.contact-forms-subheader {
    color: var(--primary-color);
    font-size: 20px;
    margin-bottom: 8px;
}

.contact-forms-subheader-text {
    color: #C7C7C7;
    font-size: 16px;
    margin-bottom: 20px;
}

.contact-form-label {
    color: #C7C7C7;
    font-size: 17px;
}

.contact-form-text-input:focus{

}

.contact-form-text-input {
    width: 100%;
    border-radius: 20px;
    padding-left: 12px;
    background-color: #D9D9D9;
    height: 30px;
    max-width: 482px;
    margin-top: 8px;
    margin-bottom: 8px;
}

textarea.contact-form-text-input {
    min-height: 200px;
    margin-bottom: 24px;
}

textarea:focus-visible{
    outline: none !important;
}

.contact-form-button {
    background: var(--detail-color);
    padding: 8px 24px;
    border-radius: 20px;
    border: none !important;
}

.contact-map{
    margin-top: 32px;
    width: 100%;
    border-radius: 25px;
    max-width: 468px;
}

.footer-copyright {
    background-color: var(--primary-color);
    text-align: center;
    font-size: 16px;
}



@media only screen and (max-width : 1250px) {
}

@media only screen and (max-width : 992px) {
}

@media only screen and (max-width : 768px) {

    #section-contact-form:not(.contact-form-in-contact) {
        padding-top: 48px;
        padding-bottom: 68px;
        padding-left: 32px;
        padding-right: 32px;
    }

    #section-contact-form.contact-form-in-contact {
        padding-top: 100px;
    }

    #section-socials > .container{
        padding: 0 32px !important;
    }

    #section-contact-form > div > h3{
        font-size: 24px;
    }

    .footer-subheader-text{
        margin: 32px 0;
    }

    #section-socials {
        padding-top: 48px;
    }

    .marquee img {
        height: 150px;
    }
}

@media only screen and (max-width : 576px) {
/*    .section-socials > .container {
        padding: 0 32px !important;
    }*/
}


#main-page-opening {
    position: relative;
    height: 100vh;
    min-height: 850px;
    /*overflow: hidden;*/
}

    #main-page-opening > img#main-page-background {
        position: absolute;
        width: 100%;
        /*height: calc(100vh - 30px);*/
        height: 100vh;
        min-height: 850px;
        left: 0;
        top: 0;
        z-index: -1000;
        object-fit: cover;
    }
    
/*#main-page-opening > img#main-page-background {
        position: absolute;
        min-width: 100%;
        height: calc(100vh - 30px);
        left: 50%;
        top: -80px;
        z-index: -1000;*/
/*height: 100%;*/
/*object-fit: cover;
        object-position: center;
        transform: translate(-50%, 0px);
    }

    #main-page-opening > img#main-page-halfCircle {
        min-width: 1920px;
        width: 100%;
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);*/
/*height:*/
/*}

    img#main-page-bottles {
        width: 160%;
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translate(-50%, 70%);*/
/*height:*/
/*}*/
.opening-circle-container {
}

.opening-circle {
    position: absolute;
    left: 50%;
    bottom: 50%;
    background-color: #fff;
    /*left: -10vw;
        height: 120vw;
        width: 120vw;*/
    /*transform: translate(105%, 44%);*/

    height: 2700px;
    width: 2700px;
    border-radius: 50%;
    transform: translate(-50%, 100%);
    /*clip-path: ellipse(50% 100% at 50% 100%);*/
    /*border-top-left-radius: 1100px;*/ /* 100px of height + 10px of border */
    /*border-top-right-radius: 110px;*/
}

.opening-container {
    position: absolute;
    bottom: 50px;
    width: 100%;
}

.opening-header {
    color: var(--primary-color);
    font-size: 27px;
    font-weight: 600;
    margin-bottom: 32px;
}

.opening-text {
    margin-bottom: 48px;
    font-size: 18px;
}

.opening-button-container {
    margin-bottom: 60px;
}

#main-page-products {
    background-color: var(--primary-color-light);
    /*height: 800px;*/
    padding: 84px 0px;
}

    #main-page-products > h2 {
        font-size: 27px;
        font-weight: 600;
        margin-bottom: 80px;
    }

.product-select-container {
    margin-bottom: 4px;
}

.product-select {
    background: none;
    border: none;
    font-family: "silkamono", "sans-serif" !important;
    font-weight: 500;
    font-size: 16px;
    width: 134px;
    padding: 10px 0;
    border-radius: 24px;
}

.product-select-active {
    background: var(--detail-color);
}

#main-page-shops {
    padding: 84px 0;
}

    #main-page-shops h2 {
        padding-bottom: 20px;
    }

#mainPageShopsImage {
    width: 400px;
}

@media only screen and (max-width : 1250px) {
}

@media only screen and (max-width : 992px) {

}

@media only screen and (max-width : 768px) {
    #main-page-shops {
        padding: 40px 32px;
    }

    #mainPageShopsImage{
        width: 100%;
    }

    .opening-container{
        padding: 0 8px;
        bottom: 0;
    }

    #main-page-products{
        padding: 48px 0;
    }

        #main-page-products > h2 {
            margin-bottom: 48px;
        }

    .product-select{
        font-size: 14px;
        padding: 10px 24px;
        width: unset;
    }
}

@media only screen and (max-width : 456px) {
    .opening-text{
        margin-bottom: 40px;
    }

    .opening-button-container{
        margin-bottom: 32px;
    }
}


#category-opening {
    color: white;
    /*height: 1125px;*/
    background: var(--primary-color-light);
}

.amity-bs-wrap{
    padding-top: 90px;
}

#category-opening > img {
    width: 100%;
    /*        position: absolute;
        top: 0;*/
    z-index: -2;
    min-height: 500px;
    max-height: 850px;
    object-fit: cover;
    filter: brightness(90%);
}

    #category-opening > div.opening-content-wrap.container {
        position: absolute;
        left: 50%;
        top: 20vw;
        width: 100vw;
        transform: translateX(-50%);
    }

.opening-content-wrap > h2{
    font-size: 44px;
    margin-bottom: 36px;
}

.opening-content-wrap > p{
    font-size: 17px;
    font-weight: 400;
}

/*.opening-content-wrap > h2 {
    font-size: 50px;
    margin-bottom: 24px;
}

.opening-content-wrap > p {
    font-size: 19px;
    font-weight: 500;
}
*/

#category-products > div.container {
    padding: 0 32px;
}

#category-products {
    background-color: var(--primary-color-light);
    padding: 56px 0;
}

    #category-products .category-text {
        font-size: 15px;
        padding-left: 4%;
    }

.product-category-row {
    padding-top: 56px;
}


#category-products .product-component:first-child{
    margin-left: 0;
}

.product-list-container {
    width: 260px;
    padding-right: 16px;
}

.product-list {
    /*height: 700px;*/
    border: 2px solid var(--primary-color);
    border-radius: 25px;
    overflow: hidden;
}

.product-category-container {
    width: calc(100% - 260px);
}

.product-list-category {
    line-height: 45px;
    padding: 0 24px;
    position: relative;
    padding-left: 58px;
    font-weight: 500;
    font-size: 14px;
    background: #E7F8ED;
    user-select: none;
    /*border-radius: 25px 25px 0 0;*/
}

    .product-list-category-item.active {
        background: #F4DDB0 !important;
    }

.product-list-category > img{

    margin-right: 12px;
    position: absolute;
    left:22px;
    top: 50%;
    transform: translateY(-60%);
}

.product-list-category > span.material-symbols-outlined {
    margin-right: 12px;
    margin-left: 0;
    position: absolute;
    left: 18px;
    top: 24px;
    transform: translateY(-60%);
}

.product-list-category-item {
    display: block;
    user-select: none;
}

    .product-list-category-item > div {
        color: black;
        font-weight: 400;
        font-size: 14px;
        padding-left: 58px;
        line-height: 45px;
        text-transform: lowercase;
    }

@media (min-width: 1200px) {
    #category-products > div.container {
        max-width: 1320px;
    }
}

@media (min-width: 992px) {
    #category-products > div.container {
        max-width: 1320px;
    }
}

@media only screen and (max-width : 1250px) {

}

@media only screen and (max-width : 992px) {
    .product-category-container {
        width: 100%;
    }

    .product-list-container {
        width: 100%;
        padding: 0 24px;
    }

    .product-list-category:first-child{
        border-radius: 0;
        background: unset;
    }

    .product-list {
        max-height: 48px;
        transition: 0.3s ease all;
        -moz-transition: 0.3s ease all;
        -webkit-transition: 0.3s ease all;
    }

        .product-list.active {
            max-height: 900px;
            transition: 0.3s ease all;
            -moz-transition: 0.3s ease all;
            -webkit-transition: 0.3s ease all;
        }
}

@media only screen and (max-width : 768px) {
    #category-opening > div.opening-content-wrap.container {
        top: 160px;
        padding: 0 32px;
    }

    .opening-content-wrap > h2 {
        font-size: 36px;
        margin-bottom: 12px;
    }

    .opening-content-wrap > p {
        font-size: 15px;
    }
}

@media only screen and (max-width : 576px) {
}

@import url('https://fonts.googleapis.com/icon?family=Material+Icons');

#product-detail-container {
    padding-top: 180px;
}


h2.product-detail {
    text-transform: lowercase;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
}

img.product-detail-property-img {
    width: 40px;
    height: auto;
    display: inline-block;
    float: left;
    margin-right: 24px;
    margin-bottom: 24px;
}

.product-detail-drawer {
    border: 2px solid var(--primary-color);
    border-radius: 25px;
    /*padding: 16px;*/
    font-weight: 400;
    max-height: 54px;
    overflow: hidden;
}

.product-detail-drawer.active {
    max-height: unset !important;
}

    .product-detail-drawer > h4 {
        font-size: 16px;
        padding: 16px;
        margin-bottom: 0;
        position: relative;
        user-select: none;
    }

        .product-detail-drawer > h4::after {
            content: 'keyboard_arrow_down';
            font-family: 'Material Symbols Outlined';
            font-size: 28px;
            color: black;
            position: absolute;
            right: 8px;
            top: 8px;
        }

        .product-detail-drawer > h4.active::after {
            content: 'keyboard_arrow_up';
        }

        .product-detail-drawer > h4:hover {
            cursor: pointer;
        }

    .product-detail-drawer p {
        color: #515151;
        padding: 0 16px;
        font-size: 14px;
        margin-bottom: 8px;
    }

        .product-detail-drawer p:last-child {
            margin-bottom: 16px;
        }

        .product-detail-drawer h5 {
            color: #515151;
            padding: 0 16px;
            font-size: 16px;
            margin-bottom: 4px;
        }


.product-detail-detailed{
    padding-top: 100px;
    padding-bottom: 100px;

}

    .product-detail-detailed h4{
        font-size: 28px;
        font-weight: 600;
        margin-bottom: 24px;
    }

        .product-detail-detailed > div > p {
            font-size: 16px;
        }

        .product-detail-separator-container {
            position: relative;
            height: 2px;
        }

.product-detail-separator {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 1px;
    height: 2px;
    width: 80%;
    background-color: var(--primary-color);
}

.product-detail-detailed img{
    max-width: 100%;
    border-radius: 25px;
}

.product-detail-img{
    height: unset;
    object-fit: contain;
}

@media only screen and (max-width : 1250px) {
}

@media only screen and (max-width : 992px) {
    #product-detail-container {
        padding-top: 140px;
    }

    .product-detail-img {
        height: 380px;
        width: auto;

    }

    .product-detail-detailed {
        padding-top: 36px;
        padding-bottom: 36px;
    }

}

@media only screen and (max-width : 768px) {
}

@media only screen and (max-width : 576px) {
}


#section-about {
    padding-top: 72px;
    padding-bottom: 80px;
}

    #section-about h2 {
        font-weight: 600;
        margin: 38px 0;
    }

#about-img {
    width: 488px;
    border-radius: 25px;
}

.about-highlight-text {
    color: var(--primary-color);
    font-size: 30px;
    font-weight: 500;
}

#section-about-authors {
    background: var(--primary-color-light);
    padding-top: 64px;
    padding-bottom: 80px;
}

    #section-about-authors h2 {
        font-weight: 600;
        /*margin: 38px 0;*/
    }

.about-author-card {
    max-width: 300px;
    display: inline-block;
    text-align: left;
}

    .about-author-card > h4 {
        font-size: 22px;
    }

    .about-author-card > p:not(:first-child) {
    }

    .about-author-card > img {
        border-radius: 25px;
        margin-top: 16px;
        margin-bottom: 20px;
    }

.about-author-skills > div {
    font-style: italic;
}


#section-about-eu {
    padding: 52px 0;
    text-align: center;
}

.about-eu-container {
    max-width: 764px;
    display: inline-block;
}

    .about-eu-container > h2 {
        color: var(--primary-color);
        font-weight: 600;
    }

    .about-eu-container > p {
        margin: 48px 0;
    }

#want-more-container p {
    max-width: 520px;
}

#amity-form > .contact-forms-subheader-text {
    color: black;
}

#amity-form .contact-form-label
{
    color:black;
}
#amity-form input
{
    border: none !important;
}

#amity-form textarea {
    border: none !important;
}

.chciamity-shop-cotainer{
    max-width: 520px;
    border: solid 1px var(--primary-color);
    border-radius: 25px;
    overflow: hidden;
}

    .chciamity-shop-cotainer > img{
        width:100%;
        height: 360px;
        object-fit: cover;
    }

.chciamity-shops{
    line-height: 85px;
    border-top: solid 1px #acacac;
}

    .chciamity-shops > a{
        margin-top: 24px;
    }


/*.downloads-cotainer {
    max-width: 520px;
    border: solid 1px var(--primary-color);
    border-radius: 25px;
    overflow: hidden;
    text-align:center;
}

    .downloads-cotainer > img {
        display: inline-block;
    }

.downloads-item {
    line-height: 85px;
    border-top: solid 1px #acacac;
    text-align: left;
}

    .chciamity-shops > a {
        margin-top: 24px;
    }*/

.download-card {
    background: white;
    border-radius: 20px;
    border: 2px solid #d4af37;
    padding: 0;
    width: 100%;
    overflow: hidden;
    margin-bottom: 76px;
}

.logo-section {
    padding: 40px 30px;
    text-align: center;
    border-bottom: 2px solid #f0f0f0;
}

.logo {
    font-size: 48px;
    font-weight: 300;
    color: #333;
    letter-spacing: -1px;
    position: relative;
}

    .logo::before {
        content: '';
        position: absolute;
        top: 50%;
        left: -15px;
        right: -15px;
        height: 2px;
        background: #333;
        transform: translateY(-50%);
        z-index: -1;
    }

.download-options {
    padding: 0;
}

.download-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    border-bottom: 2px solid #f0f0f0;
    transition: background-color 0.1s ease;
}

    .download-item:last-child {
        border-bottom: none;
    }

    .download-item:hover {
        background-color: #fafafa;
    }

.item-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.item-title {
    font-size: 16px;
    font-weight: 500;
    color: #333;
}

.item-description {
    font-size: 13px;
    color: #888;
    background: #f5f5f5;
    padding: 3px 8px;
    border-radius: 12px;
    display: inline-block;
    width: fit-content;
}

.download-button {
    background: white;
    border: 2px solid #d4af37;
    color: #d4af37;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

    .download-button:hover {
        background: #d4af37;
        color: white;
        transform: translateY(-1px);
    }

.download-icon {
    font-size: 12px;
}

.section-title {
    font-size: 24px;
    font-weight: 600;
}

@media (max-width: 480px) {
    .download-card {
        margin: 20px;
        max-width: none;
    }

    .logo-section {
        padding: 30px 20px;
    }

    .logo {
        font-size: 36px;
    }

    .download-item {
        padding: 16px 20px;
    }
}





.color-card {
    background: white;
    border-radius: 20px;
    border: 2px solid #d4af37;
    padding: 30px;
    width: 100%;
}

.section {
    margin-bottom: 40px;
}

    .section:last-child {
        margin-bottom: 0;
    }

.section-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.section-title {
    font-size: 16px;
    font-weight: 500;
    color: #333;
}

.section-description {
    font-size: 13px;
    color: #888;
    background: #f5f5f5;
    padding: 3px 8px;
    border-radius: 12px;
}

.color-row {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}

.color-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.2s ease;
}

    .color-circle:hover {
        transform: scale(1.1);
    }

.primary-color {
    margin-bottom: 30px;
}

.color-block {
    width: 100%;
    height: 60px;
    border-radius: 12px;
    margin-bottom: 15px;
}

.color-info {
    margin-bottom: 25px;
}

.color-name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.color-values {
    font-size: 13px;
    line-height: 1.6;
    color: #666;
}

.complementary-colors {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.complementary-color {
    flex: 1;
    min-width: 120px;
}

    .complementary-color .color-block {
        height: 80px;
    }

    .complementary-color .color-name {
        font-size: 16px;
        margin-bottom: 6px;
    }

.palette-grid {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.palette-row {
    display: flex;
    gap: 8px;
}

.palette-color {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    transition: transform 0.2s ease;
}

    .palette-color:hover {
        transform: scale(1.1);
    }

.gold {
    background-color: #C8A43B;
}

.fresh-green {
    background-color: #46BE82;
}

.royalty-purple {
    background-color: #222F89;
}

.grape-time {
    background-color: #7F86E3;
}

.zen-beige {
    background-color: #F8F6E3;
}

/* Primary color row gradients */
.primary-row-1 .color-circle:nth-child(1) {
    background: #000000;
}

.primary-row-1 .color-circle:nth-child(2) {
    background: #2D2D2D;
}

.primary-row-1 .color-circle:nth-child(3) {
    background: #4A4A4A;
}

.primary-row-1 .color-circle:nth-child(4) {
    background: #676767;
}

.primary-row-1 .color-circle:nth-child(5) {
    background: #848484;
}

.primary-row-1 .color-circle:nth-child(6) {
    background: #A1A1A1;
}

.primary-row-1 .color-circle:nth-child(7) {
    background: #BEBEBE;
}

.primary-row-1 .color-circle:nth-child(8) {
    background: #DBDBDB;
}

.primary-row-1 .color-circle:nth-child(9) {
    background: #F8F8F8;
}

.primary-row-1 .color-circle:nth-child(10) {
    background: #FFFFFF;
}

.primary-row-1 .color-circle:nth-child(11) {
    background: #FFFFFF;
}

.primary-row-2 .color-circle:nth-child(1) {
    background: #000080;
}

.primary-row-2 .color-circle:nth-child(2) {
    background: #1A1A9A;
}

.primary-row-2 .color-circle:nth-child(3) {
    background: #3333B4;
}

.primary-row-2 .color-circle:nth-child(4) {
    background: #4D4DCE;
}

.primary-row-2 .color-circle:nth-child(5) {
    background: #6666E8;
}

.primary-row-2 .color-circle:nth-child(6) {
    background: #8080FF;
}

.primary-row-2 .color-circle:nth-child(7) {
    background: #9999FF;
}

.primary-row-2 .color-circle:nth-child(8) {
    background: #B3B3FF;
}

.primary-row-2 .color-circle:nth-child(9) {
    background: #CCCCFF;
}

.primary-row-2 .color-circle:nth-child(10) {
    background: #E6E6FF;
}

.primary-row-2 .color-circle:nth-child(11) {
    background: #F0F0FF;
}

/* Full palette colors */
.palette-row-1 .palette-color:nth-child(1) {
    background: #000000;
}

.palette-row-1 .palette-color:nth-child(2) {
    background: #1A1A1A;
}

.palette-row-1 .palette-color:nth-child(3) {
    background: #333333;
}

.palette-row-1 .palette-color:nth-child(4) {
    background: #4D4D4D;
}

.palette-row-1 .palette-color:nth-child(5) {
    background: #666666;
}

.palette-row-1 .palette-color:nth-child(6) {
    background: #808080;
}

.palette-row-1 .palette-color:nth-child(7) {
    background: #999999;
}

.palette-row-1 .palette-color:nth-child(8) {
    background: #B3B3B3;
}

.palette-row-1 .palette-color:nth-child(9) {
    background: #CCCCCC;
}

.palette-row-1 .palette-color:nth-child(10) {
    background: #E6E6E6;
}

.palette-row-1 .palette-color:nth-child(11) {
    background: #F5F5F5;
}

.palette-row-2 .palette-color:nth-child(1) {
    background: #000000;
}

.palette-row-2 .palette-color:nth-child(2) {
    background: #0D3D0D;
}

.palette-row-2 .palette-color:nth-child(3) {
    background: #1A5A1A;
}

.palette-row-2 .palette-color:nth-child(4) {
    background: #267726;
}

.palette-row-2 .palette-color:nth-child(5) {
    background: #339433;
}

.palette-row-2 .palette-color:nth-child(6) {
    background: #40B140;
}

.palette-row-2 .palette-color:nth-child(7) {
    background: #4DCE4D;
}

.palette-row-2 .palette-color:nth-child(8) {
    background: #5AEB5A;
}

.palette-row-2 .palette-color:nth-child(9) {
    background: #7FFF7F;
}

.palette-row-2 .palette-color:nth-child(10) {
    background: #B3FFB3;
}

.palette-row-2 .palette-color:nth-child(11) {
    background: #E6FFE6;
}

.palette-row-3 .palette-color:nth-child(1) {
    background: #000000;
}

.palette-row-3 .palette-color:nth-child(2) {
    background: #330000;
}

.palette-row-3 .palette-color:nth-child(3) {
    background: #660000;
}

.palette-row-3 .palette-color:nth-child(4) {
    background: #990000;
}

.palette-row-3 .palette-color:nth-child(5) {
    background: #CC0000;
}

.palette-row-3 .palette-color:nth-child(6) {
    background: #FF0000;
}

.palette-row-3 .palette-color:nth-child(7) {
    background: #FF3333;
}

.palette-row-3 .palette-color:nth-child(8) {
    background: #FF6666;
}

.palette-row-3 .palette-color:nth-child(9) {
    background: #FF9999;
}

.palette-row-3 .palette-color:nth-child(10) {
    background: #FFCCCC;
}

.palette-row-3 .palette-color:nth-child(11) {
    background: #FFE6E6;
}

.palette-row-4 .palette-color:nth-child(1) {
    background: #000000;
}

.palette-row-4 .palette-color:nth-child(2) {
    background: #330033;
}

.palette-row-4 .palette-color:nth-child(3) {
    background: #660066;
}

.palette-row-4 .palette-color:nth-child(4) {
    background: #990099;
}

.palette-row-4 .palette-color:nth-child(5) {
    background: #CC00CC;
}

.palette-row-4 .palette-color:nth-child(6) {
    background: #FF00FF;
}

.palette-row-4 .palette-color:nth-child(7) {
    background: #FF33FF;
}

.palette-row-4 .palette-color:nth-child(8) {
    background: #FF66FF;
}

.palette-row-4 .palette-color:nth-child(9) {
    background: #FF99FF;
}

.palette-row-4 .palette-color:nth-child(10) {
    background: #FFCCFF;
}

.palette-row-4 .palette-color:nth-child(11) {
    background: #FFE6FF;
}

.palette-row-5 .palette-color:nth-child(1) {
    background: #000000;
}

.palette-row-5 .palette-color:nth-child(2) {
    background: #332200;
}

.palette-row-5 .palette-color:nth-child(3) {
    background: #664400;
}

.palette-row-5 .palette-color:nth-child(4) {
    background: #996600;
}

.palette-row-5 .palette-color:nth-child(5) {
    background: #CC8800;
}

.palette-row-5 .palette-color:nth-child(6) {
    background: #FFAA00;
}

.palette-row-5 .palette-color:nth-child(7) {
    background: #FFBB33;
}

.palette-row-5 .palette-color:nth-child(8) {
    background: #FFCC66;
}

.palette-row-5 .palette-color:nth-child(9) {
    background: #FFDD99;
}

.palette-row-5 .palette-color:nth-child(10) {
    background: #FFEECC;
}

.palette-row-5 .palette-color:nth-child(11) {
    background: #FFF9E6;
}

.palette-row-6 .palette-color:nth-child(1) {
    background: #000000;
}

.palette-row-6 .palette-color:nth-child(2) {
    background: #000033;
}

.palette-row-6 .palette-color:nth-child(3) {
    background: #000066;
}

.palette-row-6 .palette-color:nth-child(4) {
    background: #000099;
}

.palette-row-6 .palette-color:nth-child(5) {
    background: #0000CC;
}

.palette-row-6 .palette-color:nth-child(6) {
    background: #0000FF;
}

.palette-row-6 .palette-color:nth-child(7) {
    background: #3333FF;
}

.palette-row-6 .palette-color:nth-child(8) {
    background: #6666FF;
}

.palette-row-6 .palette-color:nth-child(9) {
    background: #9999FF;
}

.palette-row-6 .palette-color:nth-child(10) {
    background: #CCCFFF;
}

.palette-row-6 .palette-color:nth-child(11) {
    background: #E6E6FF;
}

@media (max-width: 600px) {
    .color-card {
        padding: 20px;
        margin: 10px;
    }

    .complementary-colors {
        flex-direction: column;
    }

    .complementary-color {
        min-width: auto;
    }

    .palette-color {
        width: 28px;
        height: 28px;
    }

    .palette-row {
        gap: 3px;
    }
}





    @media only screen and (max-width : 1250px) {
    }

@media only screen and (max-width : 992px) {

}

@media only screen and (max-width : 768px) {
    #section-about {
        padding-top: 0px;
        padding-bottom: 32px;
    }

    #about-img {
        max-width: 100%;
        margin-top: 32px;
    }

    #section-about-authors {
        padding-top: 32px;
        padding-bottom: 32px;
    }

    #section-about-eu {
        padding: 52px;
        text-align: center;
    }

    .about-eu-container img {
        max-width: 100%;
    }

        .about-eu-container > p {
            margin: 16px 0;
        }
}

@media only screen and (max-width : 576px) {
}


#contact-section {
    padding-top: 40px;
    background-color: #212121;
}


.admin-product
{
    line-height: 150px;
}

    .admin-product > a {
        line-height: 150px;
        font-size: 28px;
        font-weight: 500;
        color: black;
        text-decoration: underline !important;
    }


.product-container-wrapper.product-container-active {
    opacity: 1;
    visibility: visible;
    display: block;
    transition: visibility 0s, opacity 0.5s linear;
    -moz-transition: 0.2s ease all;
    -webkit-transition: 0.2s ease all;
}

.product-container-wrapper {
    /*display: none;*/
    visibility: hidden;
    display: none;
    width: 100%;
    overflow-x: auto; /* Enables horizontal scrolling */
    white-space: nowrap; /* Prevents wrapping */
    padding: 20px 0;
    transition: visibility 0s, opacity 0.5s linear;
    opacity: 0;
    -moz-transition: 0.2s ease all;
    -webkit-transition: 0.2s ease all;
}

    .product-container-wrapper::-webkit-scrollbar {
        display: none;
    }

.product-container-wrapper {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.product-container {
    display: flex;
    gap: 24px;
    padding: 20px 80px;
    width: max-content;
    text-align: center;
    justify-content: center;
    width: 100%;
    flex-wrap: wrap;
}

.product-component {
    position: relative;
    border: 2px solid var(--primary-color);
    border-radius: 20px;
    /*padding: 24px 80px !important;*/
    width: 230px;
    height: 408px;
    border-radius: 25px;
    padding: 15px;
    text-align: center;
    /*box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);*/
    transition: transform 0.2s ease-in-out;
    z-index: 0;
    display: block;
    margin-bottom: 32px;
}

    .product-component::after {
        content: '';
        z-index: -1;
        position: absolute;
        left: calc(50% - 63px);
        top: calc(50% - 58px);
        width: 126px;
        height: 126px;
        border-radius: 90px;
        background-color: #F4DDB0;
        transition: 0.2s ease all;
        -moz-transition: 0.2s ease all;
        -webkit-transition: 0.2s ease all;
    }

    .product-component:hover{
        cursor: pointer;
    }

    .product-component:hover:after {
        left: calc(50% - 85px);
        top: calc(50% - 78px);
        width: 170px;
        height: 170px;
        background-color: #C8A43B;
        transition: 0.2s ease all;
        -moz-transition: 0.2s ease all;
        -webkit-transition: 0.2s ease all;
    }

    .product-component:first-child {
        /*margin-left: 16.6vw;*/
    }

    .product-component.try-also-product:first-child {
        margin-left: 0;
    }

    .product-component > img {
        width: 75px;
        height: 335px;
        object-fit: fill;
        border-radius: 10px;
        display: inline-block;
    }

    .product-component > div > div {
        font-size: 16px;
        font-weight: 600;
        font-style: italic;
        padding: 8px;
        color: #5c5c5c;
        margin-top: 10px; /* Adjusts spacing */
        text-align: center; /* Ensures text is centered */
        width: 100%;
        position: relative;
        display: inline;
    }

    .product-component:hover > div > div::after {
        /*transform: translateX(0);*/
        left: 0;
        width: 100%;
        /*            transition: 0.2s ease all;
            -moz-transition: 0.2s ease all;
            -webkit-transition: 0.2s ease all;*/
    }

    .product-component > div > div::after {
        height: 3px;
        width: 32px;
        content: '';
        background-color: var(--detail-color);
        position: absolute;
        bottom: 0;
        left: calc(50% - 16px);
        /*transform: translateX(-50%);*/
        transition: 0.2s ease all;
        -moz-transition: 0.2s ease all;
        -webkit-transition: 0.2s ease all;
    }



@media only screen and (max-width : 1250px) {
}

@media only screen and (max-width : 992px) {
    .product-component {
        display:inline-block;
        margin-top: 36px;
        margin-bottom: 0;
    }
}

@media only screen and (max-width : 768px) {
    .product-component:first-child {
        /*margin-left: 13vw;*/
        margin-left: calc(50vw - 80px - 115px);
    }


}

@media only screen and (max-width : 576px) {
}

.shops-component-container {
    text-align: left;
    width: 100% !important;
    max-width: 500px;
    border: 3px solid #15A269;
    border-radius: 25px;
    padding: 20px;
    color: #15A269;
    font-style: italic;
    background-color: white;
}

    .shops-component-container h4 {
        font-size: 18px;
        font-weight: 600;

        margin-bottom: 16px;
    }

.shops-component-container .row{
    text-align: center;
}

    .shops-component-container a {
        display: inline-block;
        border-radius: 15px;
        border: dashed 2px transparent;
        
        transition: 0.2s ease all;
        -moz-transition: 0.2s ease all;
        -webkit-transition: 0.2s ease all;
    }

        .shops-component-container a:hover {
            border: dashed 2px #5da588;
            transition: 0.2s ease all;
            -moz-transition: 0.2s ease all;
            -webkit-transition: 0.2s ease all;
        }

        .shops-component-container img.shop-img {
            width: 100px;
        }

@media only screen and (max-width : 1250px) {
    .shops-component-container {
        width: 100% !important;
        max-width: 500px;
    }
}

@media only screen and (max-width : 992px) {
    .shops-component-container {
        width: 100%;
    }
}

@media only screen and (max-width : 768px) {
    .shops-component-container {
        width: 100%;
    }
}

@media only screen and (max-width : 576px) {
}


#try-also-section {
    padding-bottom: 42px;
}

    #try-also-section > .container > h2 {
        margin-top: 64px;
        font-size: 26px;
        font-weight: 600;
    }

.try-also-description-container {
    padding-left: 32px;
    margin-top: 64px;
}

    .try-also-description-container > p {
        margin-bottom: 30px;
    }

    .try-also-description-container > .try-also-description-flavor {
        color: var(--primary-color);
        font-weight: 600;
        font-style: italic;
    }

.product-component.try-also-product {
    border: none;
}

    .product-component.try-also-product.try-also-limo {
        background-color: #9EA3EA;
    }

        .product-component.try-also-product.try-also-limo::after {
            background-color: #7F86E3;
        }

    .product-component.try-also-product.try-also-energy {
        background-color: #46BE82;
    }

        .product-component.try-also-product.try-also-energy::after {
            background-color: #15A269;
        }

    .product-component.try-also-product.try-also-cider {
        background-color: #C8A43B;
    }

        .product-component.try-also-product.try-also-cider::after {
            background-color: #A98B31;
        }


@media only screen and (max-width : 1250px) {

}

@media only screen and (max-width : 992px) {
    a.nav-link {
        padding-left: 0 !important;
    }

    .navbar-container {
        padding: 18px 40px;
        font-weight: 600;
    }
}

@media only screen and (max-width : 768px) {

    .product-component.try-also-product:last-child {
        margin-bottom: 32px;
        margin-top: 0;
    }
}

@media only screen and (max-width : 576px) {
}

@font-face {
    font-family: "Silka";
    src: url("../fonts/Silka-Thin.woff2?v=Q6Zc9WpfmnfRBM4A5n7Kebs58Dc") format("woff2"),
         url("../fonts/Silka-Thin.otf?v=Q6Zc9WpfmnfRBM4A5n7Kebs58Dc") format("opentype");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Silka";
    src: url("../fonts/Silka-Regular.woff2?v=Q6Zc9WpfmnfRBM4A5n7Kebs58Dc") format("woff2"),
         url("../fonts/Silka-Regular.otf?v=Q6Zc9WpfmnfRBM4A5n7Kebs58Dc") format("opentype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Silka";
    src: url("../fonts/Silka-Medium.woff2?v=Q6Zc9WpfmnfRBM4A5n7Kebs58Dc") format("woff2"),
         url("../fonts/Silka-Medium.otf?v=Q6Zc9WpfmnfRBM4A5n7Kebs58Dc") format("opentype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Silka";
    src: url("../fonts/Silka-SemiBold.woff2?v=Q6Zc9WpfmnfRBM4A5n7Kebs58Dc") format("woff2"),
         url("../fonts/Silka-SemiBold.otf?v=Q6Zc9WpfmnfRBM4A5n7Kebs58Dc") format("opentype");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Silka";
    src: url("../fonts/Silka-Bold.woff2?v=Q6Zc9WpfmnfRBM4A5n7Kebs58Dc") format("woff2"),
         url("../fonts/Silka-Bold.otf?v=Q6Zc9WpfmnfRBM4A5n7Kebs58Dc") format("opentype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "SilkaMono";
    src: url("../fonts/SilkaMono-Regular.woff2?v=Q6Zc9WpfmnfRBM4A5n7Kebs58Dc") format("woff2"),
         url("../fonts/SilkaMono-Regular.otf?v=Q6Zc9WpfmnfRBM4A5n7Kebs58Dc") format("opentype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

:root {
    --primary-color: #C8A43B;
    --primary-color-light: #FBF3E5;
    --detail-color: #78D9A5;
    --secondary: #ffffff;
}

html {
    font-size: 14px;
    font-family: "silka", "sans-serif" !important;
}

body {
    font-family: "silka", "sans-serif" !important;
    overflow-x: hidden;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  overflow-x: hidden !important;
}

img{
    user-select: none;
}


.alert-success {
    color: black;
    background-color: var(--detail-color);
    border:none;
    border-radius: 30px;
}


.preserve-whitespace {
    white-space: pre-line;
}
