/*
Theme Name: Otumate
Theme URI: https://otumate.com/
Description: The leanest, fastest custom WordPress theme.
Author: Chad Chaaban
Version: 1.0.5
Text Domain: otumate
*/

/* ----------------------------- */
/* Colors */
/* ----------------------------- */
:root {
    --color-primary: #dbb753;
    --color-secondary: #ff0080;
    --color-tertiary: #f8f6f0;
    --color-grey: #f2f2f2;
    --color-dark: #1d1d1d;

    --color-primary-hover: #1d1d1d;
    --color-secondary-hover: #1d1d1d;
    --color-tertiary-hover: #1d1d1d;

    --sp-10: 10px;
    --sp-20: 20px;
    --sp-30: 30px;
    --sp-40: 40px;
    --sp-50: 50px;
    --sp-60: 60px;
    --sp-70: 70px;
    --sp-80: 80px;
    --sp-90: 90px;
    --sp-100: 100px;

    --font-primary: 'Karantina', sans-serif;
    --font-secondary: 'Poppins', sans-serif;
}

/* ----------------------------- */
/* CSS Reset */
/* ----------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    color: var(--color-dark);
    font-family: var(--font-secondary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: smooth;
    line-height: 1.6;
}

img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
}

input, button, textarea, select {
    font: inherit;
}

a, button {
    transition: all 0.3s ease-in-out;
}

a {
    text-decoration: none;
    color: inherit;
}

ul, ol {
    list-style: none;
}

label {
    display: block;
}

h1, h2, h3, h4, h5, h6 { 
	font-family: var(--font-primary);
	line-height: 1.2;
}

b, strong {
	font-weight: 700;
}

/* ----------------------------- */
/* Container & Grid */
/* ----------------------------- */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.container-fluid {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
}

.container-max {
    width: 100%;
    max-width: 2000px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;;
}

/* Alignment Utilities */
.align-start { align-items: flex-start; }
.align-center { align-items: center; }
.align-end { align-items: flex-end; }
.align-stretch { align-items: stretch; }

.justify-start { justify-content: flex-start; }
.justify-center { justify-content: center; }
.justify-end { justify-content: flex-end; }
.justify-between { justify-content: space-between; }
.justify-around { justify-content: space-around; }
.justify-evenly { justify-content: space-evenly; }

/* Align Self Utilities */
.self-start { align-self: flex-start; }
.self-center { align-self: center; }
.self-end { align-self: flex-end; }
.self-stretch { align-self: stretch; }

/* ----------------------------- */
/* Column Width Utilities */
/* ----------------------------- */
.col { padding: 0 15px; }

.col-1 { width: 8.3333%; }
.col-2 { width: 16.6667%; }
.col-3 { width: 25%; }
.col-4 { width: 33.3333%; }
.col-5 { width: 41.6667%; }
.col-6 { width: 50%; }
.col-7 { width: 58.3333%; }
.col-8 { width: 66.6667%; }
.col-9 { width: 75%; }
.col-10 { width: 83.3333%; }
.col-11 { width: 91.6667%; }
.col-12 { width: 100%; }

/* Flex Defaults */
.flex { display: flex; }

/* ----------------------------- */
/* Navigation Styles */
/* ----------------------------- */
.site-header { position: sticky; top: 0; z-index: 9; transition: background-color 0.3s ease; }
.site-branding img { height: 90px; }
.site-header.is-sticky { background-color: var(--color-dark); } 
.nav-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
	font-family: var(--font-primary);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-menu li {
    position: relative;
    margin-left: 20px;
}

.nav-menu li a {
    padding: 15px;
    display: block;
	color: #fff;
	font-size: 18px;
	text-transform: uppercase;
	letter-spacing: 5px;
}

.nav-menu li.current-menu-item > a {
    color: var(--color-primary);
}

