/*-- -------------------------- -->
<---        Core Styles         -->
<--- -------------------------- -*/
/* Mobile */
@media only screen and (min-width: 0rem) {
  :root {
    --primary: #853a3a;
    --primaryLight: #c65d59;
    --secondary: #fcd5ce;
    --secondaryLight: #ffba43;
    --headerColor: #1a1a1a;
    --bodyTextColor: #4e4b66;
    --bodyTextColorWhite: #fafbfc;
    /* 13px - 16px */
    --topperFontSize: clamp(0.8125rem, 1.6vw, 1rem);
    /* 31px - 49px */
    --headerFontSize: clamp(1.9375rem, 3.9vw, 3.0625rem);
    --bodyFontSize: 1rem;
    /* 60px - 100px top and bottom */
    --sectionPadding: clamp(3.75rem, 7.82vw, 6.25rem) 1rem;
  }
  @font-face {
    font-display: swap;
    font-family: "Catchy Mager";
    font-style: normal;
    font-weight: 400;
    src: url("../assets/fonts/catchy-mager-normal.woff2") format("woff2");
    
    /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  @font-face {
    font-display: swap;
    font-family: "New Icon Script";
    font-style: normal;
    font-weight: 400;
    src: url("../assets/fonts/new-icon-script.woff2") format("woff2");
    
    /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  /* quicksand-regular - latin */
  @font-face {
    font-display: swap;
    font-family: "Quicksand";
    font-style: normal;
    font-weight: 400;
    src: url("../assets/fonts/quicksand-v36-latin-regular.woff2") format("woff2");
    
    /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  /* quicksand-600 - latin */
  @font-face {
    font-display: swap;
    font-family: "Quicksand";
    font-style: normal;
    font-weight: 600;
    src: url("../assets/fonts/quicksand-v36-latin-600.woff2") format("woff2");
    
    /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  /* great-vibes-regular - latin */
  @font-face {
    font-display: swap;
    font-family: "Great Vibes";
    font-style: normal;
    font-weight: 400;
    src: url("../assets/fonts/great-vibes-v20-latin-regular.woff2") format("woff2");
    
    /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  body,
  html {
    margin: 0;
    padding: 0;
    font-size: 100%;
    font-family: "Quicksand", Arial, sans-serif;
    color: var(--bodyTextColor);
    overflow-x: hidden;
  }
  *,
  *:before,
  *:after {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  body {
    -webkit-transition: background-color 0.3s;
    transition: background-color 0.3s;
  }
  .container {
    position: relative;
    width: 92%;
    margin: auto;
  }
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    margin: 0;
    color: var(--headerColor);
  }
  p,
  li,
  a {
    font-size: 1rem;
    line-height: 1.5em;
    margin: 0;
  }
  p,
  li {
    color: var(--bodyTextColor);
  }
  a:hover,
  button:hover {
    cursor: pointer;
  }
  body.dark-mode .cs-topper {
    color: var(--secondary);
  }
  .cs-title {
    font-size: var(--headerFontSize);
    font-weight: 400;
    line-height: 1.2em;
    text-align: inherit;
    max-width: 43.75rem;
    margin: 0 0 1rem 0;
    color: var(--headerColor);
    position: relative;
    font-family: "New Icon Script", Arial, sans-serif;
  }
  .cs-text {
    font-size: var(--bodyFontSize);
    line-height: 1.5em;
    text-align: inherit;
    width: 100%;
    max-width: 40.625rem;
    margin: 0;
    margin-bottom: 1.625rem;
    color: var(--bodyTextColor);
  }
  .cs-button-solid {
    font-size: 1.125rem;
    /* 46px - 56px */
    border: 2px solid #986d40;
    line-height: clamp(2.875rem, 8vw, 3.5rem);
    text-decoration: none;
    font-weight: 400;
    margin: auto;
    color: var(--headerColor);
    padding: 0 1.5rem;
    display: inline-block;
    position: relative;
    z-index: 1;
  }
  .cs-button-solid:hover {
    color: #fff;
  }
  .cs-button-solid:hover:before {
    height: 100%;
  }
  .cs-button-solid:before {
    /* hover box */
    content: "";
    position: absolute;
    display: block;
    height: 0%;
    width: 100%;
    background: #986d40;
    opacity: 1;
    bottom: 0;
    left: 0;
    z-index: -1;
    -webkit-transition: height 0.5s;
    transition: height 0.5s;
  }
  .skip {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    z-index: -1111111;
  }
}
/*-- -------------------------- -->
<---          Footer            -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #footer-1390 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: var(--sectionPadding);
    padding-top: 1rem;
    padding-bottom: 1rem;
    position: relative;
    z-index: 1;
  }
  #footer-1390 .cs-logo {
    width: 100%;
    max-width: 13.0625rem;
    height: auto;
    display: block;
    color: var(--headerColor);
    font-family: "New Icon Script", Arial, sans-serif;
    font-size: 1.5rem;
    text-decoration: none;
    -ms-flex-item-align: center;
        align-self: center;
  }
  #footer-1390 .cs-bottom {
    max-width: 80rem;
    margin: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1rem;
  }
  #footer-1390 .cs-copyright {
    font-size: 1rem;
    color: var(--headerColor);
    line-height: 1.5em;
    margin: 0;
    display: block;
  }
  #footer-1390 .cs-copyright-link,
  #footer-1390 .cs-separater {
    font-size: 1rem;
    text-decoration: none;
    color: var(--headerColor);
    -webkit-transition: color 0.3s;
    transition: color 0.3s;
  }
  #footer-1390 .cs-copyright-link:hover,
  #footer-1390 .cs-separater:hover {
    color: var(--primary);
  }
  #footer-1390 .cs-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #footer-1390 .cs-separater {
    margin: 0 1rem;
    display: none;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #footer-1390 .cs-bottom {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  #footer-1390 .cs-separater {
    display: inline-block;
  }
  #footer-1390 .cs-flex {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin: 0;
    margin-left: auto;
  }
}
