TABLE OF CONTENTS
  1. Config
    1.1 Variables
    1.2 Macros
  2. Global
  3. Layout
  4. Typography
  5. Header & Navigation
  6. Footer
  7. Buttons
  8. Forms
  9. Utilities
    9.1 Text Alignments
    9.2 Icons
    9.3 Gradients
    9.4 Flex Utility Classes
  10. Components
    10.1 Icon Cards
  11. Vendor
-------------------------------------------------------------------*/

/* FONT IMPORT */
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,400i,700|Poppins:300,400,400i,500,700,800&display=swap');

/* ============================================================
    1.1 VARIABLES
=============================================================== */

/* colors */


 










/* form state colors */


/* typography */



/* breakpoints  */



/* element designs */



/* ==========================================================================
   1.2 MACROS                                                 
============================================================================= */

/* How to use macros:  */













/* ==========================================================================
   2. GLOBAL
============================================================================= */
  
body {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
}

.row-fluid [class*="span"] {
    min-height: 0;
}

@media (min-width: 320px) and (max-width: 480px) {
  html, body {
    width: 100%;
    height: 100%;
    margin: 0px;
    padding: 0px;
    overflow-x: hidden; 
  }
  
  .body-container-wrapper img {
    margin-bottom: 32px;
  }
}

/* ==========================================================================
   3. LAYOUT
============================================================================= */

.container {
  z-index: 1;
  position: relative;
}

.container--wide {
  max-width: 1300px;
}

.fw-background {
  padding: 60px 0;
  background-size: cover !important;
  background-repeat: no-repeat;
  position: relative;
}

.fw-background--gradient-overlay:after {
  position: absolute;
  content:" ";
  top:0;
  left:0;
  width:100%;
  height:100%;
  display: block;
  z-index:0;
  background: linear-gradient(to bottom, rgba(94,179,252, 1), rgba(101,217,250,.5));
}

.col-centered {
  margin: 0 auto;
  float: none;
}

/**** section margins & padding ****/

.section--sm {
  margin: 32px 0;
}

.section--md {
  margin: 64px 0;
}

.section--lg {
  margin: 128px 0;
}

.section--pad-md {
  padding: 48px 0;
}

.padding--md {
  padding: 0 64px;
}

.col--padding, div.col--padding {
  padding: 0 32px;
}

/**** tablet ****/
@media (min-width: 768px) and (max-width: 1024px) {
  .row {
    padding: 0 20px;
  }
}
  
/**** phone ****/
@media (min-width: 320px) and (max-width: 480px) {
  .section--sm, .section--md, .section--lg {
    margin: 32px 0;
  }
  
  .section--pad-md, .padding--md {
    padding: 0;
  }
  .row {
    padding: 0 20px;
  }
  
  .mobile-img-first {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }
}

/* ==========================================================================
   4. TYPOGRAPHY                                             
============================================================================= */

body h1,
body h2,
body h3,
body h4,
body h5, 
body p {
  color: #333333;
  font-family: 'Poppins', sans-serif;
  margin: 0 0 1rem 0;
}

body h1,
body h2,
body h3,
body h4,
body h5 {
  line-height: 1.3;
/*   text-transform: uppercase; */
}

body p {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  margin: 0 0 2rem 0;
}




body h1 {
  font-size: 4.236rem;
}

body h2 {
  font-size: 2.618rem;
}

body h3 {
  font-size: 1.618rem;
}

body h4 {
  font-size: 1rem;
}

body p {
  font-size: 1rem;
}


h1, h2 {
/*   font-size: 52px; */
/*   letter-spacing: 1px; */
  font-weight: bold;
}

body a {
  color: #5FB3FB;
  transition: all 300ms ease;
  font-weight: bold;
}

ul, ol {
  font-family: 'Open Sans', sans-serif;
}

ul li, ol li {
  display: list-item;
  font-size: 1rem;
}

a:hover, a:focus {
  color: #5FB3FB;
  text-decoration: underline;
}

section.page-title__container {
  padding: 148px 0 80px;
}

.page-title, .page-subtitle {
  color: #fff;
}

.page-subtitle {
  font-size: 1.2rem;
}
  
.heading-section {
  text-align: center;
  margin-bottom: 32px;
}

@media (min-width: 320px) and (max-width: 480px) {
  .heading-section {
    margin-bottom: auto;
  }
}

.heading-section__title {
  margin-bottom: 20px;
}

.heading-section__sub-title {
  max-width: 800px;
  margin: 0 auto 32px;
  text-transform: inherit;
}

.heading-section__sub-heading {
  font-size: 15px;
  letter-spacing: .5px;
  margin-bottom: 16px;
  color: #7EC2FB;
  font-weight: bold;
  text-transform: uppercase;
}

.heading-section--white h1, .heading-section--white h2, .heading-section--white h3, .heading-section--white h4, .heading-section--white p  {
  color: #fff;
}

@media (min-width: 320px) and (max-width: 480px) {
  h1, h2, h3, h4, h5 {
    line-height: 1;
  }
}


/**** text modifiers ****/

.text--tm-symbol {
  font-size: 21px;
  vertical-align: super;
}

.text--standout {
  color: #5FB3FB;
}

.text--heading-border {
  position: relative;
}

.text--heading-border:after {
  content: "";
  background: #EE8371;
  height: 2px;
  width: 30px;
  position: absolute;
  left: 0;
  bottom: -10px;
}


/* ==========================================================================
   5. HEADER & NAVIGATION                                             
============================================================================= */

header {
  padding: 15px 0 14px;
  position: fixed;
  width: 100%;
  background: transparent;
  transition: all 100ms ease-in-out;
  z-index: 9;
  top: 0;
}

.header-container-wrapper {
    height: 0;
}

.header-background {
  background: #fffefe;
  
  -webkit-box-shadow: -2px 0 5px 0px rgba(0,0,0,0.1);
  -moz-box-shadow: -2px 0 5px 0px rgba(0,0,0,0.1);
  box-shadow: -2px 0 5px 0px rgba(0,0,0,0.1);

}

#header-container {
   
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flexbox;
	display: flex;

  
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;

  
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  justify-content: space-between;

}

#logo {
  max-width: 247px;
}

/* navigation */
#main-menu, #main-menu .hs-menu-wrapper {
   
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flexbox;
	display: flex;

}

#main-menu .hs-menu-wrapper.hs-menu-flow-horizontal > ul li a {
  padding: 16px;
  color: #fff;
  transition: all 300ms ease;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}


header.header-background #main-menu .hs-menu-wrapper.hs-menu-flow-horizontal > ul li a {
  color: #333333;
  font-weight: 500;
}

header.header-background #main-menu .hs-menu-wrapper.hs-menu-flow-horizontal > ul li a:hover {
  text-decoration: none;
  color: #EE8371;
}

header.header-background #main-menu .hs-menu-wrapper.hs-menu-flow-horizontal > ul li:hover {
  background: transparent;
}

/* #main-menu .hs-menu-wrapper.hs-menu-flow-horizontal > ul li a:last-child {
  padding-right: 0;
} */

/* #main-menu .hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children a:after {
    content: "\f078";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 10px;
    margin-left: 7px;
} */

/* sub nav */