.nav-menu li.menu-item-has-children a {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.nav-menu li a.btn {
    margin-left: 15px;
	padding-left: 20px;
}

.nav-menu li .plus {
    position: relative;
    width: 10px;
    height: 10px;
    right: 0;
	margin-left: 20px;
    z-index: 1;
    pointer-events: none;
    transition: transform 0.3s ease-in-out;
}

.nav-menu li .plus.x {
    transform: rotate(45deg);
}

.nav-menu li .plus i {
    position: absolute;
    background-color: #fff;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.nav-menu li .plus i:first-child { width: 10px; height: 2px; }
.nav-menu li .plus i:last-child { width: 2px; height: 10px; }

.nav-menu li .sub-menu {
    position: absolute;
    top: 100%;
    margin-top: 30px;
    box-shadow: 0 3px 30px -20px rgb(83 83 83 / .65);
    border-radius: 0;
    background-color: #fff;
    padding: 15px;
    display: none;
}

.nav-menu li .sub-menu li {
    white-space: nowrap;
    margin: 0;
}

.nav-menu li .sub-menu li a {
	color: var(--color-dark);
}

.mob-toggle-container {
    margin-left: 15px;
    padding: 20px;
    display: none;
	background-color: #fff;
}

.mob-toggle {
    width: 20px;
    height: 15px;
    position: relative;
    transform: rotate(0deg);
    transition: 0.5s ease-in-out;
    cursor: pointer;
}

.mob-toggle span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background-color: #000;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: 0.25s ease-in-out;
}

.mob-toggle span:nth-child(1) {
    top: 0px;
    transform-origin: left center;
}

.mob-toggle span:nth-child(2) {
    top: 50%;
    transform: translatey(-50%);
}

.mob-toggle span:nth-child(3) {
    top: 13px;
    transform-origin: left center;
}

.mob-toggle-container.open .mob-toggle span:nth-child(1) {
    transform: rotate(45deg);
    top: -1px;
    left: 3px;
}

.mob-toggle-container.open .mob-toggle span:nth-child(2) {
    width: 0%;
    opacity: 0;
}

.mob-toggle-container.open .mob-toggle span:nth-child(3) {
    transform: rotate(-45deg);
    top: 13.5px;
    left: 3px;
}

/* ----------------------------- */
/* Buttons */
/* ----------------------------- */
.btn {
    display: inline-block;
    padding: 12px 24px;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
	font-family: var(--font-primary);
	text-transform: uppercase;
	letter-spacing: 5px;
}
.btn:hover { transform: scale(0.95); }

.btn-primary {
    background: var(--color-primary);
    color: #fff;
}

.btn-primary:hover,
.btn-primary:focus {
    background: var(--color-primary-hover);
}

.btn-secondary {
    background: var(--color-secondary);
    color: #fff;
}

.btn-secondary:hover,
.btn-secondary:focus {
    background: var(--color-secondary-hover);
}

.btn-tertiary {
    background: var(--color-tertiary);
    color: #fff;
}

.btn-tertiary:hover,
.btn-tertiary:focus {
    background: var(--color-tertiary-hover);
}

.btn-white {
	color: var(--color-dark); 
	background-color: #fff;
}

.btn-white:hover,
.btn-white:focus {
	color: #fff;
    background: var(--color-primary);
}

.btn-sm { padding: 8px 16px; font-size: 14px; }
.btn-lg { padding: 16px 32px; font-size: 18px; }

.btn.disabled,
.btn:disabled {
    background: var(--color-grey);
    color: #999;
    cursor: not-allowed;
    pointer-events: none;
}

/* ----------------------------- */
/* Section Utilities */
/* ----------------------------- */
.section-primary { background-color: var(--color-primary); }
.section-secondary { background-color: var(--color-secondary); }
.section-tertiary { background-color: var(--color-tertiary); }
.section-grey { background-color: var(--color-grey); }
.section-dark { background-color: var(--color-dark); }
.section-dark2 { background-color: #000; }
.section-bg { background-position: center; background-size: cover; background-attachment: fixed; }
.section-bg::after { content: ''; position: absolute; left: 0; top: 0; width: 100%; height: 100%; background-color: #000; opacity: 0.8; z-index: 1; }

.section-relative { position: relative; }
.section-relative .container { position: relative; z-index: 3; }

.sand-bg::after { background-color: #fff; opacity: 0.8; }

/* ----------------------------- */
/* Typography Utilities */
/* ----------------------------- */
.font-12 { font-size: 12px; }
.font-14 { font-size: 14px; }
.font-16 { font-size: 16px; }
.font-18 { font-size: 18px; }
.font-20 { font-size: 20px; }
.font-22 { font-size: 22px; }
.font-24 { font-size: 24px; }
.font-30 { font-size: 30px; }
.font-36 { font-size: 36px; }
.font-40 { font-size: 40px; }
.font-48 { font-size: 48px; }
.font-60 { font-size: 60px; line-height: 1.2; }
.font-80 { font-size: 80px; line-height: 1.2; }

.text-thin { font-weight: 200; }
.text-regular { font-weight: 400; }
.text-bold { font-weight: 600; }
.text-bolder { font-weight: 800; }
.text-primary { font-family: var(--font-primary); }
.text-secondary { font-family: var(--font-secondary); }

.text-upper { text-transform: uppercase; }
.text-underline { text-decoration: underline; }
.text-center { text-align: center; }
.text-right { text-align: right; }

.color-primary { color: var(--color-primary); }
.color-secondary { color: var(--color-secondary); }
.color-tertiary { color: var(--color-tertiary); }
.color-grey { color: var(--color-grey); }
.color-dark { color: var(--color-dark); }
.color-white { color: #fff; }

a.color-primary:hover { color: var(--color-dark); }
a.color-secondary:hover { color: var(--color-primary); }
a.color-tertiary:hover { color: var(--color-secondary); }
a.color-grey:hover { color: var(--color-secondary); }
a.color-dark:hover { color: var(--color-secondary); }
a.color-white:hover { color: var(--color-secondary); }

/* ----------------------------- */
/* Headings */
/* ----------------------------- */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-primary); }

/* ----------------------------- */
/* Image Utilities */
/* ----------------------------- */
img {
    width: auto;
    height: auto;
    max-width: 100%;
}

.img-w-100 { width: 100%; height: auto; }
.img-h-10 { height: 10px; width: auto; }
.img-h-20 { height: 20px; width: auto; }
.img-h-30 { height: 30px; width: auto; }
.img-h-40 { height: 40px; width: auto; }
.img-h-50 { height: 50px; width: auto; }
.img-h-60 { height: 60px; width: auto; }
.img-h-70 { height: 70px; width: auto; }
.img-h-80 { height: 80px; width: auto; }
.img-h-90 { height: 90px; width: auto; }
.img-h-100 { height: 100px; width: auto; }

/* ----------------------------- */
/* Form and Field Styles */
/* ----------------------------- */
input, textarea, select {
    font-family: var(--font-secondary);
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    transition: all 0.3s ease-in-out;
}

input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: var(--color-primary);
}

::placeholder {
    color: #999;
    opacity: 1;
}

/* Contact Form 7 Overrides */
.input-hidden, .altEmail_container { display: none; }

.wpcf7 .screen-reader-response { display: none !important; }

.wpcf7-not-valid-tip {
    font-weight: 600;
    color: #ff0000;
    display: block;
    margin-top: 15px;
}

.wpcf7-form .wpcf7-response-output {
    display: none;
    border-radius: 0;
    text-align: center;
    font-weight: 600;
    padding: 20px;
    margin-top: 30px;
    line-height: 1.5;
}

.wpcf7-form.invalid .wpcf7-response-output {
    display: block;
    border: 2px solid #ff0000;
    color: #ff0000;
    background-color: rgba(255, 0, 0, 0.25);
}

.wpcf7-form.sent .wpcf7-response-output {
    display: block;
    border: 2px solid #00caaa;
    color: #00caaa;
    background-color: rgba(0, 202, 170, 0.25);
}

.wpcf7-form span { display: block; }

/* ----------------------------- */
/* Pagination */
/* ----------------------------- */
.page-nav h2 { display: none; }

.page-nav .navigation.pagination { margin-top: 50px; padding: 0; }

.page-nav .navigation .nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
	width: 100%;
}

.page-nav .navigation .nav-links .page-numbers {
    color: var(--color-dark);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    padding: 0 10px;
}

.page-nav .navigation .nav-links .page-numbers.current { font-weight: 700; color: var(--color-primary); pointer-events: none; }
.page-nav .navigation .nav-links .page-numbers:hover { color: var(--color-primary); }

.page-nav .arrow {
    border: solid var(--color-dark);
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 3px;
    transition: all 0.3s ease-in-out;
}

.page-nav .arrow.nex { transform: rotate(-45deg); }
.page-nav .arrow.pre { transform: rotate(135deg); }

.page-nav .navigation .nav-links .page-numbers:hover .arrow {
    border-color: var(--color-primary);
}

/* ----------------------------- */
/* Spacing Utilities */
/* ----------------------------- */
.pt-10 { padding-top: var(--sp-10); }
.pt-20 { padding-top: var(--sp-20); }
.pt-30 { padding-top: var(--sp-30); }
.pt-40 { padding-top: var(--sp-40); }
.pt-50 { padding-top: var(--sp-50); }
.pt-60 { padding-top: var(--sp-60); }
.pt-70 { padding-top: var(--sp-70); }
.pt-80 { padding-top: var(--sp-80); }
.pt-90 { padding-top: var(--sp-90); }
.pt-100 { padding-top: var(--sp-100); }

.pb-10 { padding-bottom: var(--sp-10); }
.pb-20 { padding-bottom: var(--sp-20); }
.pb-30 { padding-bottom: var(--sp-30); }
.pb-40 { padding-bottom: var(--sp-40); }
.pb-50 { padding-bottom: var(--sp-50); }
.pb-60 { padding-bottom: var(--sp-60); }
.pb-70 { padding-bottom: var(--sp-70); }
.pb-80 { padding-bottom: var(--sp-80); }
.pb-90 { padding-bottom: var(--sp-90); }
.pb-100 { padding-bottom: var(--sp-100); }

.mt-10 { margin-top: var(--sp-10); }
.mt-20 { margin-top: var(--sp-20); }
.mt-30 { margin-top: var(--sp-30); }
.mt-40 { margin-top: var(--sp-40); }
.mt-50 { margin-top: var(--sp-50); }
.mt-60 { margin-top: var(--sp-60); }
.mt-70 { margin-top: var(--sp-70); }
.mt-80 { margin-top: var(--sp-80); }
.mt-90 { margin-top: var(--sp-90); }
.mt-100 { margin-top: var(--sp-100); }

.mb-10 { margin-bottom: var(--sp-10); }
.mb-20 { margin-bottom: var(--sp-20); }
.mb-30 { margin-bottom: var(--sp-30); }
.mb-40 { margin-bottom: var(--sp-40); }
.mb-50 { margin-bottom: var(--sp-50); }
.mb-60 { margin-bottom: var(--sp-60); }
.mb-70 { margin-bottom: var(--sp-70); }
.mb-80 { margin-bottom: var(--sp-80); }
.mb-90 { margin-bottom: var(--sp-90); }
.mb-100 { margin-bottom: var(--sp-100); }

/* ----------------------------- */
/* Popups */
/* ----------------------------- */
.popup { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.9); z-index: 99; align-items: center; justify-content: center; padding: 0 20px; display: none; }
.popup .popup-container { display: flex; flex-direction: column; max-width: 800px; max-height: 80%; padding: 30px; background: #fff; border-radius: 10px; position: relative; }
.popup .popup-container .popup-header { display: flex; align-items: center; justify-content: space-between; padding-bottom: 20px; }
.popup .popup-container .popup-header .popup-close { min-width: 30px; height: 30px; border-radius: 50%; background: rgba(0, 0, 0, 0.5); cursor: pointer; position: relative; transform: rotate(45deg); margin-left: 15px; }
.popup .popup-container .popup-header .popup-close i { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); background: #fff; }
.popup .popup-container .popup-header .popup-close i:first-child {width: 15px; height: 2px;}
.popup .popup-container .popup-header .popup-close i:last-child {width: 2px; height: 15px;}
.popup .popup-container .popup-content { overflow-y: auto; scrollbar-width: none; -ms-overflow-style: none; max-height: 100%; }
.popup .popup-content::-webkit-scrollbar { display: none; }

body.popup-open { overflow: hidden; }

/* ----------------------------- */
/* Single Post / Blog / Content  */
/* ----------------------------- */
.single-content h1, .single-content h2, .single-content h3, .single-content h4 { font-family: var(--font-primary); margin-bottom: 20px; }
.single-content h2 { font-size: 45px; }
.single-content h3 { font-size: 30px; }
.single-content p { margin-bottom: 20px; }
.single-content a { color: var(--color-primary); text-decoration: underline; }
.single-content ul, .single-content ol { padding-left: 20px; margin-bottom: 20px; }
.single-content ul { list-style: disc; }
.single-content ul li, .single-content ol li { margin-bottom: 10px; }
.single-content ul li:last-child, .single-content ol li:last-child { margin-bottom: 0; }
.single-content img { width: 100%; height: auto; margin-bottom: 20px; }
.single-content .wp-block-pullquote { padding: 60px; background-color: var(--color-grey); }

.social-share { padding: 20px 0; border-bottom: 1px solid rgba(0, 0, 0, 0.2);  display: flex; align-items: center; }
.social-share a { display: inline-flex; align-items: center; justify-content: center; margin-left: 15px; }
.social-share a img { height: 30px; }

.post-nav { display: flex; align-items: center; justify-content: space-between; padding-top: 20px; border-top: 1px solid rgba(0, 0, 0, 0.2); }
.post-nav > div { width: 50%; padding: 0 15px; }
.post-nav > div:first-child { padding-left: 0; }
.post-nav > div:last-child { padding-right: 0; }
.post-nav > div a { display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden; text-overflow: ellipsis; }

/* ----------------------------- */
/* Page Elements */
/* ----------------------------- */
.img-holder { position: relative; }
.img-holder img { position: absolute; left: 0; top: 0; width: 100%; }

.hero, .header { position: relative; margin-top: -99px; overflow: hidden; background-color: var(--color-dark); }
.hero .custom-fadeslider { position: absolute; left: 0; top: 0; width: 100%; height: 100%; }
.hero .custom-fadeslider .fadeslide { background-position: center; background-size: cover; background-attachment: fixed; }
.hero::after, .header::after { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: linear-gradient( to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.55) 50%, rgba(0, 0, 0, 0.35) 100% ); z-index: 2; pointer-events: none; }

