
body {
  margin:0;
  box-sizing:border-box;
  font-family:proxima-nova, sans-serif;
  font-weight:400;
  font-size:20px;
  overflow-x: hidden;
  display:grid;
}

ul {
  list-style: none;
}

.body_text {
  font-family:proxima-nova, sans-serif;
  font-size:18px;
  line-height:24px;
  font-weight:400;
}

.header_title {
  font-family: gelato-luxe, sans-serif;
  font-size: 80px;
  line-height:70px;
  color:#00c0bb !important;
}

.wrapper_width {
  display:grid;
  width:90vw;
  max-width: 1280px;
  justify-self:center;
}

.wrapper_fullwidth {
  display:grid;
  width:100vw;
}

.hex_clip {
  clip-path: polygon(5% 0%, 95% 0%, 100% 50%, 95% 100%, 5% 100%, 0% 50%);
  grid-template-columns: 3fr 2fr;
  grid-template-rows: 1fr;
  background:#e8e8e8;
}

.pic_clip {
  clip-path: polygon(100% 0, 100% 100%, 0% 100%, 10% 50%, 0% 0%);
}

.cta_button {
  padding:10px 30px;
  border:solid 1px #FFF;
  border-radius:100px;
}

.cta_button:hover {
  background:#0d1626;
  color:#fff !important;
  border:solid 1px #0d1626;
}

.cta_button_white {
  padding:10px 30px;
  border: solid 1px #fff;
  color:#fff;
  border-radius: 100px;
  justify-self:flex-start;
  margin-left:5px;
  margin-top:40px;
}

.cta_button_white:hover {
  background:#0d1626;
  border:solid 1px #0d1626;
}

.minor_header {
  font-size:32px;
  line-height:30px;
  font-weight:800;
  font-style: italic;
  animation:color_fade_color 4s alternate infinite;
  margin-bottom:20px;
}

.separator {
  justify-self:center;
  height:2px;
  width:90vw;
  max-width:1300px;
  margin:40px 0px;
  animation:color_fade_bg 4s infinite alternate;
}




















.max_text {
  max-width:1200px;
  justify-self:center;
}

/* Brand colours */

.blue {
  color:#0088ff;
}

.dark_blue {
  color:#0d1626;
}

.black {
  color:#000;
}

.pink {
  color:#e800b8;
}

.white {
  color:#fff;
}

/* Text styles */

.body_text {
  text-size:20px;
  line-height: 18px;
}

.multi_text {
  animation:color_fade_color 2s alternate infinite;
}

.italic {
  font-style: italic;
}

.center {
  text-align: center;
}

.body_bold {
  font-weight:800;
}

.body_semi {
  font-weight:600;
}

.filler {
  color:green;
}

.body_link {
  color:#0088ff;
  text-decoration: underline;
}

.body_link_white {
  color:#fff;
  text-decoration: underline;
}

.index_link {
  color:#808080;
  font-size:16px;
}

.index_non_link {
  color:#808080;
  font-size:16px;
}

.index_link:hover {
  text-decoration: underline;
}

a {
  text-decoration: none;
  color:inherit;
}

button {
  appearance:none;
  border:none;
  background-color:none;
  outline:none;
  padding:none;
  margin:none;
  cursor: pointer;
}

@keyframes color_fade_bg {
  from {background:#0088ff;}
  to {background:#e800b8;}
  }

@keyframes color_fade_color {
  from {color:#0088ff;}
  to {color:#e800b8;}
  }

@keyframes color_fade_color_reverse {
  from {color:#e800b8;}
  to {color:#0088ff;}
  }
