:root {
    --container-width: 1920px;
    --container-slim-width: 768px;
    --container-padding: 0px;
    --default-vertical-margin: 60px;
    --section-vertical-margin: 60px;
    --page-top-margin: 60px;
    --page-side-margin: 37px;
    --page-bottom-margin: 40px;
    --default-product-cards-row-margin: 40px;
    --section-header-padding: 15px 0px;
    --page-content-padding: 0px 15px;
    --container-inner-width: calc(var(--container-width) - (2 * var(--container-padding)));
    --row-margin: -15px;
    --gallery-cards-gap: 30px;
    --gallery-cards-half-gap: 15px;
    --headers-font-family: 'Butler', serif;
    --body-font-family: 'Lato', sans-serif;
    --default-text-color: #0F0F0F;
    --second-text-color: #3D3B36;
    --brand-black-color: #0F0F0F;
    --brand-hover-black-color: #232323;
    --brand-pressed-black-color: #3e3e3e;
    --brand-disabled-color: #959595;
    --brand-pressed-color: #AA5C00;
    --brand-hover-color: #C76C00;
    --bg-main-color: #E8E8E8;
    --bg-additional-color: #FFF;
    --bg-second-color: #C4BDB3;
    --primary-gray-color:#6C6C6C;
    --gray-light-transparent-color: rgba(232, 232, 232, 0.30);
    --gray-semi-transparent-color: rgba(232, 232, 232, 0.50);
    --primary-grey-1: #6C6C6C;
    --body-font-size: 12px;
    --body-overflow: overlay;
    --cart-main-font-size: 11px;
    --font-weight-light: 300;
    --font-weight-semilight: 400;
    --font-weight-regular: 500;
    --font-weight-heavy: 600;
    --font-weight-bold: 700;
    --font-weight-bolder: 900;
    --body-line-height: 16px;
    --field-input-height: 48px;
    --button-height: 44px;
    --field-input-height-sm: 30px;
    --product-card-outer-gap: 20px;
    --section-header-letter-spacing: 0.25em;
}

@media (-webkit-max-device-pixel-ratio: 1.99) and (min-width: 1440px), (-webkit-min-device-pixel-ratio: 2) and (min-width: 1920px) {

}

/*condition for 3 columns on Mac, if needed*/
@media (-webkit-max-device-pixel-ratio: 1.99) and (min-width: 1024px) and (max-width: 1439px), (-webkit-min-device-pixel-ratio: 2) and (min-width: 1024px) and (max-width: 1919px) {
    :root{
        --page-top-margin: 60px;
        --page-side-margin: 37px;
        --page-bottom-margin: 40px;
        --default-vertical-margin: 60px;
        --section-vertical-margin: 60px;
    }
}

@media (-webkit-max-device-pixel-ratio: 1.99) and (min-width: 768px) and (max-width: 1023px), (-webkit-min-device-pixel-ratio: 2) and (min-width: 768px) and (max-width: 1023px) {
    :root{
        --page-top-margin: 40px;
        --page-side-margin: 15px;
        --page-bottom-margin: 40px;
        --default-vertical-margin: 40px;
        --section-vertical-margin: 32px;
    }
}

