
* {
  margin: 0;
  padding: 0;
  outline: none;
}

:root {
    --primary-color: #6e5e49; 
    --secondary-color: #6b775f;  
    --white-color: #ffffff;
    --black-color: #000000; 
    --heading-font: "Cormorant Garamond", serif;
    --text-font: "DM Sans", sans-serif;
    --font-weight-light: 300;
    --font-weight-regular: 400; 
    --font-weight-medium: 500;
    --font-semi-bold: 600; 
    --font-weight-bold: 700; 
    --menu-overlay-bg: #e1e6dc;
    --menu-overlay-text: #6d7566;
    --menu-overlay-accent: #af8e70;
    --menu-overlay-border: #8b9384;
    --menu-animation-duration: 0.65s;
}

/* Global Styles */
body { background-color: var(--white-color); }

body, body p, #page ul li { font-size:18px; line-height: 28px; font-family: var(--text-font); font-weight: var(--font-weight-regular); letter-spacing: 0px; color: var(--primary-color);}

#page h1, #page h2, #page h3, #page h5, #page h6 { font-family: var(--heading-font); color: var(--primary-color); margin: 0;}

#page h1 { font-size: 72px; line-height: 96px; letter-spacing: 4px; font-weight: var(--font-weight-bold); text-transform: uppercase; }
#page h2 { font-size: 48px; line-height: 55px; letter-spacing: 1px; font-weight: var(--font-weight-medium); text-transform: uppercase; }
#page h3 { font-size: 36px; line-height: 49px; letter-spacing: 1px; font-weight: var(--font-weight-light);}
#page h4 { font-size: 22px; line-height: 40px; letter-spacing: 0px; font-family: var(--text-font); font-weight: var(--font-weight-regular); text-transform: uppercase; }
#page h5 { font-size: 20px; line-height: 30px; letter-spacing: 0px; font-family: var(--text-font); font-weight: var(--font-weight-regular);}
#page h6 { font-size: 14px; line-height: 30px; letter-spacing: 0.12em; font-family: var(--text-font); font-weight: var(--font-weight-medium); text-transform: uppercase;}

/* Button Styles */

#page .button { font-family: var(--text-font); font-weight: var(--font-weight-semi-bold); font-size: 14px; line-height: 28px; letter-spacing: 0.12em; text-transform: uppercase; background-color: var(--secondary-color); color: var(--white-color); border-radius: 0px; padding: 18px 50px; border: none; text-decoration: none; display: inline-flex; align-items: center; gap: 10px; transition: background-color 0.3s ease, color 0.3s ease; }
#page .button:hover { background-color: var(--primary-color);  }
#page .button svg { width: 20px; height: 10px; fill: none; transition: transform 0.3s ease; }
#page .button svg path { stroke: var(--white-color); transition: stroke 0.3s ease; }

#page .button-link { font-family: var(--text-font); font-weight: var(--font-weight-semi-bold); font-size: 14px; line-height: 28px; letter-spacing: 0.12em; text-transform: uppercase; background-color: transparent; color: var(--black-color); border-radius: 0px; padding: 0; border: none; text-decoration: none; display: inline-flex; align-items: center; gap: 10px; }
#page .button-link:hover { color: var(--primary-color);  }
#page .button-link svg { width: 20px; height: 10px; fill: none; transition: transform 0.3s ease; }
#page .button-link svg path { stroke: var(--black-color); transition: stroke 0.3s ease; }

/* Scroll-to-top hidden by default */
.scroll-top { opacity:0;pointer-events:none; }
.scroll-top.visible { opacity:1;pointer-events:visible; }
section[id] { scroll-margin-top:120px; }

/* Skip Link */
.skip-link { position:absolute; top:-40px; left:0; background:none; color:#fff; padding:.75rem 1rem;z-index:9999; transition:top .3s ease; text-decoration: none; }
.skip-link:focus { top:0; outline:3px solid transparent; }
 
.button:focus,.button:hover { transition:all .3s ease; }
.visually-hidden { display:none; }

/* container */
.full-width { max-width:100%; margin:auto; padding:0; }
.container { max-width:1170px; margin:auto; padding:0; width:100%; }
.skip-link:focus { top:0; outline:3px solid transparent; }

/* Header */

header { position: fixed; top: 0;  width: 100%;  background: none;  z-index: 100; transition: transform .3s ease; }  

body.menu_open { overflow: hidden; }

.header-inner .full-width, .fullscreen_menu_header { position: relative; display: flex; align-items: center; justify-content: space-between; width: 100%; min-height: 88px; padding: 0; box-sizing: border-box; }

.header-inner .logo, .fullscreen_menu_header .logo { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); }