.hs-menu-wrapper.hs-menu-flow-horizontal.flyouts>ul li.hs-item-has-children ul.hs-menu-children-wrapper {
  visibility:hidden;
  opacity:0;
  filter:alpha(opacity=0);
  -webkit-transition:200ms ease;
  -moz-transition:200ms ease;
  -o-transition:200ms ease;
  transition:200ms ease;
}
#main-menu .hs-menu-wrapper.hs-menu-flow-horizontal.flyouts > ul li.hs-item-has-children:hover > ul.hs-menu-children-wrapper {
  background: #fff;
  box-shadow: 0 0 0 1px rgba(0,0,0,.05), 0 5px 25px 0 rgba(0,0,0,.15), 0 3px 3px 0 rgba(0,0,0,.05);
  border-radius: 5px;
  visibility:visible;
  opacity:1;
  filter:alpha(opacity=100);
}
/* #main-menu .hs-menu-wrapper.hs-menu-flow-horizontal.flyouts > ul li.hs-item-has-children:hover > ul.hs-menu-children-wrapper:after {
  content: "";
  width: 25px;
  height: 25px;
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-bottom: 20px solid #fff;
} */

header #main-menu .hs-menu-wrapper.hs-menu-flow-horizontal>ul li > ul li a {
  color: #333333;
  padding: 12px 24px !important;
  font-weight: 400;
}

header #main-menu .hs-menu-wrapper.hs-menu-flow-horizontal>ul li > ul li {
  display: block;
}

#main-menu .hs-menu-wrapper.hs-menu-flow-horizontal>ul li > ul li:hover > a, #main-menu .hs-menu-wrapper.hs-menu-flow-horizontal>ul li > ul li a:hover   {
  color: #EE8371;
}

#main-menu .hs-menu-wrapper.hs-menu-flow-horizontal>ul li>ul li:first-child:hover> a {
  border-radius: 7px 7px 0 0;
}

#main-menu .hs-menu-wrapper.hs-menu-flow-horizontal>ul li>ul li:last-child:hover> a {
  border-radius: 0 0 7px 7px;
}

#main-menu .hs-menu-wrapper.hs-menu-flow-horizontal>ul li > ul li a:after {
  display: none;
}

/** mobile trigger **/
#mobile-trigger {
  height: 17px;
  width: 40px;
  display: none;
  position: absolute;
  right: 25px;
  top: 17px;
}
@media (min-width: 768px) and (max-width: 1024px) {
  #mobile-trigger {
    display: block;
  }
}
@media (max-width: 480px) {
  #mobile-trigger {
    display: block;
  }
}
#mobile-trigger:hover {
  cursor: pointer;
}
#mobile-trigger span {
  height: 2px;
  display: block;
  background: #333333;
  margin-bottom: 4px;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  position: absolute;
  right: 0;
}
#mobile-trigger span:first-child {
  width: 40px;
  top: 0;
}
#mobile-trigger span:nth-child(2) {
  width: 30px;
  top: 8px;
}
#mobile-trigger span:last-child {
  margin-bottom: 0;
  width: 35px;
  top: 16px;
}
#mobile-trigger.active span:first-child {
  transform: rotate(-135deg);
  width: 40px;
  top: 8px;
}
#mobile-trigger.active span:nth-child(2) {
  opacity: 0;
}
#mobile-trigger.active span:last-child {
  transform: rotate(135deg);
  width: 40px;
  top: 8px;
}

/**** mobile styling *****/

/* #main-menu.open {
  display:  block;
} */

#mobile-menu {
  display: none;
}

 @media (min-width: 320px) and (max-width: 480px) {
  header {
    background: #fff;
    position: relative;
    top: -1px;
    box-shadow: 0 2px 6px rgba(15,31,41,.16), 0 0 3px rgba(15,31,41,.08);
    position: fixed;
  }
  
  #header-container {
    
-ms-flex-wrap: wrap;
    flex-wrap: wrap;

    padding: 0 21px;
  }
  
  #main-menu {
    display: none;
  }
  
  #mobile-menu.open {
    height: 100%;
    width: 100%;
    position: fixed;
    z-index: 9999;
    top: 81px;
    background: #fff;
  }
  
  #mobile-menu li.hs-menu-item {
    border-bottom: 1px solid #DFDFDF;
  }
  
  #mobile-menu li.hs-menu-item.hs-menu-depth-1.hs-item-has-children:first-child {
    border-top: 1px solid #DFDFDF;
  }
  
  #mobile-menu li.hs-menu-item.hs-menu-depth-1.hs-item-has-children a {
    color: #333333;
    font-size: 20px;
    line-height: 56px;
    padding: 0 20px;
  }
  
  #mobile-menu li.hs-menu-item.hs-menu-depth-1.hs-item-has-children a:focus,
  #mobile-menu li.hs-menu-item.hs-menu-depth-1.hs-item-has-children a:hover,
  #mobile-menu li.hs-menu-item.hs-menu-depth-1.hs-item-has-children a:visited,
  #mobile-menu li.hs-menu-item.hs-menu-depth-1.hs-item-has-children a:active{
      text-decoration: none;
  }
  
  #mobile-menu li.hs-menu-item.hs-menu-depth-1.hs-item-has-children a i {
    position: absolute;
    top: 22px;
    right: 20px;
    width: auto;
    height: auto;
    font-size: 17px;
    margin: 0;
  }
  
  /* mobile cta */
  #mobile-menu li.hs-menu-item.hs-menu-depth-1.mobile-cta {
    margin-top: 32px;
    padding: 0 20px;
    border: none;
  }
  
  /* depth 2 */
  #mobile-menu li.hs-menu-item.hs-menu-depth-1.hs-item-has-children ul {
    display: none !important;
    background: #F4F3F2;
    transition: none;
  }
  
  #mobile-menu li.hs-menu-item.hs-menu-depth-1.hs-item-has-children ul.open {
    display: block !important;
  }
  
  #mobile-menu li.hs-menu-item.hs-menu-depth-2 a {
    font-weight: normal;
    font-size: 18px !important;
    padding-left: 35px !important;
  }
  
  #mobile-menu li.hs-menu-item.hs-menu-depth-1.hs-item-has-children ul > li.hs-menu-item.hs-menu-depth-2:last-child {
    border: none;
  }
  
  #logo {
    max-width: 192px;
  }
  
  #main-menu .hs-menu-wrapper.hs-menu-flow-horizontal>ul li a {
    color: #333333;
  }
  
/*   header #main-menu .hs-menu-wrapper.hs-menu-flow-horizontal>ul li > ul li {
    display: none;
  } */
  
  .cta-btn {
    margin-left: 0 !important;
  }
} 

/* ============================================================
    6. FOOTER
=============================================================== */

.an-footer {
  padding: 72px 0 24px;
}

@media (min-width: 320px) and (max-width: 480px) {  
  .an-footer {
    padding: 32px 20px 16px;
    text-align: center;
  }
  .an-footer-bot {
    flex-direction: column;
  }
  
  .footer-menu__container {
    padding-bottom: 0px !important;
    margin-bottom: 32px !important;
  }
  
  .footer-menu {
    margin-bottom: 32px;
  }
  
  .footer-menu a:nth-child(2) {
    margin-bottom: 4px !important;
  }
  
  .footer-social-icons {
    
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;

  }
}

.footer-menu a:first-child{
  display: none;
}

.footer-menu a:nth-child(2) {
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 18px;
}

.footer-menu a:nth-child(2):hover {
  cursor: text;
  text-decoration: none;
  color: #333333;
}

