header {
  background: #ffffff;
  width: 100%;
  position: relative;
  z-index: 20000;
  padding-bottom: 30px;
}

header #logo, header .second_column {
  width: 100%;
}

header #logo img {
  width: 65%;
}

header .second_column {
  position: relative;
}

header .inner {
  padding: 10px 20px;
}

header nav {
  font-size: 4vw;
  padding: 10px 20px;
  position: relative;
  text-align: left;
  width: 100%;
  z-index: 30000;
}

header nav a, header nav li {
  font-family: "Gotham-Medium";
}

header nav a:last-child:after, header nav li:last-child:after {
  content: "";
}

header nav a::after, header nav li::after {
  color: #00a8e5 !important;
}

@media (min-width: 768px) {
  header #logo, header .second_column {
    width: 50%;
  }

  header #logo img {
    width: 85%;
  }

  header nav {
    font-size: 12pt;
    text-align: right;
    padding-right: 50px;
    padding-top: 12px;
  }
}

@media (min-width: 1024px) {
  header {
    padding: 0 15% 10px;
    margin: 0 auto;
    display: block;
  }

  header #logo {
    width: 40%;
  }

  header #logo img {
    width: 65%;
  }

  header .second_column {
    width: 60%;
  }

  header .header-link {
    padding: 0;
  }

  header .header-link:after {
    margin-left: 0.75rem;
  }

  header nav {
    font-size: 1.2vw;
    text-align: right;
    padding-bottom: 0;
    margin-bottom: -15px;
    padding-right: 0;
  }
}

form#search {
  width: 100%;
  display: -webkit-box;
  display: flex;
}

form#search span {
  display: inline-block;
}

form#search span svg {
  width: 20px;
  fill: #00a8e5;
}

form#search input {
  display: inline-block;
  border: 1px solid #00a8e5;
  padding: 5px 5px 5px 25px;
  background-size: 10px;
  background-position: left 10px center;
  background-repeat: no-repeat;
  margin: 0;
}

form#search button,
form#search input[type=submit] {
  background: #00a8e5;
  border: 1px solid #00a8e5;
  font-family: "Gotham-Medium";
  color: #ffffff;
  text-align: center;
  margin-top: 0;
}

@media (min-width: 768px) {
  form#search {
    position: absolute;
    bottom: 20px;
    right: 0;
    width: 90%;
    margin-right: 5%;
  }
}

@media (min-width: 1024px) {
  form#search {
    width: 80%;
  }

  form#search input {
    font-size: 1.2vw;
    background-size: 4%;
    padding: 5px 5px 5px 6%;
  }

  form#search button,
form#search input[type=submit] {
    font-size: 1.2vw;
    padding: 5px;
  }
}

footer {
  background: #ffffff;
}

footer div {
  padding-left: 0;
  padding-right: 0;
}

footer .inner {
  padding: 15px;
}

footer img {
  width: 100%;
  display: block;
}

footer .contact img {
  width: 20px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}

footer .contact span {
  color: #2d2e83;
}

footer .social {
  background-color: #00a8e5;
  border-radius: 100%;
  display: inline-block;
}

footer .social .inner {
  padding: 10px;
}

footer .social .inner svg {
  fill: #ffffff;
  height: 5vw;
  width: 5vw;
}

@media (min-width: 768px) {
  footer .social .inner svg {
    height: 15pt;
  }
}

@media (min-width: 1024px) {
  footer {
    padding: 0 15%;
    margin: 0 auto;
  }

  footer .contact img {
    width: 1.4vw;
    display: inline-block;
  }

  footer .contact span, footer .contact a {
    font-size: 1vw;
  }

  footer .social .inner {
    padding: 0.7vw;
  }

  footer .social .inner svg {
    height: 1.5vw;
    width: 1.5vw;
  }
}

#menu {
  transition: 300ms;
  -webkit-transition: 300ms;
  -moz-transition: 300ms;
  background: #ffffff;
  width: 100%;
  z-index: 20000;
  position: absolute;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  left: 100%;
}

#menu.open {
  left: 0;
}

#menu ul.parent_container {
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 168, 229, 0.1);
}

#menu ul li {
  z-index: 100;
  position: static;
  width: 100%;
  padding: 10px 0;
}

#menu ul li span, #menu ul li a {
  font-family: "Gotham-Medium";
  color: #283583;
  padding: 20px;
}

#menu ul li .child_items {
  background: #ffffff;
  box-shadow: 0 10px 10px rgba(40, 53, 131, 0.15);
  display: block;
  left: 0;
  right: 0;
  top: 0;
  max-height: 0px;
  overflow: hidden;
  opacity: 0;
  -webkit-transition: 200ms;
  transition: 200ms;
  visibility: hidden;
  z-index: 400000;
}

#menu ul li .child_items.open {
  visibility: visible;
  top: 100%;
  max-height: 800px;
  opacity: 1;
  margin-top: 10px;
  padding: 15px 0;
}

#menu ul li .child_items.open li {
  padding: 5px 20px;
  font-family: "Gotham-Light";
}

#menu ul li .child_items ul {
  text-align: left;
}

#menu ul li .child_items ul li {
  border-right: 0;
  border: 0;
  padding: 0;
}

#menu ul li .child_items ul li a, #menu ul li .child_items ul li span {
  padding: 0;
}

#menu ul li .child_items ul li a {
  font-family: "Gotham-Medium";
  color: #283583;
}

#menu ul > li > span > a {
  padding: 0;
}

@media (min-width: 1024px) {
  #menu {
    position: relative;
    height: auto;
    left: 0;
  }

  #menu.sticky {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 2000;
  }

  #menu ul {
    text-align: center;
    padding: 10px;
  }

  #menu ul.parent_container li {
    width: auto;
  }

  #menu ul.parent_container li span, #menu ul.parent_container li a {
    padding: 0;
  }

  #menu ul li {
    font-size: 1vw;
    padding: 0 10px;
  }

  #menu ul li:last-child {
    border: 0;
  }

  #menu ul li span, #menu ul li i, #menu ul li a {
    display: inline-block;
    vertical-align: middle;
    margin: 0 2px;
    font-size: 1.2vw;
  }

  #menu ul li a {
    padding: 0 5px;
  }

  #menu ul li span {
    width: auto;
  }

  #menu ul li i {
    border: solid #00a8e5;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 0.25vw;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    width: auto;
  }

  #menu ul li .child_items {
    position: absolute;
  }

  #menu ul li .child_items.open {
    margin-top: 0;
    padding: 1.5vw 2.5vw;
  }

  #menu ul li .child_items.open li {
    padding: 10px 20px;
  }

  #menu ul li .child_items ul li {
    display: block;
    width: auto;
  }

  #menu ul li .child_items ul li a {
    font-size: 1.2vw;
  }

  #menu ul li + li {
    border-left: 2px solid #00a8e5;
  }
}

.menu_toggle {
  transition: 300ms;
  -webkit-transition: 300ms;
  -moz-transition: 300ms;
  position: absolute;
  top: 15px;
  right: 20px;
  z-index: 30000;
}

.menu_toggle.open {
  top: 20px;
}

.menu_toggle.open span {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.menu_toggle.open span:last-child {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  margin-top: -5px;
}

.menu_toggle.open span:first-child {
  opacity: 0;
}

.menu_toggle span {
  transition: 300ms;
  -webkit-transition: 300ms;
  -moz-transition: 300ms;
  background: #283583;
  border-radius: 5px;
  height: 2px;
  min-width: 20px;
  display: block;
  margin-bottom: 3px;
}

.menu_toggle span:hover {
  cursor: pointer;
}

@media (min-width: 768px) {
  .menu_toggle span {
    height: 3px;
    margin-bottom: 5px;
    width: 30px;
  }
}

@media (min-width: 1024px) {
  .menu_toggle {
    opacity: 0;
    display: none;
  }
}

#featured {
  background: #ffffff;
  display: -webkit-box;
  display: flex;
  padding: 40px;
}

#featured .item {
  transition: 300ms;
  -webkit-transition: 300ms;
  -moz-transition: 300ms;
  margin-bottom: 30px;
  padding-right: 5px;
  padding-left: 5px;
  width: 50%;
  opacity: 0;
}