@media (-webkit-max-device-pixel-ratio: 1.99) and (min-width: 320px) and (max-width: 767px), (-webkit-min-device-pixel-ratio: 2) and (min-width: 320px) and (max-width: 767px) {
    :root {
        --page-top-margin: 40px;
        --page-side-margin: 15px;
        --page-bottom-margin: 40px;
        --default-vertical-margin: 40px;
        --section-vertical-margin: 32px;
    }
}
.content-with-padding {
    padding: var(--page-content-padding);
}
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    transition: all 0.3s ease;
    z-index: 10;
}
body.popup-opened .header {
    z-index: 5;
}
.overlay:not(.darker) {
    background-color: var(--color-7);
}
.overlay.darker {
    background-color: var(--color-8);
}
.overlay.blurred {
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}
.overlay:not(.active) {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.overlay.active {
    opacity: 1;
    visibility: visible;
    cursor: pointer;
}
.scrollbar-hidden {
    scrollbar-width: none;
}
.scrollbar-hidden::-webkit-scrollbar {
    width: 0;
    height: 0;
}
.scrollbar-slim {
    scrollbar-width: thin;
}
.scrollbar-slim:not(.scrollbar-khaki):not(.scrollbar-green) {
    scrollbar-color: rgb(0 0 0 / 30%) transparent;
}
.scrollbar-slim.scrollbar-khaki,
.scrollbar-slim.scrollbar-green {
    scrollbar-color: var(--bg-green) transparent;
}
.scrollbar-slim::-webkit-scrollbar {
    height: 5px;
    width: 5px;
}
.scrollbar-slim::-webkit-scrollbar-track,
.scrollbar-slim::-webkit-scrollbar-thumb {
    border-radius: 6px;
}
.scrollbar-slim.scrollbar-khaki::-webkit-scrollbar-thumb,
.scrollbar-slim.scrollbar-green::-webkit-scrollbar-thumb {
    background: var(--bg-green);
}
.scrollbar-slim:not(.scrollbar-khaki):not(.scrollbar-green)::-webkit-scrollbar-thumb {
    background: rgb(0 0 0 / 30%);
}
.scrollbar-slim.scrollbar-khaki::-webkit-scrollbar-track,
.scrollbar-slim.scrollbar-green::-webkit-scrollbar-track {
    background-color: var(--bg-khaki);
}
.no-border {
    border: none !important;
}
.rounded {
    border-radius: 100% !important;
}
.text-underline {
    text-decoration: underline;
}
.text-line-through {
    text-decoration: line-through;
}
.text-lowercase {
    text-transform: lowercase;
}
.text-uppercase {
    text-transform: uppercase;
}
.text-capitalize {
    text-transform: capitalize;
}
.text-italic {
    font-style: italic;
}
.text-center {
    text-align: center;
}
.text-right {
    text-align: right;
}
.text-left {
    text-align: left;
}
.text-nowrap {
    white-space: nowrap;
}
.text-light {
    font-weight: var(--font-weight-light);
}
.text-semilight {
    font-weight: var(--font-weight-semilight);
}
.text-regular {
    font-weight: var(--font-weight-regular);
}
.text-heavy {
    font-weight: var(--font-weight-heavy);
}
.text-bold {
    font-weight: var(--font-weight-bold);
}
.text-bolder {
    font-weight: var(--font-weight-bolder);
}
.text-ellipsis {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
}
.text-ellipsis, .text-ellipsis.one-line-clamp {
    -webkit-line-clamp: 1;
}
.text-ellipsis.two-line-clamp {
    -webkit-line-clamp: 2;
}
.text-ellipsis.three-line-clamp {
    -webkit-line-clamp: 3;
}
.text-ellipsis.four-line-clamp {
    -webkit-line-clamp: 4;
}
.text-main-gray {
    color: var(--text-main-color);
}
.text-white {
    color: rgb(255 255 255);
}
.text-green {
    color: var(--bg-green);
}
.text-red {
    color: red;
}
.text-yellow {
    color: var(--bg-yellow);
}
.text-orange {
    color: var(--bg-orange);
}
.text-khaki {
    color: var(--bg-khaki);
}
.text-extra-light-gray {
    color: var(--bg-extra-light-gray-color);
}
.text-light-gray {
    color: var(--bg-light-gray-color);
}
.text-light-gray-2 {
    color: var(--text-light-gray-color);
}
.text-mid-gray {
    color: var(--bg-mid-gray-color);
}
.text-dark-gray {
    color: var(--bg-dark-gray-color);
}
.text-butler {
    font-family: 'Butler', serif;
}
.bg-white {
    background-color: rgb(255 255 255);
}
.bg-yellow {
    background-color: var(--bg-yellow);
}
.bg-orange {
    background-color: var(--bg-orange);
}
.bg-green {
    background-color: var(--bg-green);
}
.bg-red {
    background-color: red;
}
.bg-khaki {
    background-color: var(--bg-khaki);
}
.bg-extra-light-gray {
    background-color: var(--bg-extra-light-gray-color);
}
.bg-light-gray {
    background-color: var(--bg-light-gray-color);
}
.bg-light-gray-2 {
    background-color: var(--text-light-gray-color);
}
.bg-mid-gray {
    background-color: var(--bg-mid-gray-color);
}
.bg-dark-gray {
    background-color: var(--bg-dark-gray-color);
}
.bg-dark-green {
    background-color: var(--bg-dark-green-color);
}
.no-padding {
    padding: 0 !important;
}
.move-top {
    margin-bottom: auto;
}
.move-left {
    margin-right: auto;
}
.move-right {
    margin-left: auto;
}
.move-bottom {
    margin-top: auto;
}
.move-center {
    margin: auto;
}
.hidden {
    display: none !important;
}
.overflow-hidden {
    overflow: hidden;
}
picture {
    height: 100%;
    width: 100%;
}
img:not(.img-stretch-vertical):not(.img-stretch-horizontal), object:not(.img-stretch-vertical):not(.img-stretch-horizontal),
body.device-mobile img.img-no-stretch-mobile, body.device-mobile object.img-no-stretch-mobile {
    height: auto;
    width: auto;
    max-height: 100%;
    max-width: 100%;
}
img.img-stretch-vertical, object.img-stretch-vertical,
body.device-mobile img.img-stretch-vertical-mobile, body.device-mobile object.img-stretch-vertical-mobile {
    height: 100%;
    width: auto;
}
img.img-stretch-horizontal, object.img-stretch-horizontal,
body.device-mobile img.img-stretch-horizontal-mobile, body.device-mobile object.img-stretch-horizontal-mobile {
    height: auto;
    width: 100%;
}

@supports (aspect-ratio: attr(width number) / 1) {
    img {
        aspect-ratio: attr(width number) / attr(height number);
    }
}

fieldset {
    border: none;
}
input, button, select, textarea {
    min-height: var(--field-input-height);
    padding: 10px 16px;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    -webkit-tap-highlight-color: var(--webkit-tap-highlight-color);
    outline: none;
}
input, button, select {
    background-color: transparent;
    border: none;
}
input:not(:disabled), button:not(:disabled), select:not(:disabled), textarea:not(:disabled) {
    cursor: pointer;
}
input[type="number"]::-webkit-outer-spin-button, input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
input[type="number"] {
    -moz-appearance: textfield;
}
input[type="search"]::-webkit-search-decoration, input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-results-button, input[type="search"]::-webkit-search-results-decoration {
    -webkit-appearance:none;
}

.btn {
    min-height: var(--button-height);
    padding: 9px 32px;
    font-size: 16px;
    line-height: 26px;
    cursor: pointer;
}
.btn:not(.btn-sm) {
    min-height: var(--button-height);
}
.btn.btn-sm {
    min-height: var(--field-input-height-sm);
}

.d-grid {
    display: grid;
}

.d-flex {
    display: flex;
}
.flex-column {
    flex-direction: column;
}
.flex-row-r {
    flex-direction: row-reverse;
}
.flex-column-r {
    flex-direction: column-reverse;
}
.flex-wrap {
    flex-wrap: wrap;
}
.flex-center {
    align-items: center;
    justify-content: center;
}
.flex-left {
    align-items: center;
    justify-content: left;
}
.flex-right {
    align-items: center;
    justify-content: right;
}
.flex-align-items-center {
    align-items: center;
}
.flex-align-items-start {
    align-items: flex-start;
}
.flex-align-items-end {
    align-items: flex-end;
}
.flex-justify-center {
    justify-content: center;
}
.flex-justify-space-between {
    justify-content: space-between;
}
.flex-justify-space-around {
    justify-content: space-around;
}
.flex-justify-space-evenly {
    justify-content: space-evenly;
}
.flex-justify-start {
    justify-content: flex-start;
}
.flex-justify-end {
    justify-content: flex-end;
}
.flex-auto {
    flex: 0 0 auto;
}
.flex-fill {
    width: 100%;
}
.flex-full-fill {
    height: 100%;
    width: 100%;
}
.flex-fill-half {
    width: 50%;
}
.relative {
    position: relative;
}
.sticky {
    position: sticky;
}
.top {
    top: 0;
}
.right {
    right: 0;
}
.bottom {
    bottom: 0;
}
.left {
    left: 0;
}
a, .link {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
    cursor: pointer;
}
a:hover, .link:hover {
    color: initial;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
}
.container-slim {
    width: 100%;
    max-width: var(--container-slim-width);
    margin-left: auto;
    margin-right: auto;
}

.row {
    margin-left: var(--row-margin);
    margin-right: var(--row-margin);
}

.prevent-select {
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Old versions of Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none; /* Non-prefixed version, currently supported by Chrome, Edge, Opera and Firefox */
}

body {
    color: var(--color-1);
    font-family: var(--body-font-family);
    font-size: var(--body-font-size);
    font-weight: var(--font-weight-semilight);
    line-height: var(--body-line-height);
    background-color: var(--color-3);
    -webkit-font-smoothing: antialiased;
}
body:not(.body-scroll-fixed) {
    overflow: var(--body-overflow);
}
body.body-scroll-fixed {
    overflow: hidden;
}

.checkout .field:not(.field-phone-input) input[type="text"].field-warning{
    box-shadow: 0px 0px 4px #f00;
}

div#CookiebotWidget {
    display: none;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

.gallery-cat-block + .gallery-cat-block {
    margin-top: 30px;
}
.gallery-cat-block .gallery-header-cont {
    margin-bottom: 20px;
}

/*
** Cookie styling is set here but imported in to Cookie bot dialog panel
*/
.m-cookie {
    position: fixed;
    width: 100%;
    bottom: -800px;

    box-sizing: border-box;
    padding: 32px 0 42px;
    font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
    color: #fff;
    background: #000;
    border-top: 1px solid #fff;
    z-index: 10;
}

@media only screen and (min-width: 768px) {

    .m-cookie__wrap {
        display: flex;
    }
}

.m-cookie .wrapper {
    position: relative;
    box-sizing: border-box;
    width: 90%;
    max-width: 1208px;
    margin: 0 auto;
}

.m-cookie__angle {
    display: none;
}

@media only screen and (min-width: 768px) {

    .m-cookie__angle {
        position: absolute;
        top: 0;
        left: 0;
        display: block;
    }
}

.m-cookie__left {
    box-sizing: border-box;
    max-width: 728px;
    margin-bottom: 24px;

}

@media only screen and (min-width: 768px) {

    .m-cookie__left {
        margin-bottom: 0;
        margin-right: 24px;
        padding-left: 70px;
    }

}

.m-cookie__right {
    box-sizing: border-box;
    display: flex;
    margin-left: auto;
    align-self: flex-end;
}

@media only screen and (min-width: 768px) {

    .m-cookie__right {
        display: block;
    }
}

@media only screen and (min-width: 1024px) {

    .m-cookie__right {
        display: flex;
    }
}

.m-cookie__title {
    box-sizing: border-box;
    font-size: 20px;
    line-height: 1.4;
    font-weight: 400;
    font-family: 'KazimirText-Semibold', Georgia, serif;
    margin-top: 0;
    margin-bottom: 8px;
}

@media only screen and (min-width: 768px) {

    .m-cookie__title {
        font-size: 24px;
        line-height: 1.42;
    }
}

.m-cookie__text {
    box-sizing: border-box;
    font-size: 14px;
    line-height: 1.57;
    margin: 0;
}

.m-cookie__text a {
    color: #fff;
    text-decoration: underline;
}

@media only screen and (min-width: 768px) {

    .m-cookie__text {
        font-size: 16px;
        line-height: 1.63;
    }
}

.m-cookie__button {
    box-sizing: border-box;
    position: relative;
    display: inline-block;
    width: 50%;
    max-width: 200px;
    font-size: 14px;
    line-height: 1.57;
    text-align: center;
    padding: 9px 20px 10px;
    color: #fff;
    border: 1px solid #fff;
    margin-right: 16px;
    background: #000;
    margin-left: auto;
    z-index: 1;
    cursor: pointer;
    overflow: hidden;
}

@media only screen and (min-width: 768px) {

    .m-cookie__button {
        box-sizing: border-box;
        width: 100%;
        font-size: 16px;
        line-height: 1.63;
        padding: 10px 20px 11px;
        margin-right: 24px;
        margin-bottom: 16px;
    }
}

.m-cookie__button::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 500%;
    min-width: 200px;
    height: 1000%;
    z-index: -1;
    transform-origin: 0% 0%;
    transform: translateX(-30%) translateY(10%) rotate(-22deg);
    transition: transform 1s;
    overflow: hidden;
}

