@font-face {
    font-family: 'Moderat';
    src: url('../font/Moderat-Bold.woff2') format('woff2'),
        url('../font/Moderat-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Moderat';
    src: url('../font/Moderat-Medium.woff2') format('woff2'),
        url('../font/Moderat-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Moderat';
    src: url('../font/Moderat-Regular.woff2') format('woff2'),
        url('../font/Moderat-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}



@font-face {
    font-family: 'Georgia';
    src: url('../font/Georgia-Bold.woff2') format('woff2'),
        url('../font/Georgia-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}



@font-face {
    font-family: 'Georgia';
    src: url('../font/Georgia.woff2') format('woff2'),
        url('../font/Georgia.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}



:root {
    --primary: #A51C2F;
    --secondary: #FFFAFA;
    --tertiary: #F8EDEF;
    --btn-bg: #A51C30;
    --primary-font: "Moderat", sans-serif;
    --secondary-font: "Georgia", sans-serif;
    --light: white;
    --transition: all 0.5s ease-in-out;
}

* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Georgia', sans-serif;
    -webkit-transition: 0.35s ease-in-out;
    -o-transition: 0.35s ease-in-out;
    color: var(--primary);
    transition: 0.35s ease-in-out;
    overflow: clip;
}


/* h2 {
    font-size: clamp(40px, 3vw, 50px);
    font-family: var(--primary-font);
    color: var(--primary);
    line-height: 1.3;
    font-weight: bold;
} */

.section-heading {
    font-size: clamp(30px, 3vw, 36px);
    font-family: var(--primary-font);
    color: var(--primary);
    line-height: 1.3;
    font-weight: 700;
    letter-spacing: -1%;
    text-transform: uppercase;

}


a,
a:active,
a:hover {
    text-decoration: none;
    outline: 0;
    color: var(--primary);
    cursor: pointer;
    transition: var(--transition);
}

/* a:visited {
    color:whitesmoke;
} */

p {
    color: black;
    /* margin-bottom: 1.5rem; */
    line-height: 1.6;
    font-family: var(--secondary-font);
    font-style: normal;
    font-weight: 400;
}

img {
    max-width: 100%;
    height: auto;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    vertical-align: middle;
}

.btn {
    border: none;
    background: var(--btn-bg);
    border-radius: 10px;
    padding: 10px 25px;
    color: white;
    align-items: center;
    position: relative;
    display: flex;
    gap: 10px;
    align-items: center;
    width: fit-content;
    font-family: var(--secondary-font);
    cursor: pointer;
    font-size: 16px;
    line-height: 24px;
    border: 1px solid var(--primary);
    transition: var(--transition);
}

.btn-center,
.div-center {
    margin: 0 auto;
}


.btn:hover {
    background-color: transparent;
    color: var(--primary);
    transition: var(--transition);
}


.position-relative {
    position: relative;
}

.column-1 {
    grid-column: span 1;
}

.row-1 {
    grid-row: span 1;
}

.column-2 {
    grid-column: span 2;
}

.row-2 {
    grid-row: span 2;
}

.column-3 {
    grid-column: span 3;
}

.row-3 {
    grid-row: span 3;
}

.column-4 {
    grid-column: span 4;
}

.row-4 {
    grid-row: span 4;
}

.column-5 {
    grid-column: span 5;
}

.row-5 {
    grid-row: span 5;
}

.column-6 {
    grid-column: span 6;
}

.row-6 {
    grid-row: span 6;
}

.column-7 {
    grid-column: span 7;
}

.row-7 {
    grid-row: span 7;
}

.column-8 {
    grid-column: span 8;
}

.row-8 {
    grid-row: span 8;
}

.column-9 {
    grid-column: span 9;
}

.row-9 {
    grid-row: span 9;
}

.column-10 {
    grid-column: span 10;
}

.row-10 {
    grid-row: span 10;
}

.column-11 {
    grid-column: span 11;
}

.row-11 {
    grid-row: span 11;
}

.column-12 {
    grid-column: span 12;
}

.row-12 {
    grid-row: span 12;
}

.sticky {
    position: -webkit-sticky;
    position: sticky;
    top: 100px;
}

.section {
    padding-top: 50px;
}

.flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

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

.flex-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.h-100 {
    height: 100%;
}

.mb-5 {
    margin-bottom: 30px;
}

.mt-48 {
    margin-top: 40%;
}

.flex-inline {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
}

/* .flex-inline::after,
.flex-inline::before,
.flex::after,
.flex::before {
    display: none;
} */

.flex-left {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.flex-center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.flex-right {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.flex-between {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.flex-around {
    -ms-flex-pack: distribute;
    justify-content: space-around;
}

.flex-middle {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.flex-bottom {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.flex-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}

.flex-row-reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

.grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-gap: 30px;
}

@media (max-width: 992px) {

    .column-1,
    .column-2,
    .column-3,
    .column-4,
    .column-5,
    .column-6,
    .column-7,
    .column-8,
    .column-9,
    .column-10,
    .column-11,
    .column-12 {
        grid-column: span 6;
    }

    .grid {
        grid-gap: 16px;
    }
}

@media (max-width: 768px) {

    .column-1,
    .column-2,
    .column-3,
    .column-4,
    .column-5,
    .column-6,
    .column-7,
    .column-8,
    .column-9,
    .column-10,
    .column-11,
    .column-12 {
        grid-column: span 12;
    }
}

.mt-40 {
    margin-top: 4rem;
}

.mt-5 {
    margin-top: 2rem;
}

.left-column {
    -webkit-box-flex: 3;
    -ms-flex: 3;
    flex: 3;
    padding-right: 3rem;
}

.right-column {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    width: 300px;
    min-width: 300px;
}

.section-margin {
    margin: clamp(40px, 3vw, 70px) 0;
}

.section-padding {
    padding: clamp(40px, 5vw, 80px) 0;

}

.padding-top {
    padding-top: clamp(40px, 5vw, 80px);
}

.padding-bottom {
    padding-bottom: clamp(40px, 5vw, 80px);

}

.section-sm {
    padding: 14px 0;
}

.section-md {
    padding: clamp(40px, 3vw, 60px) 0;
}

.section-lg {
    padding: 100px 0;
}

.mg-gap {
    margin: clamp(35px, 3vw, 60px) 0 0;
}

.pg-banner-padding {
    padding-top: clamp(20px, 4vw, 50px);
}

.pg-banner-border {
    border-bottom: 1px solid #d9d9d9;
    padding-bottom: 40px !important;
}

.container {
    width: 100%;
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.container-md {
    max-width: 1200px;
}

.container-xlarge {
    max-width: 100%;
}

.container-large {
    max-width: 1800px;
}

.container-small {
    max-width: 980px;
}

.container-xsmall {
    max-width: 600px;
    margin: auto;
}

.subscribe-container {
    max-width: 665px;
}

.custom-container {
    max-width: 1090px;
}

.heading-link:hover {
    text-decoration: underline;
}


.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.text-left {
    text-align: left;
}

/* Galleries
--------------------------------------------- */
.gallery {
    margin-bottom: 1.5em;
    display: grid;
    grid-gap: 0.5em;
}

.gallery-item {
    display: inline-block;
    text-align: center;
    width: 100%;
}

.gallery-columns-2 {
    grid-template-columns: repeat(2, 1fr);
}

.gallery-columns-3 {
    grid-template-columns: repeat(3, 1fr);
}

.gallery-columns-4 {
    grid-template-columns: repeat(4, 1fr);
}

.gallery-columns-5 {
    grid-template-columns: repeat(5, 1fr);
}

.gallery-columns-6 {
    grid-template-columns: repeat(6, 1fr);
}

.gallery-columns-7 {
    grid-template-columns: repeat(7, 1fr);
}

.gallery-columns-8 {
    grid-template-columns: repeat(8, 1fr);
}

.gallery-columns-9 {
    grid-template-columns: repeat(9, 1fr);
}

.gallery-caption {
    display: block;
}

.gallery-icon {
    width: 100%;
    height: 190px;
}

.gallery-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Alignments
--------------------------------------------- */
.alignleft {
    float: left;
    margin-right: 1.5em;
    margin-bottom: 1.5em;
}

.alignright {
    float: right;
    margin-left: 1.5em;
    margin-bottom: 1.5em;
}

.aligncenter {
    clear: both;
    display: block;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 1.5em;
}

.site-header.sticky {
    top: 0;
}

/* header */
.site-header {
    background-color: var(--primary);
    position: sticky;
    top: 0;
    z-index: 999;
}

.site-header .site-branding {
    /* width: 230px;
    height: 115px; */
    background-color: var(--secondary);
    padding: 30px 45px;
}

.site-header .site-branding img {
    width: 130px;
    height: auto;
}

.hamburger-menu {
    position: relative;
}

.hamburger-menu img {
    margin-bottom: 20px;
}


.hamburger-menu span {
    color: #FFFFFFCC;
    display: block;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0%;
    position: absolute;
    bottom: -33px;
    right: 0;
    white-space: nowrap;
}

.search-container {
    position: relative;
    width: 460px;
}

.search-container input {
    outline: none;
    padding: 15px 25px;
    font-size: 16px;
    border-radius: 30px;
    border: none;
    font-family: var(--secondary);
    width: 100%;
}

.search-container button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 15px;
    border: none;
    background: unset;
    padding: 7px;
    cursor: pointer;
}

/* footer */

/* footer.site-footer {
    border-top: 1px solid #66011221;
} */
footer.site-footer {
    background-color: var(--tertiary);
}

.site-footer .footer-logo {
    width: 150px;
    height: 100px;
    margin-top: -60px;
}

.quick-links-wrapper {
    display: grid;
    /* grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); */
    row-gap: 40px;
    padding-bottom: 30px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    column-gap: 20px;
}

.site-info h3 {
    color: #000;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 600;
}

.site-footer .footer-logo img {
    width: 100%;
    height: 100%;
}

.site-footer .quick-links ul {
    list-style: none;
}

.site-footer .quick-links a {
    color: black;
    line-height: 2;
    font-size: 14px;
    font-weight: 400;
    display: inline-block;
}

.site-footer .quick-links>a:hover {
    text-decoration: underline;
    color: var(--primary);
}

.socials-div {
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.socials-div .subscribe {
    width: 330px;
}

.socials-div .subscribe input {
    padding: 6px;
    font-size: 15px;
    width: 100%;


}

.socials-div .subscribe span {
    position: absolute;
    right: 10px;
    bottom: 6px;

}

.socials-div .subscribe span i {
    color: var(--primary);
}

.socials-wrapper i {
    color: var(--primary);
    /* margin-left: 20px; */
    font-size: 18px;
    display: flex;
    gap: 20px;
}

.socials-wrapper>a {
    border-radius: 50%;
    border: 1px solid var(--primary);
}

.socials-wrapper a:nth-child(1)>i {
    margin-left: 0;
}

.socials-wrapper a:hover i {
    transform: scale(1.07);
}

.socials-wrapper {
    align-content: center;
}

.footer-copyright p {
    margin-bottom: 0;
    line-height: 20px;
    font-size: 13px;
    text-align: center;
}

.footer-copyright {
    border-top: 1px solid #66011221;
    padding: clamp(15px, 3vw, 25px) 20px;
}

.footer-padding {
    padding-top: clamp(140px, 10vw, 186px);
    /* margin-top: -31px; */
}

.socials-wrapper {
    align-content: center;
    margin-top: 40px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.quick-links-wrapper>div {
    width: 230px;
}

.quick-links-wrapper>div:first-child {
    width: 366px;
}

.socials-wrapper>a {
    width: 40px;
    height: 40px;
    border: 1px solid var(--primary);
    border-radius: 50%;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;

}

/* nav */


/* Navigation panel */
.main-navigation {
    position: fixed;
    top: 0;
    right: -825px;
    width: 825px;
    height: 100vh;
    background: #fff;
    z-index: 1001;
    transition: right 0.3s ease-in-out;
    overflow-y: auto;
    padding: 40px 80px;
}

.main-navigation.active {
    right: 0;
}

/* Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Menu styles */
.main-navigation ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.main-navigation li {
    position: relative;
}

.main-navigation a {
    color: #000000B2;
    text-decoration: none;
    display: inline-block;
    padding: 12px 0;
    font-size: 20px;
    font-weight: 700;
}

.main-navigation #primary-menu>li:hover a {
    color: var(--primary);
}






/* .main-navigation .menu-item-has-children>a::after {
    content: "\f078";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 12px;
    margin-left: 8px;
    transition: transform 0.3s ease;
} */


/* Hamburger container */
.hamburger-menu {
    width: 30px;
    height: 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    z-index: 1100;
    position: relative;
}



/* When active (menu open) */
.hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.main-navigation .quick-links p {
    font-size: 18px;
    line-height: 2rem;
}

.main-navigation .quick-links h3 {
    font-family: var(--secondary-font);
    font-weight: 700;
    font-size: 24px;
    color: #000000B2;
    margin-bottom: 20px;

}

/* .nav-wrapper {
    margin-top: 60px;
    background-image: url(../img/nav-bg.png);
    background-repeat: no-repeat;
    background-position: center top;
    background-size: contain;
} */
.nav-wrapper {
    margin-top: 60px;
    position: relative;

}

.nav-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 430px;
    background-image: url("../img/nav-bg.png");
    background-repeat: no-repeat;
    background-position: center top;
    background-size: contain;
    z-index: -1;

}

.close-menu {
    display: none;
    font-size: 28px;
    cursor: pointer;
    z-index: 1100;
    position: absolute;
    right: 70px;
}

.close-menu i {
    color: var(--primary)
}

.main-navigation .logo {
    width: 180px;
    height: auto;
}

.main-navigation .logo a>img {
    width: 100%;
    height: 100%;
}

.main-navigation .sub-menu {
    transition: all .3s linear;
}






.main-navigation li.open>a::after {
    transform: rotate(180deg);
}

/* hide submenu */
.main-navigation ul ul {
    display: none;
    padding-left: 15px;
}

.main-navigation li.open>ul {
    display: block;

}

/* chevron button */
.submenu-toggle {
    cursor: pointer;
    margin-left: 10px;
    font-size: 14px;

    color: #000000B2;
}

#primary-menu>li:hover .submenu-toggle {
    color: var(--primary);

}

.submenu-toggle i {
    transition: 0.3s;
}

/* .menu-item-has-children {
    display: flex;
    align-items: center;
    justify-content: space-between;
} */

.menu-item-has-children.open .submenu-toggle i {
    transform: rotate(180deg);
    transition: 0.3s;
}

.email-container .wpcf7 form .wpcf7-response-output {
    margin: 1em 0.5em 1em;
}

.email-container .wpcf7-not-valid-tip {
    margin-top: 10px;
}

.no-results .page-header {
    text-align: center;
    padding-top: clamp(40px, 5vw, 80px);
    margin-bottom: 20px;
}

.no-results .page-content {
    text-align: center;

}

.no-results .page-content p {
    margin-bottom: 20px;
}