@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
@import url("flag-icon.min.css");
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.3/font/bootstrap-icons.css");
@import url("../js/menu/mmenu-light.css");
@import url("../js/ion-slider/css/ion.rangeSlider.min.css");

@font-face {
    font-family: 'PF Grand Gothik Extended Regular';
    font-style: normal;
    font-weight: normal;
    src: local('PF Grand Gothik Extended Regular'), url('PFGrandGothikExtended-Regular-subset.woff') format('woff');
}
@font-face {
    font-family: 'PF Grand Gothik Extended Black';
    font-style: normal;
    font-weight: normal;
    src: local('PF Grand Gothik Extended Black'), url('PFGrandGothikExtended-Black-subset.woff') format('woff');
}

:root {
    --primary-color: #000000;
    --secondary-color: #b8915a;
    --tertiary-color: #e7e7e7;
    --usps-color: #f1f1f1;
    --black: #000000;
    --white: #FFFFFF;
    --attention: #B50000;
    --attention-dark: #810000;
    --important: #00790C;
    --important-dark: #004e08;
    --primary-transparent: rgba(0,0,0,.8);
    --secondary-transparent: rgba(134,134,134,.25);
    --light-gray: #ededed;
    --bs-font-sans-serif: "Open Sans", serif, -apple-system, BlinkMacSystemFont, "Segoe UI",Roboto,"PF Grand Gothik Extended Black","Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
}
* {
  scrollbar-width: thin;
  scrollbar-color: #b8915a #e7e7e7;
}

/* WebKit Browsers (Chrome, Safari, Edge) */
::-webkit-scrollbar {
  width: 12px;               /* Width of the entire scrollbar */
}

::-webkit-scrollbar-track {
  background: #e7e7e7;       /* Color of the tracking area */
}

::-webkit-scrollbar-thumb {
  background-color: #b8915a; /* Color of the scroll thumb */
  border-radius: 20px;       /* Roundness of the thumb */
  border: 3px solid #e7e7e7; /* Creates padding around thumb */
}

::-webkit-scrollbar-thumb:hover {
  background-color: #997747; /* Color when hovering */
}

html, body, h1, h2, h3, h4, h5, h6, .uk-navbar-item,.uk-navbar-nav>li>a,.uk-navbar-toggle {
    font-family: "Open Sans", serif, -apple-system, BlinkMacSystemFont, "Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"!important;
}

html, body {
    font-optical-sizing: auto;
    font-size: 15px;
    font-weight: 300;
    font-style: normal;
    font-variation-settings: "wdth" 100;
    overflow-x: hidden;
}

a {
    text-transform: unset!important;
    font-size: 1rem!important;
}

.box-shadow-blur-sm {
    box-shadow: 0 5px 5px rgba(0, 0, 0, .08);
}

section.toprow {
    background-color: var(--secondary-color);
    color: var(--white);
}
section.toprow strong {
    font-weight: 600;
    color: var(--tertiary-color);
}

section.toprow a {
    color: var(--white);
    margin: 0 5px;    
}
section.toprow a:hover {
    color: var(--tertiary-color);    
}

section.toprow .uk-button-text::before {
    border-bottom-color: var(--tertiary-color);
}
section.toprow a.img-flag {
    opacity: 1;
    transition: all .3s ease-in-out;
}
section.toprow a.img-flag:hover {
    opacity: .9;
}

header .bottomrow {
    background-color: var(--white);
    color: var(--black);
}

header .bottomrownav {
    background-color: #F8F8F8;
    color: var(--black);
    border-top: 1px solid #b4b4b4;
    border-bottom: 1px solid #b4b4b4;
}

.uk-subnav li {
    width: auto;
}
@media all and (max-width:575px) {
    .uk-subnav li {
        width: 100%;
        margin-bottom: .375rem;
    }
}

.uk-subnav-pill>*>:first-child {
    font-size: 1.2rem;
    font-weight: 500;
    background-color: var(--tertiary-color);
    color: var(--black);
    padding: .75rem 1.5rem;
    text-transform: capitalize;
    transition: all .3s ease-in-out;
}

.uk-subnav-pill>*>a:focus, .uk-subnav-pill>*>a:hover {
    background-color: var(--secondary-color);
    color: var(--white);
}