#featured .item.fadeIn {
  -webkit-animation: fadeIn;
          animation: fadeIn;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
}

#featured .item.fadeIn:nth-of-type(2), #featured .item.fadeIn:nth-of-type(6) {
  -webkit-animation-delay: 300ms;
          animation-delay: 300ms;
}

#featured .item.fadeIn:nth-of-type(3) {
  -webkit-animation-delay: 500ms;
          animation-delay: 500ms;
}

#featured .item.fadeIn:nth-of-type(4) {
  -webkit-animation-delay: 700ms;
          animation-delay: 700ms;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    margin-top: 10vw;
    margin-bottom: -10vw;
  }

  100% {
    opacity: 1;
    margin-top: 0;
    margin-bottom: 30px;
  }
}

#featured .item:nth-of-type(even) .title {
  background: #00a8e5;
}

#featured .item:nth-of-type(even) .content::before {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, transparent), color-stop(60%, rgba(255, 255, 255, 0.5)), to(#ffffff));
  background: linear-gradient(to bottom, transparent 0, rgba(255, 255, 255, 0.5) 60%, #ffffff 100%);
}

#featured .item:nth-of-type(even) .content::after {
  background: -webkit-gradient(linear, left bottom, left top, color-stop(0, transparent), color-stop(60%, rgba(255, 255, 255, 0.5)), to(#ffffff));
  background: linear-gradient(to top, transparent 0, rgba(255, 255, 255, 0.5) 60%, #ffffff 100%);
}

#featured .item:nth-of-type(even) .content button {
  color: #00a8e5;
  border-color: #00a8e5;
}

#featured .item:nth-of-type(even) .content button::before {
  background: rgba(0, 168, 229, 0.25);
}

#featured .item:nth-of-type(even) .content button:active, #featured .item:nth-of-type(even) .content button:focus {
  background: #00a8e5;
  color: #ffffff;
}

#featured .item .title {
  background: #78ba4d;
  margin-bottom: 10px;
  text-align: center;
}

#featured .item .title .inner {
  padding: 30px 20px;
}

#featured .item .title span {
  color: #ffffff;
  font-family: "Gotham-Medium";
}

#featured .item .content {
  position: relative;
  background-position: center;
  background-size: cover;
  text-align: center;
  min-height: 35vw;
  width: 100%;
}

#featured .item .content::before, #featured .item .content::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 50%;
  left: 0;
  z-index: 50;
}

#featured .item .content::before {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, transparent), color-stop(60%, rgba(0, 168, 229, 0.5)), to(#00a8e5));
  background: linear-gradient(to bottom, transparent 0, rgba(0, 168, 229, 0.5) 60%, #00a8e5 100%);
  bottom: 0;
}

#featured .item .content::after {
  background: -webkit-gradient(linear, left bottom, left top, color-stop(0, transparent), color-stop(60%, rgba(0, 168, 229, 0.5)), to(#00a8e5));
  background: linear-gradient(to top, transparent 0, rgba(0, 168, 229, 0.5) 60%, #00a8e5 100%);
  top: 0;
}

#featured .item .content button {
  border-radius: 50px;
  line-height: 2.5;
  padding: 0 40px;
  position: relative;
  z-index: 100;
  overflow: hidden;
  outline: none;
  border: 1px solid #ffffff;
  color: #ffffff;
  bottom: 10px;
  left: 5%;
  position: absolute;
  width: 90%;
  z-index: 1200;
}

#featured .item .content button span {
  position: relative;
  z-index: 200;
}

#featured .item .content button::before {
  content: "";
  -webkit-transition: 200ms;
  transition: 200ms;
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: -120%;
  border-radius: 50px;
  z-index: 50;
}

#featured .item .content button:hover::before {
  left: 0;
}

#featured .item .content button::before {
  background: rgba(255, 255, 255, 0.3);
}

#featured .item .content button:active, #featured .item .content button:focus {
  background: white;
  color: #00a8e5;
}

#featured .item .content button span {
  font-family: "Gotham-Medium";
}

#featured .item .inner {
  padding: 20px;
}

@media (min-width: 768px) {
  #featured .item .content {
    min-height: 25vw;
  }
}

@media (min-width: 1024px) {
  #featured {
    padding: 0 15% 5%;
    margin: 0 auto;
  }

  #featured .item .title {
    min-height: 6.5vw;
  }

  #featured .item .title .inner {
    padding: 5% 5px;
  }

  #featured .item .content {
    min-height: 18vw;
  }
}

#latest {
  background: #ffffff;
  width: 100%;
  padding: 30px;
  margin: 0 auto;
}

#latest .inner {
  padding: 20px;
}

#latest .news .content .item, #latest .events .content .item {
  border-bottom: 1px solid;
  padding: 10px 0;
}

#latest .news .content .item:first-child, #latest .events .content .item:first-child {
  padding-top: 0;
}

#latest .news .content .item:last-child, #latest .events .content .item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

#latest .news .content .item a:hover, #latest .events .content .item a:hover {
  color: #e1c263;
}

#latest .news .content button, #latest .events .content button {
  border-radius: 50px;
  line-height: 2.5;
  padding: 0 40px;
  position: relative;
  z-index: 100;
  overflow: hidden;
  outline: none;
  display: block;
  margin: 30px auto;
  width: auto;
  font-family: "Gotham-Medium";
}

#latest .news .content button span, #latest .events .content button span {
  position: relative;
  z-index: 200;
}

#latest .news .content button::before, #latest .events .content button::before {
  content: "";
  -webkit-transition: 200ms;
  transition: 200ms;
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: -120%;
  border-radius: 50px;
  z-index: 50;
}

#latest .news .content button:hover::before, #latest .events .content button:hover::before {
  left: 0;
}

#latest .news {
  padding: 20px;
}

#latest .news .content {
  background: rgba(0, 168, 229, 0.08);
}

#latest .news .content h1 {
  color: #00a8e5;
}

#latest .news .content .item {
  border-color: #00a8e5;
}

#latest .news .content .item a {
  color: #2d2e83;
}

#latest .news .content button {
  color: #00a8e5;
  border: 1px solid #00a8e5;
}

#latest .news .content button::before {
  background: rgba(0, 168, 229, 0.25);
}

#latest .news .content button:active, #latest .news .content button:focus {
  background: #00a8e5;
  color: #ffffff;
}

#latest .events {
  padding: 20px;
}

#latest .events .content {
  background: #283583;
}

#latest .events .content h1 {
  color: #78ba4d;
}

#latest .events .content .item {
  border-color: #78ba4d;
}

#latest .events .content .item a, #latest .events .content .item p {
  color: #ffffff;
}

#latest .events .content button {
  color: #78ba4d;
  border: 1px solid #78ba4d;
}

#latest .events .content button::before {
  background: rgba(120, 186, 77, 0.25);
}

#latest .events .content button:active, #latest .events .content button:focus {
  background: #78ba4d;
  color: #ffffff;
}

@media (min-width: 1024px) {
  #latest {
    padding: 5% 15%;
  }

  #latest .inner {
    padding: 2vw;
  }

  #latest .news .content, #latest .events .content {
    min-height: 36vw;
  }

  #latest .news .content h1, #latest .events .content h1 {
    font-size: 2vw;
  }

  #latest .news .content h2, #latest .events .content h2 {
    font-size: 1.8vw;
  }

  #latest .news .content h3, #latest .events .content h3 {
    font-size: 1.6vw;
  }

  #latest .news .content h4, #latest .events .content h4 {
    font-size: 1.4vw;
  }

  #latest .news .content p, #latest .news .content a, #latest .news .content span, #latest .news .content ul, #latest .news .content li, #latest .events .content p, #latest .events .content a, #latest .events .content span, #latest .events .content ul, #latest .events .content li {
    font-size: 1.2vw;
  }

  #latest .news .content button, #latest .events .content button {
    margin: 2vw auto;
  }

  #latest .events .content .item p {
    font-size: 1vw;
  }
}

.flatblock--home {
  background: #ffffff;
  width: 100%;
  text-align: center;
  overflow: hidden;
  position: relative;
  z-index: 50;
}

