/**************/
/* Typography */
/*****************************************/
.heading-h1 h1 {
  font-size: 36px;
  font-weight: 500;
  line-height: 1;
}
.heading-h2 h2 {
  font-size: 30px;
  font-weight: 500;
  line-height: 1.5;
}
.heading-h3 h3 {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.5;
}
.heading-h4 h4 {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
}
.heading-h5 h5 {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
}
.base-text p,
.base-text div {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.625;
}
.special-div div {
  font-size: 36px;
  font-weight: 600;
  line-height: 1;
}
@media (min-width: 1024px) {
  .heading-h1 h1 {
    font-size: 60px;
  }
}
@media (min-width: 640px) {
  .heading-h1 h1 {
    font-size: 48px;
  }
  .heading-h2 h2 {
    font-size: 36px;
  }
  .heading-h3 h3 {
    font-size: 30px;
  }
  .base-p p {
    font-size: 18px;
  }
  .special-div div {
    font-size: 48px;
  }
}

/**********/
/* Header */
/*****************************************/

.child-trigger {
	display: none; /* Hide button on Desktop */
}

@media (max-width: 991px) {
  header .header-wrapper .row-fluid-wrapper > .row-fluid > .widget-span > .row-fluid-wrapper.row-depth-1 {
    padding: 0.5rem 0 0.5rem 0.5rem!important;
  }
  header .header-wrapper .row-fluid-wrapper > .row-fluid > .widget-span > .row-fluid-wrapper.row-depth-1 > .row-fluid > .dnd-column {
    margin-top: 0;
    padding: 0;
  }
  header .header-logo a img {
    position: relative;
    z-index: 1;
    max-width: 115px;
  }
  
  
  .header .header-menu .hs-menu-wrapper {
    display: flex !important;
    flex-direction: row;
  }
  .header .header-menu .hs-menu-wrapper > ul {
    display: flex !important;
    flex-direction: row !important;
    justify-content: end !important;
    align-items: center !important;
  }
  .header .header-menu .hs-menu-wrapper > ul > li {
    flex-shrink: 1;
    display: inline-flex !important;
    justify-content: end !important;
    width: auto !important;
  }
  .header .header-menu .hs-menu-wrapper {
    background: transparent !important;
  }
  .header .header-menu .hs-menu-wrapper a {
    color: var(--base) !important;
    white-space: nowrap;
  }
}

@media (max-width: 767px) {
  .header .header-menu .header-menu-wrapper {
		-webkit-box-ordinal-group: 4;
		-ms-flex-order: 3;
		order: 3;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		justify-self: flex-end;
	}
  .header .header-menu .hs-menu-wrapper {
		display: none !important;
	}
  
  .mobile-trigger {
    display: block !important;
  }
}

@media (min-width: 767px) {
	.trigger {
		display: none !important;
	}
}

}
@media (max-width: 767px) {
  .trigger.hamburger {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  position: relative !important;
  z-index: 9999 !important;
}
}

.hamburger {
    padding: 15px 15px;
    display: inline-block;
    cursor: pointer;
    transition-property: opacity, filter;
    transition-duration: 0.15s;
    transition-timing-function: linear;
    font: inherit;
    color: inherit;
    text-transform: none;
    background-color: transparent;
    border: 0;
    margin: 0;
    overflow: visible;
}




/**************/
/* Button Hover */
/*****************************************/
a.btn.btn-solid:hover,
a.btn.btn-outline:hover,
a.btn.btn-link:hover,
.hs-button:hover {
  transform: unset;
  opacity: 1;
}
/* Solid Button */
a.btn.btn-solid:hover {
  background-color: var(--secondary);
  color: var(--white)!important;
  fill: var(--white);
}
a.btn.btn-solid.btn-secondary:hover {
  background-color: var(--primary);
  color: var(--white)!important;
  fill: var(--white);
}
/* Outline Button */
a.btn.btn-outline:hover {
  border-color: var(--secondary);
  color: var(--secondary)!important;
  fill: var(--secondary);
}
a.btn.btn-outline.btn-secondary:hover {
  border-color: var(--primary);
  color: var(--primary)!important;
  fill: var(--primary);
}
/* Link Button */
a.btn.btn-link:hover {
  color: var(--secondary)!important;
  fill: var(--secondary);
}
a.btn.btn-link.btn-secondary:hover {
  color: var(--primary)!important;
  fill: var(--primary);
}
/* Form */
.hs-button:hover {
  background-color: var(--secondary)!important;
  color: var(--white)!important;
  fill: var(--white)!important;
}