.m-cookie__button:hover::after {
    transform: translateY(10%) translateX(50px) rotate(-15deg);
    background-color: #262626;
}

@media only screen and (min-width: 1024px) {

    .m-cookie__button {
        margin-bottom: 0;
        padding-left: 40px;
        padding-right: 40px;
    }
}

.m-cookie__button--secondary {
    color: #000;
    border-color: #fff;
    background: #fff;
    margin-right: 0;
    margin-bottom: 0;
}

.m-cookie__button--secondary:hover {
    color: #fff;
}

.m-cookie__button--secondary:hover::after {
    background-color: #000;
}

.m-modal {
    display: none;
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    margin: 0 auto;
    color: #000;
    background: #e9ebed;
    font-size: 14px;
    line-height: 1.57;
    max-width: 90%;
    max-height: 80vh;
    overflow-y: scroll;
    padding: 30px 40px 40px 40px;
    z-index: 2;
}

@media only screen and (min-width: 768px) {

    .m-modal {
        max-width: 54%;
    }
}

.m-modal h1 {
    font-size: 40px;
    line-height: 1.57;
    color: #000;
    opacity: 1;
    font-family: 'KazimirText-Regular', Georgia, serif;
    margin: 0 0 10px 0;
}

.m-modal__group {
    border: 0;
    margin: 20px 0 0 0;
    padding: 0;
}