.flatblock--home::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 168, 229, 0.1);
  z-index: 50;
}

.flatblock--home .inner {
  padding: 20px;
}

.flatblock--home .inner p {
  color: #283583;
  font-family: "Gotham-Book";
}

.flatblock--home .inner p img {
  display: block;
  margin: 0 auto;
  width: 50%;
}

.flatblock--home .inner .button {
  border-radius: 50px;
  line-height: 2.5;
  padding: 0 40px;
  position: relative;
  z-index: 100;
  overflow: hidden;
  outline: none;
  font-family: "Gotham-Book";
  color: #283583;
  border: 1px solid #283583;
  padding: 10px 20px;
}

.flatblock--home .inner .button span {
  position: relative;
  z-index: 200;
}

.flatblock--home .inner .button::before {
  content: "";
  -webkit-transition: 200ms;
  transition: 200ms;
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: -120%;
  border-radius: 50px;
  z-index: 50;
}

.flatblock--home .inner .button:hover::before {
  left: 0;
}

.flatblock--home .inner .button:active, .flatblock--home .inner .button:focus {
  background: #283583;
}

.flatblock--home .background {
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
  width: 100%;
  display: block;
  top: 0;
  z-index: 50;
  min-height: 20vh;
}

@media (min-width: 768px) {
  .flatblock--home {
    max-height: 40vw;
  }

  .flatblock--home .inner p {
    font-size: 1.8vw;
  }

  .flatblock--home .inner p img {
    display: inline-block;
    height: 5vw;
    margin: 0 20px;
    width: auto;
  }

  .flatblock--home .inner .button {
    font-size: 1.4vw;
  }

  .flatblock--home .background {
    min-height: 30vw;
  }
}

.twitter {
  padding: 30px;
  background: #00a8e5;
}

.twitter .item .inner {
  padding: 20px;
}

.twitter .item .inner h3, .twitter .item .inner h4, .twitter .item .inner a, .twitter .item .inner span, .twitter .item .inner p {
  color: #ffffff;
}

.twitter .item h3 {
  font-size: 18pt;
}

.twitter .item .image {
  background-position: center;
  background-size: cover;
  border-radius: 100%;
  display: inline-block;
  text-align: center;
  vertical-align: top;
  position: relative;
  width: 25%;
}

.twitter .item .image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.85);
  width: 100%;
  height: 100%;
  border-radius: 100%;
  z-index: 10;
}

.twitter .item .image svg {
  fill: #00a8e5;
  width: 60%;
  margin: 20% auto;
  position: relative;
  z-index: 100;
}

.twitter .item .head {
  display: -webkit-box;
  display: flex;
}

.twitter .item .head .title {
  padding-left: 20px;
}

@media (min-width: 768px) {
  .twitter .item h3 {
    font-size: 2vw;
  }

  .twitter .item p {
    font-size: 1.4vw;
  }

  .twitter .item .link h4 {
    font-size: 1.4vw;
  }

  .twitter .item .link h4 a {
    font-family: "Gotham-Medium";
  }
}

@media (min-width: 1024px) {
  .twitter {
    padding: 30px 15%;
  }

  .twitter .item h3 {
    font-size: 1.6vw;
  }

  .twitter .item p {
    font-size: 1vw;
  }

  .twitter .item .post {
    padding: 15px 0;
    min-height: 10vw;
  }
}

#carousel {
  width: 100%;
}

#carousel .slider {
  width: 100%;
}

#carousel .slider-progress {
  width: 100%;
  height: 10px;
  background: rgba(0, 168, 229, 0.05);
  position: relative;
}

#carousel .slider-progress .progress_bar {
  width: 0;
  height: 100%;
  background: #00a8e5;
}

#carousel button {
  position: absolute;
  z-index: 1000;
  min-height: 100%;
  color: transparent;
  top: 0;
  left: 0;
  min-width: 3%;
  max-width: 3%;
  outline: none;
}

#carousel button::before {
  content: "";
  background-image: url("/static/img/back.png");
  background-size: 60%;
  background-repeat: no-repeat;
  background-position: center right;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}

#carousel button:nth-of-type(2) {
  right: 0;
  left: inherit;
}

#carousel button:nth-of-type(2)::before {
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

#carousel .item {
  position: relative;
}

#carousel .item .image {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  min-height: 30vh;
  z-index: 50;
}

#carousel .item .caption {
  background: -webkit-gradient(linear, left top, right top, color-stop(0, transparent), color-stop(40%, rgba(40, 53, 131, 0.5)), color-stop(90%, #283583));
  background: linear-gradient(to right, transparent 0, rgba(40, 53, 131, 0.5) 40%, #283583 90%);
  position: absolute;
  top: 0;
  left: 0;
  min-height: 30vh;
  text-align: left;
  width: 100%;
  z-index: 1200;
}

#carousel .item .caption .inner {
  padding: 30px;
  width: 70%;
  display: block;
  float: right;
}

#carousel .item .caption .inner h1, #carousel .item .caption .inner button, #carousel .item .caption .inner a, #carousel .item .caption .inner .button span {
  color: #ffffff;
}

#carousel .item .caption .inner hr {
  height: 1.5px;
  background-color: #00a8e5;
  width: 100%;
  display: block;
  margin: 10px 0;
}

#carousel .item .caption .inner p {
  color: #00a8e5;
  font-weight: 600;
  font-family: "Gotham-Medium";
}

#carousel .item .caption .inner .button {
  border-radius: 50px;
  line-height: 2.5;
  padding: 0 40px;
  position: relative;
  z-index: 100;
  overflow: hidden;
  outline: none;
  color: #ffffff;
  border: 1px solid #00a8e5;
  border-radius: 50px;
  padding: 5px 15px;
  margin-top: 10px;
  font-family: "Gotham-Book";
  display: inline-block;
}

#carousel .item .caption .inner .button span {
  position: relative;
  z-index: 200;
}

#carousel .item .caption .inner .button::before {
  content: "";
  -webkit-transition: 200ms;
  transition: 200ms;
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: -120%;
  border-radius: 50px;
  z-index: 50;
}

#carousel .item .caption .inner .button:hover::before {
  left: 0;
}

#carousel .item .caption .inner .button::before {
  background: rgba(0, 168, 229, 0.25);
}

#carousel .item .caption .inner .button:active, #carousel .item .caption .inner .button:focus {
  background: #00a8e5;
  color: #ffffff;
}

@media (min-width: 1024px) {
  #carousel .slider-progress {
    height: 1.2vw;
  }

  #carousel .item .image, #carousel .item .caption {
    min-height: 40vw;
  }

  #carousel .item .caption .inner {
    float: right;
    padding: 5vw 10vw;
    width: 45%;
  }

  #carousel .item .caption .inner h1 {
    font-size: 2vw;
  }

  #carousel .item .caption .inner p {
    font-size: 1.4vw;
  }
}

.second-carousel {
  text-align: center;
  overflow: hidden;
}

.second-carousel .content {
  position: relative;
}

.second-carousel .content .inner {
  padding: 30px;
}

.second-carousel .content .inner h1, .second-carousel .content .inner h2, .second-carousel .content .inner h3, .second-carousel .content .inner h4 {
  color: #ffffff;
  margin-bottom: 20px;
  position: relative;
  font-family: "Gotham-Light";
  font-weight: 400;
}

.second-carousel .content .inner .button {
  border-radius: 50px;
  line-height: 2.5;
  padding: 0 40px;
  position: relative;
  z-index: 100;
  overflow: hidden;
  outline: none;
  border: 1px solid #ffffff;
  color: #ffffff;
}

.second-carousel .content .inner .button span {
  position: relative;
  z-index: 200;
}

.second-carousel .content .inner .button::before {
  content: "";
  -webkit-transition: 200ms;
  transition: 200ms;
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: -120%;
  border-radius: 50px;
  z-index: 50;
}

.second-carousel .content .inner .button:hover::before {
  left: 0;
}

.second-carousel .content .inner .button::before {
  background: rgba(255, 255, 255, 0.3);
}

.second-carousel .content .inner .button:active, .second-carousel .content .inner .button:focus {
  background: white;
}

