@import url("https://use.typekit.net/nov4riw.css");
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

:root {
  /* Typography */
  --heading-font-family: "neue-haas-grotesk-display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  --body-font-family: "inter-variable", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";

  /* Colors */  
  --brand-black: #000000;
  --brand-white: #ffffff;
  --heading-color: #0a2b36;
  --body-color: #0a2b36cc;


  /* Neutrals */
  --neutral-light:#f7f7f7;

}




/*--------------------------------------------------------------
  >> : Typography
--------------------------------------------------------------*/

  body {
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    -webkit-tap-highlight-color: transparent;
    overflow-x: hidden;
    font-family: var(--body-font-family);
    color: var(--body-color);
    font-style: normal;
    font-variation-settings: "slnt" 0, "wght" 400;
  }

  .small, small {
    font-size: 0.75rem;
  }

  h1, .h1,
  h2, .h2,
  h3, .h3,
  h4, .h4,
  h5, .h5,
  h6, .h6 {
    font-family: var(--heading-font-family);
    color: var(--heading-color);
    font-optical-sizing: auto;
    font-weight:600;
    font-style: normal;
  }

  h1, .h1 {
    line-height: 1.1;
    font-size: clamp(40px, 8vw, 91px);
  }

  h2, .h2 {
    font-size: clamp(35px, 5vw, 53px);
    line-height: 1.1;
    margin-bottom: .4em;
  }

  h3, .h3 {
    font-size: clamp(24px, 4vw, 30px);
    line-height: 1.1;
    line-height: 1.25;
  }

  h4, .h4 {
    font-size: 1.8rem;
    line-height: 1.5;
  }

  h5, .h5 {
    font-size: 1.7rem;
    line-height: 1.5;
  }

  h6, .h6 {
    font-size: 0.8rem;
    line-height: 1.5;
    text-transform: uppercase;
    font-weight: normal;
  }

  @media (max-width: 992px) {

    h1, .h1 {
      font-size: 2.6rem;
    }

    h2, .h2 {
      font-size: 2.3rem;
    }

    h3, .h3 {
      font-size: 1.9rem;
    }
  }

  h1:first-child,
  h2:first-child,
  h3:first-child,
  h4:first-child,
  h5:first-child,
  h6:first-child,
  p:first-child, 
  ul:first-child, 
  ol:first-child {
    margin-top: 0;
  }

  h1:last-child,
  h2:last-child,
  h3:last-child,
  h4:last-child,
  h5:last-child,
  h6:last-child,
  p:last-child, 
  ul:last-child, 
  ol:last-child {
    margin-bottom: 0;
  }

  a {
    color: inherit;
  }

  p {
    font-size:1em;
      font-optical-sizing: auto;
      font-weight: 400;
      font-style: normal;
  }


/*--------------------------------------------------------------
  >> : Basic Asset Sizes and Setup
--------------------------------------------------------------*/

  picture {
    display: inline-block;
    width: 100%;
    height: auto;
    overflow: hidden;
  }

  picture img {
    width: 100%;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center center;
       object-position: center center;
  }

  video {
    width: 100%;
    height: auto;
    vertical-align: middle;
  }

/*--------------------------------------------------------------
  >> : Forms
--------------------------------------------------------------*/
  
  [readonly="readonly"] {
    position: relative;
    background: #f7f7f7;
    color: #585858;
    pointer-events: none;
    cursor: not-allowed;
  }
  
/*--------------------------------------------------------------
  >> : Min Height Utilities
--------------------------------------------------------------*/
  .min-vh-25 {
    min-height: 25vh!important;
  }

  .min-vh-50 {
    min-height: 50vh!important;
  }

  .min-vh-75 {
    min-height: 75vh!important;
  }


/*--------------------------------------------------------------
  >> : Section Font Colors
--------------------------------------------------------------*/

[data-color="color-white"] * {
    color: #fff;
}


/*--------------------------------------------------------------
  >> : Section Background Colors
--------------------------------------------------------------*/


/*--------------------------------------------------------------
  >> : Paddings
--------------------------------------------------------------*/
.pb-6 {
  padding-bottom: calc(4rem + 60px)!important;
}

/*--------------------------------------------------------------
  >> : Button
--------------------------------------------------------------*/

  .btn,
  .wpcf7 .wpcf7-submit {
    padding: 19px 22px;
    min-height: 58px;
    line-height: 1;
    font-size:1.1em !important;
    font-family:var(--heading-font-family);
    font-weight:600;
    text-align: center;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 12px;
    border-radius: 8px !important;
    letter-spacing: .36px;
    text-transform: capitalize !important;
  }

  .btn-check:focus+.btn, .btn:focus {
    outline: 0;
    box-shadow: unset;
  }


  .btn.btn-standard {
    color:var(--brand-black);
    border:1px solid var(--brand-black);
  }

  .btn.btn-standard:focus {
    box-shadow: 0px 0px 0px 2px #00000075; !important;
  }

  .btn.btn-standard:hover {
    background:var(--brand-black);
    color:var(--brand-white);
  }
  
  [data-color="color-white"] .btn.btn-standard {
    color:var(--brand-white);
    border:1px solid var(--brand-white);
  }

  [data-color="color-white"] .btn.btn-standard:focus {
    box-shadow: 0px 0px 0px 2px #00000075; !important;
  }

  [data-color="color-white"] .btn.btn-standard:hover {
    background:var(--brand-white);
    color:var(--brand-black);
  }

  .btn.btn-white {
    color:var(--brand-black);
    background:var(--brand-white);
    border:none;
  }

  .btn.btn-white:focus {
    box-shadow: 0px 0px 0px 2px #ffffff75; !important;
  }

  .btn.btn-white:hover {
    background:var(--brand-black);
    color:var(--brand-white);
  }

  .btn.btn-black,
  .wpcf7 .wpcf7-submit {
    color:var(--brand-white) !important;
    background:var(--brand-black) !important;
    border:none !important;
  }

  .btn.btn-black:focus,
  .wpcf7 .wpcf7-submit:focus {
    box-shadow: 0px 0px 0px 2px #00000075; !important;
  }

  .btn.btn-black:hover,
  .wpcf7 .wpcf7-submit:hover {
    background:#1D5140 !important;
    color:var(--brand-white) !important;
  }

  .btn.btn-bordered {
    color:var(--brand-white);
    background:transparent;
    border:none;
    border-bottom:1px solid var(--brand-black);
    color:var(--brand-black);
    padding-left:0px;
    padding-right:0px;
  }

  .btn.btn-bordered:focus {
    box-shadow: 0px 2px 0px 0px #00000075; !important;
  }

  .btn.btn-gold {
    color:var(--brand-black);
    background:var(--color-gold-400);
    border:none;
  }

  .btn.btn-gold:focus {
    box-shadow: 0px 0px 0px 2px background:var(--color-gold-50) !important;
  }

  .btn.btn-gold:hover {
    background:var(--color-gold-600);
    color:var(--brand-white);
  }

  .col-inner .btn:nth-child(even) {
    margin-right: 30px !important;
  }

  