/* ============
      Normalize 
      ============ */
@import url('//cdn2.hubspot.net/hub/21491723/hub_generated/template_assets/118590027042/1698438937970/coLearn/CSS/modern-normalize.min.css');

/* ==================
      Root Variables 
      ================== */
      :root {
        /* colors */
        --mainGreen: #528692;
        --primary: #F5593D; /* brand orange */
        --primary-600: #DD4618;
        --primary-dark: #B83514; /* dark version of brand color */

        /* dark blue bg */
        --dark-blue-bg: #16547B;
        --dark-blue-bg-primary-text: #fff;
        --dark-blue-bg-secondary-text: #DDEEF3;

        /* blue bg */
        --blue-bg: #29769C;
        --blue-bg-primary-text: #fff;
        --blue-bg-secondary-text: #DDEEF3;

        --primary-font: #313131;
        --grey-100: #FAFAFA;
        --grey-200: #F1F1F1;
        --grey-300: #DDDBD9;
        --grey-400: #B8B6B6;
        --grey-500: #676767;
        --blue-200: #86C2CE;

        /* light blue bg */
        --light-blue-bg: #DDEEF3;
        --light-blue-bg-primary-text: #113946;
        --light-blue-bg-secondary-text: #336170;

        --extra-light-blue-bg: #F0FCFF;

        /* orange */
        --light-orange-bg: #FEF0E2;
        --light-orange-bg-secondary-text: #464A60;
        --light-orange-bg-primary-text: #2A2E41;

        /* transitions */
        --subtle-transition: all 0.2s ease-in-out;

        /* shadows */
        --small-shadow: 0px 5px 12px 0px rgba(29, 24, 22, 0.07);

        /* breakpoints. don't work in @media with pure css though */
        --bp-xs: 640px;
        --bp-md: 750px;
        --bp-lg: 1100px;
        --bp-xl: 1280px;
      }


/* ====================
   Custom Button Reset 
   ==================== */
button,
[type="button"],
[type="reset"],
[type="submit"] {
  border: none;
  background: none;
  padding: 0;
  outline: none;
  box-shadow: none;
  text-decoration: none;
  font-size: inherit;
}

/* Button */
/* form selector for hubspot forms */
.btn, form input[type="submit"] {
  display: inline-block;
  text-decoration: none;
  background: var(--primary-600);
  border-radius: 0.75rem;
  color: #fff;
  padding: 0.8rem 1.9rem;
  font-weight: 700;  
  font-size: 1.2rem;
  transition: all 0.2s ease-in-out;
}

.btn:not(.btn--secondary):hover {
  background: var(--primary-dark);
}

.btn--sm {
  padding: 0.7rem 1.6rem;
  font-size: 1rem;
}

.btn--blue {
  background: var(--dark-blue-bg);
}

.btn--blue:hover {
  background: var(--blue-bg) !important;
}

.btn--secondary:not(:hover) {
  background: var(--light-orange-bg);
  color: var(--primary-dark);
}

.btn--blue.btn--secondary {
  background: var(--extra-light-blue-bg);
  color: var(--light-blue-bg-primary-text);
}

.btn--blue.btn--secondary:hover {
  background: var(--light-blue-bg) !important;
}

@media screen and (max-width: 500px) {
  .btn {
    font-size: 1rem;
  }
}

/* =============
      Font Face 
      ============= 
@font-face {
  font-family: Filson Soft;
  font-weight: 900;
  src: local("Filson Soft"),
    url(//21491723.fs1.hubspotusercontent-na1.net/hubfs/21491723/raw_assets/public/coLearn/Fonts/Filson%20Soft/filsonsoft-black-webfont.woff);
  font-display: swap;
}
*/
/* ==============
      Base Styles 
      ============== */
* {
  box-sizing: border-box;
}

body {
  width: 100%;
  margin: 0px;
  font-family: "Inter", "Arial", sans-serif;
}
body:not(.inter--loaded) {
  /*font-family: "Arial", sans-serif;*/
  /*letter-spacing: 0.031em;*/
  letter-spacing: 0.55px
  word-spacing: -0.25px;
}

/* =============
      Typography 
      ============= */
