* {
  box-sizing: border-box;
}

:root {
  --primary-color: #150802;
  --white-color: #ffffff;
  --black-color: #000;
  --text-color: #263246;
  --orange-color: #FF9D00;
  --heading-color: #0C1D3B;
  --btn-background: #F3B63C;
  --section-margins: 32px;
  --section-padding: 32px;
  --transition: all 0.4s ease-in-out;
}

@media (min-width:768px) {
  :root {
    --section-margins: 70px;
    --section-padding: 70px;
  }
}

@media (min-width:1200px) {
  :root {
    --section-margins: 100px;
    --section-padding: 100px;
  }
}

html {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  /* overflow-x: hidden; */
}

body {
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: "Heebo", sans-serif;
  font-weight: normal;
  color: var(--text-color);
  background: var(--white-color);
  overflow-x: hidden;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6,
p {
  font-family: "Heebo", sans-serif;
  margin: 0;
  padding: 0;
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

a {
  font-family: "Heebo", sans-serif;
  text-decoration: none;
  -webkit-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
  color: var(--orange-color);
}

:focus {
  outline: none !important;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
  -webkit-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

iframe {
  max-width: 100%;
}

/**
  * Typography
  */

/*
  - Please set up line-heights in ems
  - Set up typography styling based on styles found in .xd file under Assets > Character Styles
  */

h1,
h2,
h3,
h4,
h5 {
  font-family: "Heebo", sans-serif;
}

h1 {
  color: var(--white-color);
  font-weight: 800;
  font-size: 18px;
  line-height: 1.4444444444444444em;
  text-transform: uppercase;
}

h2 {
  font-weight: 700;
  font-size: 24px;
  line-height: 1.3333333333333333em;
  text-align: center;
  color: var(--heading-color);
}

p {
  font-weight: 400;
  font-size: 12px;
  line-height: 1.5em;
  margin-bottom: 11px;
}

p:last-child {
  margin-bottom: 0px;
}

@media (min-width: 768px) {
  h1 {
    font-size: 48px;
    line-height: 70px;
  }

   h2 {
    font-size: 28px;
    line-height: 1.1428571428571428em;
    text-align: center;
  }

}

@media (min-width: 1025px) {
h2 {
    font-size: 42px;
    line-height: 1.1904761904761905em;
  }

p {
    font-size: 18px;
    line-height: 1.4444444444444444em;
    margin-bottom: 30px;
  }
}

p,
ul,
ol {
}

.page-content ul,
.page-content ol {
  /* fix for bulleted lists not wrapping around images correctly in Wordpress */
  width: auto;
  overflow: hidden;
  padding-left: 15px;
}

.page-content ul {
  list-style-type: none;
}

ol {
  padding-left: 25px;
}

ol li {
  counter-increment: list;
  position: relative;
  list-style-type: none;
}

ol li:before {
  content: counter(list) ".";
  position: absolute;
  left: 0;
}

ul li {
}

ul li:before {
}

ol {
  padding-left: 25px;
}

ol li {
  counter-increment: list;
  position: relative;
  list-style-type: none;
}

ol li:before {
  content: counter(list) ".";
  position: absolute;
  left: 0;
}

hr {
}

a {
  word-break: break-word;
  /* force link text to overflow when too long for container */
}

a:hover {
}

/*------------------------------------*\
      COMPONENTS
  \*------------------------------------*/

/**
   * Utility Margin/Padding Classes
   *
   * TODO: Update the --margins variable in custom-properties.css to match prototypes margins 
   */

/* Used on outer-most section container so section margins collapse */
.section-margins {
  margin-top: var(--section-margins);
  margin-bottom: var(--section-margins);
}

/* Used only for sections with colored backgrounds */
.section-padding {
  padding-top: var(--section-margins);
  padding-bottom: var(--section-margins);
}

/**
  * Clearfix
  * Apply clearing without adding additional markup
  */

.clearfix::after {
  display: block;
  clear: both;
  content: "";
}

/*--------------------------------------------------------------*\
       OBJECTS
       Objects are independent generic stylibf classes or UI peices.
       All styles for objects should be self contained.
   
       e.g. an object shouldn't rely on trump helpers to apply padding etc.
   \*--------------------------------------------------------------*/

/**
   * Buttons
   */


  .btn {
    position: relative;
    font-family: "Heebo", sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 1.5em;
    border: 1px solid transparent;
    border-radius: 4px;
    padding: 6px 26px 6px 12px;
  }

  .btn::after {
    content: "\e900";
    font-family: 'carnival' !important;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    transition: var(--transition);
    right: 8px;
  }

  .btn-primary {   
    border: 1px solid var(--btn-background);
    background: var(--btn-background);
    color: var(--primary-color);
  }

  .btn-primary:hover {
    color: #000;
    border: 1px solid #FFAC07;
    background: #FFAC07;
  }

  .btn-secondary {
    background: transparent;
    border-color: var(--primary-color);
    color: var(--primary-color);  
  }

  .btn-secondary:hover {
    background: transparent;
    color: var(--btn-background);
    border-color: var(--btn-background);
  }


  .btn + .btn {
    margin-left: 10px;
  }


@media (min-width: 600px) {
  .btn + .btn {
    margin-left: 16px;
  }

  .btn {
    font-weight: 500;
    font-size: 16px;
    line-height: 1.625em;
    padding: 12px 51px 12px 24px;
    border-radius: 8px;
  }
}

@media (min-width: 1200px) {
  .btn {
    font-size: 20px;
    line-height: 1.45em;
    padding: 12px 51px 12px 24px;
  }

  .btn::after {
    font-size: 25px;
    right: 16px;
  }

  .btn:hover::after {
    right: 6px;
  }
}



/**
   * Icons
   */
@font-face {
  font-family: 'carnival';
  src:
    url('../icons/carnival.ttf?3bzwqb') format('truetype'),
    url('../icons/carnival.woff?3bzwqb') format('woff'),
    url('../icons/carnival.svg?3bzwqb#carnival') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

[class^="icon-"], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'carnival' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-14:before {
  content: "\e90d";
}
.icon-13:before {
  content: "\e90c";
}
.icon-10:before {
  content: "\e909";
}
.icon-11:before {
  content: "\e90a";
}
.icon-12:before {
  content: "\e90b";
}
.icon-1:before {
  content: "\e900";
}
.icon-2:before {
  content: "\e901";
}
.icon-3:before {
  content: "\e902";
}
.icon-4:before {
  content: "\e903";
}
.icon-5:before {
  content: "\e904";
}
.icon-6:before {
  content: "\e905";
}
.icon-7:before {
  content: "\e906";
}
.icon-8:before {
  content: "\e907";
}
.icon-9:before {
  content: "\e908";
}






/**
   * Forms
   */
.form-col {
  width: 100%;
  display: block;
  margin-bottom: 16px;
}

.select select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  /* pointer-events: none; */
  
}

label {
}

.select {
  position: relative;
}

.select::after {
  content: "\e902";
  font-family: "carnival";
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  right: 18px;
  font-size: 18px;
  color: #334332;
  pointer-events: none;
}

select {
  width: 100%;
  height: 50px;
  background: #FFF6E5;
  border: 1px solid #F4EEEA;
  border-radius: 6px;
  padding: 10px 18px 10px 20px;
  font-family: "Heebo", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 27px;
  color: var(--text-color);
  opacity: 1;
}

textarea {
  width: 100%;
  height: 120px;
  background: #FFF6E5;
  border: 1px solid #F4EEEA;
  border-radius: 6px;
  padding: 10px 18px 10px 20px;
  font-family: "Heebo", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 27px;
  color: var(--text-color);
  opacity: 1;
  resize: none;
}

/* Removes default webkit form styling */
input:not([type="radio"]):not([type="checkbox"]),
button,
textarea {
  -webkit-appearance: none;
}

input:active,
textarea:active,
select:active,
input:focus,
textarea:focus,
select:focus {
  outline: none;
  /* Removes blue border on focus */
  /* border: 1px solid #ccc; */
  /* TODO: Please add a branded border for active and focus */
}

/* default text input style */
[type="text"],
[type="date"],
[type="datetime"],
[type="datetime-local"],
[type="email"],
[type="month"],
[type="number"],
[type="password"],
[type="search"],
[type="tel"],
[type="url"],
[type="week"],
[type="date"] {
  width: 100%;
  height: 50px;
  background: #FFF6E5;
  border: 1px solid #F4EEEA;
  border-radius: 6px;
  padding: 10px 18px 10px 20px;
  font-family: "Heebo", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 27px;
  color: var(--text-color);
  opacity: 1;
}

[type="text"]::placeholder,
[type="date"]::placeholder,
[type="datetime"]::placeholder,
[type="datetime-local"]::placeholder,
[type="email"]::placeholder,
[type="month"]::placeholder,
[type="number"]::placeholder,
[type="password"]::placeholder,
[type="search"]::placeholder,
[type="tel"]::placeholder,
[type="url"]::placeholder,
[type="week"]::placeholder,
[type="date"]::placeholder,
textarea::placeholder {
  font-family: "Heebo", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 27px;
  color: var(--text-color);
  opacity: 1;
}

/* Removes inconsistent padding from Firefox buttons */
button::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border: none;
  padding: 0;
}

.subheading {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5em;
  display: flex;
  align-items: center;
  color: var(--heading-color);
  position: relative;
  display: inline-block;
  background: var(--white-color);
  padding: 0 11px;
}

.subheading span{
  color: var(--orange-color);
}

.subheading::after {
  content: "";
  width: calc(100% + 80px);
  margin-left: -40px;
  height: 1px;
  background: var(--heading-color);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  z-index: -1;
}

.container {
  max-width: 1302px;
  padding: 0 24px;
}

.container-fluid {
    padding: 0 15px;
}

@media (min-width: 768px) {
  .container {
    padding: 0 30px;
  }  
}

@media (min-width: 1200px) {
  .container-fluid {
    padding: 0 24px;
  }

  .container {
    padding: 0 66px;
  }  

  .form-col {
    margin-bottom: 20px;
  }

}