.hero .hero-content { position: relative; display: flex; align-items: center; justify-content: center; text-align: center; flex-direction: column; padding-top: 200px; padding-bottom: 50px; z-index: 3; }

.hero .hero-footer { display: flex; align-items: center; justify-content: space-evenly; }
.hero .hero-footer > div { width: 33.33333333%; border-right: 1px solid rgba(255, 255, 255, 0.3); }
.hero .hero-footer > div:last-child { border: none; }

.hero-special { display: flex; align-items: center; justify-content: center; }
.hero-special p { margin: 0 20px; font-size: 25px; letter-spacing: 5px; }
.hero-special img { height: 26px; }

.mt-auto { margin-top: auto; }
.m-auto { position: relative; margin: 0 auto; }

.review, .card-review { height: 100%; display: flex; flex-direction: column; }
.card-review { align-items: center; text-align: center; }
.review-rating { display: flex; align-items: center; }
.review-rating img { height: 20px; margin: 0 2.5px; }
.review-thumb { width: 80px; height: 80px; border-radius: 50%; overflow: hidden; }
.review-thumb img { width: 100%; height: 100%; }
.review-content { display: -webkit-box; -webkit-line-clamp: 5; -webkit-box-orient: vertical; overflow: hidden; text-overflow: ellipsis; }