.globalHeaderContainer {
  letter-spacing: 0;
}
.body:not(.inter--loaded) p {
  font-size: 24px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  margin-top: 15px;
  margin-bottom: 15px;
  letter-spacing: -0.03em;
  color: var(--primary-font);
}

h1, .xl-heading {
  font-size: 4rem;
}
h2, .lg-heading {
  font-size: 2.75rem;
}
h3, .md-heading {
  font-size: 2.4rem;
}
h4, h5, .sm-heading {
  font-size: 1.8rem;
}

h6, .xs-heading {
  font-size: 1.3rem;
}

p {
  font-size: 1.1rem;
  color: var(--grey-500);
  line-height: 1.6rem;
  letter-spacing: -0.01rem; 
}

strong {
  font-weight: 700;
}

::placeholder {
  font-family: Inter;
  font-weight: 600;
}

/* ======================
      Responsive Typography 
      ====================== */
@media screen and (max-width: 1100px) {
  h1, .xl-heading {
    font-size: 3.5rem;
  }
}
@media screen and (max-width: 750px) {
  h1, .xl-heading {
    font-size: 2.5rem;
  }

  h2, .lg-heading {
    font-size: 2rem;
  }

  h3, .md-heading {
    font-size: 1.5rem;
  }

  h2, .sm-heading {
    font-size: 1.3rem;
  }

  p {
    font-size: 18px;
    line-height: 26px;
  }
}

/* ==========
      Form Styles 
      ========== */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
select,
textarea {
  padding-left: 10px;
  height: 40px;
  width: 100%;
  background: #ffffff;
  border: 1px solid #e4e4e4;
  border-radius: 0.25rem;
}

textarea {
  height: 110px;
}

label {
  font-size: 16px;
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
}

.hs-form-field {
  margin-top: 10px;
  margin-bottom: 10px;
}

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

/* ===============
      Container Styles 
      =============== */
.bodyContainer,
.contentContainer,
.contentWidth {
  float: none;
  margin: 0px auto;
}

.bodyContainer {
  max-width: 1300px;
}

.contentContainer {
  max-width: 887px;
}

.contentWidth {
  max-width: 1100px;
}

/* responsive-container can also have a background set because it uses padding */
.responsive-container {
  padding-right: calc((100% - 1300px) / 2);
  padding-left: calc((100% - 1300px) / 2);
}

/* ======================
      Responsive Containers 
      ====================== */
@media screen and (max-width: 1400px) {
  .bodyContainer, .responsive-container, .contentWidth {
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media screen and (max-width: 500px) {
  .bodyContainer, .responsive-container, .contentWidth {
    padding-left: 35px;
    padding-right: 35px;
  }
}
@media screen and (max-width: 910px) {
  .contentContainer {
    padding-left: 35px;
    padding-right: 35px;
  }
}

/* ================
   Image Styles 
   ================ */
.centerImage {
  display: block;
  margin: 0px auto;
  max-width: 100%;
  height: auto;
  aspect-ratio: auto;
}

/* ================
   Utilities 
   ================ */

.hidden {
  display: none;
}
.subtle-transition {
  transition: var(--subtle-transition);
}
.animated-hidden {
  /*visibility: hidden; - better animation but takes up screen space */
  display: none;
  opacity: 0;
  position: absolute;
  top: 0;
}
.grow {
  flex-grow: 1;
}
.fill-dark-blue {
  fill: var(--dark-blue-bg);
}
.fill-light-blue {
  fill: var(--light-blue-bg);
}

.bg-light-blue {
  background: var(--light-blue-bg);
  color: var(--light-blue-bg-secondary-text);
}
.bg-light-blue p {
  color: var(--light-blue-bg-secondary-text);
}
.bg-light-blue h1, .bg-light-blue h2, .bg-light-blue h3, .bg-light-blue h4, .bg-light-blue h5, .bg-light-blue h6 {
  color: var(--light-blue-bg-primary-text);
}

.bottom-blob {
  stroke: var(--light-orange-bg);
  position: absolute;
  z-index: -1;
  bottom: -10rem;
  right: 0;
}

.bold {
  font-weight: 700;
}

/* Icons */
.icon, .icon-wrapper svg {
  display: inline-block;
  width: 1em;
  height: 1em;
  font-size: inherit;
  color: inherit;
  vertical-align: -0.125em;
  fill: currentColor;
}