* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
.ios * {
  cursor: pointer;
}
html,
body {
  height: 100%;
}
body {
  color: #18242b;
  font: 14px 'EB Garamond', Georgia, serif;
  -webkit-font-smoothing: antialiased;
}
@font-face {
  font-family: 'EB Garamond';
  font-style: normal;
  font-weight: 400;
  src: url(https://static.hiretechladies.com/fonts/eb-garamond-regular-fdc1ecd.woff2) format('woff2'),
    url(https://static.hiretechladies.com/fonts/eb-garamond-regular-480a53f.woff) format('woff');
}
@font-face {
  font-family: 'Cubano';
  font-style: normal;
  font-weight: 400;
  src: url(https://static.hiretechladies.com/fonts/Cubano-Regular-844a3a8.woff2) format('woff2'),
    url(https://static.hiretechladies.com/fonts/Cubano-Regular-09f784d.woff) format('woff');
}
@font-face {
  font-family: 'Cubano-Italic';
  font-style: italic;
  font-weight: 400;
  src: url(https://static.hiretechladies.com/fonts/Cubano-Italic-5456e8b.woff2) format('woff2'),
    url(https://static.hiretechladies.com/fonts/Cubano-Italic-44025f9.woff) format('woff');
}
@font-face {
  font-family: 'Cubano-Sharp';
  font-style: normal;
  font-weight: 400;
  src: url(https://static.hiretechladies.com/fonts/Cubano-Sharp-4acfecb.woff2) format('woff2'),
    url(https://static.hiretechladies.com/fonts/Cubano-Sharp-4d4d275.woff) format('woff');
}
h1,
h2,
h3,
h4 {
  font-family: 'Cubano', sans-serif;
  font-weight: normal;
  text-transform: uppercase;
}
h1 {
  font-size: 36px;
  letter-spacing: 1px;
}
h2 {
  font-size: 24px;
}
hr {
  border: 1px solid #dbe0e4;
}
a,
a:link,
a:visited {
  color: #18242b;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}
.RoundedButton,
.RoundedButton:link,
.RoundedButton:visited {
  border: 1px solid #18242b;
  border-radius: 999em;
  color: #18242b;
  display: inline-block;
  font: inherit;
  padding: 5px 30px 7px;
  text-align: center;
  text-decoration: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  vertical-align: baseline;
}
.RoundedButton--light,
.RoundedButton--light:link,
.RoundedButton--light:visited {
  border-color: #fff;
  color: #fff;
}
.RoundedButton:hover {
  color: #fff;
  cursor: pointer;
  background-color: #18242b;
  text-decoration: none;
}
.RoundedButton--light:hover {
  background-color: #fff;
  color: #18242b;
}
@media only screen and (min-width: 1024px) {
  a:hover {
    text-decoration: underline;
  }
}
@media (-webkit-min-device-pixel-ratio: 2) and (min-width: 1024px),
  (min-resolution: 192dpi) and (min-width: 1024px) {
  .RoundedButton {
    padding: 5px 30px 8px;
  }
}

.Header {
  background-color: #fff;
  font-size: 16px;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  transition: all 200ms ease-in;
  z-index: 1000;
}
.Header-navLinks,
.is-shadowed {
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.08);
}
.Header,
.Header-inner {
  height: 100px;
}
.Header-inner {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  position: relative;
}
.Header-logo,
.Header-navLink {
  text-decoration: none;
}
.Header-logo {
  display: block;
  font-family: 'Cubano-Italic', sans-serif;
  font-size: 30px;
  font-style: italic;
  text-transform: uppercase;
  white-space: nowrap;
}
.Header-navLinks {
  background-color: #fff;
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 100px;
  z-index: 1000;
}
.Header.is-active .Header-navLinks {
  display: block;
}
.Header-navLink {
  display: block;
  background-color: #fdf8fa;
  padding-bottom: 20px;
  padding-left: 30px;
  padding-top: 20px;
}
.Header-pancakes {
  background-color: transparent;
  border: none;
  box-sizing: content-box;
  cursor: pointer;
  display: inline-block;
  height: 21px;
  padding: 6px;
  position: relative;
  vertical-align: middle;
  width: 21px;
}
.Header-pancakesInner {
  position: relative;
}
.Header-pancakes::after,
.Header-pancakesInner,
.Header-pancakesInner::before,
.Header-pancakesInner::after {
  background-color: #18242b;
  border-radius: 1.5px;
  height: 3px;
  transition: all 100ms ease-in;
}
.Header-pancakes::after {
  opacity: 0;
  top: 15px;
}
.Header-pancakes::after,
.Header-pancakesInner::before,
.Header-pancakesInner::after {
  content: '';
  display: block;
  position: absolute;
  width: 21px;
}
.Header-pancakesInner::before {
  top: -6px;
}
.Header-pancakesInner::after {
  bottom: -6px;
}
.Header.is-active .Header-pancakes::after {
  opacity: 1;
  transform: rotate(-45deg);
}
.Header.is-active .Header-pancakes .Header-pancakesInner {
  transform: rotate(45deg);
}
.Header.is-active .Header-pancakes .Header-pancakesInner::before,
.Header.is-active .Header-pancakes .Header-pancakesInner::after {
  background-color: transparent;
}
@media (-webkit-min-device-pixel-ratio: 2) and (min-width: 1120px),
  (min-resolution: 192dpi) and (min-width: 1120px) {
  .Header-navLink:last-of-type {
    padding: 5px 30px 8px;
  }
}
@media only screen and (min-width: 1185px) {
  .Header {
    font-size: 16px;
    z-index: 9999;
  }
  .Header-inner {
    max-width: 1320px;
    padding-left: 40px;
    padding-right: 40px;
  }
  .Header-navLinks {
    box-shadow: none;
    display: block;
    position: static;
    white-space: nowrap;
  }
  .Header-navLink {
    display: inline-block;
    background-color: transparent;
    margin-left: 45px;
    padding-bottom: 10px;
    padding-left: 0;
    padding-top: 10px;
    text-align: center;
  }
  .Header-navLink:first-of-type {
    margin-left: 0;
  }
  .Header-navLink:last-of-type {
    border: 1px solid #18242b;
    border-radius: 999em;
    color: #18242b;
    display: inline-block;
    font: inherit;
    padding: 5px 30px 7px;
    text-align: center;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    vertical-align: baseline;
  }
  .Header-navLink:last-of-type:hover {
    color: #fff;
    cursor: pointer;
    background-color: #18242b;
    text-decoration: none;
  }
  .Header-pancakes {
    display: none;
  }
}

.Footer {
  background-color: #18242b;
  color: #fff;
  font-family: Cubano, sans-serif;
  min-height: 400px;
  padding: 20px 15px;
}
.Footer a,
.Footer a:link,
.Footer a:visited {
  color: #fff;
}
.Footer-inner {
  margin: 0 auto;
}
.Footer-link,
.Footer-link:link,
.Footer-link:visited,
.Footer-header-contact,
.Footer-link-contact {
  align-items: center;
  border-top: 1px solid #fff;
  display: flex;
  flex-basis: 345px;
  font-size: 18px;
  justify-content: space-between;
  padding: 15px 0;
  text-decoration: none;
}
.Footer-header-contact {
  display: none;
}
.Footer-info {
  margin-top: 35px;
  max-width: 345px;
}
.Footer-info p {
  margin-bottom: 1em;
}
.Footer-arrow {
  display: inline-block;
  vertical-align: middle;
}
.Footer-arrow:before,
.Footer-arrow:after {
  background-color: #fff;
  border-radius: 4px;
  content: '';
  display: block;
  height: 4px;
  width: 11px;
}
.Footer-arrow:before {
  transform: translate(0, -0.75px) rotate(45deg);
}
.Footer-arrow:after {
  transform: translate(0, 0.75px) rotate(-45deg);
}
.Footer.is-hidden {
  display: none;
}
.Footer-instagram,
.Footer-twitter {
  display: none;
}
@media only screen and (min-width: 1024px) {
  .Footer {
    padding: 0;
  }
  .Footer-inner {
    max-width: 1310px;
    padding-left: 40px;
    padding-right: 40px;
  }
  .Footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .Footer-link,
  .Footer-link:link,
  .Footer-link:visited,
  .Footer-header-contact {
    display: flex;
    font-size: 24px;
    margin-top: 30px;
  }
  .Footer-link-contact {
    display: none;
  }
}
@media only screen and (min-width: 1200px) {
  .Footer-items {
    display: flex;
    justify-content: space-between;
  }
  .Footer-instagram {
    display: block;
    margin-left: 20px;
    margin-top: 40px;
    width: 328px;
  }
  .Footer-twitter {
    display: block;
    margin-top: 30px;
    width: 348px;
  }
  .Footer-instagram img {
    height: 114px;
    width: 114px;
  }
  .Footer-instagram ul {
    display: flex;
    margin-bottom: -3px;
  }
  .Footer-instagram li {
    list-style: none;
  }
}

.HeroImage {
  background-position: center;
  background-size: cover;
  height: calc(100vw * 0.53);
  margin-top: 100px;
  max-height: 600px;
  position: relative;
}
.HeroImage-gradient,
.HeroImage-text {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.HeroImage-gradient {
  background-image: linear-gradient(
    to bottom,
    rgba(138, 0, 0, 0),
    rgba(105, 18, 18, 0.23) 56%,
    #501f1f66
  );
}
.HeroImage-text {
  align-items: center;
  color: #fff;
  display: flex;
  font-family: 'Cubano-Sharp';
  font-size: calc(0.09 * 100vw);
  font-style: italic;
  justify-content: center;
  line-height: 1;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .HeroImage {
    height: calc(100vw * 0.42);
  }
  .HeroImage-text {
    font-size: 60px;
  }
}
@media only screen and (min-width: 1024px) {
  .HeroImage-text {
    font-size: 90px;
  }
}

.Slideshow {
  overflow: hidden;
}
.Slideshow-container {
  display: flex;
  overflow: hidden;
  will-change: scroll-position;
}
.Slideshow-container--scrollable {
  -webkit-overflow-scrolling: touch;
  overflow: auto;
}
.Slideshow-slide {
  flex-shrink: 0;
  padding: 0 15px;
  scroll-snap-align: center;
  width: 100%;
}
.Slideshow-dots {
  margin: 40px 0;
  text-align: center;
}
.Slideshow-dot {
  border: solid 1.2px #28313c;
  border-radius: 999em;
  display: inline-block;
  height: 12px;
  margin: 0 12px;
  transition: background-color 200ms ease-in-out;
  width: 12px;
  will-change: background-color;
}
.Slideshow-dot.is-active {
  background-color: #28313c;
}
.Slideshow-dot--white {
  border-color: #fff;
}
.Slideshow-dot--white.is-active {
  background-color: #fff;
}
@media only screen and (min-width: 768px) {
  .Slideshow-slide {
    padding: 0 35px;
  }
}

.Companies {
  margin-top: 60px;
  padding: 0 15px;
}
.Companies-header {
  margin: 0 auto;
  text-align: center;
}
.Companies-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  max-width: 900px;
  margin: 0 auto;
}
.Companies-img {
  display: inline-block;
  height: 60px;
  margin: 20px 15px;
  width: 90px;
}

.StoryCard {
  margin: 0 auto;
  overflow: hidden;
}
.StoryCard-imageContainer {
  height: calc(0.56 * 100vw);
  overflow: hidden;
  position: relative;
}
.StoryCard-img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.StoryCard-content {
  display: flex;
  flex-direction: column;
  font-size: 28px;
  justify-content: space-between;
  padding: 40px 45px;
}
.StoryCard-content--pink {
  background-color: #fbdcdc;
}
.StoryCard-content--green {
  background-color: #d2e8e1;
}
.StoryCard-content--blue {
  background-color: #335c77;
}
.StoryCard-content--black {
  background-color: #18242b;
}
.StoryCard-content--blue,
.StoryCard-content--blue a:link,
.StoryCard-content--blue a:visited,
.StoryCard-content--black,
.StoryCard-content--black a:link,
.StoryCard-content--black a:visited {
  color: #fff;
}
.StoryCard-contentFooter {
  font-size: 24px;
  margin-top: 50px;
}
.StoryCard-img--portrait .StoryCard-imageContainer {
  width: 426px;
}
.StoryCard-img--portrait {
  display: none;
}
@media only screen and (min-width: 768px) {
  .StoryCard-content {
    height: calc(0.39 * 100vw);
  }
  .StoryCard-contentFooter {
    margin-top: 0;
  }
  .StoryCard-img--portrait {
    display: flex;
    height: 550px;
  }
  .StoryCard-img--portrait .StoryCard-imageContainer {
    height: 550px;
    width: 50%
  }
  .StoryCard-img--portrait .StoryCard-content {
    height: 550px;
    width: 50%;
  }
  .StoryCard-img--right {
    flex-direction: row-reverse;
  }
}
@media only screen and (min-width: 1024px) {
  .StoryCard {
    display: flex;
    height: 520px;
    max-width: 1196px;
  }
  .StoryCard-imageContainer {
    height: auto;
    width: 852px;
  }
  .StoryCard-content {
    flex-shrink: 0;
    height: auto;
    width: 344px;
  }
  .StoryCard-img--portrait .StoryCard-content {
    font-size: 36px;
    padding: 61px 74px 61px 75px;
    width: 770px;
  }
  .StoryCard-img--right {
    flex-direction: row-reverse;
  }
}

.HeroImage--home {
  background-image: url(https://static.hiretechladies.com/ssr/home/images/hero-ad67aaf.jpg);
}
.HomeHeader {
  background-color: #fdf8fa;
  padding: 60px 15px;
  text-align: center;
}
.HomeHeader-title {
  font-size: 36px;
  line-height: 1em;
  margin-bottom: 32px;
}
.HomeHeader-subtitle {
  font-size: 28px;
}
.HomeHeader-subtitle:last-child {
  margin-top: 60px;
}
.HomeHeader-subtitle p {
  display: inline;
}
.DiagBoxContainer {
  padding: 0 15px;
  position: relative;
}
.DiagBoxBackground {
  background-color: #fdf8fa;
  height: 22%;
  position: absolute;
  top: 0;
  width: calc(100% - 30px);
  z-index: -2;
}
.DiagBoxContainer-inner {
  display: flex;
  flex-wrap: wrap;
  margin: auto;
}
.DiagBox {
  padding: 25px 25px 40px;
  position: relative;
}
.DiagBox-innerRect {
  background-color: inherit;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transform: skewY(5deg);
  width: 100%;
}
.DiagBox--left {
  /* container width * tan(5deg) */
  margin-bottom: calc((100vw - (15px * 2)) * 0.08748866352);
}
.DiagBox--left .DiagBox-innerRect {
  transform-origin: center left;
}
.DiagBox--right .DiagBox-innerRect {
  transform-origin: center right;
}
.DiagBox-header,
.DiagBox-body,
.DiagBox-action {
  position: relative;
  z-index: 2;
}
.DiagBox-header {
  font-size: 16px;
  margin-bottom: 31px;
}
.DiagBox-body {
  font-size: 48px;
  line-height: 1.08;
  margin-bottom: 31px;
}
.DiagBox-action,
.DiagBox-action:link,
.DiagBox-action:visited {
  font-size: 18px;
}
.DiagBox--pink {
  background-color: #ffbdbf;
}
.DiagBox--darkBlue {
  background-color: #335c77;
  color: #fff;
}
.Companies {
  margin-top: 60px;
}
.Companies-logos {
  margin: 35px auto;
}
.SuccessStories {
  background-color: #fdf8fa;
  padding: 60px 0;
}
.SuccessStories-header {
  margin: 0 auto 50px;
  text-align: center;
}
.SuccessStories-footer {
  font-size: 28px;
  text-align: center;
}
.Webinars,
.AboutAndFounding,
.GetStarted {
  background-color: #f2f8f6;
}
.Webinars-header {
  padding: 60px 0 35px;
  text-align: center;
}
.Webinars-buttons {
  font-size: 18px;
  text-align: center;
}
.Webinars-button {
  margin: 0 5px 25px;
}
.FancyBorder {
  border: 2px solid #ffbdbf;
  margin: 0 auto;
  max-width: 978px;
  padding: 5px;
  position: relative;
}
.FancyBorder-borderCurve {
  border: 2px solid #ffbdbf;
  height: 20px;
  position: absolute;
  width: 20px;
  z-index: 1;
}
.FancyBorder-borderCurve--topLeft {
  border-bottom-right-radius: 20px;
  border-left-color: #f2f8f6;
  border-top-color: #f2f8f6;
  left: -2px;
  top: -2px;
}
.FancyBorder-borderCurve--bottomLeft {
  border-top-right-radius: 20px;
  border-left-color: #f2f8f6;
  border-bottom-color: #f2f8f6;
  left: -2px;
  bottom: -2px;
}
.FancyBorder-borderCurve--topRight {
  border-bottom-left-radius: 20px;
  border-right-color: #f2f8f6;
  border-top-color: #f2f8f6;
  right: -2px;
  top: -2px;
}
.FancyBorder-borderCurve--bottomRight {
  border-top-left-radius: 20px;
  border-right-color: #f2f8f6;
  border-bottom-color: #f2f8f6;
  bottom: -2px;
  right: -2px;
}
.FancyBorder--event {
  background-color: #fdf8fa;
  border-color: #fbdcdc;
  font-size: 24px;
  padding: 0;
}
.FancyBorder--event .FancyBorder-innerContainer {
  display: flex;
  max-height: 510px;
  height: calc(0.5 * 100vw);
}
.FancyBorder--event .FancyBorder-borderCurve--topLeft {
  border-bottom-color: #fbdcdc;
  border-right-color: #fbdcdc;
}
.FancyBorder--event .FancyBorder-borderCurve--bottomLeft {
  border-right-color: #fbdcdc;
  border-top-color: #fbdcdc;
}
.FancyBorder--event .FancyBorder-borderCurve--topRight {
  border-bottom-color: #fbdcdc;
  border-left-color: #fbdcdc;
}
.FancyBorder--event .FancyBorder-borderCurve--bottomRight {
  border-left-color: #fbdcdc;
  border-top-color: #fbdcdc;
}
.FancyBorder--event .FancyBorder-borderCurve {
  background-color: #f2f8f6;
}
.FancyBorder-innerContainer {
  overflow: hidden;
  position: relative;
}
.FancyBorder--event h1,
.FancyBorder--event h2 {
  font-size: calc(3vw);
}
.FancyBorder-leftCol h2 {
  padding: 15px 30px;
}
.FancyBorder-rightCol .FancyBorder-eventTime {
  font-size: 12px;
}
.FancyBorder-leftCol,
.FancyBorder-rightCol {
  flex-grow: 1;
}
.FancyBorder-leftCol {
  flex-basis: 15%;
}
.FancyBorder-leftCol .FancyBorder-img {
  height: 54%;
}
.FancyBorder-leftCol .FancyBorder-eventTime {
  display: none;
}
.FancyBorder-rightCol {
  flex-basis: 0;
  padding: 45px 20px;
}
.FancyBorder-rightCol h1 {
  line-height: 1.11;
  margin-bottom: 25px;
}
.FancyBorder-rightCol p {
  line-height: 1.42;
}
.FancyBorder-eventDesc,
.FancyBorder-rightCol .FancyBorder-eventTime {
  font-size: 2.5vw;
}
.FancyBorder-eventDesc {
  display: none;
}
.FancyBorder-img {
  height: calc(0.5 * 100vw);
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.AboutAndFounding {
  padding: 35px 15px 0;
}
.AboutAndFounding-gridContainer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 auto;
  max-width: 1240px;
}
.AboutAndFounding-gridItem {
  background-color: #fff;
  height: calc(0.73 * 100vw);
  overflow: hidden;
  width: 100%;
}
.AboutAndFounding-gridItem img {
  height: 100%;
}
.AboutAndFounding-gridItem--unicorn {
  align-items: center;
  display: flex;
  justify-content: center;
}
.AboutAndFounding-gridItem--unicorn video {
  width: 75%;
}
.AboutAndFounding-gridItem--text {
  background-color: #d2e8e1;
  display: flex;
  flex-direction: column;
  height: calc(0.87 * 100vw);
  justify-content: space-between;
  padding: 25px 25px 40px;
}
.GridItem-header {
  font-size: 16px;
  line-height: 1;
  margin-bottom: 31px;
}
.GridItem-content {
  font-size: 28px;
}
.GridItem-footer {
  font-size: 18px;
  margin-top: 36px;
}
.GetStarted {
  font-size: 20px;
  padding: 60px 15px;
  text-align: center;
}
.GetStarted-logo {
  height: 57px;
  margin: 0 auto 35px;
}
.GetStarted-header {
  font-size: 32px;
}
.GetStarted-apply,
.GetStarted-apply:hover {
  text-decoration: none;
}
.GetStarted-apply,
.GetStarted-apply:link,
.GetStarted-apply:visited {
  background-color: #ef8888;
  border-radius: 999em;
  color: #fff;
  display: block;
  font-family: 'Cubano', sans-serif;
  font-size: 24px;
  margin: 35px auto 10px;
  max-width: 345px;
  padding: 18px 0;
}
@media only screen and (min-width: 768px) {
  .DiagBoxContainer {
    padding: 0;
  }
  .DiagBoxBackground {
    height: calc(100% - 20px);
    width: 100%;
  }
  .DiagBox {
    padding: 56px 40px 60px 68px;
    width: calc(100vw - 250px);
  }
  .DiagBox--left {
    margin-bottom: auto;
    z-index: 2;
  }
  .DiagBox--right {
    left: 250px;
  }
  .DiagBox-innerRect {
    transform: skewX(-20deg);
    transform-origin: unset;
    width: 185px;
  }
  .DiagBox--left .DiagBox-innerRect {
    top: 0;
    left: auto;
    right: -91px;
    z-index: 2;
  }
  .DiagBox--right .DiagBox-innerRect {
    left: -91px;
  }
  .DiagBox--right {
    top: -20px;
  }
  .Companies {
    margin-top: 45px;
  }
  .Companies-logos {
    margin-bottom: 45px;
  }
  .SuccessStories {
    padding-bottom: 96px;
  }
  .SuccessStories-header p {
    display: inline;
  }
  .Webinars-header {
    font-size: 28px;
    padding-bottom: 53px;
  }
  .FancyBorder {
    padding: 10px;
  }
  .FancyBorder--event {
    padding: 0;
  }
  .FancyBorder-borderCurve {
    height: 40px;
    width: 40px;
  }
  .FancyBorder-borderCurve--topLeft {
    border-bottom-right-radius: 40px;
  }
  .FancyBorder-borderCurve--bottomLeft {
    border-top-right-radius: 40px;
  }
  .FancyBorder-borderCurve--topRight {
    border-bottom-left-radius: 40px;
  }
  .FancyBorder-borderCurve--bottomRight {
    border-top-left-radius: 40px;
  }
  .FancyBorder-img {
    height: 340px;
  }
  .FancyBorder-leftCol h2 {
    padding: 20px 60px 20px;
  }
  .FancyBorder-leftCol .FancyBorder-eventTime {
    display: block;
    padding: 12px 60px 0;
  }
  .FancyBorder-rightCol {
    padding: 60px 38px;
  }
  .FancyBorder-eventDesc {
    display: block;
  }
  .FancyBorder-rightCol .FancyBorder-eventTime {
    display: none;
  }
  .AboutAndFounding-gridItem {
    height: 500px;
    width: 620px;
  }
}
@media only screen and (min-width: 1024px) {
  .HeroImage--home p {
    display: inline;
  }
  .HomeHeader-title {
    font-size: 64px;
    margin-bottom: 32px;
  }
  .HomeHeader-subtitle p {
    display: block;
  }
  .Companies {
    margin-top: 100px;
  }
  .FancyBorder-img {
    height: 475px;
  }
  .FancyBorder--event h1 {
    font-size: 36px;
  }
  .FancyBorder--event h2 {
    font-size: 28px;
    padding: 47px 80px 40px;
  }
  .FancyBorder-eventDesc {
    font-size: 24px;
  }
  .FancyBorder-leftCol .FancyBorder-eventTime {
    padding: 22px 80px 54px;
  }
  .AboutAndFounding {
    padding: 75px 0 0;
  }
  .AboutAndFounding-gridItem--text {
    padding: 60px 93px;
  }
  .GridItem-content {
    font-size: 48px;
    line-height: 1;
  }
}
@media only screen and (min-width: 1125px) {
  .DiagBoxBackground {
    height: 50%;
  }
  .DiagBoxContainer-inner {
    justify-content: center;
  }
  .DiagBox {
    height: 500px;
    max-width: 500px;
  }
  .DiagBox--left {
    margin-right: 125px;
  }
  .DiagBox--right {
    left: auto;
    top: 40px;
    z-index: 1;
  }
}
@media only screen and (min-width: 1240px) {
  .AboutAndFounding-gridItem:nth-of-type(3) {
    order: 4;
  }
}


/*# sourceMappingURL=home-7c3832b.css.map*/