.header-inner .logo img, .fullscreen_menu_header .logo img { display: block; width: 105px; height: auto; }

.header_actions { display: flex; align-items: center; gap: 34px; margin-left: auto; }

.menu-toggle, .menu_close_btn { display: inline-flex; align-items: center; gap: 16px; padding: 10px 0; color: inherit; font: inherit; letter-spacing: 1.5px; text-transform: uppercase; background: transparent; border: 0; cursor: pointer; }

.Hamburger_hamburgerBox { position: relative; display: block; width: 25px; height: 15px; }

.Hamburger_hamburgerBox::before, .Hamburger_hamburgerBox::after, .Hamburger_hamburgerBox span { position: absolute; left: 0; width: 25px; height: 1px; background: currentColor; content: ""; }

.Hamburger_hamburgerBox::before { top: 0; }

.Hamburger_hamburgerBox span { top: 7px; }

.Hamburger_hamburgerBox::after { top: 14px; }

.fullscreen_menu { position: fixed; inset: 0; z-index: 9999; overflow-y: auto; color: var(--menu-overlay-text); background: var(--menu-overlay-bg); visibility: hidden; opacity: 0; transform: translateY(-20px); pointer-events: none; transition: opacity var(--menu-animation-duration) ease, transform var(--menu-animation-duration) ease, visibility var(--menu-animation-duration) ease; }

.fullscreen_menu.is_open { visibility: visible; opacity: 1; transform: translateY(0); pointer-events: auto; }

.fullscreen_menu_header { min-height: 120px; }

.fullscreen_menu .logo img { opacity: 0.85; }

.fullscreen_menu .book_now a { color: var(--menu-overlay-text); border-color: var(--menu-overlay-border); }

.close_icon { position: relative; display: block; width: 21px; height: 21px; }

.close_icon::before, .close_icon::after { position: absolute; top: 10px; left: 0; width: 21px; height: 1px; background: currentColor; content: ""; }

.close_icon::before { transform: rotate(45deg); }

.close_icon::after { transform: rotate(-45deg); }

.fullscreen_menu_inner { width: 100%; padding: 52px 20px 80px; box-sizing: border-box; }

.menu_navigation { width: min(100%, 1015px); margin: 0 auto; }

.primary_menu, .secondary_menu { padding: 0; margin: 0; list-style: none; }

.primary_menu { margin-bottom: 58px; }

.primary_menu li { margin-bottom: 25px; }

.primary_menu a { display: inline-block; color: var(--menu-overlay-text); font-family: var(--heading-font); font-size: clamp(24px, 2vw, 31px); font-weight: 700; line-height: 1.25; letter-spacing: 7px; text-decoration: none; text-transform: uppercase; transition: color 0.3s ease, transform 0.3s ease; }

.primary_menu a:hover, .primary_menu a:focus-visible { color: var(--menu-overlay-accent); transform: translateX(9px); }

.secondary_menu li { margin-bottom: 22px; }

.secondary_menu a { display: inline-block; color: var(--menu-overlay-text); font-size: 20px; line-height: 25px; text-decoration: none; transition: color 0.3s ease, transform 0.3s ease; font-family: var(--text-font); }

.secondary_menu a:hover, .secondary_menu a:focus-visible { color: var(--menu-overlay-accent); transform: translateX(7px); }

.primary_menu li, .secondary_menu li { opacity: 0; transform: translateY(18px); transition: opacity 0.5s ease, transform 0.5s ease; }

.fullscreen_menu.is_open .primary_menu li, .fullscreen_menu.is_open .secondary_menu li { opacity: 1; transform: translateY(0); }

.fullscreen_menu.is_open .primary_menu li:nth-child(1) { transition-delay: 0.16s; }

.fullscreen_menu.is_open .primary_menu li:nth-child(2) { transition-delay: 0.21s; }