.footer-menu a {
  color: #333333;
  letter-spacing: 1px;
  font-size: 12px;
  font-weight: 500;
  display: block;
  margin-bottom: 8px;
  text-decoration: none;
}

.footer-menu a:hover, .footer-menu a:focus {
  color: #5FB3FB;
}

.footer-menu__container {
  border-bottom: 1px solid #DFDFDF;
  padding-bottom: 48px;
  margin-bottom: 48px;
}

/**** subscribe titles + form ****/

.footer-subscribe__title {
  margin-bottom: 8px;
  font-size: 20px;
}

.footer-subscribe__subtitle {
  margin-bottom: 0;
  font-family: 'Poppins', sans-serif;
}

/* override inline styles */

form.hs-form.subscribe-form {
   
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flexbox;
	display: flex;

  
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;

  background: #fff;
  padding: 0;
  box-shadow: none;
}

.subscribe-form label {
  display: none !important;
}

.subscribe-form .input , .subscribe-form .actions, .subscribe-form .hs-fieldtype-text {
  margin: 0 !important;
}

.subscribe-form input[type=email] {
  height: 18px !important;
  border-radius: 4px 0 0 4px;
  width: 100%;
  font-size: 11px;
  padding: 10;
}

.subscribe-form input[type=submit] {
  padding: 1rem;
  margin-left: 20px;
  line-height: 9px;
  border-radius: 0 4px 4px 0;
  font-size: 13px;
}

.subscribe-form input[type=submit]:hover, .subscribe-form input[type=submit]:focus {
  transform: none;
  border-color: #519AD9;
  background: #519AD9;
}

.subscribe-form .hs-error-msgs {
  display: none !important;
}

/**** company info ****/

#footer-logo {
  max-width: 260px;
  margin: 0 0 8px;
}

#footer-company__number {
  color: #333333;
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid #5FB3FB;
  display: inline-block;
  margin-top: 8px;
}

/*** social icons ***/
.footer-social-icons {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}

.footer-social-icons li {
  margin-right: 5px;
  background: #f4f3f2;
  border-radius: 150px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-social-icons li:last-child {
  margin-right: 0;
}

.footer-social-icons li a {
  border: none;
  transition: all 300ms ease;
  color: #333;
}

.footer-social-icons li a:hover, .footer-social-icons li a:focus {
  outline: none;
}

.footer-social-icons i {
  color: #333333;
}

#footer-copyright {
  font-size: 12px;
  margin: 48px 0 0;
  text-align: center;
}


/* ============================================================
    7. BUTTONS
=============================================================== */

.btn, .cta-btn, input[type=submit] {
  display: inline-block;
  padding: 18px 45px;
  text-align: center;
  font-size: 1rem;
  font-weight: bold;
  text-decoration: none;
  text-shadow: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
  background-color: transparent;
  cursor: pointer;
  box-sizing: border-box;
  transition: all 300ms ease;
  appearance: none;
  border-radius: 6px;
  border: none;
}

@media (min-width: 320px) and (max-width: 480px) {
  .btn, .cta-btn, input[type=submit] {
    max-width: 100%;
    display: block;
    text-align: center;
    padding: 18px 20px;
  }
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.btn:active, .btn:focus {
  outline: none;
  text-decoration: none;
}

.btn--primary {
  background: #5FB3FB;
  color: #fff;
}

.btn--primary:hover, .btn--primary:focus, input[type=submit]:hover, input[type=submit]:focus {
  background: #519AD9;
  color: #fff;
}

.btn--primary-clear {
  color: #5FB3FB;
  border: 1px solid #5FB3FB;
  background: transparent;
}

.btn--primary-clear:hover, .btn--primary-clear:focus {
  color: #7EC2FB;
  border-color: #7EC2FB;
}

.btn--secondary {
  background: #EE8371;
  color: #fff !important;
}

.btn--secondary:hover, .btn--secondary:focus {
  background: #DA7463;
  color: #fff;
}


.btn--clear {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
}

.btn--clear:hover, .btn--clear:focus {
  background: #fff;
  color: #5FB3FB;
}

.cta-btn, .cta-btn-two {
  padding: 12px 25px !important;
  margin-left: 24px;
  position: relative;
  top: 3px;
  transition: all .5s ease !important;
  font-weight: bold;
  font-size: 13px;
}

.cta-btn-blue {
  padding: 12px 25px !important;
  margin-left: 24px;
  position: relative;
  top: 3px;
  color: #5FB3FB !important;
  background: #fff; !important;
  transition: all .5s ease !important;
  font-weight: bold;
  font-size: 13px;
}

.btn--block {
  display: block;
}

/* ============================================================
    8. FORMS
=============================================================== */

form.hs-form {
  background: #F4F3F2;
  padding: 32px 32px;
  border-radius: 6px;
  box-shadow: 0 6px 24px 0 rgba(174,174,186,0.16);
}

div.form--clear form.hs-form {
  background: transparent;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}

fieldset {
  margin: 0 !important;
  padding: 0 !important;
  max-width: 100% !important;
}

div.input {
  margin-bottom: 16px;
}

body input[type="text"], 
body input[type="password"], 
body input[type="datetime"], 
body input[type="datetime-local"], 
body input[type="date"], 
body input[type="month"], 
body input[type="time"], 
body input[type="week"], 
body input[type="number"], 
body input[type="email"], 
body input[type="url"], 
body input[type="search"], 
body input[type="tel"], 
body input[type="color"], 
body input[type="file"], 
body textarea, body textarea.hs-input, body select {
  color: #333333;
  font-size: 1rem;
  border: 1px solid #a6b0b9;
  border-radius: 6px;
  height: 45px;
  padding: 10px;
  box-shadow: 0 1px 3px 0 rgba(166,176,185,.3);
  font-family: 'Open Sans',sans-serif;
  width: 100% !important;
  transition: all 300ms ease;
}

input::placeholder {
  color: #a6b0b9 !important;
  font-size: 14px;
}

::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #a6b0b9;
}
::-moz-placeholder { /* Firefox 19+ */
  color: #a6b0b9;
}
:-ms-input-placeholder { /* IE 10+ */
  color: #a6b0b9;
}
:-moz-placeholder { /* Firefox 18- */
  color: #a6b0b9;
}

/* input focus */
body input[type="text"]:focus, 
body input[type="password"]:focus, 
body input[type="datetime"]:focus, 
body input[type="datetime-local"]:focus, 
body input[type="date"]:focus, 
body input[type="month"]:focus, 
body input[type="time"]:focus, 
body input[type="week"]:focus, 
body input[type="number"]:focus, 
body input[type="email"]:focus, 
body input[type="url"]:focus, 
body input[type="search"]:focus, 
body input[type="tel"]:focus, 
body input[type="color"]:focus, 
body input[type="file"]:focus, 
body textarea:focus, body textarea.hs-input:focus, body select:focus {
  outline: none;
  box-shadow: none;
  border-color: #184F7F;
  box-shadow: 0 1px 3px 0 rgba(166,176,185,.3);
}

input[type=submit] {
  margin: 0 auto;
  display: block;
  width: 100%;
  color: #fff;
  background: #5FB3FB;
}

/**** select ****/
.input select.hs-input{
  background: #F4F3F2;
  font-size: 14px;
/*   width: 100% !important; */
  height: 45px;
  background: #fff;
  font-family: 'Open Sans', sans-serif;
}

label {
  font-size: 11px;
  color: #333333;
  font-weight: bold;
  transition: all 300ms ease;
  text-transform: uppercase;
  letter-spacing: .5px;
}