.second-carousel .content::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(43, 46, 131, 0.5);
}

@media (min-width: 1024px) {
  .second-carousel .content .inner {
    padding: 8vw;
  }

  .second-carousel .content .inner h1 {
    font-size: 2.5vw;
  }
}

.related_pages {
  border-bottom: 1px solid #283583;
  padding: 0 30px 10px;
}

.related_pages .dropdown {
  width: 100%;
  padding: 10px;
  color: #283583;
}

.related_pages .dropdown svg {
  transition: 300ms;
  -webkit-transition: 300ms;
  -moz-transition: 300ms;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  height: 20px;
  width: auto;
  float: right;
  fill: #283583;
}

.related_pages .dropdown svg.open {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.related_pages ul {
  transition: 300ms;
  -webkit-transition: 300ms;
  -moz-transition: 300ms;
  padding: 0 10px;
  overflow: hidden;
  height: 0;
  opacity: 0;
}

.related_pages ul.open {
  height: auto;
  opacity: 1;
}

.related_pages ul li {
  list-style: none;
  padding: 5px 0;
}

.related_pages ul li a {
  transition: 300ms;
  -webkit-transition: 300ms;
  -moz-transition: 300ms;
  color: #00a8e5;
  clear: both;
  display: inline-block;
  font-family: "Gotham-Book";
  position: relative;
  width: auto;
}

.related_pages ul li a .underline {
  transition: 300ms;
  -webkit-transition: 300ms;
  -moz-transition: 300ms;
  display: block;
  width: 0;
  height: 2px;
  background: #283583;
}

.related_pages ul li a:hover, .related_pages ul li a:focus {
  color: #283583;
}

.related_pages ul li a:hover .underline, .related_pages ul li a:focus .underline {
  width: 100%;
}

@media (min-width: 1024px) {
  .related_pages {
    padding: 10px 2% 10px 0;
    border-bottom: 0;
  }

  .related_pages .dropdown {
    display: none;
  }

  .related_pages ul {
    height: auto;
    opacity: 1;
  }

  .related_pages ul li {
    padding-bottom: 20px;
  }

  .related_pages ul li a .underline {
    height: 0.05vw;
  }
}

.page_feature {
  margin-right: 0;
  margin-left: 0;
}

.page_feature .title {
  text-align: right;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.page_feature .title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 168, 229, 0.6);
  z-index: 50;
}

.page_feature .title::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, right top, left top, color-stop(20%, #00a8e5), color-stop(80%, transparent));
  background: linear-gradient(-90deg, #00a8e5 20%, transparent 80%);
  z-index: 100;
}

.page_feature .title .inner {
  padding: 30px;
}

.page_feature .title .inner h1 {
  color: #ffffff;
  position: relative;
  z-index: 500;
  border-bottom: 2px solid #2d2e83;
  padding-bottom: 20px;
  display: inline-block;
}

.page_feature .title img {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: -10;
}

.page_feature .content {
  background: #ffffff;
  margin: 0 auto;
  padding: 40px 0;
}

.page_feature .content .inner {
  padding: 15px;
}

.page_feature .content .inner p, .page_feature .content .inner span, .page_feature .content .inner a, .page_feature .content .inner ul {
  font-family: "Gotham-Book";
  color: #2d2e83;
  font-weight: 100;
}

@media (min-width: 1024px) {
  .page_feature .title .inner {
    padding: 10% 15%;
  }

  .page_feature .title .inner h1 {
    font-size: 3vw;
  }

  .page_feature .content {
    padding: 2.5vw 15%;
  }
}

.breadcrumbs {
  background: #ffffff;
  padding: 15px;
  position: relative;
  z-index: 10;
}

.breadcrumbs::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 50;
}

.breadcrumbs .inner {
  position: relative;
  z-index: 100;
}

.breadcrumbs .inner span {
  display: inline-block;
  font-family: "Gotham-Medium";
  color: #2d2e83;
}

.breadcrumbs .inner span i {
  border: solid #2d2e83;
  border-width: 0 2px 2px 0;
  display: inline-block;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  width: auto;
  margin: 0 5px;
  padding: 3px;
}

.breadcrumbs .inner a {
  color: #00a8e5;
  display: inline-block;
  font-family: "Gotham-Medium";
}

@media (min-width: 1024px) {
  .breadcrumbs {
    padding: 4vw 15% 2vw;
    margin-bottom: -5vw;
  }

  .breadcrumbs.related {
    padding: 4vw 6% 2vw;
  }

  .breadcrumbs .inner a, .breadcrumbs .inner span {
    font-size: 1.2vw;
  }

  .breadcrumbs .inner span i {
    padding: 0.25vw;
  }
}

.CookiesPopup {
  -webkit-transition: 200ms;
  transition: 200ms;
  background: rgba(255, 255, 255, 0.95);
  bottom: 0;
  position: fixed;
  z-index: 5000;
  opacity: 0;
  overflow: hidden;
  width: 100%;
}

.CookiesPopup.loaded {
  opacity: 1;
}

.CookiesPopup .inner {
  padding: 30px;
}

.CookiesPopup .inner button {
  border-radius: 50px;
  line-height: 2.5;
  padding: 0 40px;
  position: relative;
  z-index: 100;
  overflow: hidden;
  outline: none;
  transition: 400ms;
  -webkit-transition: 400ms;
  -moz-transition: 400ms;
  color: #283583;
  border: 1px solid #283583;
  margin: 10px 0;
}

.CookiesPopup .inner button span {
  position: relative;
  z-index: 200;
}

.CookiesPopup .inner button::before {
  content: "";
  -webkit-transition: 200ms;
  transition: 200ms;
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: -120%;
  border-radius: 50px;
  z-index: 50;
}

.CookiesPopup .inner button:hover::before {
  left: 0;
}

.CookiesPopup .inner button::before {
  background: rgba(40, 53, 131, 0.15);
}

.CookiesPopup .inner button:active, .CookiesPopup .inner button:focus {
  background: #283583;
  color: #ffffff;
}

.CookiesPopup .title {
  background: #00a8e5;
  background-color: #283583;
}

.CookiesPopup .title .inner {
  padding: 30px;
}

.CookiesPopup .title .inner h1 {
  color: #ffffff;
}

@media (min-width: 1024px) {
  .CookiesPopup .title .inner {
    padding: 30px 15%;
  }

  .CookiesPopup .title .inner h1 {
    font-size: 2vw;
  }
}

.CookiesPopup .title h2, .CookiesPopup .title span, .CookiesPopup .title a {
  color: #ffffff;
  font-family: "Gotham-Light";
}

.CookiesPopup .title a {
  position: absolute;
  top: 30px;
  right: 30px;
}

.CookiesPopup .body a {
  display: block;
}

.CookiesPopup .body p {
  margin: 0 0 10px;
}

.CookiesPopup .body .more {
  -webkit-transition: 200ms;
  transition: 200ms;
  height: 0;
  overflow: hidden;
  opacity: 0;
}

.CookiesPopup .body .more.active {
  height: auto;
  opacity: 1;
}

@media (min-width: 700px) {
  .CookiesPopup {
    width: 300px;
  }

  .CookiesPopup .title h2 {
    font-size: 1.4vw;
  }

  .CookiesPopup .body p, .CookiesPopup .body button, .CookiesPopup .body span, .CookiesPopup .body a {
    font-size: 1vw;
  }
}

@media (min-width: 1024px) {
  .CookiesPopup {
    width: 30%;
  }

  .CookiesPopup .inner button {
    width: 100%;
    font-size: 1vw;
  }

  .CookiesPopup .title .inner {
    padding: 15px 30px;
  }

  .CookiesPopup .title a {
    font-size: 1.6vw;
    top: 10px;
  }
}

#board .member {
  padding-bottom: 40px;
}

#board .member .information {
  padding-top: 20px;
}

table {
  max-width: 100%;
  width: 100%;
}

table td {
  width: 100%;
  display: block;
  vertical-align: top;
}

table td img {
  width: 100%;
  display: block;
}

@media (min-width: 1024px) {
  table td {
    width: auto;
    display: table-cell;
  }
}