.uk-subnav-pill>.uk-active>a {
    background-color: var(--primary-color);
    color: var(--white);    
}

.card.product, .card.product .card-header, .card.product .card-body, .card.product .card-footer {
    background-color: var(--white);
    border: none;
    border-radius: 0;
}
.product .card-body a .uk-card-title {
    color: var(--black)!important;
    transition: all .3s ease-in-out;
}

.product:hover .card-body a .uk-card-title {
    color: var(--secondary-color)!important;
}

.product .card-header a figure {
    overflow: hidden;
}
.product .card-header a figure img {
    transform: scale(1);
    transition: all .3s ease-in-out
}
.product:hover .card-header a figure img {
    transform: scale(1.1);
}

.product .card-footer .row .col:nth-child(2) a {
    border-left: 1px solid var(--white);
    border-right: 1px solid var(--white);
}

.btn-default {
    background-color: var(--primary-color);
    color: var(--white);
    padding: .75rem 2rem;
    text-decoration: none;
    transition: all .3s ease-in-out;
}
.btn-default:hover {
    background-color: var(--secondary-color);
    color: var(--white)!important;
    text-decoration: none;
}

.btn-default-danger {
    background-color: var(--attention-dark);
    color: var(--white);
    padding: .75rem 2rem;
    text-decoration: none;
    transition: all .3s ease-in-out;
}
.btn-default-danger:hover {
    background-color: var(--attention);
    color: var(--white)!important;
    text-decoration: none;
}

.uk-navbar-dropdown-nav>li.uk-active>a {
    font-weight: 500 !important;
}

.helpers {
    position: absolute;
    top: 0;
    display: block;
    background-color: transparent;
    padding: 5px;
}

.badge {
    color: var(--white);
    border-radius: 0;
    font-size: .8rem;
    padding: 3px 6px;
    font-weight: 300;
    margin-right: 5px;
}
.helpers .badge:last-child {
    margin-right: 0;
}
.badge.sale {
    background-color: var(--important);
}
.badge.new {
    background-color: var(--black);
}
.badge.oos {
    background-color: var(--attention);
}

.price-sm {
    font-size: 1.3rem;
    color: var(--black);
    font-weight: 400;
}
.discount-sm {
    text-decoration: line-through;
}

.banners {
    background-color: var(--tertiary-color);
}

.usps {
    background-color: var(--white);
}

.usps strong {
    font-size: 1.2rem;
    font-weight: 600;
}

footer {
    background-color: var(--secondary-color);
    color: var(--white);
}

footer h3 {
    color: var(--white);
}

.footer-list li a {
    font-size: 1rem;
    color: var(--white);
    text-decoration: none;
    text-transform: capitalize;
    transition: all .3s ease-in-out;
}
.footer-list li a:hover {
    color: var(--white);
    text-decoration: none;
}

.footer-list li a::before {
    border-bottom: 1px solid var(--white);
}

footer .uk-hr, hr {
    border-top: 1px solid var(--white) !important;
}

footer .uk-divider-small {
    border-top: 1px solid var(--white)!important;
}

footer .uk-divider-small::after {
    border-top: 1px solid var(--secondary-color);
}

footer .uk-icon-button {
    background-color: var(--white);
    color: var(--secondary-color);
    border: 1px solid var(--white);
    transition: all .3s ease-in-out;
}

footer .uk-icon-button:hover {
    background-color: var(--black);
    border: 1px solid var(--white);
    color: var(--white);
}

footer .footer-bottomrow {
    border-top: 1px solid var(--bs-gray-800);
}
.decoded {
    margin: 0 0 4px 4px;
}

footer .sign a {
    font-size: 1rem;
    color: var(--white);
    text-decoration: none;
    text-transform: capitalize;
    transition: all .3s ease-in-out;
}
footer .sign a::before {
    border-bottom: 1px solid var(--white);
}
footer .sign a img {
    opacity: 1;
    transition: all .3s ease-in-out;
}
footer .sign a:hover {
    color: var(--white);
    text-decoration: none;
}
footer .sign a:hover img {
    opacity: .8;
}

.uk-navbar-item, .uk-navbar-nav>li>a, .uk-navbar-toggle {
    min-height: 40px;
    padding: .5rem 1rem;
    font-size: .1rem;
    font-weight: 400!important;
}