.fullscreen_menu.is_open .primary_menu li:nth-child(3) { transition-delay: 0.26s; }

.fullscreen_menu.is_open .primary_menu li:nth-child(4) { transition-delay: 0.31s; }

.fullscreen_menu.is_open .primary_menu li:nth-child(5) { transition-delay: 0.36s; }

.fullscreen_menu.is_open .secondary_menu li:nth-child(1) { transition-delay: 0.41s; }

.fullscreen_menu.is_open .secondary_menu li:nth-child(2) { transition-delay: 0.46s; }

.fullscreen_menu.is_open .secondary_menu li:nth-child(3) { transition-delay: 0.51s; }

.fullscreen_menu.is_open .secondary_menu li:nth-child(4) { transition-delay: 0.56s; }

.fullscreen_menu_header { padding: 5px 50px;}

.site_header { transition: background-color 0.35s ease, box-shadow 0.35s ease; }

.site_header .header-inner { transition: background-color 0.35s ease; }

.site_header .menu_text, .site_header .Header_languageActive, .site_header .MiravalHeader_language, .site_header .book_now a { transition: color 0.35s ease, border-color 0.35s ease; }

.site_header .Hamburger_hamburgerBox span, .site_header .Hamburger_hamburgerBox span::before, .site_header .Hamburger_hamburgerBox span::after { transition: background-color 0.35s ease; }