form input, form select {
  border-bottom: 1px solid #00a8e5;
  width: 100%;
  display: block;
  padding: 10px 0;
  margin-bottom: 30px;
}

form input[type=checkbox] {
  width: auto;
  display: inline-block;
  vertical-align: middle;
  margin-bottom: 0;
}

form input[type=submit] {
  background: #00a8e5;
  border: 1px solid #00a8e5;
  color: #ffffff;
  font-family: "Gotham-Medium";
  line-height: 2;
  padding: 0 15px;
  text-align: center;
  margin-top: 30px;
}

form select {
  -webkit-appearance: none;
  background-image: url("/static/img/down.png");
  background-position: center right 20px;
  background-repeat: no-repeat;
  background-size: 20px;
}

form label[for=id_consent_given] {
  display: inline-block;
  width: 85%;
  margin-left: 1%;
}

@media (min-width: 1024px) {
  form input[type=submit] {
    width: auto;
  }

  form input, form select {
    font-size: 1.2vw;
  }

  form select {
    background-size: 2%;
  }

  form label {
    font-size: 1.2vw;
  }
}

.home {
  background: #ffffff;
  text-align: center;
  margin: 0 auto;
  display: block;
  padding: 30px;
}

.home h1, .home h2, .home h3, .home h4 {
  color: #00a8e5 !important;
  font-family: "Gotham-Medium";
  margin: 0 !important;
}

.home p, .home a, .home span, .home ul, .home li {
  color: #283583;
  font-family: "Gotham-Book";
}

@media (min-width: 1024px) {
  .home {
    padding: 5% 15%;
  }

  .home h1 {
    font-size: 2vw;
  }

  .home h2 {
    font-size: 1.8vw;
  }

  .home h3 {
    font-size: 1.6vw;
  }

  .home h4 {
    font-size: 1.4vw;
  }

  .home p, .home a, .home span, .home ul, .home li {
    font-size: 1.4vw;
  }
}

.homepage .breadcrumbs {
  display: none;
}

.header_image {
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  text-align: right;
  position: relative;
  overflow: hidden;
  z-index: 10;
}

.header_image .inner {
  padding: 30px;
  position: relative;
  z-index: 100;
}

.header_image .inner h1 {
  color: #ffffff;
  padding-bottom: 30px;
  border-bottom: 2px solid #00a8e5;
  display: inline-block;
}

.header_image img {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: -5;
}

.header_image::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, right top, left top, color-stop(0, #2d2e83), color-stop(80%, transparent));
  background: linear-gradient(-90deg, #2d2e83 0, transparent 80%);
  z-index: 100;
}

@media (min-width: 1024px) {
  .header_image .inner {
    padding: 10% 15%;
  }

  .header_image .inner h1 {
    font-size: 3vw;
  }
}

.page_content {
  background: #ffffff;
  padding-top: 10px;
}

.page_content .inner {
  padding: 10px 30px;
}

.page_content .inner h1 {
  color: #00a8e5;
  font-family: "Gotham-Medium";
  font-size: 20pt;
}

.page_content .inner p, .page_content .inner span, .page_content .inner ul, .page_content .inner li {
  font-family: "Gotham-Book";
  color: #2d2e83;
  font-weight: 100;
}

.page_content .inner a {
  font-family: "Gotham-Book";
  font-weight: 100;
}

.page_content .title {
  padding-bottom: 40px;
}

.page_content .right-col {
  padding-top: 20px;
}

@media (min-width: 1024px) {
  .page_content {
    padding: 5% 14%;
    margin: 0 auto;
  }

  .page_content.has_nav {
    padding: 5%;
  }

  .page_content .right-col {
    border-left: 1px solid rgba(40, 53, 131, 0.2);
    padding-left: 5%;
    padding-top: 0;
  }

  .page_content .inner {
    padding: 1%;
  }

  .page_content .inner h1 {
    font-size: 2vw;
  }

  .page_content .inner h2 {
    font-size: 1.8vw;
  }

  .page_content .inner h3 {
    font-size: 1.6vw;
  }

  .page_content .inner h4 {
    font-size: 1.4vw;
  }
}

#publications {
  padding-bottom: 40px;
}

#publications .title {
  background: #00a8e5;
}

#publications .title .inner {
  padding: 30px;
}

#publications .title .inner h1 {
  color: #ffffff;
}

@media (min-width: 1024px) {
  #publications .title .inner {
    padding: 30px 15%;
  }

  #publications .title .inner h1 {
    font-size: 2vw;
  }
}

#publications .list .category_title {
  padding: 30px 0;
  color: #283583;
}

#publications .list h3, #publications .list svg {
  color: #00a8e5;
}

#publications .list p {
  color: #2d2e83;
  font-family: "Gotham-Medium";
}

#publications .list li {
  border-bottom: 1px solid #2d2e83;
  position: relative;
  padding: 0 5px;
  overflow: hidden;
}

#publications .list li::before {
  content: "";
  -webkit-transition: 500ms;
  transition: 500ms;
  background: rgba(0, 168, 229, 0.05);
  width: 100%;
  height: 100%;
  position: absolute;
  left: -100%;
  top: 0;
  z-index: 10;
}

#publications .list li:hover::before {
  left: 0%;
}

#publications .list li a {
  position: relative;
  z-index: 100;
}

#publications .list li a:hover {
  text-decoration: none;
}

@media (min-width: 1024px) {
  #publications .list {
    width: 70%;
    margin: 0 auto;
  }

  #publications .list .category_title h2 {
    font-size: 2vw;
  }

  #publications .list p, #publications .list h3 {
    font-size: 1.4vw;
  }

  #publications .list span {
    width: 2.5vw;
  }
}

#news .title {
  background: #00a8e5;
}

#news .title .inner {
  padding: 30px;
}

#news .title .inner h1 {
  color: #ffffff;
}

@media (min-width: 1024px) {
  #news .title .inner {
    padding: 30px 15%;
  }

  #news .title .inner h1 {
    font-size: 2vw;
  }
}

#news .news_listing .block {
  width: 100%;
}

#news .news_listing .block .inner {
  padding: 15px;
}

#news .news_listing .block .inner .image {
  width: 100%;
  vertical-align: top;
}

#news .news_listing .block .inner .image img {
  width: 100%;
  display: block;
}

#news .news_listing .block .inner .information {
  vertical-align: top;
  padding: 20px 0;
}

#news .news_listing .block .inner .information h2 {
  color: #00a8e5;
}

#news .news_listing .block .inner .information p {
  color: #2d2e83;
  padding: 20px 0;
}

@media (min-width: 768px) {
  #news .news_listing .block {
    width: 50%;
  }
}

@media (min-width: 1024px) {
  #news .news_listing {
    width: 70%;
    margin: 0 auto;
  }

  #news .news_listing .block {
    width: 33.333%;
  }

  #news .news_listing .block .inner .information h2 {
    font-size: 1.6vw;
  }
}

.news_overview .image {
  position: relative;
}

.news_overview .image img {
  width: 100%;
}

.news_overview .title {
  background: #00a8e5;
  position: relative;
  z-index: 2000;
}

.news_overview .title .inner {
  padding: 30px;
}

.news_overview .title .inner h1 {
  color: #ffffff;
}

@media (min-width: 1024px) {
  .news_overview .title .inner {
    padding: 30px 15%;
  }

  .news_overview .title .inner h1 {
    font-size: 2vw;
  }
}

.news_overview .content {
  background: #ffffff;
  position: relative;
  z-index: 2000;
  padding: 40px 0;
  font-family: "Gotham-Book";
}

.news_overview .content .inner {
  padding: 15px;
}

.news_overview .content .inner p, .news_overview .content .inner span, .news_overview .content .inner ul {
  color: #2d2e83;
}

@media (min-width: 1024px) {
  .news_overview .content {
    padding: 0 15%;
    margin: 0 auto;
  }
}

#events-list {
  padding-bottom: 40px;
}

#events-list .title {
  background: #00a8e5;
}

#events-list .title .inner {
  padding: 30px;
}

#events-list .title .inner h1 {
  color: #ffffff;
}

@media (min-width: 1024px) {
  #events-list .title .inner {
    padding: 30px 15%;
  }

  #events-list .title .inner h1 {
    font-size: 2vw;
  }
}

