@font-face {
    font-family: 'Philosopher';
    src: url('../fonts/Philosopher/Philosopher-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Philosopher';
    src: url('../fonts/Philosopher/Philosopher-Italic.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: 'Philosopher';
    src: url('../fonts/Philosopher/Philosopher-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Philosopher';
    src: url('../fonts/Philosopher/Philosopher-BoldItalic.ttf') format('truetype');
    font-weight: bold;
    font-style: italic;
}

@font-face {
    font-family: 'Mulish';
    src: url('../fonts/Mulish/Mulish-VariableFont_wght.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Mulish';
    src: url('../fonts/Mulish/Mulish-Italic-VariableFont_wght.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
}

body {
    font-family: 'Philosopher', 'Mulish';
    margin: 0px;
    overflow-x: hidden;
    width: 100%;
}

main {
    flex-direction: column;
    display: flex;
    overflow: hidden;
}

main> :first-child {
    margin-top: 128px;
}

.content-header {
    position: relative;
    width: calc(100% - 872px);
    height: 200px;
    margin: 0 auto;
    padding: 0 436px;
    background: linear-gradient(rgba(127, 11, 14, 0.95), rgba(65, 7, 9, 0.95)), url('/images/redesign-homepage/Header Image-No Overlay.webp');
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.content-header::before {
    content: '';
    position: absolute;
    top: 70px;
    height: 0px;
    width: 328px;
    left: 0;
    border: 1px solid #F7E4A5;
}

.content-header h1 {
    color: #F7E4A5;
    font: normal normal bold 50px/60px Philosopher;
    margin: 0 0 20px 0;
    text-align: left;
}


.breadcrumbs {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin: 0;
    padding: 0;
    font: normal normal normal 16px/32px Mulish;
    letter-spacing: 0px;
}

.breadcrumbs>a:hover {
    color: #F7E4A5;
}

.breadcrumbs>* {
    color: #F5F1E2;
    transition: color 0.2s;
    text-decoration: none;
    cursor: pointer;
}

.breadcrumbs>a:hover {
    color: #F7E4A5;
}

.breadcrumbs :not(:first-child)::before {
    content: '>';
    margin: 0px 12px;
    color: #F5F1E2;
    font-weight: normal;
}

.breadcrumbs> :last-child {
    font-weight: bold;
    letter-spacing: 1;
}

.content-section {
    position: relative;
    width:100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 100px 0;
    color: #0B0B0B;
    background: none;
    z-index: 1;
    font: normal normal normal 18px/32px Mulish;
    min-height:400px;
}

.alt-bg-light {
    background-color: #F5F1E2;
}

.alt-bg-red {
    background-color: #7F0B0E;
}

footer::after,
.content-section::after {
    content: '';
    position: absolute;
    top: 0;
    height: 100%;
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
    background: inherit;
    z-index: -1;
}

.content-section.alt-bg-light::after {
    background-color: #F5F1E2;
}

.content-section.alt-bg-red {
    color: #F5F1E2;
}

.content-section.alt-bg-red::after {
    background: linear-gradient(to bottom, #7F0B0E, #410709);
}

.section-boxes {
    position: absolute;
    width: 100%;
    height: 50px;
    border-width: 0 0 2px 2px;
    border: 2px solid #CC9F09;
    z-index: 1;
}

.section-boxes.top-left {
    top: 0px;
    left: -100%;
    border-top: none;
}

.section-boxes.bottom-right {
    top: calc(100% - 52px);
    left: 100%;
    border-bottom: none;
}

.alt-bg-red .section-boxes {
    border-color: #7F0B0E;
}


h1,
h2,
h3,
h4,
h5 {
    color: #290506;
    letter-spacing: 0px;

}

.alt-bg-red h1,
.alt-bg-red h2,
.alt-bg-red h3,
.alt-bg-red h4,
.alt-bg-red h5 {
    color: #F7E4A5;
}

h1 {
    font-size: 50px;
    margin: 30px;
}

h2 {
    font-size: 50px;
    margin: 30px;
    margin-left: 0;
    line-height: 1;
}

h3 {
    font-size: 38px;
    margin: 30px 30px 10px 0px;
}

h4 {
    margin: 30px;
    font: normal normal bold 18px/32px Mulish;
    letter-spacing: 1.35px;
}

.alt-bg-red h4 {
    color: #fff;
}

h5 {
    position: relative;
    background-color: #F5F1E2;
    padding: 32px;
    font-size: 22px;
    line-height: 1.5;
    margin: 32px;
}

h5::before,
h5::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 50px;
    border-width: 0 0 2px 2px;
    border: 2px solid #CC9F09;
}

h5::before {
    top: -2px;
    left: -2px;
    border-right: none;
    border-bottom: none;
}

h5::after {
    bottom: -2px;
    right: -2px;
    border-top: none;
    border-left: none;
}

.alt-bg-light h5 {
    background-color: #FFF;
}

.alt-bg-light h5::before,
.alt-bg-light h5::after {
    border-color: #CC9F09;
}

.alt-bg-red h5 {
    background-color: #290506;
    color: inherit;
}

.alt-bg-red h5::before,
.alt-bg-red h5::after {
    border-color: #7F0B0E;
}

p,
ul {
    color: inherit;
    font: normal normal normal 18px/32px Mulish;
    letter-spacing: 0px;
    margin: 6px;
    font-size: 18px
}

main ul {
    list-style-type: none;
    margin: 30px;
    padding-left: 34px;
}


main ul li {
    color: inherit;
    margin-top: 20px;
    position: relative;
}

main ul li:before {
    content: "";
    background-image: url('/images/logos/leaves.png');
    background-size: contain;
    width: 20px;
    height: 20px;
    position: absolute;
    top: 6px;
    left: -26px;
}

li a,
p a {
    font: normal normal bold 18px/32px Mulish;
    letter-spacing: 0px;
    color: #7F0B0E;
    position: relative;
    cursor: pointer;
    text-decoration: none;
}

li a:hover,
p a:hover {
    color: #410709;
    text-decoration: underline;
    text-decoration-color: #F7E4A5;
    text-decoration-thickness: 8px;
    text-underline-offset: -5px;
    text-decoration-skip-ink: none;
}

.alt-bg-light p a:hover {
    text-decoration-color: #EBCB62;
}

.alt-bg-red p a {
    color: #fff;
    text-decoration-color: #290506;
}

.highlight-red {
    color: #7F0B0E
}

.highlight-yellow {
    color: #F7E4A5;
}

[class^='btn-'] {
    display: inline-block;
    cursor: pointer;
    padding: 0 40px 0 27px;
    text-align: left;
    border: none;
    font: normal normal bold 18px/27px Mulish;
    height: 50px;
    border-radius: 27px;
    transition: background-color 0.3s;
    position: relative;
    letter-spacing: 2px;
}

[class^='btn-']::after {
    content: '>';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    display: inline-block;
    width: 12px;
    height: 15px;
    border: 2px solid #000000;
    border-radius: 50%;
    text-align: center;
    line-height: 14px;


    /* FROM OLD GLOBAL VVVVV*/
    font-size: 15px;
    color: #000000;
    font-weight: bold;
    padding-left: 4px;
}

.btn-default {
    background-color: #7F0B0E;
    color: #ffffff;
    padding-left: 15px;
}

.btn-default:hover {
    background-color: #410709;
}

.btn-default::after {
    color: #ffffff;
    border-color: #ffffff;
}

.alt-bg-red .btn-default:hover {
    background-color: #290506;
}

.btn-alt {
    background-color: #F7E4A5;
    color: #000000;
}

.btn-alt:hover {
    background-color: #EBCB62;
}

.alt-bg-light .btn-alt,
.alt-bg-red .btn-alt {
    background-color: #EBCB62;
}

.alt-bg-light .btn-alt:hover,
.alt-bg-red .btn-alt:hover {
    background-color: #CC9F09;
}

.btn-border-only {
    background-color: inherit;
    border: 3px solid #410709;
    color: #410709;
}

.btn-border-only:hover {
    border-color: #000000;
    color: #000000;
}

.alt-bg-red .btn-border-only::after,
.alt-bg-red .btn-border-only {
    border-color: #F5F1E2;
    color: #F5F1E2;
}

.alt-bg-red .btn-border-only:hover::after,
.alt-bg-red .btn-border-only:hover {
    border-color: #CC9F09;
    color: #CC9F09;
}

.read-more {
    cursor: pointer;
    padding: 0px 27px;
    text-align: left;
    border: none;
    font: normal normal bold 18px/27px Mulish;
    height: 50px;
    width: 200px;
    position: relative;
    letter-spacing: 2px;
    background-color: inherit;
    z-index: 2;
}

.read-more::before {
    transition: background-color 0.25s;
    content: '';
    z-index: -1;
    background-color: #F7E4A5;
    position: absolute;
    bottom: 8px;
    left: 0px;
    height: 33%;
    width: 100%;
    border-radius: 27px;
}

.read-more::after {
    content: 'V';
    position: absolute;
    right: 15px;
    top: 0;
    transform: translateY(75%);
    display: inline-block;
    width: 13px;
    height: 15px;
    border: 2px solid #000000;
    border-radius: 50%;
    text-align: center;
    line-height: 15px;
    font-size: 11px;
    color: #000000;
    font-weight: bold;
    padding-left: 2px;
    transition: transform 0.3s;
    transform-origin: 50% 90%;
}

.read-more:hover::before {
    background-color: #EBCB62;
}

.read-more.selected::after {
    transform: rotate(180deg);
}

.alt-bg-light .read-more::before {
    background-color: #EBCB62;
}

.alt-bg-light .read-more:hover::before {
    background-color: #CC9F09;
}

.alt-bg-red .read-more {
    color: #F5F1E2;
}

.alt-bg-red .read-more::before {
    background-color: #7F0B0E;
}

.alt-bg-red .read-more:hover::before {
    background-color: #290506;
}

.background-img {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}


.full-screen-product-categories .center-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 62%;
    min-height: 115px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    flex-wrap: wrap;
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.92);
    border-top-right-radius: 88px;
}

.no-margin {
    margin: 0;
}
.image-button-options {
    text-align: center;
    width: 1367px;
    margin: 0 auto 125px auto;
    text-align: left;
    position: relative;
    padding-top: 50px;
}
.image-button-options:first-of-type {
    margin-bottom: 250px
}

.image-button-options h2,
.image-button-options h3 {
    font-size: 50px;
    margin: 0;
}

.image-button-options p {
    font-size: 18px;
    width: min(90vw, 1048px);
    margin: 32px auto;
    margin-left: 0;
    color: black;
}

.slider {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-top: 24px;
}

.img-btn h3 {
    font-size: 26px;
    margin: 20px auto 0;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    transition: color 0.3s;
    width: 300px;
}

.img-btn p {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    transition: color 0.3s;
    top: 312px;
    width: 100%;
}

.img-btn:hover h3 {
    color: #7F0B0E;
}

.img-btn img {
    width: 286px;
    height: 286px;
    z-index: 1;
    display: block;
    object-fit: cover;
}

.img-btn {
    cursor: pointer;
    position: relative;
    z-index: 1;
    text-align: center;
    margin-right: 32px;
}

.img-btn:hover::before {
    transition: background 0.3s;
}

.img-btn:hover::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, #7F0B0E00, #7F0B0E80);
    z-index: 1;
    pointer-events: none;
}

.img-btn::after {
    content: '';
    position: absolute;
    width: 184px;
    height: 184px;
    top: -5px;
    right: -5px;
    background-color: #F7E4A5;
    z-index: -1;
    transition: background 0.3s;
}

.img-btn:hover::after {
    background-color: #7F0B0E;
}

.half-half {
    display: flex;
    width: 100%;
    padding: 0;
    flex-direction: row;
    position: relative;
}
@media only screen and (min-width: 768px) {
    .half-half-text {
        max-width:calc(100% - 900px);
    }
}

.half-half.reversed {
    flex-direction: row-reverse
}

.half-half .single-img img {
    width: 728px;
    height: 604px;
    border-top-right-radius: 254px;
}

.half-half.reversed .single-img img {
    border-top-left-radius: 366px;
    border-top-right-radius: 0;
}

.half-half .text-content {
    flex: 0 1 725px;
    margin: 30px auto 0px 140px;
}

.half-half .text-content::after,
.half-half.reversed .text-content::after {
    content: '';
    width: 100%;
    height: 1px;
    background-color: #CC9F09;
    position: absolute;
    top: 100px;
    right: calc(-100% + 200px);
}

.half-half.reversed .text-content::after {
    right: unset;
    left: calc(-100% + 200px);
}

.half-half h3 {
    font-size: 50px;
}

.reversed .text-content {
    margin: 30px 140px 0px auto;
}

.text-content p {
    width: 725px;
}

.half-half.introduction {
    padding: 24px 0 0 0;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.half-half.introduction .single-img {
    width: 45vw;
    height: 54vh;
}

.half-half.introduction .single-img img {
    width: 100%;
    height: 100%;
}

.half-half.introduction .text-content {
    margin: auto !important;
    display: block !important;
}

@media (min-width: 2000px) {
    .reversed .text-content {
        margin: 30px auto 0px 300px;
    }
}

.overlay-img {
    height: 631;
    padding: 100px 0px;
    margin: 0px auto;
    justify-content: center;
}

.overlay-img .text-content {
    width: 400px;
    height: 540px;
    flex: 0 0 400px;
    margin: 0;
}

.overlay-img .text-content h3 {
    width: 400px;
    height: fit-content;
    margin: 0;
    color: #290506;
    line-height: 1;
}

.overlay-img.alt-bg-red .text-content h3 {
    color: #F5F1E2;
}

.overlay-img .text-content p {
    width: 100%;
    margin: 0;
    padding: 32px 0px;
}

.dual-img {
    position: relative;
    height: 550px;
    width: 500px;
    margin: 0px auto;
}

.dual-img::after {
    content: '';
    background-color: inherit;
    width: 500px;
    height: 500px;
    background-image: url(/images/logos/grapes-tan.png);
    background-size: cover;
    background-position: center;
    filter: saturate(0.15) brightness(2);
    position: absolute;
    top: 120px;
    left: -425px;
    z-index: 0;
}

.reversed .dual-img::after {
    transform: scaleX(-1);
    left: unset;
    right: -425px;
}

.alt-bg-red .dual-img::after {
    background-image: url(/images/logos/grapes.png);
    filter: brightness(0.5);
}

.dual-img.red-grapes::after {
    background-image: url(/images/logos/grapes.png);
    filter: brightness(1)opacity(0.88);
}

.footer-foot div:last-child::after,
.overlay-img .text-content::after {
    display: none;
}

.dual-img .big-img {
    width: 400px;
    height: 417px;
    position: absolute;
    top: 0;
    left: 0px;
    z-index: 1;
}

.reversed .dual-img .big-img {
    right: 0px;
    left: unset;
}

.dual-img .small-img {
    width: 291px;
    height: 304px;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 2;
}

.reversed .dual-img .small-img {
    left: 0px;
    right: unset;
}


.dual-img.reversed .big-img {
    left: 0px;
    right: unset;
}

.dual-img.reversed .small-img {
    right: 0px;
    left: unset;
}

.questions {
    background: linear-gradient(to bottom, #FFFFFF, #F5F1E2);
    text-align: center;
    margin: 0;
    width: 100%;
    height: fit-content;
    padding: 24px 0;
    padding-top: 100px;
}
@media only screen and (min-width: 768px) {
    .questions {
        height: fit-content;
    }
}
@media only screen and (max-width: 768px) {
    .questions {
        padding-top: 24px;
    }
}

.questions.alt-bg-red {
    background: linear-gradient(to bottom, #7D0B0E, #290506);
}

.questions h3 {
    font-size: 50px;
    color: #410709;
    margin: 0;
    line-height: 50px;
}

.questions.alt-bg-red h3 {
    color: #F7E4A5;
}

.questions p {
    letter-spacing: 0;
}

/* .questions::after {
    content: '';
    width: 500px;
    height: 500px;
    transform: scaleX(-1);
    background-image: url(/images/logos/grapes-tan.png);
    filter: saturate(0.2) brightness(2.1);
    position: absolute;
    top: -15px;
    left: calc(100% - 700px);
    opacity: 0.6;
}

.questions.alt-bg-red::after {
    background-image: url(/images/logos/grapes.png);
    filter: brightness(0.2) saturate(2);
} */


footer {
    display: flex;
    flex-direction: column;
    width: auto;
    background: linear-gradient(to right, #FFFFFF, #F5F1E2);
    margin: 0 20%;
    padding: 50px 0 100px;
    position: relative;
    z-index: 0;
}

.footer-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin: 0;
    width: 100%;
    height: 100px;
}

.footer-header img {
    width: 292px;
    height: auto;
}

.footer-header button::after {
    content: '^';
    padding-right: 2px;
    height: 16px;
    line-height: 16px;
    right: 12px;
    top: calc(50% + 2px);
}

.footer-mid {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin: 0;
    width: 100%;
}

.footer-mid .address,
.footer-mid .phone-number {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    margin-top: 20;
    font: normal normal normal 16px/32px Mulish;
    letter-spacing: 0px;
    color: #0B0B0B;
}

.footer-mid .address p,
.footer-mid .phone-number p {
    margin: 10;
}

.footer-mid i {
    margin: auto 10px;
    color: #CC9F09;
}

.footer-mid .address i {
    margin-top: 18;
}

.footer-mid .footer-logos {
    margin: 0px 0px 0px auto;
}

.footer-mid .footer-logos img {
    margin: 0 16px;
}

.footer-foot {
    display: flex;
    flex-direction: row;
    justify-content: center;
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 105%;
    padding: 15px;
    font: normal normal bold 16px/32px Mulish;
    letter-spacing: 2;
}

.footer-foot div {
    padding: 0px 20px;
    position: relative;
}

.footer-foot div::after {
    content: '';
    border-left: 3px solid black;
    position: absolute;
    right: 0px;
    display: inline-block;
    height: 12px;
    top: 10px;
}

footer a {
    text-decoration: none;
    color: inherit;
    font-weight: unset;
}


/* FROM OLD GLOBAL VVVVV*/
.featured {
    margin: 5px auto;
    position: relative;
}

.featured img {
    object-fit: cover;
    width: 420px;
    height: 300px;
}

.featuredTitle {
    width: 100%;
    height: 25px;
    bottom: 0px;
    background-color: rgba(0, 0, 0, 0.8);
    position: absolute;
    font-size: 28px;
    color: white;
    text-align: center;
    padding-top: 20px;
    padding-bottom: 20px;
    border-bottom: solid 8px #7F0B0E;
    overflow: hidden;
    cursor: pointer;
}

.featuredTitle-top {
    width: 100%;
    height: 25px;
    top: 0px;
    background-color: rgba(0, 0, 0, 0.6);
    position: absolute;
    font-size: 28px;
    color: white;
    text-align: center;
    padding-top: 20px;
    padding-bottom: 20px;
    border-top: solid 8px #7F0B0E;
    overflow: hidden;
    cursor: pointer;
}

.featuredTitle-top2 {
    width: 100%;
    height: 25px;
    top: 0px;
    background-color: rgba(0, 0, 0, 0.6);
    font-size: 28px;
    color: white;
    text-align: center;
    padding-top: 20px;
    padding-bottom: 20px;
    border-top: solid 8px #7F0B0E;
    overflow: hidden;
    cursor: pointer;
}

.featuredDesc {
    font-size: 18px;
    color: white;
    text-align: center;
}

.featured h3 {
    color: white;
    font-size: 32px;
}

.collectionItem {
    width:125px;
    padding:10px;
    margin:10px;
    font-size: 14px;
    border:1px solid whitesmoke;
    box-shadow: 0 0 5px 2px whitesmoke;
}
.collectionImage {
    width: 150px;
    height:200px;
    object-fit: contain;
}
.collectionTextTitle {
    color: #290506;
    text-decoration: none;
    font-family: 'Philosopher';
    display: block;
    line-height: 20px;
}
.collectionPrice {
    color: #7F0B0E;
    font-family: 'Mulish';
    font-weight: bold;
    line-height: 18px;
}

/* FROM OLD GLOBAL ^^^^^*/


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

    .mobile-hide,
    .content-header::before,
    .section-boxes {
        display: none !important;
    }

    main> :first-child {
        margin-top: 48px;
    }

    .content-header {
        width: calc(100vw - 48px);
        padding: 24px;
    }

    .content-section {
        width: 90vw;
        padding: 32px 0;
    }

    .featured img {
        width: 100%;
        height: auto
    }

    .mobile-wrap {
        /* flex-wrap: wrap; */
        /* height: auto; */
        /* padding: 50px 0px; */
    }

    .image-button-options>.slider:first-child>.img-btn {
        margin-bottom: 250px;
    }

    .image-button-options {
        width: 100vw;
        margin-bottom: 0;
    }

    .image-button-options:first-of-type {
        margin-bottom: 0px;
    }
    .image-button-options:first-of-type .img-btn {
        margin-bottom: 250px;
    }

    .image-button-options p {
        margin-left: auto;
    }

    .image-button-options>h2,
    .image-button-options>h3 {
        font-size: 34px;
        margin: 24px 24px;
    }

    .slider {
        justify-content: center;
        flex-wrap: wrap;
    }

    .img-btn {
        margin: 24px;
        margin-bottom: 100px;
    }

    .img-btn h3 {
        width: 100%;
    }


    .dual-img {
        width: 95%;
        height: 350px;
        margin: 0;
    }

    .dual-img .big-img {
        width: 262px;
        height: 273px;
        top: 0;
        left: 0;
    }

    .dual-img .small-img {
        width: 204px;
        height: 213px;
        bottom: 0;
        right: 0;

    }

    .dual-img::after {
        width: 190px;
        height: 150px;
        top: 225px;
        left: -23px;
    }

    .overlay-img .text-content {
        width: calc(100% - 48px);
        height: auto;
        padding: 24px;
        padding-top: 50px;
        flex: unset;
        letter-spacing: 0px;
    }

    .overlay-img .text-content h3 {
        font: normal normal bold 34px/34px Philosopher;
        letter-spacing: 0px;
        width: auto;
        height: auto;
    }

    .overlay-img button {
        margin: auto;
    }

    .half-half .single-img img {
        width: 352px;
        height: 220px;
        border-radius: 0px 150px 0px 0px;
    }

    .half-half .text-content::after {
        display: none;
    }

    .half-half .text-content {
        margin: 0;
        flex: 0 0 100vw;
        max-width: 100vw;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .half-half .text-content h3 {
        font: normal normal bold 34px/34px Philosopher;
        width: 329px;
        margin: 24px auto;
        text-align: center;
    }

    .half-half .text-content p {
        width: auto;
        margin: 0;
        text-align: center;
        padding: 0 24px;
        margin-bottom: 24px;
    }

    footer {
        width: 329px;
        margin: 0 auto;
        padding-bottom: 50px;
    }

    .footer-header {
        justify-content: center;
    }

    .footer-header button {
        position: absolute;
        top: 285px;
    }

    .footer-mid {
        flex-direction: column;
    }

    .footer-mid .footer-logos {
        margin-top: 80px;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-mid .footer-logos img {
        margin: 8px auto;
    }

    .footer-mid .address,
    .footer-mid .phone-number {
        font: normal normal normal 16px/32px Mulish;
        margin: 0;
    }

    .footer-foot {
        flex-wrap: wrap;
        font: normal normal bold 10px/27px Mulish;
        justify-content: flex-start;
        padding: 0;
        flex-direction: column-reverse;
        position: relative;
        top: 10px;
    }

    .copyright {
        width: 100%;
    }

    .copyright::after {
        display: none !important;
    }

    .footer-foot div {
        padding: 0px;
        margin: auto;
        padding-right: 10px;
        text-align: center;
    }

    .footer-foot div::after {
        display: none;
        right: 3px;
        height: 10px;
        top: 8px;
    }

}