.m-modal__legend {
    width: 100%;
    display: inline-block;
    font-size: 14px;
    line-height: 1.57;
    margin-bottom: 15px;
    font-weight: 700;
}

.m-modal .m-modal__group--checkbox .m-modal__check-item {
    display: block;
    margin-bottom: 10px;
}

.m-modal .m-modal__group--checkbox {
    cursor: pointer;
}

.m-modal input {
    position: absolute;
    opacity: 0;
}

.m-modal label {
    position: relative;
    display: inline-flex;
    align-items: center;
    margin-right: 10px;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.57;
}

.m-modal input+label:before {
    box-sizing: border-box;
    content: '';
    display: inline-block;
    width: 25px;
    height: 25px;
    padding: 2px;
    margin-right: 10px;
    border: 1px solid #a9abaf;
    text-align: center;
}

.m-modal input[type=checkbox]:checked+label:after {
    box-sizing: border-box;
    content: '';
    position: absolute;
    top: 4px;
    left: 9px;
    width: 6px;
    height: 14px;
    border: solid #000;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.m-modal input:hover+label:before,
.m-modal input:focus+label:before {
    border-color: #000;
}

.m-modal input:disabled+label:before {
    border-color: #eee;
}

.m-modal__buttons {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.m-modal__close {
    margin: 0;
}

.m-modal__close--cancel {
    position: absolute;
    top: 0;
    right: 0;
    border: 0;
    width: 50px;
    height: 50px;
    color: #fff;
    font-size: 30px;
    background: #000;
    cursor: pointer;
}

.m-modal__overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    cursor: pointer;
    background: #000;
    background: rgba(0, 0, 0, .2);
}

.m-modal__accordion-button {
    position: relative;
    border: 0;
    padding: 0;
    font-size: 14px;
    cursor: pointer;
    margin-bottom: 10px;
}

.m-modal__accordion-button--active .m-modal__accordion-arrow {
    top: -2px;
    transform: rotate(0);

}

.m-modal__accordion-arrow {
    position: absolute;
    top: 0;
    margin-left: 5px;
    display: inline-block;
    transform: rotate(180deg);
}

.m-modal__accordion-panel {
    max-height: 0;
    transition: max-height .3s ease-in;
    overflow: hidden;
}

.m-modal__table {
    overflow-x: scroll;
}

@media only screen and (min-width: 768px) {

    .m-modal__table {
        overflow-x: hidden;
    }
}

.m-modal__accordion-panel table {
    box-sizing: border-box;
    width: 100%;
    margin-top: 10px;
}

.m-modal__accordion-panel th {
    color: #fff;
    text-align: left;
    padding: 8px;
    background: #000;
    border: 1px solid #fff;
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
}

.m-modal__accordion-panel th:first-child {
    border-left: 1px solid #000;
}

.m-modal__accordion-panel th:last-child {
    border-right: 1px solid #000;
}

.m-modal__accordion-panel tr,
.m-modal__accordion-panel td {
    border: 1px solid #000;
}

.m-modal__accordion-panel td a {
    color: #000;
    text-decoration: underline;
}

.m-modal__accordion-panel td a:hover {
    text-decoration: none;
}

.m-modal__accordion-panel td {
    padding: 8px;
}

.m-modal__accordion-button--active + .m-modal__accordion-panel {
    max-height: 2000px;
}

/*=====top area of main page===========*/
.mp-slider-item-image {
    max-height: 932px;
    overflow: hidden;
}

.mp-slider-item-content-wrapper {
    width: 686px;
    top: 230px;
    position: absolute;
    left: calc(50% - 686px / 2);
}

.mp-slider-item-content {
    width: 100%;
    padding: 40px 0px;
    gap: 24px;
    background: rgba(232, 232, 232, 0.35);
    backdrop-filter: blur(2px);
}

.mp-slider-item-content-slogan {
    font-family: var(--headers-font-family);
    font-size: 50px;
    font-style: normal;
    font-weight: var(--font-weight-bold);
    line-height: 134%;
    color: var(--default-text-color);
    text-transform: uppercase;
}

.mp-slider-item-content-slogan-small {
    font-family: var(--body-font-family);
    font-size: 18px;
    font-weight: var(--font-weight-semilight);
    line-height: 28px;
}

.search-form {
    width: 350px;
    height: 48px;
    border-radius: 2px;
    border: 1px solid #3D3B36;
    background: rgba(232, 232, 232, 0.10);
    display: flex;
    padding: 12px 14px;
    align-items: flex-start;
    gap: 8px;
    justify-content: space-between;
}

.search-icon, .clear-icon {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.clear-icon {
    cursor: pointer;
}

.search-icon img, .clear-icon img {
    width: 100%;
    height: 100%;
}

input.search-field {
    height: 48px;
    margin-top: -12px;
    line-height: 48px;
    color: #3D3B36;
    font-family: var(--body-font-family);
    font-size: 16px;
    font-weight: var(--font-weight-semilight);
}

.mp-slider-link-btn{
    min-width: 192px;
    max-width: 280px;
    height: 44px;
    padding: 9px 32px;
    gap: 10px;
    background: var(--brand-black-color);
    color: #fff;
    text-decoration: none;
    font-family: var(--headers-font-family);
    font-size: 15px;
    font-weight: var(--font-weight-bold);
    line-height: 26px;
    text-transform: uppercase;
}

.mp-slider-link-btn:hover{
    color: #fff;
}

@media (min-width: 1440px) {

}

@media (min-width: 1024px) and (max-width: 1439px) {
    .mp-slider-item-image {
        max-height: 699px;
    }

    .mp-slider-item-content-wrapper {
        top: 112px;
    }

    .mp-slider-item-content-slogan-small {
        font-size: 18px;
        font-weight: var(--font-weight-regular);
    }

    .mp-text-section-1{
        max-width: 691px;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .mp-slider-item-image {
        max-height: 699px;
    }

    .mp-slider-item-content-wrapper {
        width: calc(100% - 42px);
        top: 163px;
        left: 21px;
    }

    .mp-slider-item-content-slogan {
        font-size: 40px;
        line-height: 125%;
    }

    .mp-slider-item-content-slogan-small {
        font-size: 18px;
        font-weight: var(--font-weight-regular);
        line-height: 28px;
    }

    .mp-text-section{
        max-width: 100%;
        gap: 10px;
    }

    .mp-text-section-1{
        max-width: 100%;
    }
}

@media (min-width: 320px) and (max-width: 767px) {
    .mp-slider-item-image {
        max-height: 600px;
    }

    .mp-slider-item-content-slogan p {
        word-break: break-word;
    }

    .mp-slider-item-content-wrapper {
        width: calc(100% - 42px);
        top: 105px;
        left: 21px;
    }

    .mp-slider-item-content-slogan {
        font-size: 32px;
        line-height: 125%;
    }

    .mp-slider-item-content-slogan-small {
        font-size: 16px;
        font-weight: var(--font-weight-semilight);
        line-height: 26px;
    }

    .search-form {
        width: 311px;
    }
}

/*=====top area of main page===========*/

@media (max-width: 767px) {

    body.device-mobile header .header-menu-dropdown-area {
        position: fixed;
        top: 49px;
        bottom: 0;
        right: 0;
        transition: 0.2s left linear, 0.3s background-color ease-in-out;
        display: block;
    }

    body.device-mobile header .header-menu-button:not(.active) + .header-menu-dropdown-area {
        left: -300px;
        pointer-events: none;
        display: none;
    }

    .flex-wrap-mobile{
        flex-wrap: wrap;
    }

    .flex-justify-space-between-mobile{
        justify-content: space-between;
    }

    .flex-justify-space-around-mobile{
        justify-content: space-around;
    }

    .flex-fill-mobile{
        width:100%;
    }
}

@media screen and (max-device-width: 480px){
    body{
        -webkit-text-size-adjust: none;
    }
}