#events-list .list .category_title {
  padding: 30px 0;
  color: #283583;
}

#events-list .list h3, #events-list .list svg {
  color: #00a8e5;
}

#events-list .list p {
  color: #2d2e83;
  font-family: "Gotham-Medium";
}

#events-list .list li {
  border-bottom: 1px solid #2d2e83;
  position: relative;
  padding: 0 5px;
  overflow: hidden;
}

#events-list .list li::before {
  content: "";
  -webkit-transition: 500ms;
  transition: 500ms;
  background: rgba(0, 168, 229, 0.05);
  width: 100%;
  height: 100%;
  position: absolute;
  left: -100%;
  top: 0;
  z-index: 10;
}

#events-list .list li:hover::before {
  left: 0%;
}

#events-list .list li a {
  position: relative;
  z-index: 100;
}

#events-list .list li a:hover {
  text-decoration: none;
}

@media (min-width: 1024px) {
  #events-list .list {
    width: 70%;
    margin: 0 auto;
  }

  #events-list .list .category_title h2 {
    font-size: 2vw;
  }

  #events-list .list p, #events-list .list h3 {
    font-size: 1.4vw;
  }

  #events-list .list span {
    width: 2.5vw;
  }
}

#clinical_trials .content {
  padding: 10px 30px;
}

#clinical_trials .content ul {
  list-style: none;
}

#clinical_trials .content ul li {
  margin: 30px 0;
}

#clinical_trials .content ul li .trial {
  display: -webkit-box;
  display: flex;
}

#clinical_trials .content ul li .trial .organisation span {
  font-size: 0.8rem;
  line-height: 1;
  display: block;
}

#clinical_trials .content ul li .trial div {
  display: inline-block;
  width: 50%;
}

#clinical_trials .content ul li .trial div .inner {
  padding: 30px;
  width: 100%;
  display: block;
}

#clinical_trials .content ul li .trial div .inner h4 {
  color: #ffffff;
  font-family: "Gotham-Light";
  margin: 0;
}

#clinical_trials .content ul li .trial div .inner span {
  font-family: "Gotham-Light";
}

#clinical_trials .content ul li .trial div.clip-start {
  position: relative;
  -webkit-clip-path: none;
          clip-path: none;
  text-align: right;
}

#clinical_trials .content ul li .trial div.clip-start h4, #clinical_trials .content ul li .trial div.clip-start a {
  color: #283583;
  position: relative;
  z-index: 100;
}

#clinical_trials .content ul li .trial div.clip-start .inner::before, #clinical_trials .content ul li .trial div.clip-start .inner::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 60;
}

#clinical_trials .content ul li .trial div.clip-start .inner::before {
  background: #ffffff;
}

#clinical_trials .content ul li .trial div.clip-start .inner::after {
  background: rgba(0, 0, 0, 0.05);
}

@media (min-width: 1024px) {
  #clinical_trials .content {
    padding: 0;
  }

  #clinical_trials .content ul li {
    width: 45%;
    display: inline-block;
    margin-left: 2%;
    vertical-align: top;
  }

  #clinical_trials .content ul li h4 {
    font-size: 1.2vw;
  }

  #clinical_trials .content ul li .trial {
    min-height: 9vw;
  }

  #clinical_trials .content ul li .trial .organisation span {
    font-size: 0.9vw;
  }

  #clinical_trials .content ul li.even .trial {
    position: relative;
  }

  #clinical_trials .content ul li.even .trial div {
    position: absolute;
    min-height: 9vw;
  }

  #clinical_trials .content ul li.even .trial div.organisation {
    right: 0;
    text-align: right;
  }

  #clinical_trials .content ul li.even .trial div.clip-start {
    left: 0;
    text-align: left;
  }
}

.search_results form#search {
  width: 100%;
  margin-top: 50px;
}

@media (min-width: 768px) {
  .search_results form#search {
    position: relative;
  }
}

@media (min-width: 1024px) {
  .search_results form#search input {
    background-size: 2%;
    padding: 5px 5px 4px 4%;
  }

  .search_results form#search input[type=submit] {
    padding: 5px;
  }
}

.project_page {
  background: #ffffff;
  padding-top: 10px;
}

.project_page .inner {
  padding: 10px 30px;
}

.project_page .inner h1 {
  color: #00a8e5;
  font-family: "Gotham-Medium";
  font-size: 20pt;
}

.project_page .inner h2, .project_page .inner h3, .project_page .inner h4 {
  color: #00a8e5;
  margin: 20px 0;
}

.project_page .inner p {
  margin: 20px 0;
}

.project_page .inner p, .project_page .inner span, .project_page .inner ul, .project_page .inner li {
  font-family: "Gotham-Book";
  color: #2d2e83;
  font-weight: 100;
}

.project_page .inner a {
  color: #00a8e5;
  font-family: "Gotham-Book";
  font-weight: 100;
}

.project_page .title {
  padding-bottom: 40px;
}

.project_page .right-col {
  padding-top: 20px;
}

@media (min-width: 1024px) {
  .project_page {
    padding: 5% 14%;
    margin: 0 auto;
  }

  .project_page.has_nav {
    padding: 5%;
  }

  .project_page .right-col {
    border-left: 1px solid rgba(40, 53, 131, 0.2);
    padding-left: 5%;
    padding-top: 0;
  }

  .project_page .inner {
    padding: 1%;
  }

  .project_page .inner h1 {
    font-size: 2vw;
  }

  .project_page .inner h2 {
    font-size: 1.8vw;
  }

  .project_page .inner h3 {
    font-size: 1.6vw;
  }

  .project_page .inner h4 {
    font-size: 1.4vw;
  }
}

body {
  margin: 0 auto;
  background: #ffffff;
  position: relative;
  overflow-x: hidden;
}

body h1, body h2, body h3, body h4 {
  font-family: "Gotham-Book";
}

body h1 {
  font-size: 2rem;
}

body h2 {
  font-size: 1.5em;
}

body h3 {
  font-size: 1.17em;
}

body h4 {
  font-size: 1.05rem;
}

body p,
body span,
body a,
body table,
body form,
body input,
body select,
body ul,
body table p,
body table ul,
body table strong,
body table span,
body table a {
  font-family: "Gotham-Light";
}

body a {
  transition: 300ms;
  -webkit-transition: 300ms;
  -moz-transition: 300ms;
}

body a:hover {
  text-decoration: none;
  color: #e1c263;
}

@media (min-width: 1024px) {
  h1 {
    font-size: 2vw;
  }

  h2 {
    font-size: 1.8vw;
  }

  h3 {
    font-size: 1.6vw;
  }

  h4 {
    font-size: 1.4vw;
  }

  p,
a,
span,
ul,
li,
td,
td a {
    font-size: 1.2vw;
  }
}

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
   ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */

/**
 * Remove the margin in all browsers.
 */

body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */

main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */

hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

/* Text-level semantics
   ========================================================================== */

/**
 * Remove the gray background on active links in IE 10.
 */

a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */


strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

/**
 * Add the correct font size in all browsers.
 */

small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

/* Embedded content
   ========================================================================== */

/**
 * Remove the border on images inside links in IE 10.
 */

img {
  border-style: none;
}

/* Forms
   ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */

