/*-------------------
Sample CSS overwriting main.css rules

[Table of contents]
    0 Set default color 
    1 Typography
    2 Fullscreen menu
    3 Content layout
    4 Page cover scroll animation
[Colors]
    Black : #1d1d1d;
    White : #FFFFFF;
*/
/* 0 Set default color */
body {
  color: #2B4429;
  background: #ffffff; }

/* 1 Typography */
.h-title, .i-title, .s-title, .item-title {
  font-weight: bold; }

.text-stroke {
  -webkit-text-stroke: 2px #623C1C;
  color: transparent; }

.section-page .section-header p,
.section-page .section-content p {
  font-family: "Proxima Nova", "Noto Sans", "Segoe UI", "Opensans", "Roboto", "Helvetica", -apple-system, system-ui, BlinkMacSystemFont, sans-serif;
  max-width: 40rem; }

.bg-level-1 {
  background: #f1f2f3; }

.bg-level-2 {
  background: #eaeaea; }

/* 2 Fullscreen menu */
.navfull-menu {
  background: #ffffff;
  color: #4d4d4d; }
  .navfull-menu .nav-menu a {
    -webkit-text-stroke: 2px #4d4d4d;
    color: transparent; }
    .navfull-menu .nav-menu a:hover {
      color: #4d4d4d; }

/* 3 Content layout */
/* Title style */
@media screen and (min-width: 992px) {
  .section-header .h-content {
    padding-left: 0rem; }
    .section-header .h-content:before {
      display: none; }
    .section-header .h-content h2 {
      font-size: 5rem; } }

/* content size */
.width-medium {
  max-width: 55rem;
  width: 100%; }

@media screen and (min-width: 992px) {
  .section-header .mt-btn {
    margin-top: 1rem; } }

/* 4 Page cover scroll animation */
.page-cover::before {
  position: absolute;
  z-index: 1;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.5;
  background: #0d0d0d;
  transition: 0.6s; }

.page-cover.scrolled::before {
  opacity: 0.95; }
  #newsletter-popup {
    margin: 70px auto;
    padding: 30px 40px 40px;
    background: #c67251;
    border-radius: 5px;
    width: 25%;
    position: relative;
    transition: all 1s ease-in-out;
  }
  
  @media screen and (max-width: 1366px) {
    #newsletter-popup {
        width: 40%;
    }
  }
  
  @media screen and (max-width: 992px) {
    #newsletter-popup {
        width: 100%;
    }
  }
  
  .newsletter-overlay {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    transition: opacity 500ms;
    visibility: visible;
    opacity: 1;
    z-index: 11;
    display: none;
  }
  
  #newsletter-popup h3 {
    color: #fff;
    font-size: 24px;
    margin: 0 0 10px;
    font-family: 'Gloria Hallelujah', cursive;
  }
  
  #newsletter-popup input[type="text"] {
    width: 100%;
    height: 36px;
    border: none;
    text-indent: 10px;
    font-size: 13px;
    border-bottom: 2px solid #faeaec;
    border-top: 2px solid #fff;
    padding: 0;
    color: #fff;
    margin-bottom: 15px;
  }
  
  #newsletter-popup input[type="tel"] {
    width: 100%;
    height: 36px;
    border: none;
    text-indent: 10px;
    font-size: 13px;
    border-bottom: 2px solid #faeaec;
    border-top: 2px solid #fff;
    padding: 0;
    color: #fff;
    margin-bottom: 15px;
  }
  
  #newsletter-popup input[type="submit"] {
    background: #6EC5D9;
    border: none;
    border-bottom: 3px solid #57B8CE;
    color: #fff;
    text-align: center;
    display: block;
    padding: 0;
    line-height: 1.5;
    width: 100%;
    cursor: pointer;
    margin: 0;
    font-size: 21px;
    font-family: "Gloria Hallelujah", cursive;
    border-radius: 4px;
  }
  
  #newsletter-popup .popup-close {
    color: #fff;
    height: 30px;
    width: 30px;
    position: absolute;
    top: 10px;
    right: 10px;
    text-align: center;
    text-decoration: none;
    line-height: 30px;
    font-family: "Gloria Hallelujah", cursive;
    font-weight: bold;
  }