.uk-navbar-nav li a {
    color: #6D6D6D;
    font-weight: 400!important;
}

.breadcrumb-container {
    background-color: var(--secondary-color);    
}
.breadcrumb-container a span {
    color: var(--white);
    font-size: 1rem;
    transition: all .3s ease-in-out;
}

.breadcrumb-container span {
    color: var(--white)!important;
    font-size: 1rem;
}
.breadcrumb-container a:hover span {
    color: var(--black)!important;
}

.breadcrumb-container .uk-breadcrumb>:nth-child(n+2):not(.uk-first-column)::before {
    content: "/";
    display: inline-block;
    margin: 0 20px 0 calc(20px - 4px);
    font-size: 1rem;
    color: var(--white);
}

.uk-search-input {
    border: 1px solid rgba(0,0,0,.15);
    padding: 1rem;
}

.uk-search-navbar .uk-search-input {
    height: 55px;
}

.uk-form-label {
    color: #585858;
    font-size: 1rem;
    font-weight: 500;
}

#basket.offcanvas-end {
    width: 90%;
    background-color: var(--white);
    color: var(--black);
}
@media all and (min-width: 576px) {
    #basket.offcanvas-end {
        width: 80%;
    }
}
@media all and (min-width: 768px) {
    #basket.offcanvas-end {
        width: 70%;
    }
}
@media all and (min-width: 992px) {
    #basket.offcanvas-end {
        width: 60%;
    }
}
@media all and (min-width: 1200px) {
    #basket.offcanvas-end {
        width: 50%;
    }
}
@media all and (min-width: 1400px) {
    #basket.offcanvas-end {
        width: 40%;
    }
}

#basket.offcanvas-end h3 {
    color: var(--black);
}
#basket.offcanvas-end button.uk-offcanvas-close {
    color: var(--attention);
}
#basket.offcanvas-end button.uk-offcanvas-close:hover, #basket.offcanvas-end button.uk-offcanvas-close:focus {
    color: var(--attention-dark);
}
#basket.offcanvas-end table tr td img {
    max-width: 60px;
}
#basket.offcanvas-end table tr td, #basket.offcanvas-end table tr th {
    vertical-align: middle;
    color: var(--primary-color);
}
#basket.offcanvas-end table tr {
    border-top-color: var(--tertiary-color);
}
.uk-form-width-sm {
    width: 80px;
}
#basket.offcanvas-end input {
    border-color: var(--tertiary-color);
    color: var(--primary-color);
    text-align: center;
}

#basket.offcanvas-end a.remove-item {
    color: var(--attention);
}
#basket.offcanvas-end a.remove-item:hover, #basket.offcanvas-end a.remove-item:focus {
    color: var(--attention-dark);
}

.uk-pagination>*>:focus, .uk-pagination>*>:hover, .uk-pagination>.uk-active>* {
    color: var(--white);
    background-color: var(--primary-color);
}

.uk-accordion-title {
    font-size: 1.25rem!important;
    font-weight: bold;
}

.uk-checkbox:checked, .uk-checkbox:indeterminate, .uk-radio:checked {
    background-color: var(--secondary-color);
    border-color: var(--primary-color);
}

.uk-checkbox:checked:focus, .uk-checkbox:indeterminate:focus, .uk-radio:checked:focus {
    background-color: var(--secondary-color);
    border-color: var(--primary-color);
}

.btn-filter {
    font-size: 1rem;
}

.product a:hover {
    color: var(--primary-color);
    text-decoration: none;
}

.totop {
    position: fixed;
    padding: 5px;
    bottom: 10px;
    left: 10px;
    background-color: var(--secondary-color);
    color: var(--white);
    border-radius: 50%;
    border: 1px solid var(--secondary-color);
    transition: all .3s ease-in-out;
}

.totop:hover {
    background-color: var(--primary-color);
    color: var(--white);
    border: 1px solid var(--secondary-color);
}

@media all and (max-width: 576px) {
    .totop {
        bottom: 50px;
    }
}

.uk-hr, hr {
    border-top: 1px solid var(--secondary-color);
}

.availability {
    font-size: 1.25rem;
}

.price-lg {
    font-size: 1.5rem;
    color: var(--black);
    font-weight: 400;
}
.discount-lg {
    text-decoration: line-through;
}