/**** text area ****/

textarea.hs-input {
  min-height: 100px;
  padding: 10px;
  margin-bottom: 0;
}

/**** form animations ****/
/* .hs_cos_wrapper_type_form .hs-form-field.hs-fieldtype-text > label {
  position: absolute;
  top: 12px;
  left: 1rem;
  margin: 0;
  margin-bottom: 0px !important;
} */

.hs_cos_wrapper_type_form .hs-form-field > label:hover {
  cursor: text;
}

/* .hs_cos_wrapper_type_form .hs-form-field.hs-fieldtype-text > label:after {
  content: ":"
} */

.hs_cos_wrapper_type_form .hs-form-field>label.focus {
  top: -6px;
  left: 12px;
  font-size: 9px;
  background: #fff;
  padding: 0 8px;
}

.hs-form-field {
  position: relative;
}

.hs-richtext {
  color: #5f5f5f;
  font-size: 12px;
  margin: 8px 0;
}

/**** checkboxes ****/

ul[role=checkbox] {
  padding: 0 0 0 8px;
  margin: 8px 0 16px;
  list-style: none;
}

.hs-fieldtype-checkbox label {
  position: inherit !important;
}

.hs-form-checkbox {
  display: block;
}

li.hs-form-checkbox > label > span {
  color: #5f5f5f;
  font-size: 14px;
  padding-left: 11px;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}

ul.inputs-list {
  list-style: none;
  margin: 0 16px;
  padding-left: 0;
}

label.hs-form-booleancheckbox-display span {
    margin-left: 8px;
}

/**** radio ****/
li.hs-form-radio label {
  text-transform: none;
  color: #333333;
  font-size: 14px;
  font-weight: normal;
  letter-spacing: 0;
}

body input.hs-input[type=radio] {
  margin-right: 12px;
  
}

/**** submit button ****/
input[type=submit] {
  margin: 0 auto;
  display: block;
}

/**** warnings ****/

span.hs-form-required {
  color: #333333;
  font-size: 16px;
  position: relative;
  top: 4px;
  display: none;
}

ul.no-list.hs-error-msgs.inputs-list {
  margin: -27px 0 1.2em;
  padding: 0;
  list-style: none;
}

label.hs-error-msg {
  color: #EE8371;
  font-size: 11px;
  text-transform: inherit;
  letter-spacing: 0;
  position: relative;
  top: 20px;
  left: 3px;
}

/**** popup form ****/

#fancybox form {
  width: 100%;
  margin: 0 auto;
}

#fancybox form input[type=text],
#fancybox form input[type=email],
#fancybox form input[type=number]
#fancybox form select{
  width: 100%;
}

.fancybox__title {
  text-align: center;
}

/* ============================================================
    9. UTILITIES
=============================================================== */

/* ============================================================
    9.1 TEXT ALIGNMENTS
=============================================================== */

.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.align-center {
  margin: 0 auto;
  display: block;
}

/* ============================================================
    9.2 ICONS
=============================================================== */
.icon--right i {
  margin-left: 5px;
  font-size: 12px;
}

/* ============================================================
    9.3 GRADIENTS & BACKGROUNDS
=============================================================== */

.bg {
  position: relative;
  padding: 64px 0;
}