.why-sec { display: flex; flex-direction: column; height: 100%; }

.whys { margin-bottom: 40px; }
.whys .why { display: flex; align-items: flex-start; margin-bottom: 50px; }
.whys .why:last-child { margin: 0; }
.whys .why img { width: 50px; min-width: 50px; margin-right: 25px; }

.why-footer { display: flex; align-items: center; justify-content: space-between; margin-top: auto; border-top: 1px solid rgba(0,0,0, 0.2); padding-top: 40px; }
.why-footer img { height: 40px; margin: 0 15px; }

.service { padding: 30px; border: 1px solid rgba(0,0,0, 0.2); background-color: #fff; height: 100%; display: flex; align-items: flex-start; flex-direction: column; }
.service img { height: 90px; }

.price { padding-bottom: 30px; border-bottom: 1px dotted rgba(0,0,0, 0.2); height: 100%; }
.price-header { display: flex; align-items: center; justify-content: space-between; }

.gallery-grid { display: flex; flex-wrap: wrap; }
.gallery-item { flex: 0 0 calc(33.333%); aspect-ratio: 1 / 1; overflow: hidden; }
.gallery-thumb { width: 100%; height: 100%; background-size: cover; background-position: center center; border-radius: inherit; transition: transform 0.3s ease; }
.gallery-thumb:hover { transform: scale(1.05); }

.barber img { width: 100%; }

.map { position: relative; padding-bottom: 30%; }
.map iframe { position: absolute; left: 0; top: 0; width: 100%; height: 100%; }

.socials { display: flex; align-items: center; }
.socials a { margin-right: 15px; }

.header { background-position: center; background-size: cover; background-attachment: fixed; }

.single-barbers p { margin-bottom: 20px; }
.single-barbers p:last-child { margin-bottom: 0; }

.sticky-side-bar { position: sticky; top: 140px; }
.single-barbers a { color: var(--color-primary); text-decoration: underline; }
.single-barbers a:hover { color: var(--color-dark); }
.single-barbers h3 { font-size: 30px; line-height: 1.2; margin-bottom: 10px; }

.other { background-color: var(--color-tertiary); padding: 30px; }
.service-list li { padding: 10px 0; border-bottom: 1px solid rgba(0,0,0, 0.2); }
.service-list li:first-child { border-top: 1px solid rgba(0,0,0, 0.2); }
.service-list li a { display: flex; align-items: center; }
.service-list li a > span { min-width: 10px; width: 10px; height: 10px; border-radius: 50%; background-color: var(--color-dark); display: flex; align-items: center; justify-content: center; margin-right: 15px; }
.service-list li a > span > span { width: 5px; height: 5px; display: inline-flex; border-radius: 50%; background-color: #fff; }
.service-list li.active a { font-weight: 700; }
.service-list li.active a > span > span { background-color: var(--color-primary); }

.link-btn { letter-spacing: 5px; cursor: pointer; }

.post-main { border: 1px solid rgba(0,0,0, 0.2); display: flex; flex-direction: column; align-items: flex-start; height: 100%; } 
.post-main img { width: 100%; height: auto; aspect-ratio: 3 / 2; object-fit: cover; }
.post-main-content { display: flex; flex-direction: column; align-items: flex-start; padding: 20px; padding-top: 0; }
.post-main h2 { padding: 0 20px; }

.post-secondary { flex-direction: row; align-items: center; gap: 30px; }
.post-secondary .post-main-image, .post-secondary .post-main-content { width: 50%; }
.post-secondary .post-main-content { padding: 20px; padding-left: 0; }
.post-secondary h2 { display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; text-overflow: ellipsis; padding: 0; }

.post-secondary .post-main-image { position: relative; height: 100%; }
.post-secondary .post-main-image a { position: absolute; left: 0; top: 0; width: 100%; height: 100%; background-size: cover; background-position: center; }

.blog-cta { padding: 40px 30px; background-color: var(--color-grey); }
.blog-cta h3 { margin-bottom: 10px; font-size: 36px; }
.blog-cta a { text-decoration: none; color: #fff; }
.blog-cta a:hover { color: #fff; }

/* ----------------------------- */
/* FAQs */
/* ----------------------------- */
.faq .q { display: flex; align-items: center; justify-content: space-between; cursor: pointer; padding: 10px; padding-left: 20px; font-family: var(--font-primary); font-size: 24px; line-height: 1.2; border: 1px solid rgba(0,0,0, 0.2); border-bottom: none; }
.faqs .faq:last-child .q { border-bottom: 1px solid rgba(0,0,0, 0.2); }
.faq .q span { transition: all 0.3s ease-in-out; display: inline-flex; align-items: center; justify-content: center; min-width: 50px; height: 50px; margin-left: 30px; background-color: var(--color-primary); border-radius: 50%; }
.faq .q span img { width: auto; height: 15px; margin: 0; }
.faq.open .q span { transform: rotate(45deg); background-color: var(--color-dark); }
.faq .a { display: none; padding: 20px 60px; padding-left: 20px; border: 1px solid rgba(0,0,0, 0.2); border-bottom: none; background-color: var(--color-tertiary); }
.faqs .faq:last-child .a { border-bottom: 1px solid rgba(0,0,0, 0.2); border-top: none; }

.faq .q p { margin: 0; }
.faq .a p { margin-bottom: 20px; }
.faq .a p:last-child { margin-bottom: 0; }

/* ----------------------------- */
/* Slider */
/* ----------------------------- */
.custom-slider {
  position: relative;
  overflow: hidden;
}

.custom-slider.has-arrows { padding: 0 60px; }

.slider-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE 10+ */
}
.slider-track::-webkit-scrollbar {
  display: none; 
}

.slide {
  flex: 0 0 auto;
  scroll-snap-align: start;
  box-sizing: border-box;
  padding: 0 15px;
}

[class*="slide-w-"] { width: 100%; }

@media (min-width: 768px) {
  .tablet-w-1 { width: 100%; }
  .tablet-w-2 { width: 50%; }
  .tablet-w-3 { width: 33.3333%; }
  .tablet-w-4 { width: 25%; }
  .tablet-w-5 { width: 20%; }
}

@media (min-width: 1024px) {
  .desktop-w-1 { width: 100%; }
  .desktop-w-2 { width: 50%; }
  .desktop-w-3 { width: 33.3333%; }
  .desktop-w-4 { width: 25%; }
  .desktop-w-5 { width: 20%; }
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
}

.slider-arrow.prev { left: 10px; }
.slider-arrow.next { right: 10px; }

/* ----------------------------- */
/* Fade Slider */
/* ----------------------------- */
.custom-fadeslider {
  position: relative;
  overflow: hidden;
}

.fadeslider-track {
  position: relative;
  height: 100%;
}

.fadeslide {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.fadeslide.active {
  opacity: 1;
  z-index: 2;
}

/* ----------------------------- */
/* Footer */
/* ----------------------------- */
.menus { display: flex; justify-content: space-between; }
.menus .menu { max-width: 25%; }
.menus .menu ul li { margin-bottom: 10px; display: flex; align-items: center; justify-content: space-between; }
.menus .menu ul li:last-child { margin-bottom: 0; }
.menus .menu ul li span { margin-right: 20px; }

footer .hr { height: 1px; background-color: #fff; opacity: 0.2; }

/* ----------------------------- */
/* Responsive Overrides */
/* ----------------------------- */
@media (max-width: 1024px) {
    .col-md-6 { width: 50%; }
}

@media (max-width: 768px) {
    .mob-toggle-container { display: flex; }

    .nav-menu {
        position: absolute;
        right: 0;
        flex-direction: column;
        top: 100%;
		width: 100%;
        margin-top: 20px;
        background-color: #000;
        padding: 15px;
        box-shadow: 0 3px 30px -20px rgb(83 83 83 / .65);
        border-radius: 10px;
        display: none;
    }

    .nav-menu li { width: 100%; margin: 0; }
    .nav-menu li a { display: block; }
    .nav-menu li a.btn { margin: 0; margin-top: 15px; }
    .nav-menu li .sub-menu {
        position: relative;
        padding: 0;
        padding-left: 20px;
        box-shadow: none;
        margin: 0;
    }

    .nav-menu li .plus {
        pointer-events: all;
        right: 0;
        width: 40px;
        height: 40px;
    }

    .text-center-mobile { text-align: center; }
    .text-right-mobile { text-align: right; }
    .text-left-mobile { text-align: left; }

    .pt-mb-10 { padding-top: var(--sp-10); }
    .pt-mb-20 { padding-top: var(--sp-20); }
    .pt-mb-30 { padding-top: var(--sp-30); }
    .pt-mb-40 { padding-top: var(--sp-40); }
    .pt-mb-50 { padding-top: var(--sp-50); }
    .pt-mb-60 { padding-top: var(--sp-60); }
    .pt-mb-70 { padding-top: var(--sp-70); }
    .pt-mb-80 { padding-top: var(--sp-80); }
    .pt-mb-90 { padding-top: var(--sp-90); }
    .pt-mb-100 { padding-top: var(--sp-100); }

    .pb-mb-10 { padding-bottom: var(--sp-10); }
    .pb-mb-20 { padding-bottom: var(--sp-20); }
    .pb-mb-30 { padding-bottom: var(--sp-30); }
    .pb-mb-40 { padding-bottom: var(--sp-40); }
    .pb-mb-50 { padding-bottom: var(--sp-50); }
    .pb-mb-60 { padding-bottom: var(--sp-60); }
    .pb-mb-70 { padding-bottom: var(--sp-70); }
    .pb-mb-80 { padding-bottom: var(--sp-80); }
    .pb-mb-90 { padding-bottom: var(--sp-90); }
    .pb-mb-100 { padding-bottom: var(--sp-100); }

    .mt-mb-10 { margin-top: var(--sp-10); }
    .mt-mb-20 { margin-top: var(--sp-20); }
    .mt-mb-30 { margin-top: var(--sp-30); }
    .mt-mb-40 { margin-top: var(--sp-40); }
    .mt-mb-50 { margin-top: var(--sp-50); }
    .mt-mb-60 { margin-top: var(--sp-60); }
    .mt-mb-70 { margin-top: var(--sp-70); }
    .mt-mb-80 { margin-top: var(--sp-80); }
    .mt-mb-90 { margin-top: var(--sp-90); }
    .mt-mb-100 { margin-top: var(--sp-100); }

    .mb-mb-10 { margin-bottom: var(--sp-10); }
    .mb-mb-20 { margin-bottom: var(--sp-20); }
    .mb-mb-30 { margin-bottom: var(--sp-30); }
    .mb-mb-40 { margin-bottom: var(--sp-40); }
    .mb-mb-50 { margin-bottom: var(--sp-50); }
    .mb-mb-60 { margin-bottom: var(--sp-60); }
    .mb-mb-70 { margin-bottom: var(--sp-70); }
    .mb-mb-80 { margin-bottom: var(--sp-80); }
    .mb-mb-90 { margin-bottom: var(--sp-90); }
    .mb-mb-100 { margin-bottom: var(--sp-100); }

    .col { width: 100%; }
    .col-sm-6 { width: 50%; }

    .hide-mobile { display: none; }

    .switch { flex-direction: column-reverse; }

    .popup .popup-container { padding: 20px; }
	
	.gallery-grid .gallery-item { flex: 0 0 calc(50%); }
	.gallery-grid .gallery-item:last-child { flex: 0 0 calc(100%); }
	
	.section-bg, .hero .custom-fadeslider .fadeslide, .header { background-attachment: scroll; }
	
	.hero .hero-footer, .why-footer { flex-direction: column; gap: 30px; }
	.hero .hero-footer > div { width: 100%; border: none; border-bottom: 1px solid rgba(255, 255, 255, 0.3); padding-bottom: 30px; }
	
	.post-secondary { flex-direction: column; align-items: flex-start; gap: 0; }
	.post-secondary .post-main-image { padding-bottom: 56%; }
	.post-secondary .post-main-image, .post-secondary .post-main-content { width: 100%; }
	.post-secondary .post-main-content { padding: 20px; }
}

@media (max-width: 600px) {
    .col-xs-6 { width: 50%; }

    .font-sm-12 { font-size: 12px; }
	.font-sm-14 { font-size: 14px; }
	.font-sm-18 { font-size: 18px; }
	.font-sm-36 { font-size: 36px; }
	.font-sm-48 { font-size: 48px; }
	
	.map { padding-bottom: 50%; }
	
	.menus { flex-direction: column; }
	.menus .menu { max-width: 100%; }
}

@media (min-width: 769px) {
    .hide-desktop { display: none; }
}

/* Disable blue/gray tap highlight on Safari mobile */
* {
    -webkit-tap-highlight-color: transparent;
}