.sizes ul {
    list-style:none; padding:0; margin: 0;
}

.sizes li {
    margin: 0 0 10px 0;
    float: left;
}

.sizes label {
    cursor: pointer;
}

.sizes ul li .disabled {
    pointer-events: none;
}

.sizes input {
    display:none;
}

.sizes input[type="radio"]:checked + .swatch-size {
    box-shadow: inset 0 0 0 5px  var(--secondary-color);
    border: 1px solid #FFF;
}

.swatch-size {
    display:flex;
    justify-content: center;
    align-items: center;
    vertical-align: middle;
    height: 50px;
    min-width: 50px;
    margin: 0 5px 0 0 ;
    border: 1px solid #FFF;
    box-shadow: outset 0 0 0 5px #FFF;
    background-color: #f7f7f7;
    color: #000000;
}

.swatch-size.disabled {
    background-color: #adadad;
    color: #FFF;
}

.colors ul {
    list-style:none; padding:0; margin: 0;
}

.colors li {
    margin: 0 0 10px 0;
    float: left;
}

.colors ul li span {
    background-size: cover!important;
}

.colors label {
    cursor: pointer;
}

.colors input {
    display:none;
}

.colors input[type="radio"]:checked + .swatch {
    box-shadow: inset 0 0 0 5px var(--secondary-color);
    border: 1px solid #FFF;
}

.swatch {
    display:inline-block;
    vertical-align: middle;
    height: 100px;
    width: 100px;
    margin: 0 5px 0 0 ;
    border: 1px solid #FFF;
    box-shadow: inset 0 0 0 5px #FFF;
}
@media all and ( max-width:1199px ) {
    .swatch {
        height: 40px;
        width: 40px;
    }
}

span.minus, span.plus {
    cursor:pointer;
}
.minus, .plus {
    width:35px;
    height:25px;
    background:var(--tertiary-color);
    border-radius:0;
    padding: 5px 10px;
    border:1px solid var(--tertiary-color);
    min-height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .3s ease-in-out;
}
input.quantity {
    width: 80px;
    text-align: center;
    font-size: 26px;
    border: 1px solid var(--tertiary-color);
    border-radius: 0;
    min-height: 50px;
}

span.minus:hover, span.plus:hover, span.minus:focus, span.plus:focus {
    background-color: var(--primary-color);
    color: var(--white);
}

.uk-button-buy {
    font-size: 1.5rem!important;
}

.drawer {
    position: fixed;
    bottom: auto;
    top: 150px;
    right: 0;
    left: auto;
    width: 34px;
    background-color: var(--white);
    padding: 2px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .2);
}
@media all and (max-width: 576px) {
    .drawer {
        bottom: 0;
        top: auto;
        right: auto;
        left: auto;
        width: 100%;
        display: flex;
        justify-content: space-around;
    }
}

.drawer .uk-icon-button {
    width: 30px;
    height: 30px;
    border-radius: 0;
    background-color: var(--primary-color);
    color: var(--white);
    margin-bottom: 2px;
}

@media all and (max-width: 576px) {
    .drawer .uk-icon-button {
        width: 100%;
        margin-right: 1px;
        margin-left: 1px;
    }
}

.drawer .uk-icon-button:last-child {
    margin-bottom: 0;
}

.drawer .uk-icon-button:hover {
    background-color: var(--secondary-color);
    color: var(--white);
}

@media all and (max-width: 576px) {
    footer {
        margin-bottom: 38px
    }
}

.content a img {
    opacity: 1;
    transition: all .3s ease-in-out;
}

.content a:hover img {
    opacity: .8;
}

a.content-title {
    font-size: 1.5rem!important;
    color: var(--primary-color);
    text-decoration: none;
    transition: all .3s ease-in-out;
    font-weight: 400;
}
a.content-title:hover {
    color: var(--secondary-color);
    text-decoration: none;
}

/* .uk-hr, hr {
    border-top: 1px solid var(--secondary-color)!important;
} */
.uk-divider-small::after {
    border-top: 1px solid var(--secondary-color)!important;
}

.uk-tooltip {
    background-color: var(--primary-transparent);
    color: var(--white);
    border-radius: 0;
    font-size: .85rem;
    padding: 5px 10px;
    border: 1px solid var(--white)
}