.bg:after {
  content: "";
  display: block;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.bg--img {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.bg--blue {
  background: #113C61;
}

.bg--gray {
  background: #F4F3F2;
}

.bg--orange {
  background: #EE8371;
}

/* gradient attributes = .bg--gradient-{color}-{direction} */





  
  .bg--gradient-midnight-top:after {
    background: #113C61;
    background: linear-gradient(to top, #113C61, #184F7F)
  }
  
  .bg--gradient-midnight-top-right:after {
    background: #113C61;
    background: linear-gradient(to top right, #113C61, #184F7F)
  }
  
  .bg--gradient-midnight-right:after {
    background: #113C61;
    background: linear-gradient(to right, #113C61, #184F7F)
  }
  
  .bg--gradient-midnight-bottom-right:after {
    background: #113C61;
    background: linear-gradient(to bottom right, #113C61, #184F7F)
  }
  
  .bg--gradient-midnight-bottom:after {
    background: #113C61;
    background: linear-gradient(to bottom, #113C61, #184F7F)
  }
  
  .bg--gradient-midnight-bottom-left:after {
    background: #113C61;
    background: linear-gradient(to bottom left, #113C61, #184F7F)
  }
  
  .bg--gradient-midnight-left:after {
    background: #113C61;
    background: linear-gradient(to left, #113C61, #184F7F)
  }
  
  .bg--gradient-midnight-top-left:after {
    background: #113C61;
    background: linear-gradient(to top left, #113C61, #184F7F)
  }
  

  
  .bg--gradient-midnight-to-transparent-top:after {
    background: #113C61;
    background: linear-gradient(to top, #113C61, transparent)
  }
  
  .bg--gradient-midnight-to-transparent-top-right:after {
    background: #113C61;
    background: linear-gradient(to top right, #113C61, transparent)
  }
  
  .bg--gradient-midnight-to-transparent-right:after {
    background: #113C61;
    background: linear-gradient(to right, #113C61, transparent)
  }
  
  .bg--gradient-midnight-to-transparent-bottom-right:after {
    background: #113C61;
    background: linear-gradient(to bottom right, #113C61, transparent)
  }
  
  .bg--gradient-midnight-to-transparent-bottom:after {
    background: #113C61;
    background: linear-gradient(to bottom, #113C61, transparent)
  }
  
  .bg--gradient-midnight-to-transparent-bottom-left:after {
    background: #113C61;
    background: linear-gradient(to bottom left, #113C61, transparent)
  }
  
  .bg--gradient-midnight-to-transparent-left:after {
    background: #113C61;
    background: linear-gradient(to left, #113C61, transparent)
  }
  
  .bg--gradient-midnight-to-transparent-top-left:after {
    background: #113C61;
    background: linear-gradient(to top left, #113C61, transparent)
  }
  

  
  .bg--gradient-midnight-to-blue-top:after {
    background: #113C61;
    background: linear-gradient(to top, #113C61, #5FB3FB)
  }
  
  .bg--gradient-midnight-to-blue-top-right:after {
    background: #113C61;
    background: linear-gradient(to top right, #113C61, #5FB3FB)
  }
  
  .bg--gradient-midnight-to-blue-right:after {
    background: #113C61;
    background: linear-gradient(to right, #113C61, #5FB3FB)
  }
  
  .bg--gradient-midnight-to-blue-bottom-right:after {
    background: #113C61;
    background: linear-gradient(to bottom right, #113C61, #5FB3FB)
  }
  
  .bg--gradient-midnight-to-blue-bottom:after {
    background: #113C61;
    background: linear-gradient(to bottom, #113C61, #5FB3FB)
  }
  
  .bg--gradient-midnight-to-blue-bottom-left:after {
    background: #113C61;
    background: linear-gradient(to bottom left, #113C61, #5FB3FB)
  }
  
  .bg--gradient-midnight-to-blue-left:after {
    background: #113C61;
    background: linear-gradient(to left, #113C61, #5FB3FB)
  }
  
  .bg--gradient-midnight-to-blue-top-left:after {
    background: #113C61;
    background: linear-gradient(to top left, #113C61, #5FB3FB)
  }
  

  
  .bg--gradient-blue-top:after {
    background: #5FB3FB;
    background: linear-gradient(to top, #5FB3FB, #519AD9)
  }
  
  .bg--gradient-blue-top-right:after {
    background: #5FB3FB;
    background: linear-gradient(to top right, #5FB3FB, #519AD9)
  }
  
  .bg--gradient-blue-right:after {
    background: #5FB3FB;
    background: linear-gradient(to right, #5FB3FB, #519AD9)
  }
  
  .bg--gradient-blue-bottom-right:after {
    background: #5FB3FB;
    background: linear-gradient(to bottom right, #5FB3FB, #519AD9)
  }
  
  .bg--gradient-blue-bottom:after {
    background: #5FB3FB;
    background: linear-gradient(to bottom, #5FB3FB, #519AD9)
  }
  
  .bg--gradient-blue-bottom-left:after {
    background: #5FB3FB;
    background: linear-gradient(to bottom left, #5FB3FB, #519AD9)
  }
  
  .bg--gradient-blue-left:after {
    background: #5FB3FB;
    background: linear-gradient(to left, #5FB3FB, #519AD9)
  }
  
  .bg--gradient-blue-top-left:after {
    background: #5FB3FB;
    background: linear-gradient(to top left, #5FB3FB, #519AD9)
  }
  

  
  .bg--gradient-blue-top:after {
    background: #7EC2FB;
    background: linear-gradient(to top, #7EC2FB, #5FB3FB)
  }
  
  .bg--gradient-blue-top-right:after {
    background: #7EC2FB;
    background: linear-gradient(to top right, #7EC2FB, #5FB3FB)
  }
  
  .bg--gradient-blue-right:after {
    background: #7EC2FB;
    background: linear-gradient(to right, #7EC2FB, #5FB3FB)
  }
  
  .bg--gradient-blue-bottom-right:after {
    background: #7EC2FB;
    background: linear-gradient(to bottom right, #7EC2FB, #5FB3FB)
  }
  
  .bg--gradient-blue-bottom:after {
    background: #7EC2FB;
    background: linear-gradient(to bottom, #7EC2FB, #5FB3FB)
  }
  
  .bg--gradient-blue-bottom-left:after {
    background: #7EC2FB;
    background: linear-gradient(to bottom left, #7EC2FB, #5FB3FB)
  }
  
  .bg--gradient-blue-left:after {
    background: #7EC2FB;
    background: linear-gradient(to left, #7EC2FB, #5FB3FB)
  }
  
  .bg--gradient-blue-top-left:after {
    background: #7EC2FB;
    background: linear-gradient(to top left, #7EC2FB, #5FB3FB)
  }
  

  
  .bg--gradient-blue-to-transparent-top:after {
    background: #5FB3FB;
    background: linear-gradient(to top, #5FB3FB, transparent)
  }
  
  .bg--gradient-blue-to-transparent-top-right:after {
    background: #5FB3FB;
    background: linear-gradient(to top right, #5FB3FB, transparent)
  }
  
  .bg--gradient-blue-to-transparent-right:after {
    background: #5FB3FB;
    background: linear-gradient(to right, #5FB3FB, transparent)
  }
  
  .bg--gradient-blue-to-transparent-bottom-right:after {
    background: #5FB3FB;
    background: linear-gradient(to bottom right, #5FB3FB, transparent)
  }
  
  .bg--gradient-blue-to-transparent-bottom:after {
    background: #5FB3FB;
    background: linear-gradient(to bottom, #5FB3FB, transparent)
  }
  
  .bg--gradient-blue-to-transparent-bottom-left:after {
    background: #5FB3FB;
    background: linear-gradient(to bottom left, #5FB3FB, transparent)
  }
  
  .bg--gradient-blue-to-transparent-left:after {
    background: #5FB3FB;
    background: linear-gradient(to left, #5FB3FB, transparent)
  }
  
  .bg--gradient-blue-to-transparent-top-left:after {
    background: #5FB3FB;
    background: linear-gradient(to top left, #5FB3FB, transparent)
  }
  

  
  .bg--gradient-orange-top:after {
    background: #DA7463;
    background: linear-gradient(to top, #DA7463, #EE8371)
  }
  
  .bg--gradient-orange-top-right:after {
    background: #DA7463;
    background: linear-gradient(to top right, #DA7463, #EE8371)
  }
  
  .bg--gradient-orange-right:after {
    background: #DA7463;
    background: linear-gradient(to right, #DA7463, #EE8371)
  }
  
  .bg--gradient-orange-bottom-right:after {
    background: #DA7463;
    background: linear-gradient(to bottom right, #DA7463, #EE8371)
  }
  
  .bg--gradient-orange-bottom:after {
    background: #DA7463;
    background: linear-gradient(to bottom, #DA7463, #EE8371)
  }
  
  .bg--gradient-orange-bottom-left:after {
    background: #DA7463;
    background: linear-gradient(to bottom left, #DA7463, #EE8371)
  }
  
  .bg--gradient-orange-left:after {
    background: #DA7463;
    background: linear-gradient(to left, #DA7463, #EE8371)
  }
  
  .bg--gradient-orange-top-left:after {
    background: #DA7463;
    background: linear-gradient(to top left, #DA7463, #EE8371)
  }
  

  
  .bg--gradient-orange-to-midnight-top:after {
    background: #EE8371;
    background: linear-gradient(to top, #EE8371, #113C61)
  }
  
  .bg--gradient-orange-to-midnight-top-right:after {
    background: #EE8371;
    background: linear-gradient(to top right, #EE8371, #113C61)
  }
  
  .bg--gradient-orange-to-midnight-right:after {
    background: #EE8371;
    background: linear-gradient(to right, #EE8371, #113C61)
  }
  
  .bg--gradient-orange-to-midnight-bottom-right:after {
    background: #EE8371;
    background: linear-gradient(to bottom right, #EE8371, #113C61)
  }
  
  .bg--gradient-orange-to-midnight-bottom:after {
    background: #EE8371;
    background: linear-gradient(to bottom, #EE8371, #113C61)
  }
  
  .bg--gradient-orange-to-midnight-bottom-left:after {
    background: #EE8371;
    background: linear-gradient(to bottom left, #EE8371, #113C61)
  }
  
  .bg--gradient-orange-to-midnight-left:after {
    background: #EE8371;
    background: linear-gradient(to left, #EE8371, #113C61)
  }
  
  .bg--gradient-orange-to-midnight-top-left:after {
    background: #EE8371;
    background: linear-gradient(to top left, #EE8371, #113C61)
  }
  

  
  .bg--gradient-orange-to-transparent-top:after {
    background: #EE8371;
    background: linear-gradient(to top, #EE8371, transparent)
  }
  
  .bg--gradient-orange-to-transparent-top-right:after {
    background: #EE8371;
    background: linear-gradient(to top right, #EE8371, transparent)
  }
  
  .bg--gradient-orange-to-transparent-right:after {
    background: #EE8371;
    background: linear-gradient(to right, #EE8371, transparent)
  }
  
  .bg--gradient-orange-to-transparent-bottom-right:after {
    background: #EE8371;
    background: linear-gradient(to bottom right, #EE8371, transparent)
  }
  
  .bg--gradient-orange-to-transparent-bottom:after {
    background: #EE8371;
    background: linear-gradient(to bottom, #EE8371, transparent)
  }
  
  .bg--gradient-orange-to-transparent-bottom-left:after {
    background: #EE8371;
    background: linear-gradient(to bottom left, #EE8371, transparent)
  }
  
  .bg--gradient-orange-to-transparent-left:after {
    background: #EE8371;
    background: linear-gradient(to left, #EE8371, transparent)
  }
  
  .bg--gradient-orange-to-transparent-top-left:after {
    background: #EE8371;
    background: linear-gradient(to top left, #EE8371, transparent)
  }
  

  
  .bg--gradient-black-top:after {
    background: #333333;
    background: linear-gradient(to top, #333333, #F4F3F2)
  }
  
  .bg--gradient-black-top-right:after {
    background: #333333;
    background: linear-gradient(to top right, #333333, #F4F3F2)
  }
  
  .bg--gradient-black-right:after {
    background: #333333;
    background: linear-gradient(to right, #333333, #F4F3F2)
  }
  
  .bg--gradient-black-bottom-right:after {
    background: #333333;
    background: linear-gradient(to bottom right, #333333, #F4F3F2)
  }
  
  .bg--gradient-black-bottom:after {
    background: #333333;
    background: linear-gradient(to bottom, #333333, #F4F3F2)
  }
  
  .bg--gradient-black-bottom-left:after {
    background: #333333;
    background: linear-gradient(to bottom left, #333333, #F4F3F2)
  }
  
  .bg--gradient-black-left:after {
    background: #333333;
    background: linear-gradient(to left, #333333, #F4F3F2)
  }
  
  .bg--gradient-black-top-left:after {
    background: #333333;
    background: linear-gradient(to top left, #333333, #F4F3F2)
  }
  

  
  .bg--gradient-black-to-transparent-top:after {
    background: #333333;
    background: linear-gradient(to top, #333333, transparent)
  }
  
  .bg--gradient-black-to-transparent-top-right:after {
    background: #333333;
    background: linear-gradient(to top right, #333333, transparent)
  }
  
  .bg--gradient-black-to-transparent-right:after {
    background: #333333;
    background: linear-gradient(to right, #333333, transparent)
  }
  
  .bg--gradient-black-to-transparent-bottom-right:after {
    background: #333333;
    background: linear-gradient(to bottom right, #333333, transparent)
  }
  
  .bg--gradient-black-to-transparent-bottom:after {
    background: #333333;
    background: linear-gradient(to bottom, #333333, transparent)
  }
  
  .bg--gradient-black-to-transparent-bottom-left:after {
    background: #333333;
    background: linear-gradient(to bottom left, #333333, transparent)
  }
  
  .bg--gradient-black-to-transparent-left:after {
    background: #333333;
    background: linear-gradient(to left, #333333, transparent)
  }
  
  .bg--gradient-black-to-transparent-top-left:after {
    background: #333333;
    background: linear-gradient(to top left, #333333, transparent)
  }
  

  
  .bg--gradient-teal-top:after {
    background: ;
    background: linear-gradient(to top, , )
  }
  
  .bg--gradient-teal-top-right:after {
    background: ;
    background: linear-gradient(to top right, , )
  }
  
  .bg--gradient-teal-right:after {
    background: ;
    background: linear-gradient(to right, , )
  }
  
  .bg--gradient-teal-bottom-right:after {
    background: ;
    background: linear-gradient(to bottom right, , )
  }
  
  .bg--gradient-teal-bottom:after {
    background: ;
    background: linear-gradient(to bottom, , )
  }
  
  .bg--gradient-teal-bottom-left:after {
    background: ;
    background: linear-gradient(to bottom left, , )
  }
  
  .bg--gradient-teal-left:after {
    background: ;
    background: linear-gradient(to left, , )
  }
  
  .bg--gradient-teal-top-left:after {
    background: ;
    background: linear-gradient(to top left, , )
  }
  


.bg--opacity-1:after {
  opacity: .1;
}

.bg--opacity-2:after {
  opacity: .2;
}

.bg--opacity-3:after {
  opacity: .3;
}

.bg--opacity-4:after {
  opacity: .4;
}

.bg--opacity-5:after {
  opacity: .5;
}

.bg--opacity-6:after {
  opacity: .6;
}

.bg--opacity-7:after {
  opacity: .7;
}

.bg--opacity-8:after {
  opacity: .8;
}

.bg--opacity-9:after {
  opacity: .9;
}

.bg--opacity-10:after {
  opacity: 1;
}

.parallax {
  background-attachment: fixed;
}

/* ============================================================
    9.4 FLEX UTILITY CLASSES
=============================================================== */

.flex {
   
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flexbox;
	display: flex;

}

.flex-align-center {
    
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;

}

/* ============================================================
    10. COMPONENTS
=============================================================== */

/* ============================================================
    10.1 ICON CARDS
=============================================================== */

.an-icon-card {
  padding: 12px 30px 20px;
  background: #FFFFFF;
  -webkit-box-shadow: 0 13px 27px -5px rgba(50,50,93,.15), 0 8px 16px -8px rgba(0,0,0,.3), 0 -6px 16px -6px rgba(0,0,0,.015);
  box-shadow: 0 13px 27px -5px rgba(50,50,93,.15), 0 8px 16px -8px rgba(0,0,0,.3), 0 -6px 16px -6px rgba(0,0,0,.015);
  border-radius: 10px;
  transition: all 150ms ease;
  
  overflow: hidden;
  position: relative;
}

@media (min-width: 320px) and (max-width: 480px) {
  .an-icon-card {
    margin-bottom: 24px;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .an-icon-card {
    margin-bottom: 24px;
  }
}

.an-icon-card:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -16px;
  right: -16px;
  background: #5FB3FB;
  height: 32px;
  width: 32px;
  border-radius: 32px;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transform-origin: 27% 80%;
  transform-origin: 27% 80%;
  transition: -webkit-transform 0.75s ease-in-out;
  transition: transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
}
.an-icon-card:hover:before {
  -webkit-transform: scale(123);
  transform: scale(123);
}

.an-icon-card:hover {
  box-shadow: 0 30px 25px -12px rgba(50,50,93,.25), 0 18px 25px -18px rgba(0,0,0,.3), 0 -12px 25px -8px rgba(0,0,0,.025);
  transform: translate3d(0, -4px, 0);
}

.an-icon-card:hover .an-icon-card__cta, 
.an-icon-card:hover .an-icon-card__title, 
.an-icon-card:hover .an-icon-card__description {
  color: #fff;
}

a.an-icon-card__link:hover {
  text-decoration: none;
}

.an-icon-card:hover .an-icon-card__cta i {
    transform: translate3d(3px, 0, 0);
}

.an-icon-card__icon-container {
    
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flexbox;
	display: flex;

}

.an-icon-card__icon {
  max-height: 50px;
  transition: all 150ms ease;
}

.an-icon-card__icon--hover {
  display: none;
}

.an-icon-card__title {
  margin-bottom: 15px;
}

.an-icon-card__description {
  font-weight: normal;
}

.an-icon-card__cta {
  font-size: 14px;
  color: #5FB3FB;
}

/* ============================================================
    10.2 HERO 
=============================================================== */

.an-hero__background {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  padding: 180px 0 105px 0;
}

@media (min-width: 320px) and (max-width: 480px) {
  .an-hero__background {
    padding: 120px 20px 43px;
  }
}

.an-hero { 
/*   padding: 120px 0;
  max-width: 600px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column; */
}

.an-hero__title {
  color: #fff;
  line-height: 1.3;
  margin-bottom: 13px;
  font-size: 48px;
}

.an-hero__content {
  margin-top: 0;
}

.an-hero__content {
  color: #fff;
  text-shadow: 0px 2px 3px rgba(0,0,0,0.4);
      font-weight: 400;
  line-height: 1.4;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .an-hero {
    margin: 0 auto;
  }
}


/* ============================================================
    11. VENDOR
=============================================================== */

/**** FLEXBOX GRID **********
  http://flexboxgrid.com/
 ****************************/

/* .container-fluid,
.container {
  margin-right: auto;
  margin-left: auto;
}

.container-fluid {
  padding-right: 2rem;
  padding-left: 2rem;
} */




.row {
  box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -1.5rem;
  margin-left: -1.5rem;
}

.row.reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.col.reverse {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
}

.col-xs,
.col-xs-1,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9,
.col-xs-10,
.col-xs-11,
.col-xs-12,
.col-xs-offset-0,
.col-xs-offset-1,
.col-xs-offset-2,
.col-xs-offset-3,
.col-xs-offset-4,
.col-xs-offset-5,
.col-xs-offset-6,
.col-xs-offset-7,
.col-xs-offset-8,
.col-xs-offset-9,
.col-xs-offset-10,
.col-xs-offset-11,
.col-xs-offset-12 {
  box-sizing: border-box;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
}

.col-xs {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  max-width: 100%;
}

.col-xs-1 {
  -ms-flex-preferred-size: 8.33333333%;
  flex-basis: 8.33333333%;
  max-width: 8.33333333%;
}

.col-xs-2 {
  -ms-flex-preferred-size: 16.66666667%;
  flex-basis: 16.66666667%;
  max-width: 16.66666667%;
}

.col-xs-3 {
  -ms-flex-preferred-size: 25%;
  flex-basis: 25%;
  max-width: 25%;
}

.col-xs-4 {
  -ms-flex-preferred-size: 33.33333333%;
  flex-basis: 33.33333333%;
  max-width: 33.33333333%;
}

.col-xs-5 {
  -ms-flex-preferred-size: 41.66666667%;
  flex-basis: 41.66666667%;
  max-width: 41.66666667%;
}

.col-xs-6 {
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
  max-width: 50%;
}

.col-xs-7 {
  -ms-flex-preferred-size: 58.33333333%;
  flex-basis: 58.33333333%;
  max-width: 58.33333333%;
}

.col-xs-8 {
  -ms-flex-preferred-size: 66.66666667%;
  flex-basis: 66.66666667%;
  max-width: 66.66666667%;
}

.col-xs-9 {
  -ms-flex-preferred-size: 75%;
  flex-basis: 75%;
  max-width: 75%;
}

.col-xs-10 {
  -ms-flex-preferred-size: 83.33333333%;
  flex-basis: 83.33333333%;
  max-width: 83.33333333%;
}

.col-xs-11 {
  -ms-flex-preferred-size: 91.66666667%;
  flex-basis: 91.66666667%;
  max-width: 91.66666667%;
}

.col-xs-12 {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  max-width: 100%;
}

.col-xs-offset-0 {
  margin-left: 0;
}

.col-xs-offset-1 {
  margin-left: 8.33333333%;
}

.col-xs-offset-2 {
  margin-left: 16.66666667%;
}

.col-xs-offset-3 {
  margin-left: 25%;
}

.col-xs-offset-4 {
  margin-left: 33.33333333%;
}

.col-xs-offset-5 {
  margin-left: 41.66666667%;
}

.col-xs-offset-6 {
  margin-left: 50%;
}

.col-xs-offset-7 {
  margin-left: 58.33333333%;
}

.col-xs-offset-8 {
  margin-left: 66.66666667%;
}

.col-xs-offset-9 {
  margin-left: 75%;
}

.col-xs-offset-10 {
  margin-left: 83.33333333%;
}

.col-xs-offset-11 {
  margin-left: 91.66666667%;
}

.start-xs {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  text-align: start;
}

.center-xs {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}

.end-xs {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  text-align: end;
}

.top-xs {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.middle-xs {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.bottom-xs {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.around-xs {
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.between-xs {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.first-xs {
  -webkit-box-ordinal-group: 0;
  -ms-flex-order: -1;
  order: -1;
}

.last-xs {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}

@media only screen and (min-width: 48em) {
/*   .container {
    width: 49rem;
  } */

  .col-sm,
  .col-sm-1,
  .col-sm-2,
  .col-sm-3,
  .col-sm-4,
  .col-sm-5,
  .col-sm-6,
  .col-sm-7,
  .col-sm-8,
  .col-sm-9,
  .col-sm-10,
  .col-sm-11,
  .col-sm-12,
  .col-sm-offset-0,
  .col-sm-offset-1,
  .col-sm-offset-2,
  .col-sm-offset-3,
  .col-sm-offset-4,
  .col-sm-offset-5,
  .col-sm-offset-6,
  .col-sm-offset-7,
  .col-sm-offset-8,
  .col-sm-offset-9,
  .col-sm-offset-10,
  .col-sm-offset-11,
  .col-sm-offset-12 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    padding-right: ;
    padding-right: ;
  }

  .col-sm {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }

  .col-sm-1 {
    -ms-flex-preferred-size: 8.33333333%;
    flex-basis: 8.33333333%;
    max-width: 8.33333333%;
  }

  .col-sm-2 {
    -ms-flex-preferred-size: 16.66666667%;
    flex-basis: 16.66666667%;
    max-width: 16.66666667%;
  }

  .col-sm-3 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }

  .col-sm-4 {
    -ms-flex-preferred-size: 33.33333333%;
    flex-basis: 33.33333333%;
    max-width: 33.33333333%;
  }

  .col-sm-5 {
    -ms-flex-preferred-size: 41.66666667%;
    flex-basis: 41.66666667%;
    max-width: 41.66666667%;
  }

  .col-sm-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }

  .col-sm-7 {
    -ms-flex-preferred-size: 58.33333333%;
    flex-basis: 58.33333333%;
    max-width: 58.33333333%;
  }

  .col-sm-8 {
    -ms-flex-preferred-size: 66.66666667%;
    flex-basis: 66.66666667%;
    max-width: 66.66666667%;
  }

  .col-sm-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }

  .col-sm-10 {
    -ms-flex-preferred-size: 83.33333333%;
    flex-basis: 83.33333333%;
    max-width: 83.33333333%;
  }

  .col-sm-11 {
    -ms-flex-preferred-size: 91.66666667%;
    flex-basis: 91.66666667%;
    max-width: 91.66666667%;
  }

  .col-sm-12 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }

  .col-sm-offset-0 {
    margin-left: 0;
  }

  .col-sm-offset-1 {
    margin-left: 8.33333333%;
  }

  .col-sm-offset-2 {
    margin-left: 16.66666667%;
  }

  .col-sm-offset-3 {
    margin-left: 25%;
  }

  .col-sm-offset-4 {
    margin-left: 33.33333333%;
  }

  .col-sm-offset-5 {
    margin-left: 41.66666667%;
  }

  .col-sm-offset-6 {
    margin-left: 50%;
  }

  .col-sm-offset-7 {
    margin-left: 58.33333333%;
  }

  .col-sm-offset-8 {
    margin-left: 66.66666667%;
  }

  .col-sm-offset-9 {
    margin-left: 75%;
  }

  .col-sm-offset-10 {
    margin-left: 83.33333333%;
  }

  .col-sm-offset-11 {
    margin-left: 91.66666667%;
  }

  .start-sm {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    text-align: start;
  }

  .center-sm {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
  }

  .end-sm {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    text-align: end;
  }

  .top-sm {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .middle-sm {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .bottom-sm {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }

  .around-sm {
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }

  .between-sm {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .first-sm {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }

  .last-sm {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}

@media only screen and (min-width: 64em) {
/*   .container {
    width: 65rem;
  } */

  .col-md,
  .col-md-1,
  .col-md-2,
  .col-md-3,
  .col-md-4,
  .col-md-5,
  .col-md-6,
  .col-md-7,
  .col-md-8,
  .col-md-9,
  .col-md-10,
  .col-md-11,
  .col-md-12,
  .col-md-offset-0,
  .col-md-offset-1,
  .col-md-offset-2,
  .col-md-offset-3,
  .col-md-offset-4,
  .col-md-offset-5,
  .col-md-offset-6,
  .col-md-offset-7,
  .col-md-offset-8,
  .col-md-offset-9,
  .col-md-offset-10,
  .col-md-offset-11,
  .col-md-offset-12 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    padding-right: ;
    padding-right: ;
  }

  .col-md {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }

  .col-md-1 {
    -ms-flex-preferred-size: 8.33333333%;
    flex-basis: 8.33333333%;
    max-width: 8.33333333%;
  }

  .col-md-2 {
    -ms-flex-preferred-size: 16.66666667%;
    flex-basis: 16.66666667%;
    max-width: 16.66666667%;
  }

  .col-md-3 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }

  .col-md-4 {
    -ms-flex-preferred-size: 33.33333333%;
    flex-basis: 33.33333333%;
    max-width: 33.33333333%;
  }

  .col-md-5 {
    -ms-flex-preferred-size: 41.66666667%;
    flex-basis: 41.66666667%;
    max-width: 41.66666667%;
  }

  .col-md-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }

  .col-md-7 {
    -ms-flex-preferred-size: 58.33333333%;
    flex-basis: 58.33333333%;
    max-width: 58.33333333%;
  }

  .col-md-8 {
    -ms-flex-preferred-size: 66.66666667%;
    flex-basis: 66.66666667%;
    max-width: 66.66666667%;
  }

  .col-md-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }

  .col-md-10 {
    -ms-flex-preferred-size: 83.33333333%;
    flex-basis: 83.33333333%;
    max-width: 83.33333333%;
  }

  .col-md-11 {
    -ms-flex-preferred-size: 91.66666667%;
    flex-basis: 91.66666667%;
    max-width: 91.66666667%;
  }

  .col-md-12 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }

  .col-md-offset-0 {
    margin-left: 0;
  }

  .col-md-offset-1 {
    margin-left: 8.33333333%;
  }

  .col-md-offset-2 {
    margin-left: 16.66666667%;
  }

  .col-md-offset-3 {
    margin-left: 25%;
  }

  .col-md-offset-4 {
    margin-left: 33.33333333%;
  }

  .col-md-offset-5 {
    margin-left: 41.66666667%;
  }

  .col-md-offset-6 {
    margin-left: 50%;
  }

  .col-md-offset-7 {
    margin-left: 58.33333333%;
  }

  .col-md-offset-8 {
    margin-left: 66.66666667%;
  }

  .col-md-offset-9 {
    margin-left: 75%;
  }

  .col-md-offset-10 {
    margin-left: 83.33333333%;
  }

  .col-md-offset-11 {
    margin-left: 91.66666667%;
  }

  .start-md {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    text-align: start;
  }

  .center-md {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
  }

  .end-md {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    text-align: end;
  }

  .top-md {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .middle-md {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .bottom-md {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }

  .around-md {
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }

  .between-md {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .first-md {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }

  .last-md {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}

@media only screen and (min-width: 75em) {
/*   .container {
    width: 76rem;
  } */

  .col-lg,
  .col-lg-1,
  .col-lg-2,
  .col-lg-3,
  .col-lg-4,
  .col-lg-5,
  .col-lg-6,
  .col-lg-7,
  .col-lg-8,
  .col-lg-9,
  .col-lg-10,
  .col-lg-11,
  .col-lg-12,
  .col-lg-offset-0,
  .col-lg-offset-1,
  .col-lg-offset-2,
  .col-lg-offset-3,
  .col-lg-offset-4,
  .col-lg-offset-5,
  .col-lg-offset-6,
  .col-lg-offset-7,
  .col-lg-offset-8,
  .col-lg-offset-9,
  .col-lg-offset-10,
  .col-lg-offset-11,
  .col-lg-offset-12 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    padding-right: ;
    padding-right: ;
  }

  .col-lg {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }

  .col-lg-1 {
    -ms-flex-preferred-size: 8.33333333%;
    flex-basis: 8.33333333%;
    max-width: 8.33333333%;
  }

  .col-lg-2 {
    -ms-flex-preferred-size: 16.66666667%;
    flex-basis: 16.66666667%;
    max-width: 16.66666667%;
  }

  .col-lg-3 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }

  .col-lg-4 {
    -ms-flex-preferred-size: 33.33333333%;
    flex-basis: 33.33333333%;
    max-width: 33.33333333%;
  }

  .col-lg-5 {
    -ms-flex-preferred-size: 41.66666667%;
    flex-basis: 41.66666667%;
    max-width: 41.66666667%;
  }

  .col-lg-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }

  .col-lg-7 {
    -ms-flex-preferred-size: 58.33333333%;
    flex-basis: 58.33333333%;
    max-width: 58.33333333%;
  }

  .col-lg-8 {
    -ms-flex-preferred-size: 66.66666667%;
    flex-basis: 66.66666667%;
    max-width: 66.66666667%;
  }

  .col-lg-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }

  .col-lg-10 {
    -ms-flex-preferred-size: 83.33333333%;
    flex-basis: 83.33333333%;
    max-width: 83.33333333%;
  }

  .col-lg-11 {
    -ms-flex-preferred-size: 91.66666667%;
    flex-basis: 91.66666667%;
    max-width: 91.66666667%;
  }

  .col-lg-12 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }

  .col-lg-offset-0 {
    margin-left: 0;
  }

  .col-lg-offset-1 {
    margin-left: 8.33333333%;
  }

  .col-lg-offset-2 {
    margin-left: 16.66666667%;
  }

  .col-lg-offset-3 {
    margin-left: 25%;
  }

  .col-lg-offset-4 {
    margin-left: 33.33333333%;
  }

  .col-lg-offset-5 {
    margin-left: 41.66666667%;
  }

  .col-lg-offset-6 {
    margin-left: 50%;
  }

  .col-lg-offset-7 {
    margin-left: 58.33333333%;
  }

  .col-lg-offset-8 {
    margin-left: 66.66666667%;
  }

  .col-lg-offset-9 {
    margin-left: 75%;
  }

  .col-lg-offset-10 {
    margin-left: 83.33333333%;
  }

  .col-lg-offset-11 {
    margin-left: 91.66666667%;
  }

  .start-lg {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    text-align: start;
  }

  .center-lg {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
  }

  .end-lg {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    text-align: end;
  }

  .top-lg {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .middle-lg {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .bottom-lg {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }

  .around-lg {
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }

  .between-lg {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .first-lg {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }

  .last-lg {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}