button,
input,
select {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */

button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

/**
 * Remove the default vertical scrollbar in IE 10+.
 */

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */

[type="checkbox"],
[type="radio"] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */

[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */

/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */

details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */

/* Misc
   ========================================================================== */

/**
 * Add the correct display in IE 10+.
 */

/**
 * Add the correct display in IE 10.
 */

[hidden] {
  display: none;
}

/**
 * Manually forked from SUIT CSS Base: https://github.com/suitcss/base
 * A thin layer on top of normalize.css that provides a starting point more
 * suitable for web applications.
 */

/**
 * 1. Prevent padding and border from affecting element width
 * https://goo.gl/pYtbK7
 * 2. Change the default font family in all browsers (opinionated)
 */

html {
  box-sizing: border-box; /* 1 */
  font-family: sans-serif; /* 2 */
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

/**
 * Removes the default spacing and border for appropriate elements.
 */


dl,
dd,
h1,
h2,
h3,
h4,
hr,
p {
  margin: 0;
}

button {
  background: transparent;
  padding: 0;
}

/**
 * Work around a Firefox/IE bug where the transparent `button` background
 * results in a loss of the default `button` focus styles.
 */

button:focus {
  outline: 1px dotted;
  outline: 5px auto -webkit-focus-ring-color;
}


ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/**
 * Tailwind custom reset styles
 */

/**
 * 1. Use the system font stack as a sane default.
 * 2. Use Tailwind's default "normal" line-height so the user isn't forced
 * to override it to ensure consistency even when using the default theme.
 */

html {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; /* 1 */
  line-height: 1.5; /* 2 */
}

/**
 * Allow adding a border to an element by just adding a border-width.
 *
 * By default, the way the browser specifies that an element should have no
 * border is by setting it's border-style to `none` in the user-agent
 * stylesheet.
 *
 * In order to easily add borders to elements by just setting the `border-width`
 * property, we change the default border-style for all elements to `solid`, and
 * use border-width to hide them instead. This way our `border` utilities only
 * need to set the `border-width` property instead of the entire `border`
 * shorthand, making our border utilities much more straightforward to compose.
 *
 * https://github.com/tailwindcss/tailwindcss/pull/116
 */

*,
*::before,
*::after {
  border-width: 0;
  border-style: solid;
  border-color: #e2e8f0;
}

/*
 * Ensure horizontal rules are visible by default
 */

hr {
  border-top-width: 1px;
}

/**
 * Undo the `border-style: none` reset that Normalize applies to images so that
 * our `border-{width}` utilities have the expected effect.
 *
 * The Normalize reset is unnecessary for us since we default the border-width
 * to 0 on all elements.
 *
 * https://github.com/tailwindcss/tailwindcss/issues/362
 */

img {
  border-style: solid;
}

input::-webkit-input-placeholder {
  color: #a0aec0;
}

input::-moz-placeholder {
  color: #a0aec0;
}

input:-ms-input-placeholder {
  color: #a0aec0;
}

input::-ms-input-placeholder {
  color: #a0aec0;
}

input::placeholder {
  color: #a0aec0;
}

button,
[role="button"] {
  cursor: pointer;
}

table {
  border-collapse: collapse;
}

h1,
h2,
h3,
h4 {
  font-size: inherit;
  font-weight: inherit;
}

/**
 * Reset links to optimize for opt-in styling instead of
 * opt-out.
 */

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

/**
 * Reset form element properties that are easy to forget to
 * style explicitly so you don't inadvertently introduce
 * styles that deviate from your design system. These styles
 * supplement a partial reset that is already applied by
 * normalize.css.
 */

button,
input,
select {
  padding: 0;
  line-height: inherit;
  color: inherit;
}

/**
 * Use the configured 'mono' font family for elements that
 * are expected to be rendered with a monospace font, falling
 * back to the system monospace stack if there is no configured
 * 'mono' font family.
 */

/**
 * Make replaced elements `display: block` by default as that's
 * the behavior you want almost all of the time. Inspired by
 * CSS Remedy, with `svg` added as well.
 *
 * https://github.com/mozdevs/cssremedy/issues/14
 */

img,
svg,
object {
  display: block;
  vertical-align: middle;
}

/**
 * Constrain images and videos to the parent width and preserve
 * their instrinsic aspect ratio.
 *
 * https://github.com/mozdevs/cssremedy/issues/14
 */

img {
  max-width: 100%;
  height: auto;
}

/* Place addition project specific base styles here */

dd {
  margin-left: 0;
}

.content h1,
    .content h2,
    .content h3,
    .content h4 {
    color: #2d2e83;
    font-weight: 700;
    margin-bottom: 1rem;
  }

.content p {
    margin-bottom: 1rem;
  }

.content a {
    color: #4299e1;
  }

.content ul {
    list-style-type: disc;
    list-style-position: inside;
    margin-bottom: 1rem;
  }

.content strong {
    font-weight: 700;
  }

.content em,
    .content i {
    font-style: italic;
  }

.content s {
    text-decoration: line-through;
  }

.container {
  width: 100%;
}

@media (min-width: 640px) {
  .container {
    max-width: 640px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 768px;
  }
}

@media (min-width: 1024px) {
  .container {
    max-width: 1024px;
  }
}

@media (min-width: 1280px) {
  .container {
    max-width: 1280px;
  }
}

/* Place addition project specific component styles here */

.header-link {
  margin-right: 0.5rem
}

.header-link:after {
    content: '|';
    color: #e1c263;
    margin-left: 0.5rem;
  }

.strapline {
  min-height: 5rem;
}

#twitter-timeline-toggle:before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 100%;
  width: 3rem;
  height: 3rem;
  background-color: #2d2e83;
  -webkit-clip-path: polygon(0 100%, 100% 0, 100% 100%);
          clip-path: polygon(0 100%, 100% 0, 100% 100%);
}

#search input::-webkit-input-placeholder {
  opacity: 1;
}

#search input::-moz-placeholder {
  opacity: 1;
}

#search input:-ms-input-placeholder {
  opacity: 1;
}

#search input::-ms-input-placeholder {
  opacity: 1;
}

#search input::placeholder {
  opacity: 1;
}

#news-prev {
  top: 50%;
  -webkit-transform: translateY(-50%) scaleX(-1);
          transform: translateY(-50%) scaleX(-1);
}

#news-next {
  top: 50%;
  -webkit-transform: translate(100%, -50%);
          transform: translate(100%, -50%);
}

/* Override Jemma's CSS */

.homepage #events {
  margin-top: 0;
  min-height: 12rem;
}

#carousel .slick-dots {
  z-index: 10;
}

#contact-form select {
  display: block;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 1rem;
  line-height: 1.25;
  background-color: transparent;
  color: #2d2e83;
  width: 100%;
  padding: 0;
  margin: 0
}

#contact-form select::-ms-expand {
    display: none;
  }

#contact-form select {
    -webkit-appearance: none;
    -moz-appearance: none;
         appearance: none;
  }

#contact-form input[type=text] {
  display: block;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 1rem;
  line-height: 1.25;
  background-color: transparent;
  color: #2d2e83;
  width: 100%;
  padding: 0;
  margin: 0
}

#contact-form input[type=text]::-webkit-input-placeholder {
    opacity: 1;
  }

#contact-form input[type=text]::-moz-placeholder {
    opacity: 1;
  }

#contact-form input[type=text]:-ms-input-placeholder {
    opacity: 1;
  }

#contact-form input[type=text]::-ms-input-placeholder {
    opacity: 1;
  }

#contact-form input[type=text]::placeholder {
    opacity: 1;
  }

#contact-form textarea {
  display: block;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 1rem;
  line-height: 1.25;
  background-color: transparent;
  color: #2d2e83;
  width: 100%;
  padding: 0;
  margin: 0
}

#contact-form textarea::-webkit-input-placeholder {
    opacity: 1;
  }

#contact-form textarea::-moz-placeholder {
    opacity: 1;
  }

#contact-form textarea:-ms-input-placeholder {
    opacity: 1;
  }

#contact-form textarea::-ms-input-placeholder {
    opacity: 1;
  }

#contact-form textarea::placeholder {
    opacity: 1;
  }

#contact-form input[type=submit] {
  display: block;
  font-family: Pragati Narrow, sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.25;
  background-color: #e1c263;
  color: #fff;
  width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  margin: 0;
  text-transform: uppercase;
}

#contact-form label {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 1rem;
  line-height: 1.25;
  background-color: transparent;
  color: #2d2e83;
  padding: 0;
  margin: 0;
}

#contact-form a {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 1rem;
}

/* #associations table {
    display: table;
    width: 100%;
}

#associations tr {
    display: table-row;
    width: auto;
}

#associations th,
#associations td {
    display: table-cell;
    width: auto;
} */

.region {
  fill: #cbd5e0;
}

.bg-transparent {
  background-color: transparent;
}

.bg-white {
  background-color: #fff;
}

.bg-gray-200 {
  background-color: #edf2f7;
}