.form-control:focus, .form-select:focus {
    color: var(--black);
    background-color: var(--white);
    border-color: var(--secondary-color);
    outline: 0;
    box-shadow: 0 0 0 0.25rem var(--secondary-transparent);
}

form fieldset .uk-legend, .no-fieldset .uk-legend {
    background-color: var(--primary-color);
    color: var(--white)!important;
    font-weight: 300;
    font-size: 1.5rem;
}

.form-check.form-switch {
    display: flex;
    align-items: center;
}

.form-switch .form-check-input {
    background-image: url(../images/square-white.svg);
    border-radius: 0;
    background-color: var(--attention);
    border-color: var(--attention-dark);
    width: 3em;
    height: 1.5em;
    margin-right: 1rem;
    margin-top: 0;
}
.form-check-input:checked {
    background-position: right center;
    background-image: url(../images/square-white.svg);
    background-color: var(--important);
    border-color: var(--important-dark);
}
.form-switch .form-check-input:focus {
    background-image: url(../images/square-white.svg)!important;
    box-shadow: 0 0 0 0.25rem var(--secondary-transparent);
    border-color: #b3b3b3ff;
}
.form-switch .form-check-input:checked {
    background-position: right center;
    background-image: url("../images/square-white.svg");
}

.irs--flat .irs-from, .irs--flat .irs-to, .irs--flat .irs-single {
    color: var(--white);
    background-color: var(--primary-color);
    border-radius: 0;
}

.irs--flat .irs-bar {
    background-color: var(--primary-color);
}

.irs--flat .irs-handle>i:first-child {
    background-color: var(--primary-color);
}
.irs--flat .irs-from:before, .irs--flat .irs-to:before, .irs--flat .irs-single:before {
    border-top-color: var(--primary-color);
}
.irs--flat .irs-handle.state_hover>i:first-child, .irs--flat .irs-handle:hover>i:first-child {
    background-color: var(--secondary-color);
}

.irs--flat .irs-min, .irs--flat .irs-max {
    color: var(--secondary-color);
    background-color: var(--tertiary-color);
    border-radius: 0;
}
.irs--flat .irs-line {
    background-color: var(--tertiary-color);
    border-radius: 0;
}

@media all and (min-width:992px) {
    #filters {
        visibility: visible!important;
    }
}

ul.account-menu li a {
    font-size: 1.2rem!important;
    background-color: transparent;
    color: var(--black);
}

ul.account-menu li a:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

ul.account-menu>.uk-active>a {
    color: var(--black);
    border-color: var(--black);
    background-color: rgba(0,0,0,0.1);
}

.list-group.account a.list-group-item.active {
    background-color: var(--light-gray);
    border-color: var(--tertiary-color);
    color: var(--black);
}

.uk-navbar-dropdown {
    width: 230px;
}

.uk-button {
    font-size: 1rem;
}

.uk-modal-container .uk-modal-dialog-md {
    width: 1000px;
}
.uk-modal-under-offcanvas {
    z-index: 979;
}
.uk-notification {
    z-index: 1050;
}

.uk-notification-message-danger {
    background-color: #ffbaba;
    color: #7B0000;
    margin-top: 10%;
    border: 1px solid #7B0000;
    font-size: 1.3rem;
    font-weight: bold;
}

.uk-notification-message-danger .uk-close {
    color: #7B0000;
}
.uk-notification-message-danger .uk-close:hover {
    color: #4d0000;
}

.uk-notification-message-warning {
    background-color: #fac79f;
    color: #71390D;
    margin-top: 10%;
    border: 1px solid #71390D;
    font-size: 1.3rem;
    font-weight: bold;
}

.uk-notification-message-warning .uk-close {
    color: #71390D;
}
.uk-notification-message-warning .uk-close:hover {
    color: #5e3210;
}

table.basket tbody tr td img {
    max-width: 100px;
}
table.basket tbody tr td a.remove-item {
    color: var(--attention);
}

.brands a img {
    filter: grayscale(0);
    transition: all .3s ease-in-out;
}

.brands:hover a img {
    filter: grayscale(1);
}

.rounded-4 {
    border-radius: 1rem!important;
}

.rounded-top-4 {
    border-top-left-radius: 1rem!important;
    border-top-right-radius: 1rem!important;
}