.site_header.is-scrolled { background-color: #fafafa; box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08); }

.site_header.is-scrolled .header-inner { background-color: #fafafa; padding: 5px 50px; }

.site_header.is-scrolled .menu_text, .site_header.is-scrolled .book_now a { color: #6b775f; }

.site_header.is-scrolled .book_now a { border-color: #6b775f; }

.site_header.is-scrolled .Hamburger_hamburgerBox span, .site_header.is-scrolled .Hamburger_hamburgerBox span::before, .site_header.is-scrolled .Hamburger_hamburgerBox span::after { background-color: #6b775f; }

.site_header.is-scrolled .Hamburger_hamburgerBox::before, .site_header.is-scrolled .Hamburger_hamburgerBox::after, .site_header.is-scrolled .Hamburger_hamburgerBox span { background-color: #6b775f;  }
 

.top_bar { background-color: #6b775f; min-height: 40px; display: flex; align-items: center; justify-content: center; }
.top_bar p { font-family: var(--heading-font); font-weight: var(--font-weight-regular); font-size: 14px; line-height: 30px; letter-spacing: 3px; text-transform: uppercase; text-align: center;  color: var(--white-color); }
.top_bar p a { color: #8b5a3c;; text-decoration: none; }
.top_bar p a svg { fill: none; transition: fill 0.3s ease; width: 20px; height: 10px;}
.top_bar p a svg path { stroke: #8b5a3c; transition: fill 0.3s ease; }
.top_bar p a:hover { color: var(--white-color); }
.top_bar p a:hover svg path { stroke: var(--white-color); }

.header-inner {  padding: 5px 50px; box-sizing: border-box; }
  
.nav_bar { display: flex; align-items: center; justify-content: flex-start; }

.menu_actions { display: flex; align-items: center; }

.menu-toggle { display: inline-flex; align-items: center; gap: 16px; padding: 0; border: 0; background: transparent; color: var(--white-color); cursor: pointer; text-transform: uppercase; }

.Hamburger_hamburgerBox { position: relative; display: inline-block; width: 48px; height: 13px; }

.Hamburger_hamburgerBox::before, .Hamburger_hamburgerBox::after, .Hamburger_hamburgerBox span { position: absolute; left: 0; width: 48px; height: 1px; background-color: var(--white-color); content: ""; transition: transform 0.3s ease, opacity 0.3s ease; }

.Hamburger_hamburgerBox::before { top: 0; }

.Hamburger_hamburgerBox span { top: 6px; }

.Hamburger_hamburgerBox::after { top: 12px; }

.menu_text { font-size: 18px; font-family: var(--heading-font); font-weight: var(--font-weight-regular); letter-spacing: 4px; line-height: 22px; }

.menu-toggle[aria-expanded="true"] .Hamburger_hamburgerBox::before { top: 6px; transform: rotate(45deg); }

.menu-toggle[aria-expanded="true"] .Hamburger_hamburgerBox span { opacity: 0; }

.menu-toggle[aria-expanded="true"] .Hamburger_hamburgerBox::after { top: 6px; transform: rotate(-45deg); }

.logo { display: flex; align-items: center; justify-content: center; }

.logo a { display: inline-flex; }

.logo img { display: block; width: 105px; height: auto; object-fit: contain; }

.header_actions { display: flex; align-items: center; justify-content: flex-end; gap: 40px; }

.translationToggleContainer { display: flex; align-items: center; }

.translationToggle_inner { display: flex; align-items: center; min-width: 120px; height: 22px; padding: 2px; border-radius: 30px; background: #6b775f; backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); }

.Header_languageActive, .MiravalHeader_language { display: flex; align-items: center; justify-content: center; width: 50%; height: 20px; padding: 0 10px; border: 0; border-radius: 30px; font-size: 12px; letter-spacing: 2px; line-height: 14px; white-space: nowrap; }

.Header_languageActive { background-color: var(--white-color); color: #6b775f; text-transform: uppercase; }

.MiravalHeader_language { border: 0; background: transparent; color: var(--white-color); cursor: pointer; font-family: inherit; }

.book_now a { color: var(--white-color); font-family: var(--text-font); font-size: 18px; font-weight: var(--font-weight-semi-bold); line-height: 28px; letter-spacing: 0.12em; text-transform: uppercase; transition: opacity 0.25s ease; text-decoration: none; }

.book_now a:hover { opacity: 0.7; }

/******************* Hero Section *******************/

.video-banner { position: relative; display: flex; align-items: flex-end; justify-content: center; width: 100%; min-height: 90vh; background: #1a1a16; max-height: 47.5rem; padding: 3.75rem 0;}

.video-banner_media { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }

.video-banner_overlay { position: absolute; inset: 0; background: rgba(0, 0, 0, .6); pointer-events: none; }

.video-banner_content { position: relative; z-index: 2; width: 100%; padding: 0 20px 68px; color: var(--white-color); text-align: center; }

.video-banner_eyebrow { margin: 0 0 15px; font-family: var(--text-font); font-size: 14px; font-weight: var(--font-weight-medium); line-height: 14px; letter-spacing: 3px; text-transform: uppercase; color: var(--white-color);}

#page .video-banner_title { margin: 0; color: var(--white-color); font-family: var(--heading-font); font-size: 48px; line-height: 60px; letter-spacing: 4px; text-transform: uppercase; }

.video-banner_toggle { position: absolute; right: 28px; bottom: 28px; z-index: 3; display: flex; align-items: center; justify-content: center; width: 48px; height: 48px; padding: 0; border: 1px solid rgba(255, 255, 255, 0.85); border-radius: 50%; background: rgba(0, 0, 0, 0.12); color: var(--white-color); cursor: pointer; transition: background 0.25s ease, transform 0.25s ease; }

.video-banner_toggle:hover { background: rgba(0, 0, 0, 0.35); transform: scale(1.06); }

.pause-icon { display: flex; gap: 5px; }

.pause-icon::before, .pause-icon::after { display: block; width: 2px; height: 14px; background: var(--white-color); content: ""; }

.play-icon { display: none; width: 0; height: 0; margin-left: 3px; border-top: 7px solid transparent; border-bottom: 7px solid transparent; border-left: 10px solid var(--white-color); }

.video-banner_toggle.is-paused .pause-icon { display: none; }

.video-banner_toggle.is-paused .play-icon { display: block; }

.video-banner_scroll { position: absolute; bottom: -18px; left: 50%; z-index: 3; display: flex; align-items: flex-start; justify-content: center; width: 42px; height: 42px; border: 1px solid rgba(255, 255, 255, 0.7); border-radius: 50%; transform: translateX(-50%); }

.video-banner_scroll span { position: absolute; top: -26px; width: 1px; height: 30px; background: var(--white-color); }

.hero-banner { position: relative; }

.hero_scrollDownArrow { position: absolute; bottom: -31px; left: 50%; z-index: 5; display: flex; align-items: center; justify-content: center; width: 90px; height: 90px; color: var(--white-color); transform: translateX(-50%);   }
.hero_scrollDownArrow a { color: #fff;}

.hero_scrollLine { position: absolute; top: -10px; left: 50%; z-index: 2; display: block; transform: translateX(-50%); fill: #fff; }

.hero_scrollCircle { position: absolute; inset: 0; display: block; width: 90px; height: 90px; animation: heroCircleRotate 18s linear infinite; stroke: #6b775f; }

.hero_scrollCircle circle { stroke: #6b775f;  }

@keyframes heroCircleRotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
 

/**************** Destination Section *****************/

.destination-section { position: relative; display: flex; align-items: center; justify-content: center; min-height: 260px; padding: 60px 20px; overflow: hidden; text-align: center;  background-image: url("images/assets/more_bkgrd.webp"); background-repeat: no-repeat; background-position: center; background-size: cover; }
 
.destination-section__content { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; }

#page .destination-section .section-title { text-transform: capitalize; letter-spacing: 1px; font-weight: 700;}

#page .section-title { margin: 0 0 25px; }

.destination-section p { margin: 0; }
 
/**************** Red Sea Gallery Section *****************/

.red-sea-gallery-section { position: relative; padding: 130px 20px; overflow: hidden; background-color: #f4f5ed; background-image: url("images/assets/mirval_bkgrd.webp"); background-repeat: no-repeat; background-position: top center; background-size: cover; }

.red-sea-gallery-container { width: 100%; max-width: 760px; margin: 0 auto; }

.red-sea-gallery-heading { margin-bottom: 30px; text-align: center; } 

.red-sea-gallery-heading p { margin: 0;  }

.red-sea-gallery-grid { display: grid; grid-template-columns: 1fr 1fr 1.18fr; grid-template-rows: 400px 406px; gap: 14px; }

.red-sea-gallery-item { position: relative; overflow: hidden; }

.red-sea-gallery-item img { display: block; width: 100%; height: 100%; object-fit: cover; }

.red-sea-gallery-item--hero { grid-column: 1 / 3; grid-row: 1 / 2; }

.red-sea-gallery-item--tall { grid-column: 3 / 4; grid-row: 1 / 3; }

.red-sea-gallery-item--small { grid-row: 2 / 3; }

.red-sea-gallery-item::after { position: absolute; inset: 0; content: ""; background: rgba(26, 46, 42, 0); transition: background-color 300ms ease; pointer-events: none; }

.red-sea-gallery-item:hover::after { background: rgba(26, 46, 42, 0.25); }

/******************* Spirit Section *******************/

#page .section-eyebrow { margin-bottom: 20px; }

.spirit-section { padding: 140px 20px; background-color: var(--white-color); border-top: 1px solid #6e5e49; padding-bottom: 40px; }

.spirit-container { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr); align-items: center; gap: 110px; }

.spirit-image { height: 100%; overflow: hidden; }

.spirit-image img { display: block; width: 100%; height: 690px; object-fit: cover; }

.spirit-content { padding: 0;  }
 
.spirit-content .button { margin-top: 20px; }

.spirit-button-arrow { transition: transform 300ms ease; }
 

.button:hover .spirit-button-arrow { transform: translateX(5px); }

#page .section-content p { margin-bottom: 20px; }

/******************* Berkshires Section *******************/

.berkshires-section { position: relative; overflow: hidden; padding: 350px 20px 130px; background-image: url("images/assets/season_bkgrd.webp"); background-repeat: no-repeat; background-position: center; background-size: cover; }

.berkshires-section::before, .berkshires-section::after { content: ""; position: absolute; left: 0; z-index: 2; width: 100%; height: 170px; pointer-events: none; background-repeat: repeat-x; background-size: auto 100%; }

.berkshires-section::before { top: 0; background-image: url("images/assets/white_btm_shape.webp"); background-position: top center; }

.berkshires-container { position: relative;  margin: 0 auto; }

.berkshires-image { width:85%; height: 756px; overflow: hidden; }

.berkshires-image img { display: block; width: 100%; height: 100%; object-fit: cover; }

.berkshires-content-card { position: absolute; z-index: 1; width: 350px; min-height: auto; margin-left: auto; padding: 90px 50px 90px 50px; background-color: #ffffff; box-shadow: 0 4px 12px rgba(42, 35, 25, 0.08); top: -100px; right: 0;}

#page .berkshires-content-card p { font-size: 14px; line-height: 22px; }
#page .berkshires-content-card .section-eyebrow { margin-bottom: 10px; }
#page .berkshires-content-card h2 { color: var(--black-color); margin: 0 0 15px; font-size: 43px;}

.berkshires-highlight { font-style: italic; }

.berkshires-link { display: inline-flex; align-items: center; gap: 9px; margin-top: 5px; color: #36332f; font-family: Arial, sans-serif; font-size: 10px; font-weight: 600; letter-spacing: 0.25px; line-height: 1; text-decoration: none; transition: gap 0.3s ease, color 0.3s ease; }

.berkshires-arrow { width: 18px; height: auto; transition: transform 0.3s ease; }

.berkshires-link:hover { gap: 14px; color: #85735b; }

.berkshires-link:hover .berkshires-arrow { transform: translateX(4px); }

/******************* Miraval Spa Section *******************/

.miraval-spa-section { background-image: url("images/assets/spa_bkgrd.webp"); background-repeat: no-repeat; background-position: center; background-size: cover; padding-top: 250px; }
.berkshires-section.miraval-spa-section::before { display: none;}
.miraval-spa-section .berkshires-content-card { right: inherit; left: 0;}
 
#page .miraval-spa-section .button-link { width: 100%;  gap: 70px;}
.miraval-spa-section .berkshires-image { margin-left: auto;}


/************** Responsive Media Queries ***************/






@media (max-width: 991px) {

.header-inner .full-width, .fullscreen_menu_header { padding: 0 24px; }
.header_actions { gap: 16px; }
.fullscreen_menu_inner { padding-top: 48px; }
.menu_navigation { width: min(100%, 720px); }

.spirit-section { padding: 70px 20px; }
.spirit-container { grid-template-columns: 1fr; }
.spirit-image { min-height: 460px; }
.spirit-content { padding: 55px 48px; }


.berkshires-section { padding: 80px 24px; }
.berkshires-container { width: min(100%, 760px); min-height: 430px; }
.berkshires-image { top: 48px; width: 68%; height: 350px; }
.berkshires-content-card { width: 325px; min-height: 405px; padding: 45px 36px 38px; }




}

@media (max-width: 767px) {

.header-inner .full-width, .fullscreen_menu_header { min-height: 72px; padding: 0 18px; }
.menu_text, .close_text { display: none; }
.header-inner .logo img, .fullscreen_menu_header .logo img { width: 104px; }
.fullscreen_menu .translationToggleContainer { display: none; }
.fullscreen_menu .book_now a { padding: 10px 12px; font-size: 11px; }
.fullscreen_menu_inner { padding: 44px 24px 60px; }
.primary_menu { margin-bottom: 44px; }
.primary_menu li { margin-bottom: 21px; }
.primary_menu a { font-size: 21px; letter-spacing: 3px; }
.secondary_menu li { margin-bottom: 17px; }
.secondary_menu a { font-size: 17px; }    
.destination-section { min-height: 260px; padding: 50px 24px; } 
.desktop-break { display: none; }

.video-banner { min-height: 720px; } 
.video-banner_content { padding: 0 18px 76px; }
.video-banner_toggle { right: 18px; bottom: 22px; width: 42px; height: 42px; }

.berkshires-section { padding: 65px 18px; }
.berkshires-container { min-height: auto; }
.berkshires-image { position: relative; top: auto; left: auto; width: 100%; height: 265px; }
.berkshires-content-card { width: calc(100% - 26px); min-height: auto; margin: -38px 0 0 auto; padding: 36px 28px 34px; } 


}

@media (max-width: 575px) {

.spirit-section { padding: 48px 16px; }
.spirit-image { min-height: 310px; }
.spirit-content { padding: 38px 28px 42px; }
.spirit-eyebrow { margin-bottom: 14px; font-size: 10px; letter-spacing: 1.5px; }
.spirit-content h2 { margin-bottom: 22px; font-size: 36px; }
.spirit-content p { font-size: 14px; line-height: 1.65; }
.spirit-button { margin-top: 10px; }

}