.bg-siope-blue {
  background-color: #2d2e83;
}

.bg-siope-mid-blue {
  background-color: #00a8e5;
}

.bg-siope-light-blue {
  background-color: rgba(0, 168, 229, 0.1);
}

.bg-siope-gold {
  background-color: #e1c263;
}

.bg-siope-green {
  background-color: #78ba4d;
}

.border-collapse {
  border-collapse: collapse;
}

.border-siope-blue {
  border-color: #2d2e83;
}

.border-siope-mid-blue {
  border-color: #00a8e5;
}

.border-siope-green {
  border-color: #78ba4d;
}

.rounded {
  border-radius: 0.25rem;
}

.border {
  border-width: 1px;
}

.border-t {
  border-top-width: 1px;
}

.border-b {
  border-bottom-width: 1px;
}

.cursor-pointer {
  cursor: pointer;
}

.block {
  display: block;
}

.inline-block {
  display: inline-block;
}

.flex {
  display: -webkit-box;
  display: flex;
}

.table {
  display: table;
}

.hidden {
  display: none;
}

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

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

.flex-wrap {
  flex-wrap: wrap;
}

.items-center {
  -webkit-box-align: center;
          align-items: center;
}

.justify-end {
  -webkit-box-pack: end;
          justify-content: flex-end;
}

.justify-center {
  -webkit-box-pack: center;
          justify-content: center;
}

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

.flex-1 {
  -webkit-box-flex: 1;
          flex: 1 1 0%;
}

.flex-auto {
  -webkit-box-flex: 1;
          flex: 1 1 auto;
}

.flex-none {
  -webkit-box-flex: 0;
          flex: none;
}

.font-display {
  font-family: Pragati Narrow, sans-serif;
}

.font-bold {
  font-weight: 700;
}

.h-8 {
  height: 2rem;
}

.h-full {
  height: 100%;
}

.leading-none {
  line-height: 1;
}

.leading-tight {
  line-height: 1.25;
}

.leading-loose {
  line-height: 2;
}

.m-0 {
  margin: 0;
}

.m-12 {
  margin: 3rem;
}

.my-2 {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.mx-2 {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}

.my-8 {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.my-12 {
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.mt-1 {
  margin-top: 0.25rem;
}

.ml-1 {
  margin-left: 0.25rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mt-3 {
  margin-top: 0.75rem;
}

.mr-3 {
  margin-right: 0.75rem;
}

.mb-3 {
  margin-bottom: 0.75rem;
}

.ml-3 {
  margin-left: 0.75rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mr-6 {
  margin-right: 1.5rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.ml-6 {
  margin-left: 1.5rem;
}

.mr-40 {
  margin-right: 10rem;
}

.ml-40 {
  margin-left: 10rem;
}

.ml-64 {
  margin-left: 16rem;
}

.mr-auto {
  margin-right: auto;
}

.max-w-xs {
  max-width: 20rem;
}

.max-w-sm {
  max-width: 24rem;
}

.max-w-4xl {
  max-width: 56rem;
}

.min-h-screen {
  min-height: 100vh;
}

.overflow-hidden {
  overflow: hidden;
}

.overflow-y-hidden {
  overflow-y: hidden;
}

.overflow-y-scroll {
  overflow-y: scroll;
}

.p-0 {
  padding: 0;
}

.p-2 {
  padding: 0.5rem;
}

.p-4 {
  padding: 1rem;
}

.p-6 {
  padding: 1.5rem;
}

.p-8 {
  padding: 2rem;
}

.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.py-6 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.py-8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.pt-0 {
  padding-top: 0;
}

.pl-1 {
  padding-left: 0.25rem;
}

.pb-3 {
  padding-bottom: 0.75rem;
}

.pt-6 {
  padding-top: 1.5rem;
}

.pl-6 {
  padding-left: 1.5rem;
}

.pt-16 {
  padding-top: 4rem;
}

.static {
  position: static;
}

.absolute {
  position: absolute;
}

.relative {
  position: relative;
}

.sticky {
  position: -webkit-sticky;
  position: sticky;
}

.top-0 {
  top: 0;
}

.right-0 {
  right: 0;
}

.bottom-0 {
  bottom: 0;
}

.left-0 {
  left: 0;
}

.fill-current {
  fill: currentColor;
}

.fill-siope-blue {
  fill: #2d2e83;
}

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

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

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

.text-black {
  color: #000;
}

.text-white {
  color: #fff;
}

.text-gray-500 {
  color: #a0aec0;
}

.text-blue-500 {
  color: #4299e1;
}

.text-siope-blue {
  color: #2d2e83;
}

.text-siope-mid-blue {
  color: #00a8e5;
}

.text-siope-gold {
  color: #e1c263;
}

.text-siope-green {
  color: #78ba4d;
}

.text-xs {
  font-size: 0.75rem;
}

.text-sm {
  font-size: 0.875rem;
}

.text-base {
  font-size: 1rem;
}

.text-lg {
  font-size: 1.125rem;
}

.text-xl {
  font-size: 1.25rem;
}

.text-3xl {
  font-size: 1.875rem;
}

.uppercase {
  text-transform: uppercase;
}

.underline {
  text-decoration: underline;
}

.align-top {
  vertical-align: top;
}

.whitespace-no-wrap {
  white-space: nowrap;
}

.w-8 {
  width: 2rem;
}

.w-12 {
  width: 3rem;
}

.w-1\/2 {
  width: 50%;
}

.w-1\/4 {
  width: 25%;
}

.w-3\/4 {
  width: 75%;
}

.w-1\/5 {
  width: 20%;
}

.w-2\/5 {
  width: 40%;
}

.w-3\/5 {
  width: 60%;
}

.w-full {
  width: 100%;
}

.z-10 {
  z-index: 10;
}

/* Place addition project specific utility styles here */

.min-h-64 {
  min-height: 16rem;
}

.clip-start {
  -webkit-clip-path: polygon(9999px -9999px, 9999px calc(9999px + 100%), 0px 50%);
          clip-path: polygon(9999px -9999px, 9999px calc(9999px + 100%), 0px 50%);
}

.clip-end {
  -webkit-clip-path: polygon(-9999px -9999px, -9999px calc(9999px + 100%), 100% 50%);
          clip-path: polygon(-9999px -9999px, -9999px calc(9999px + 100%), 100% 50%);
}

.bleed-before:before {
  content: '';
  position: absolute;
  width: 100vw;
  top: 0;
  bottom: 0;
  right: 100%;
}

.bleed-before-white:before { background-color: #fff;
}

.bleed-before-siope-gold:before { background-color: #e1c263;
}

.bleed-after:after {
  content: '';
  position: absolute;
  width: 100vw;
  top: 0;
  bottom: 0;
  left: 100%;
}

.bleed-after-gray-200:after { background-color: #edf2f7;
}

.bleed-after-siope-gold:after { background-color: #e1c263;
}

.fill-siope-blue:hover {
  fill: #e1c263;
  cursor: pointer;
}

@media (min-width: 640px) {

  .sm\:bg-siope-gold {
    background-color: #e1c263;
  }

  .sm\:block {
    display: block;
  }

  .sm\:flex {
    display: -webkit-box;
    display: flex;
  }
}

@media (min-width: 768px) {

  .md\:flex {
    display: -webkit-box;
    display: flex;
  }

  .md\:ml-8 {
    margin-left: 2rem;
  }

  .md\:text-2xl {
    font-size: 1.5rem;
  }

  .md\:w-1\/2 {
    width: 50%;
  }
}

@media (min-width: 1024px) {

  .lg\:inline-block {
    display: inline-block;
  }

  .lg\:inline {
    display: inline;
  }

  .lg\:hidden {
    display: none;
  }

  .lg\:-mt-24 {
    margin-top: -6rem;
  }

  .lg\:px-12 {
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .lg\:text-lg {
    font-size: 1.125rem;
  }

  .lg\:text-3xl {
    font-size: 1.875rem;
  }
}

@media (min-width: 1280px) {

  .xl\:px-24 {
    padding-left: 6rem;
    padding-right: 6rem;
  }

  .xl\:text-xl {
    font-size: 1.25rem;
  }
}