.rounded-bottom-4 {
    border-bottom-left-radius: 1rem!important;
    border-bottom-right-radius: 1rem!important;
}

.uk-button-text-black {
    color: var(--black)!important;
}
.uk-button-text-black::before {
    border-bottom-color: var(--black)!important;
}
.uk-button-text-black:hover {
    color: var(--black)!important;
}
.uk-button-text-black:hover::before {
    border-bottom-color: var(--black)!important;
}

.uk-button-text-black-bold {
    font-weight: 600;
    color: var(--black)!important;
}
.uk-button-text-black-bold::before {
    border-bottom-color: var(--black)!important;
}
.uk-button-text-black-bold:hover {
    color: var(--black)!important;
}
.uk-button-text-black-bold:hover::before {
    border-bottom-color: var(--black)!important;
}

.hp-categories {
    background-color: #F8F8F8;
}

a.btn-hero {
    background-color: var(--secondary-color);
    color: var(--white);
    font-size: 1.2rem!important;
    padding: 1rem 2.5rem;
    text-decoration: none;
    transition: all .3s ease-in-out;
    border-radius: 0;
}
a.btn-hero:hover {
    background-color: var(--black);
    color: var(--white);
    text-decoration: none;
}

.trends-title {
    font-family: 'PF Grand Gothik Extended Black'!important;
    font-size: 2rem;
}
.trends-subtitle {
    font-family: 'PF Grand Gothik Extended Regular'!important;
    font-size: 1.5rem;
}

.usps-item .usps-title {
    font-family: "Open Sans", serif, -apple-system, BlinkMacSystemFont, "Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"!important;
    font-size: .85rem;
    color: #000000;
    font-weight: 500;
    text-decoration: none!important;
    transition: all .3s ease-in-out;
}
.usps-item p {
    font-family: "Open Sans", serif, -apple-system, BlinkMacSystemFont, "Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"!important;
    font-size: .85rem;
    color: #000000;
    transition: all .3s ease-in-out;
}
.usps-item img {
    filter: invert(0%) sepia(0%) saturate(1%) hue-rotate(0deg) brightness(100%) contrast(100%);
    transition: all .3s ease-in-out;
}
.usps-item:hover img {
    filter: invert(58%) sepia(26%) saturate(492%) hue-rotate(9deg) brightness(96%) contrast(84%);
}
.usps-item:hover .usps-title {
    color: #b8915a;
    text-decoration: none!important;
}

.onthego-img-container {
    background-color:rgba(184,145,90,1);
}
.onthego-empty {
    background-color:rgba(184,145,90,.4);
}
.onthego-img {
    max-width:250px;
    transform: skew(-10deg, 5deg);
    -webkit-box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75);
    box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75);
}

.banners .uk-overlay {
    padding: 10px!important;
}

@media (min-width: 960px) {
    .banners .uk-h1, .banners h1 {
        font-size: 2rem!important;
    }
}

@media ( max-width: 575px) {
    .uk-height-large {
        height: 900px;
    }
}

.btn-newsletter {
    background-color: var(--black);
    color: var(--white);
    border: 1px solid var(--black);
    text-decoration: none;
    transition: all .3s ease-in-out;
    font-size: 1.2rem!important;
    padding: 1rem 2.5rem;
    border-radius: 0;
}
.btn-newsletter:hover {
    background-color: var(--secondary-color);
    color: var(--white)!important;
    border: 1px solid var(--white);
    text-decoration: none;
}
.btn-newsletter:focus {
    box-shadow: 0 0 0 .25rem rgba(153, 119, 71, 0.25);
}

legend span.text-dark {
    color: #000000!important;
    font-weight: 500;
}

.uk-alert-success {
    color: #1c5e45!important;
}
.uk-alert-danger {
    color: #98271d!important;
}
.uk-alert-warning {
    color: #754723!important;
}

.uk-navbar-dropdown-grid>:not(.uk-first-column)::before {
    border-left: none!important;
}
.uk-navbar-dropdown-grid>.uk-grid-margin {
    margin-top: 10px;
}

.image-container {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}
  
.background-image {
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease;
}
  
.overlay-image {
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}
  
.image-container:hover .background-image {
    transform: scale(1.1);
}
  
.image-container:hover .overlay-image {
    opacity: 1;
}