/*

mark up for mobile accordion : 

<div class="mobile-accordion-content">
	<div class="mobile-accordion-target">
		stuff you want to hide on mobile here
	</div>
	<div class="mobile-accordion-buttons">
		<a href="#" class="accordion-button-read-more">Read More</a>
		<a href="#" class="accordion-button-show-less">Show Less</a>
	</div>
</div>

*/
/*
	markup for uniform height containers: 
	
	<div class="uniform-height-content">
		<div class="uniform-height-item">stuff</div>
		<div class="uniform-height-item">stuff</div>
		<div class="uniform-height-item">stuff</div>
	</div>
	
*/
/*
mark up if using mobile accordion for side-menu:

<div class="mobile-accordion-content" data-svg-animation="/animations/path-to-animation.json" data-frame-to-pause-on-menu-open="30">
	<div class="mobile-accordion-buttons">
		<div class="accordion-button-svg"></div>
		<a href="#" class="accordion-button-read-more"></a>
		<a href="#" class="accordion-button-show-less"></a>
	</div>
	<div class="mobile-accordion-target">
		stuff you want to hide here
	</div>
</div>

*/
@media all and (max-width: 770px) {
  .mobile-hidden {
    display: none !important; } }

.mobile-shown {
  display: none; }
  @media all and (max-width: 770px) {
    .mobile-shown {
      display: block; } }

@media all and (max-width: 770px) {
  .mobile-accordion-target {
    display: none; } }

@media all and (max-width: 770px) {
  .remove-float-mobile-break {
    float: none !important; } }

.mobile-accordion-buttons,
.mobile-accordion-buttons .accordion-button-show-less,
.next-prev-arrows,
.next-prev-arrows .accordion-button-show-less {
  display: none; }
@media all and (max-width: 770px) {
  .mobile-accordion-buttons,
  .next-prev-arrows {
    display: block; } }

@media all and (max-width: 770px) {
  .square-up-on-mobile-break {
    min-height: 60vw;
    padding: 10vw; } }

@media all and (max-width: 770px) {
  .center-on-mobile-break,
  .centre-on-mobile-break {
    text-align: center; } }

@media all and (max-width: 770px) {
  /* 
  	you will have to re-define 
  	
  	.scroll-item-wrapper {
  		width: 70%;
  	}
  	
  	in a media query if you have set width on container; Since this file is included at the top of site.scss, styling for container will override styling below
  	
  	
  	markup:
  	
  	
  		
  <div class="responsive-horizontal-scroll-wrapper">
  	
  	<div class="responsive-horizontal-scroll-content clearfix">
  		
  		<div class="scroll-item-wrapper">
  			<div class="scroll-item">
  				1 
  			</div>
  		</div>
  		
  		<div class="scroll-item-wrapper">
  			<div class="scroll-item">
  				2
  			</div>
  		</div>
  	
  		<div class="scroll-item-wrapper">
  			<div class="scroll-item">
  				3
  			</div>
  		</div>
  	
  		<div class="scroll-item-wrapper">
  			<div class="scroll-item">
  				4
  			</div>
  		</div>
  	
  		<div class="scroll-item-wrapper">
  			<div class="scroll-item">
  				5
  			</div>
  		</div>
  	
  		<div class="scroll-item-wrapper">
  			<div class="scroll-item">
  				6
  			</div>
  		</div>
  	
  	</div>
  	
  	<div class="next-prev-arrows"> (arrows inserted with mustache) </div>
  </div>
  
  	
  	
  */
  .scroll-item-wrapper {
    float: left;
    width: 70%;
    padding: 0 5%; }

  .scroll-item,
  .responsive-horizontal-scroll-content {
    width: 100%; }

  .responsive-horizontal-scroll-wrapper {
    overflow-x: scroll; }

  .next-prev-arrows {
    display: block;
    /*
    .next {
    	height: 60px;
    	width: 60px;
    	background-color: orange;
    	display: block;
    }
    
    .prev {
    	height: 60px;
    	width: 60px;
    	background-color: purple;
    	display: block;
    }
    */ } }
/*
markup:

<div class="stackable-halves-container">
	<div class="half stack-on-mobile-break">stuff</div>
	<div class="half stack-on-mobile-break">stuff</div>
</div>	
*/
@media all and (max-width: 770px) {
  .stackable-halves-container {
    display: block !important; } }

.half {
  width: 50%;
  float: left; }
  @media all and (max-width: 770px) {
    .half.stack-on-mobile-break {
      width: 100% !important;
      float: none !important;
      display: block !important; } }

.darken-mobile-break {
  /*
  
  markup:
  
  <div class="darken-mobile-break">
  	<div class="darken-mobile-break-content">
  		text goes here
  	</div>
  </div>
  
  */ }
  @media all and (max-width: 770px) {
    .darken-mobile-break {
      position: relative; }
      .darken-mobile-break:before {
        content: " ";
        position: absolute;
        height: 100%;
        width: 100%;
        top: 0;
        left: 0;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 1; }
      .darken-mobile-break .darken-mobile-break-content {
        position: relative;
        z-index: 2; } }

#nav-trigger {
  float: right;
  font-size: 20px;
  text-transform: uppercase;
  color: black;
  text-decoration: none;
  width: 100px;
  height: 100px;
  position: relative;
  z-index: 5;
  margin-top: 35px; }
  #nav-trigger .inner {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 100%;
    height: 21px; }
  #nav-trigger .close-text {
    display: none;
    float: left; }
  #nav-trigger #menu-text {
    text-align: right;
    width: 57px;
    height: 25px;
    margin-right: 10px; }
  #nav-trigger #burger-animation {
    float: right;
    height: 21px;
    width: 29px; }
  @media all and (max-width: 770px) {
    #nav-trigger {
      margin-top: 10px;
      font-size: 14px;
      width: 70px;
      height: 70px; }
      #nav-trigger #menu-text {
        text-align: right;
        width: 40px;
        height: 17px;
        margin-top: 4px; } }

#header {
  height: 100%;
  width: 100%;
  z-index: 100; }
  #header.fixed {
    position: fixed; }

@media all and (max-width: 770px) {
  #nav {
    height: 100%;
    width: 100%;
    display: none;
    position: fixed;
    z-index: 200;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    /* padding-top: $menu-height; */
    opacity: 0;
    overflow: scroll; } }

/*
	markup for uniform height containers: 
	
	<div class="uniform-height-content">
		<div class="uniform-height-item">stuff</div>
		<div class="uniform-height-item">stuff</div>
		<div class="uniform-height-item">stuff</div>
	</div>
	
*/
* {
  box-sizing: border-box;
  padding: 0px;
  margin: 0px; }

body {
  font-family: "Montserrat", sans-serif; }

.clear {
  clear: both; }

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

.login {
  padding: 40px; }
  .login .page-header {
    margin-bottom: 20px; }
  .login .form-group {
    margin-bottom: 5px; }
    .login .form-group input {
      padding: 4px;
      font-size: 14px; }
  .login #forgotten-password {
    padding-left: 5px; }
  .login .button {
    font-size: 14px;
    padding: 5px; }
  .login #errors {
    margin-bottom: 15px;
    color: #c7362d; }
  .login #message {
    color: #c7362d; }

.login-form-wrapper {
  width: 600px;
  margin: 0 auto;
  padding: 150px 0; }
  .login-form-wrapper h1 {
    padding-bottom: 50px;
    font-size: 50px; }
  .login-form-wrapper button[type=submit] {
    margin-top: 10px; }
  .login-form-wrapper #forgotten-password {
    display: inline-block;
    margin-top: 10px;
    color: black;
    transition: color 0.2s ease-in-out;
    float: right; }
    .login-form-wrapper #forgotten-password:hover {
      color: #c7362d; }

#admin-link {
  z-index: 4000;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 200;
  background-color: #fff;
  padding: 7px;
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out; }
  #admin-link:hover {
    background-color: #c7362d;
    color: white; }

#minerva_header {
  z-index: 2000;
  top: 0;
  width: 100%; }

.header {
  background: #c7362d;
  position: relative;
  width: 100%;
  max-width: 1500px;
  margin: auto; }
  .header.fixed {
    margin-top: 53px; }
    .header.fixed .header-responsive {
      position: fixed;
      width: 100%;
      top: 0;
      z-index: 210; }
    .header.fixed #nav {
      margin-top: 53px; }
    .header.fixed .school_logo {
      margin-top: 53px; }
    .header.fixed #burger-animation {
      margin-top: 53px; }
    .header.fixed #nav-trigger #menu-text {
      margin-top: 53px; }
  .header #nav-trigger {
    color: #fff;
    font-size: 4vw;
    margin-top: 0;
    width: 20vw;
    height: 90px; }
    .header #nav-trigger .inner {
      height: 7.2vw; }
    .header #nav-trigger #menu-text {
      width: 8.8vw;
      height: 2.31vw;
      margin-top: 1vw; }
      .header #nav-trigger #menu-text .close-text {
        margin-top: 4px; }
    .header #nav-trigger #burger-animation {
      height: 7vw;
      width: 7vw; }
  .header .inner {
    padding: 20px 10px 0px 10px; }
    .header .inner.nav-button {
      padding: 0; }
  .header .logos {
    padding-bottom: 40px; }
  .header .social_logos {
    padding-left: 80px;
    width: 40%;
    float: left;
    margin-top: 30px; }
    .header .social_logos .facebook {
      width: 15px;
      height: 32px;
      margin-right: 10px; }
    .header .social_logos .twitter {
      width: 38px;
      height: 31px; }
    .header .social_logos .instagram {
      width: 32px;
      height: 32px;
      margin-left: 10px; }
  .header .school_logo {
    padding-right: 40px; }
    .header .school_logo img {
      width: 200px; }
      @media all and (max-width: 770px) {
        .header .school_logo img {
          width: 40vw; } }
  .header .burger_nav {
    display: none;
    width: 100vw;
    height: 100vh;
    background: #90181e;
    z-index: 1000;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: scroll; }
    .header .burger_nav ul {
      margin-top: 80px; }
    .header .burger_nav li {
      padding: 20px;
      border-bottom: 2px solid white;
      position: relative;
      color: white;
      cursor: pointer; }
      .header .burger_nav li a {
        color: white;
        text-decoration: none;
        margin-right: 20px;
        line-height: 30px; }
      .header .burger_nav li a:hover {
        text-decoration: underline; }
      .header .burger_nav li .nav_expanded {
        display: none; }
        .header .burger_nav li .nav_expanded.selected {
          display: block; }
  .header .nav .triangle {
    position: absolute;
    bottom: 0;
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 10px solid #90181e;
    display: none; }
    .header .nav .triangle.vacancies {
      right: 33%; }
    .header .nav .triangle.events {
      right: 25%; }
    .header .nav .triangle.news {
      right: 19%; }
    .header .nav .triangle.ofsted {
      right: 25%; }
    .header .nav .triangle.parents {
      right: 26%; }
    .header .nav .triangle.students {
      right: 28%; }
  .header .nav ul {
    width: 100%;
    display: table; }
    @media all and (max-width: 770px) {
      .header .nav ul {
        display: block;
        margin-top: 180px;
        height: 100vh; } }
    .header .nav ul .row {
      display: inline-block; }
    .header .nav ul li {
      display: table-cell;
      vertical-align: middle;
      color: white;
      font-size: 14px;
      font-weight: bold;
      text-transform: uppercase; }
      @media all and (max-width: 1500px) {
        .header .nav ul li {
          font-size: 1vw;
          padding-left: .8vw;
          padding-right: .8vw; } }
      @media all and (max-width: 770px) {
        .header .nav ul li {
          display: block;
          font-size: 3vw; } }
      .header .nav ul li a:hover ~ .child-ol,
      .header .nav ul li .child-ol:hover, .header .nav ul li:hover a:after {
        display: block; }
        @media all and (max-width: 770px) {
          .header .nav ul li a:hover ~ .child-ol,
          .header .nav ul li .child-ol:hover, .header .nav ul li:hover a:after {
            display: none; } }
      .header .nav ul li .parent-a {
        display: table;
        width: 100%;
        position: relative;
        text-align: center; }
        @media all and (max-width: 770px) {
          .header .nav ul li .parent-a {
            color: #c7362d; } }
        .header .nav ul li .parent-a span {
          width: 100%;
          vertical-align: middle;
          height: 100%; }
          @media all and (max-width: 770px) {
            .header .nav ul li .parent-a span {
              display: block; } }
        .header .nav ul li .parent-a:after {
          content: " ";
          display: none;
          position: absolute;
          width: 0;
          height: 0;
          border-left: 15px solid transparent;
          border-right: 15px solid transparent;
          border-bottom: 15px solid #90181e;
          bottom: 0;
          left: 0;
          right: 0;
          margin: auto; }
      .header .nav ul li .sub_nav {
        display: none;
        z-index: 400;
        position: absolute;
        width: 100%;
        left: 0;
        right: 0;
        padding: 10px;
        max-width: 1500px;
        margin: auto;
        text-align: left; }
        .header .nav ul li .sub_nav .content-wrapper {
          background: #90181e;
          position: absolute;
          width: 100%;
          left: 0;
          padding: 20px 40px;
          top: 0; }
          .header .nav ul li .sub_nav .content-wrapper h2 {
            padding-bottom: 15px;
            font-size: 32px; }
          .header .nav ul li .sub_nav .content-wrapper hr {
            margin-bottom: 20px; }
          .header .nav ul li .sub_nav .content-wrapper ul .child-li {
            padding-bottom: 2px; }
            .header .nav ul li .sub_nav .content-wrapper ul .child-li a {
              padding-bottom: 0; }
          .header .nav ul li .sub_nav .content-wrapper ul li {
            font-weight: normal;
            margin-bottom: 5px;
            display: block;
            width: 100%; }
            .header .nav ul li .sub_nav .content-wrapper ul li a:hover {
              text-decoration: underline; }
        .header .nav ul li .sub_nav ul {
          text-align: left; }
          .header .nav ul li .sub_nav ul ol {
            float: left;
            width: 33%; }
            @media all and (max-width: 770px) {
              .header .nav ul li .sub_nav ul ol {
                width: 100%;
                float: none;
                text-align: center; } }
      .header .nav ul li a {
        color: white;
        text-decoration: none;
        padding-bottom: 20px; }
        @media all and (max-width: 770px) {
          .header .nav ul li a {
            padding: 15px; } }
    .header .nav ul li:hover .sub_nav {
      display: block; }
      @media all and (max-width: 770px) {
        .header .nav ul li:hover .sub_nav {
          display: none; } }
    .header .nav ul .sub_nav:hover {
      display: block; }
  .header .nav_arrow {
    width: 40px;
    float: right;
    height: 65px;
    position: relative;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
    z-index: 3000;
    position: absolute;
    right: 20px;
    top: 5px; }
    .header .nav_arrow span {
      display: block;
      position: absolute;
      height: 4px;
      width: 50%;
      margin-top: 5px;
      background: white;
      border-radius: 9px;
      opacity: 1;
      left: 20px;
      top: 8px;
      -webkit-transform: rotate(40deg);
      -moz-transform: rotate(40deg);
      -o-transform: rotate(40deg);
      transform: rotate(40deg);
      -webkit-transition: .25s ease-in-out;
      -moz-transition: .25s ease-in-out;
      -o-transition: .25s ease-in-out;
      transition: .25s ease-in-out; }
    .header .nav_arrow span:nth-child(2) {
      top: 18px;
      -webkit-transform: rotate(320deg);
      -moz-transform: rotate(320deg);
      -o-transform: rotate(320deg);
      transform: rotate(320deg); }
    .header .nav_arrow.sub_opened span:nth-child(1) {
      top: 18px;
      -webkit-transform: rotate(50deg);
      -moz-transform: rotate(50deg);
      -o-transform: rotate(50deg);
      transform: rotate(50deg);
      left: 10px; }
    .header .nav_arrow.sub_opened span:nth-child(2) {
      top: 18px;
      -webkit-transform: rotate(130deg);
      -moz-transform: rotate(130deg);
      -o-transform: rotate(130deg);
      transform: rotate(130deg);
      right: 10px; }
  .header #burger_icon {
    width: 60px;
    float: right;
    height: 45px;
    padding-bottom: 10px;
    position: relative;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
    z-index: 3000;
    margin-top: 20px;
    margin-right: 20px;
    display: none; }
    .header #burger_icon.open_menu {
      position: fixed;
      top: 0;
      right: 0; }
    .header #burger_icon span {
      display: block;
      position: absolute;
      height: 4px;
      width: 50%;
      margin-top: 5px;
      background: white;
      border-radius: 9px;
      opacity: 1;
      left: 20px;
      top: 8px;
      -webkit-transform: rotate(0deg);
      -moz-transform: rotate(0deg);
      -o-transform: rotate(0deg);
      transform: rotate(0deg);
      -webkit-transition: .25s ease-in-out;
      -moz-transition: .25s ease-in-out;
      -o-transition: .25s ease-in-out;
      transition: .25s ease-in-out; }
    .header #burger_icon span:nth-child(2) {
      top: 18px; }
    .header #burger_icon span:nth-child(3) {
      top: 28px; }
    .header #burger_icon.open_menu span:nth-child(1) {
      top: 18px;
      -webkit-transform: rotate(135deg);
      -moz-transform: rotate(135deg);
      -o-transform: rotate(135deg);
      transform: rotate(135deg); }
    .header #burger_icon.open_menu span:nth-child(2) {
      opacity: 0;
      left: -60px; }
    .header #burger_icon.open_menu span:nth-child(3) {
      top: 18px;
      -webkit-transform: rotate(-135deg);
      -moz-transform: rotate(-135deg);
      -o-transform: rotate(-135deg);
      transform: rotate(-135deg); }
  @media all and (max-width: 1500px) {
    .header .social_logos {
      padding-left: 5vw; } }
  @media all and (max-width: 770px) {
    .header .inner {
      padding: 20px 10px;
      background: #c7362d; }
    .header #nav {
      background: #e3e3e3; }
    .header #burger_icon {
      display: block; }
      .header #burger_icon.open_menu {
        background: #c7362d; }
        .header #burger_icon.open_menu span {
          left: 15px; }
    .header .social_logos {
      display: none; }
      .header .social_logos.mobile {
        display: block; }
    .header .logos {
      padding-bottom: 0; }
      .header .logos .school_logo {
        float: left; }
    .header .burger_nav li a {
      margin-right: 0; }
    .header .burger_nav .nav_expanded p {
      margin-left: 4vw; } }

.sub_menu {
  background: #90181e;
  color: white;
  padding: 20px 50px;
  max-width: 1500px;
  margin: auto;
  display: none; }
  .sub_menu.selected {
    display: block; }
  .sub_menu p {
    display: inline-block;
    width: 33%;
    line-height: 30px; }
    .sub_menu p a {
      color: white;
      text-decoration: none; }

#content-wrapper .confirmation {
  font-weight: 700;
  margin-bottom: 20px;
  background: green;
  padding: 20px;
  color: white; }
#content-wrapper #contact_page_header h2 {
  font-size: 32px; }
#content-wrapper #contact_page_header hr {
  margin-bottom: 20px; }
#content-wrapper .external_agency_booking_form {
  border: 3px solid white;
  color: #fff;
  padding: 10px;
  margin: 20px auto;
  width: 80%;
  text-transform: uppercase;
  display: block; }
#content-wrapper .minerva_contact_details {
  padding: 60px 40px;
  text-transform: none;
  color: #fff; }
  #content-wrapper .minerva_contact_details p {
    padding-bottom: 20px; }
#content-wrapper #contact-form p {
  margin-bottom: 10px; }
#content-wrapper #contact-form #errors strong {
  color: #c7362d; }
#content-wrapper #contact-form #errors ul {
  margin-bottom: 20px;
  margin-top: 10px; }
  #content-wrapper #contact-form #errors ul li {
    list-style-position: inside;
    margin-top: 5px; }
#content-wrapper #contact-form fieldset {
  border: none;
  display: block;
  padding: 10px; }
  #content-wrapper #contact-form fieldset .fieldblock {
    padding-right: 10px; }
  #content-wrapper #contact-form fieldset .recaptchawrapper {
    margin-bottom: 20px; }
  #content-wrapper #contact-form fieldset hr {
    margin-bottom: 20px; }
  #content-wrapper #contact-form fieldset .error input {
    border: 2px solid #c7362d; }
  #content-wrapper #contact-form fieldset .error select {
    border: 2px solid #c7362d; }
  #content-wrapper #contact-form fieldset .error textarea {
    border: 2px solid #c7362d; }
  #content-wrapper #contact-form fieldset label {
    width: 100%;
    display: inline-block;
    margin-bottom: 10px; }
  #content-wrapper #contact-form fieldset input {
    padding: 5px;
    border: 0;
    width: 100%;
    margin-bottom: 10px;
    font-size: 18px;
    color: black;
    background: #e3e3e3; }
  #content-wrapper #contact-form fieldset #button {
    padding: 10px;
    background: #c7362d;
    color: white;
    transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out; }
  #content-wrapper #contact-form fieldset #button:hover {
    background: #90181e; }
  #content-wrapper #contact-form fieldset textarea {
    width: 100%;
    border: none;
    margin-bottom: 20px;
    color: black;
    background: #e3e3e3;
    font-size: 18px;
    padding: 10px; }
  #content-wrapper #contact-form fieldset select {
    margin-bottom: 20px;
    font-size: 18px;
    width: 100%;
    color: black;
    background: #e3e3e3;
    border: 0; }
@media all and (max-width: 770px) {
  #content-wrapper fieldset .fieldblock {
    width: 100%; } }

.events-page #date-filter {
  padding: 15px;
  margin-bottom: 20px; }
  .events-page #date-filter label {
    width: 100%;
    color: white;
    font-weight: 700; }
    @media all and (max-width: 770px) {
      .events-page #date-filter label {
        color: black; } }
  .events-page #date-filter select {
    width: 100%;
    margin-top: 10px;
    font-size: 16px;
    background: #ebebeb; }
.events-page .column-right h2 {
  font-size: 50px;
  padding-top: 30px;
  padding-bottom: 30px; }
  .events-page .column-right h2:first-of-type {
    padding-top: 0; }
.events-page .column-right .item {
  padding-bottom: 30px; }
  .events-page .column-right .item .inner {
    position: relative;
    min-height: 100px;
    padding: 15px 0; }
    .events-page .column-right .item .inner h3 {
      font-size: 25px; }
      .events-page .column-right .item .inner h3 a {
        color: black;
        transition: color 0.2s ease-in-out; }
        .events-page .column-right .item .inner h3 a:hover {
          color: #c7362d; }
    .events-page .column-right .item .inner p {
      min-height: 40px;
      padding-top: 15px; }
    .events-page .column-right .item .inner a.button {
      margin-top: 25px;
      color: #c7362d; }
    .events-page .column-right .item .inner span.date {
      display: block;
      padding-bottom: 5px; }
  .events-page .column-right .item .calendar-date {
    background-color: #e3e3e3;
    position: absolute;
    top: 0;
    left: 0;
    text-align: center; }
    .events-page .column-right .item .calendar-date,
    .events-page .column-right .item .calendar-date a {
      width: 100px;
      min-height: 100px;
      height: 100%;
      display: block; }
    .events-page .column-right .item .calendar-date a {
      color: black;
      background-color: transparent;
      transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out; }
      .events-page .column-right .item .calendar-date a:hover {
        background-color: #c7362d;
        color: #fff; }
    .events-page .column-right .item .calendar-date .day-d,
    .events-page .column-right .item .calendar-date .day-j {
      display: block;
      margin: 0 auto; }
    .events-page .column-right .item .calendar-date .day-d {
      text-transform: uppercase;
      font-size: 20px;
      line-height: 20px;
      padding-bottom: 5px;
      padding-top: 20px; }
    .events-page .column-right .item .calendar-date .day-j {
      font-size: 40px;
      line-height: 40px;
      letter-spacing: -2px; }
  .events-page .column-right .item .text {
    padding-left: 150px; }

.event-listing-item {
  padding-bottom: 30px; }
  @media all and (max-width: 1500px) {
    .event-listing-item {
      padding-bottom: 2.2vw; } }
  @media all and (max-width: 770px) {
    .event-listing-item {
      padding-bottom: 6.6vw; } }
  .event-listing-item .inner {
    position: relative;
    min-height: 100px;
    padding: 15px 0; }
    @media all and (max-width: 1500px) {
      .event-listing-item .inner {
        min-height: 7.35vw;
        padding: 1.1vw 0; } }
    @media all and (max-width: 770px) {
      .event-listing-item .inner {
        min-height: 22.05vw;
        padding: 3.3vw 0; } }
    .event-listing-item .inner h3 {
      font-size: 25px; }
      @media all and (max-width: 1500px) {
        .event-listing-item .inner h3 {
          font-size: 1.83vw; } }
      @media all and (max-width: 770px) {
        .event-listing-item .inner h3 {
          font-size: 5.49vw; } }
      .event-listing-item .inner h3 a {
        color: black;
        transition: color 0.2s ease-in-out; }
        .event-listing-item .inner h3 a:hover {
          color: #c7362d; }
    .event-listing-item .inner p {
      min-height: 40px;
      padding-top: 15px; }
      @media all and (max-width: 1500px) {
        .event-listing-item .inner p {
          min-height: 2.94vw;
          padding-top: 1.1vw; } }
      @media all and (max-width: 770px) {
        .event-listing-item .inner p {
          min-height: 8.82vw;
          padding-top: 3.3vw; } }
    .event-listing-item .inner a.button {
      margin-top: 25px; }
      @media all and (max-width: 1500px) {
        .event-listing-item .inner a.button {
          margin-top: 1.83vw; } }
      @media all and (max-width: 770px) {
        .event-listing-item .inner a.button {
          margin-top: 5.49vw; } }
    .event-listing-item .inner span.date {
      display: block;
      padding-bottom: 5px; }
      @media all and (max-width: 1500px) {
        .event-listing-item .inner span.date {
          padding-bottom: 0.36vw; } }
      @media all and (max-width: 770px) {
        .event-listing-item .inner span.date {
          padding-bottom: 1.08vw; } }
  .event-listing-item .calendar-date {
    background-color: #e3e3e3;
    position: absolute;
    top: 0;
    left: 0;
    text-align: center; }
    .event-listing-item .calendar-date,
    .event-listing-item .calendar-date a {
      width: 100px;
      min-height: 100px;
      height: 100%;
      display: block; }
      @media all and (max-width: 1500px) {
        .event-listing-item .calendar-date,
        .event-listing-item .calendar-date a {
          width: 7.35vw;
          min-height: 7.35vw; } }
      @media all and (max-width: 770px) {
        .event-listing-item .calendar-date,
        .event-listing-item .calendar-date a {
          width: 22.05vw;
          min-height: 22.05vw; } }
    .event-listing-item .calendar-date a {
      color: black;
      background-color: transparent;
      transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out; }
      .event-listing-item .calendar-date a:hover {
        background-color: #c7362d;
        color: #fff; }
    .event-listing-item .calendar-date .day-d,
    .event-listing-item .calendar-date .day-j {
      display: block;
      margin: 0 auto; }
    .event-listing-item .calendar-date .day-d {
      text-transform: uppercase;
      font-size: 20px;
      line-height: 20px;
      padding-bottom: 5px;
      padding-top: 20px; }
      @media all and (max-width: 1500px) {
        .event-listing-item .calendar-date .day-d {
          font-size: 1.47vw;
          line-height: 1.47vw;
          padding-bottom: 0.36vw;
          padding-top: 1.47vw; } }
      @media all and (max-width: 770px) {
        .event-listing-item .calendar-date .day-d {
          font-size: 4.41vw;
          line-height: 4.41vw;
          padding-bottom: 1.08vw;
          padding-top: 4.41vw; } }
    .event-listing-item .calendar-date .day-j {
      font-size: 40px;
      line-height: 40px;
      letter-spacing: -2px; }
      @media all and (max-width: 1500px) {
        .event-listing-item .calendar-date .day-j {
          font-size: 2.94vw;
          line-height: 2.94vw;
          letter-spacing: -0.14vw; } }
      @media all and (max-width: 770px) {
        .event-listing-item .calendar-date .day-j {
          font-size: 8.82vw;
          line-height: 8.82vw;
          letter-spacing: -0.28vw; } }
  .event-listing-item .text {
    padding-left: 150px; }
    @media all and (max-width: 1500px) {
      .event-listing-item .text {
        padding-left: 11vw; } }
    @media all and (max-width: 770px) {
      .event-listing-item .text {
        padding-left: 33vw; } }

.homepage {
  max-width: 1500px;
  margin: auto; }

.popup-banner-wrapper {
  position: fixed;
  left: 50%;
  z-index: 50000;
  top: 5%;
  overflow: scroll;
  gap: 3rem;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  width: 90%;
  justify-content: center; }
  .popup-banner-wrapper .banner {
    position: relative;
    border: 5px solid #fff; }
    .popup-banner-wrapper .banner .close {
      position: absolute;
      z-index: 1;
      top: 5%;
      right: 5%;
      background-color: #c7362d;
      padding: 0.5rem 0.8rem; }
      .popup-banner-wrapper .banner .close img {
        width: 2rem;
        aspect-ratio: 1;
        margin-top: 0.3rem; }
    .popup-banner-wrapper .banner img {
      width: 100%;
      height: 100%;
      max-width: 850px; }
  @media (min-width: 768px) {
    .popup-banner-wrapper {
      flex-direction: row; } }

#homepage_video {
  color: white;
  position: relative;
  height: 650px;
  overflow: hidden; }
  @media all and (max-width: 1500px) {
    #homepage_video {
      height: 43.333vw; } }
  @media all and (max-width: 770px) {
    #homepage_video {
      height: 55vw; } }
  #homepage_video #homepage-video-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 100;
    background: rgba(0, 0, 0, 0.5);
    max-width: 1500px;
    text-align: center; }
    #homepage_video #homepage-video-overlay img {
      height: 250px;
      width: 250px;
      margin-top: 100px;
      display: inline-block;
      text-align: center; }
      @media all and (max-width: 1500px) {
        #homepage_video #homepage-video-overlay img {
          width: 16.667vw;
          height: 16.667vw;
          margin-top: 6.667vw; } }
      @media all and (max-width: 770px) {
        #homepage_video #homepage-video-overlay img {
          width: 25.974vw;
          height: 25.974vw;
          margin-top: 6.494vw; } }
  #homepage_video .straplines p {
    text-align: center;
    color: white;
    font-size: 48px;
    width: 75%;
    margin: auto;
    position: absolute;
    left: 0;
    right: 0;
    top: 65%;
    bottom: 35%; }
    @media all and (max-width: 1500px) {
      #homepage_video .straplines p {
        font-size: 3.2vw; } }
    @media all and (max-width: 770px) {
      #homepage_video .straplines p {
        top: auto;
        bottom: 15%; } }
  #homepage_video video {
    display: block;
    width: 100%;
    position: absolute;
    left: 50%;
    /* % of surrounding element */
    top: 50%;
    transform: translate(-50%, -50%);
    /* % of current element */ }

.homepage .covid-banner .covid-line {
  width: 100%;
  text-align: center;
  position: relative; }
.homepage .covid-banner .stay-at-home {
  background-color: #f6c35a; }
  .homepage .covid-banner .stay-at-home img {
    padding: 13px 20px; }
.homepage .covid-banner .protect-nhs {
  background-color: #265cb2; }
  .homepage .covid-banner .protect-nhs img {
    padding: 50px 10px; }
    @media all and (max-width: 770px) {
      .homepage .covid-banner .protect-nhs img {
        padding: 40px 10px; } }
.homepage .covid-banner .protect-nhs:before {
  width: 0;
  top: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 25px solid #f6c35a;
  position: absolute;
  content: "";
  left: 50%;
  margin-left: -15px; }
.homepage .covid-banner .save-lives {
  background-color: #c54037; }
  .homepage .covid-banner .save-lives img {
    padding: 42px 10px; }
    @media all and (max-width: 770px) {
      .homepage .covid-banner .save-lives img {
        padding: 30px 10px; } }
.homepage .covid-banner .save-lives:before {
  width: 0;
  top: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 25px solid #265cb2;
  position: absolute;
  content: "";
  left: 50%;
  margin-left: -15px; }
.homepage .covid-banner .our_school {
  height: 600px;
  width: 50%;
  float: left;
  background-image: url("/images/temporary/school-exterior.jpg");
  position: relative;
  background-repeat: none;
  background-size: cover; }
  .homepage .covid-banner .our_school h1 {
    color: white;
    position: absolute;
    bottom: 0;
    padding: 30px;
    font-size: 88px; }

.homepage .home_grid .our_school {
  height: 600px;
  width: 50%;
  float: left;
  background-image: url("/images/temporary/school-exterior.jpg");
  position: relative;
  background-repeat: none;
  background-size: cover; }
  @media all and (max-width: 1500px) {
    .homepage .home_grid .our_school {
      height: 40vw; } }
  .homepage .home_grid .our_school h1 {
    color: white;
    position: absolute;
    bottom: 0;
    padding: 30px;
    font-size: 88px; }
.homepage .home_grid .video_box {
  height: 300px;
  width: 50%;
  float: right; }
  @media all and (max-width: 1500px) {
    .homepage .home_grid .video_box {
      height: 20vw; } }
  @media all and (max-width: 770px) {
    .homepage .home_grid .video_box {
      display: none; } }
  .homepage .home_grid .video_box .video_text {
    width: 50%;
    height: 100%;
    padding: 40px;
    background-image: url("/images/layout/background_lines_new.jpg");
    color: white;
    font-size: 64px;
    float: right;
    position: relative; }
    .homepage .home_grid .video_box .video_text p {
      bottom: 20px;
      position: absolute; }
      @media all and (max-width: 1500px) {
        .homepage .home_grid .video_box .video_text p {
          bottom: 1.333vw; } }
  .homepage .home_grid .video_box .video {
    width: 50%;
    float: left;
    height: 100%;
    background-image: url("/images/our_school.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    text-align: center; }
    .homepage .home_grid .video_box .video img {
      height: 200px;
      width: 200px;
      margin-top: 50px; }
      @media all and (max-width: 1500px) {
        .homepage .home_grid .video_box .video img {
          width: 50%;
          display: table-cell;
          vertical-align: middle;
          margin-left: auto;
          margin-right: auto; } }
.homepage .home_grid .information_image {
  height: 300px;
  width: 100%;
  background-image: url("/images/classroom3.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 25%;
  width: 50%;
  float: right; }
  @media all and (max-width: 1500px) {
    .homepage .home_grid .information_image {
      height: 20vw; } }
  .homepage .home_grid .information_image .text_wrapper {
    width: 50%; }
    @media all and (max-width: 770px) {
      .homepage .home_grid .information_image .text_wrapper {
        width: 100%; } }
  .homepage .home_grid .information_image .information_box {
    background: white;
    width: 100%;
    height: 300px;
    font-size: 26px;
    display: table; }
    @media all and (max-width: 1500px) {
      .homepage .home_grid .information_image .information_box {
        height: 20vw; } }
    .homepage .home_grid .information_image .information_box .information_content {
      display: table-cell;
      vertical-align: middle;
      padding: 20px; }
      .homepage .home_grid .information_image .information_box .information_content h3 {
        font-weight: normal;
        margin-bottom: 15px;
        line-height: 44px; }
@media all and (max-width: 1500px) {
  .homepage .home_grid .our_school h1 {
    font-size: 6vw; }
  .homepage .home_grid .video_box .video_text {
    padding: 2.667vw;
    font-size: 4vw; }
  .homepage .home_grid .information_image .information_box .information_content h3 {
    font-size: 2.5vw; }
  .homepage .home_grid .information_image .information_box .information_content p {
    font-size: 2.2vw; } }
@media all and (max-width: 770px) {
  .homepage .home_grid .our_school {
    background-image: none;
    background: white;
    height: auto;
    float: none;
    width: 100%; }
    .homepage .home_grid .our_school h1 {
      position: relative;
      text-align: center;
      color: black; }
  .homepage .home_grid .video_box {
    width: 100%;
    float: none;
    height: 200px; }
    .homepage .home_grid .video_box .video img {
      margin-top: 0; }
    .homepage .home_grid .video_box .video_text {
      font-size: 3.5vw; }
  .homepage .home_grid .information_image {
    background-image: none;
    height: auto;
    text-align: center;
    width: 100%; }
    .homepage .home_grid .information_image .information_box {
      width: 100%;
      height: auto; }
      .homepage .home_grid .information_image .information_box .information_content {
        padding: 15vw; }
        .homepage .home_grid .information_image .information_box .information_content h3 {
          font-size: 4vw;
          line-height: 6vw; } }

.homepage .head_quote {
  height: 600px; }
  .homepage .head_quote .head_image {
    width: 50%;
    float: left;
    height: 100%;
    text-align: center;
    background-image: url("/images/head_quote3.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 85%; }
    .homepage .head_quote .head_image img {
      max-width: 100%;
      max-height: 100%;
      margin: auto;
      display: inline-block; }
  .homepage .head_quote .quote {
    width: 50%;
    float: left;
    background-image: url("/images/layout/background_lines_white.jpg");
    background-position: 30%;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 30px;
    display: table;
    height: 100%; }
    .homepage .head_quote .quote .quote_content {
      display: table-cell;
      vertical-align: middle; }
    .homepage .head_quote .quote h3 {
      margin-top: 40px;
      margin-bottom: 40px;
      font-size: 24px; }
      .homepage .head_quote .quote h3 span {
        color: #c7362d; }
    .homepage .head_quote .quote p {
      margin-bottom: 10px;
      font-size: 13px; }
    .homepage .head_quote .quote .quote_name {
      margin-bottom: 10px; }
    .homepage .head_quote .quote .quote_role {
      color: #c7362d;
      font-size: 20px; }
  @media all and (max-width: 1500px) {
    .homepage .head_quote {
      height: 55vw;
      max-height: 600px; }
      .homepage .head_quote .quote h3 {
        margin-top: 25px;
        margin-bottom: 25px;
        font-size: 1.5vw; }
      .homepage .head_quote .quote p {
        font-size: 1vw; }
      .homepage .head_quote .quote .quote_name {
        font-size: 1.3vw; }
      .homepage .head_quote .quote .quote_role {
        font-size: 1.25vw; } }
  @media all and (max-width: 770px) {
    .homepage .head_quote {
      height: auto; }
      .homepage .head_quote .quote {
        float: none;
        width: 100%; }
        .homepage .head_quote .quote h3 {
          font-size: 3vw; }
        .homepage .head_quote .quote p {
          font-size: 2vw; }
        .homepage .head_quote .quote .quote_name {
          font-size: 2.6vw; }
        .homepage .head_quote .quote .quote_role {
          font-size: 2.5vw; } }

.homepage .home_news .news_container:nth-child(2n-1) {
  background: #90181e; }
.homepage .home_news .news_container {
  width: 25%;
  float: left;
  padding: 40px;
  background: #c7362d;
  color: white; }
  .homepage .home_news .news_container h4 {
    background: white;
    color: #c7362d;
    padding: 5px 15px;
    display: inline-block;
    margin-bottom: 10px; }
    @media all and (max-width: 770px) {
      .homepage .home_news .news_container h4 {
        margin-bottom: 15px; } }
  .homepage .home_news .news_container h3 {
    font-size: 24px;
    margin-bottom: 10px; }
  .homepage .home_news .news_container p {
    margin-bottom: 20px; }
  .homepage .home_news .news_container .view_article {
    margin-bottom: 0; }
.homepage .home_news .news_image {
  width: 25%;
  padding: 40px;
  float: left;
  background-image: url("/images/home_news.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 90%; }
@media all and (max-width: 1500px) {
  .homepage .home_news .news_container {
    padding: 3vw; }
  .homepage .home_news .news_image {
    padding: 3vw; } }
@media all and (max-width: 770px) {
  .homepage .home_news .news_container {
    width: 75%;
    padding: 5vw; }
    .homepage .home_news .news_container h3 {
      font-size: 20px; }
    .homepage .home_news .news_container p {
      font-size: 14px; } }

.home_events_container.hidden {
  display: none !important; }
.home_events_container div.event.cycle-slide.cycle-slide-active {
  left: 0;
  right: 0; }
.home_events_container .home_events_title {
  width: 50%;
  float: left;
  padding: 40px;
  background-image: url("/images/layout/background_lines_grey.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 90%;
  height: 400px;
  display: table; }
  @media all and (max-width: 770px) {
    .home_events_container .home_events_title {
      height: auto; } }
  .home_events_container .home_events_title .title_contents {
    display: table-cell;
    vertical-align: middle; }
    .home_events_container .home_events_title .title_contents h1 {
      font-size: 46px;
      margin-bottom: 25px; }
      .home_events_container .home_events_title .title_contents h1 span {
        font-weight: normal; }
.home_events_container .home_events_carousel {
  width: 50%;
  float: left;
  padding: 40px;
  background: #e3e3e3;
  height: 400px;
  display: table;
  position: relative; }
  .home_events_container .home_events_carousel .carousel_contents {
    display: table-cell;
    vertical-align: middle; }
    .home_events_container .home_events_carousel .carousel_contents .cycle-slideshow {
      overflow: hidden; }
    @media all and (max-width: 770px) {
      .home_events_container .home_events_carousel .carousel_contents {
        display: block;
        text-align: center; } }
    .home_events_container .home_events_carousel .carousel_contents .event_container {
      width: 80%;
      margin: auto; }
      .home_events_container .home_events_carousel .carousel_contents .event_container .date {
        margin-bottom: 10px;
        font-size: 22px; }
      .home_events_container .home_events_carousel .carousel_contents .event_container .title {
        margin-bottom: 10px;
        font-size: 24px; }
      .home_events_container .home_events_carousel .carousel_contents .event_container .event_text {
        margin-bottom: 10px; }
    .home_events_container .home_events_carousel .carousel_contents #next {
      position: absolute;
      right: 0;
      top: 50%;
      width: 20px;
      margin-right: 20px; }
    .home_events_container .home_events_carousel .carousel_contents #prev {
      position: absolute;
      left: 0;
      top: 50%;
      width: 20px;
      margin-left: 20px; }
  @media all and (max-width: 770px) {
    .home_events_container .home_events_carousel {
      height: auto; } }
@media all and (max-width: 1500px) {
  .home_events_container .home_events_title {
    padding: 3vw; }
    .home_events_container .home_events_title .title_contents h1 {
      font-size: 3.2vw; }
    .home_events_container .home_events_title .title_contents p {
      font-size: 1.5vw; } }
@media all and (max-width: 770px) {
  .home_events_container .home_events_title {
    padding: 12vw;
    text-align: center;
    width: 100%; }
    .home_events_container .home_events_title .title_contents {
      display: block; }
      .home_events_container .home_events_title .title_contents h1 {
        font-size: 4.5vw; }
      .home_events_container .home_events_title .title_contents p {
        font-size: 3.5vw; } }

#homepage-social-media {
  color: #000;
  background-color: #ededed;
  /*h1 {
  	background-repeat: no-repeat;
  	background-image: url("/images/layout/background_lines_white.jpg");
  	background-position: top right;
  	padding: 40px;
  	font-size: 50px;
  	color: #000;
  	text-align: center;
  	text-transform: uppercase;
  	font-weight: lighter;
  	
  	@media all and (max-width: $mobile-break) {
  		padding: 5.1vw;
  		font-size: 6.49vw;
  	}
  }*/ }
  #homepage-social-media h2 {
    padding-bottom: 30px;
    font-size: 44px;
    font-weight: normal;
    float: left; }
    @media all and (max-width: 1500px) {
      #homepage-social-media h2 {
        padding-bottom: 2VW;
        font-size: 3.2vw; } }
    @media all and (max-width: 770px) {
      #homepage-social-media h2 {
        padding-bottom: 4VW;
        font-size: 6.4vw; } }
  #homepage-social-media .twitter-widget-container,
  #homepage-social-media .facebook-widget-container {
    padding: 40px; }
    #homepage-social-media .twitter-widget-container .inner,
    #homepage-social-media .facebook-widget-container .inner {
      max-width: 500px;
      margin: 0 auto; }
    @media all and (max-width: 770px) {
      #homepage-social-media .twitter-widget-container,
      #homepage-social-media .facebook-widget-container {
        width: 100%;
        min-height: 0; } }
  #homepage-social-media .twitter-widget-container .twitter-logo {
    width: 50px;
    height: 41px;
    float: right; }
    @media all and (max-width: 770px) {
      #homepage-social-media .twitter-widget-container .twitter-logo {
        width: 12.98vw;
        height: 10.64vw; } }
  #homepage-social-media .facebook-widget-container .facebook-logo {
    width: 19px;
    height: 41px;
    float: right; }
    @media all and (max-width: 770px) {
      #homepage-social-media .facebook-widget-container .facebook-logo {
        width: 4.92vw;
        height: 10.64vw; } }
  #homepage-social-media .twitter-timeline,
  #homepage-social-media iframe,
  #homepage-social-media .fb_iframe_widget,
  #homepage-social-media .fb_iframe_widget span {
    width: 500px;
    max-width: 100%; }
    @media all and (max-width: 1161px) {
      #homepage-social-media .twitter-timeline,
      #homepage-social-media iframe,
      #homepage-social-media .fb_iframe_widget,
      #homepage-social-media .fb_iframe_widget span {
        width: 43vw; } }
    @media all and (max-width: 770px) {
      #homepage-social-media .twitter-timeline,
      #homepage-social-media iframe,
      #homepage-social-media .fb_iframe_widget,
      #homepage-social-media .fb_iframe_widget span {
        width: 500px; } }

.accessibility-banner {
  background-color: grey;
  display: grid;
  text-align: center;
  width: 100%;
  padding: 1em;
  font-size: 14px;
  text-decoration: underline;
  color: white;
  font-weight: 600; }

.footer {
  background: #fff;
  color: black;
  margin-bottom: 2px;
  max-width: 1500px;
  margin: auto;
  padding: 0;
  position: static; }
  .footer .footer_contact {
    width: 50%;
    height: 350px;
    float: left;
    padding: 40px 60px 60px 60px; }
    .footer .footer_contact .main_logo {
      text-align: center;
      margin: auto; }
      .footer .footer_contact .main_logo img {
        width: 400px;
        max-width: 100%; }
    .footer .footer_contact .address {
      font-size: 16px;
      padding-top: 30px; }
    .footer .footer_contact .phone {
      font-size: 24px; }
      .footer .footer_contact .phone a {
        color: black;
        text-decoration: none; }
    .footer .footer_contact .social_logos {
      width: 45%;
      float: left;
      margin-top: 30px;
      text-align: center; }
      .footer .footer_contact .social_logos .facebook {
        width: 23px;
        height: 48px;
        margin-right: 15px; }
      .footer .footer_contact .social_logos .twitter {
        width: 60px;
        height: 49px; }
      .footer .footer_contact .social_logos .instagram {
        width: 50px;
        height: 50px;
        margin-left: 10px; }
  .footer .footer_image {
    width: 50%;
    background-image: url("/images/footer.jpg");
    height: 350px;
    float: left;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center; }
  @media all and (max-width: 1500px) {
    .footer .footer_contact {
      padding: 40px 5vw 60px 5vw; }
      .footer .footer_contact .address {
        font-size: 1.15vw; } }
  @media all and (max-width: 1023px) {
    .footer {
      padding: 0; }
      .footer .footer_contact {
        float: none;
        width: 100%;
        margin-bottom: 25px;
        height: auto; }
        .footer .footer_contact .address {
          font-size: 2.3vw; }
      .footer .footer_image {
        width: 100%;
        float: none; } }
  @media all and (max-width: 670px) {
    .footer .footer_contact .social_logos .facebook {
      width: 18px;
      height: 38px; }
    .footer .footer_contact .social_logos .twitter {
      width: 45px;
      height: 37px; }
    .footer .footer_contact .social_logos .instagram {
      width: 40px;
      height: 40px; } }
  @media all and (max-width: 500px) {
    .footer .footer_contact {
      padding: 10px; }
      .footer .footer_contact .main_logo {
        margin-bottom: 10px; }
      .footer .footer_contact .social_logos {
        float: none;
        margin: auto;
        width: 85%; }
      .footer .footer_contact .address {
        text-align: center;
        padding-top: 15px;
        font-size: 16px; }
      .footer .footer_contact .phone {
        text-align: center; } }

#page_sub_nav {
  z-index: 2;
  position: absolute;
  width: 25%;
  height: 600px;
  background-image: url("/images/layout/background_lines_new.jpg");
  padding-top: 40px;
  text-transform: uppercase; }
  @media all and (max-width: 770px) {
    #page_sub_nav {
      padding-top: 0; } }
  #page_sub_nav .contact-details li {
    border: none;
    padding-left: 2vw; }
  #page_sub_nav .social-media {
    padding-left: 1vw; }
    #page_sub_nav .social-media li {
      border: none;
      display: inline-block;
      padding-left: 1.5vw; }
    #page_sub_nav .social-media .facebook img {
      width: 15px;
      height: 32px; }
    #page_sub_nav .social-media .twitter img {
      width: 36px;
      height: 29px; }
    #page_sub_nav .social-media .instagram img {
      width: 30px;
      height: 30px; }
  #page_sub_nav .contact-details .address {
    border: none; }
  #page_sub_nav .side-tags {
    margin-top: 20px; }
    @media all and (max-width: 770px) {
      #page_sub_nav .side-tags {
        display: none; } }
    #page_sub_nav .side-tags h2 {
      font-size: 18px; }
      @media all and (max-width: 1500px) {
        #page_sub_nav .side-tags h2 {
          font-size: 1.4vw; } }
      @media all and (max-width: 770px) {
        #page_sub_nav .side-tags h2 {
          font-size: 3.7vw; } }
    #page_sub_nav .side-tags li {
      font-size: 14px;
      padding-left: 50px; }
      @media all and (max-width: 1500px) {
        #page_sub_nav .side-tags li {
          padding-left: 4vw;
          font-size: 1.2vw; } }
      @media all and (max-width: 770px) {
        #page_sub_nav .side-tags li {
          font-size: 3.5vw; } }
  #page_sub_nav h2 {
    color: white;
    padding-left: 20px;
    margin-bottom: 20px; }
    @media all and (max-width: 1500px) {
      #page_sub_nav h2 {
        font-size: 2vw; } }
    @media all and (max-width: 770px) {
      #page_sub_nav h2 {
        padding-left: 10px;
        color: black;
        font-size: 4.2vw; } }
  #page_sub_nav .back_to_section {
    color: white;
    margin-bottom: 20px;
    padding-left: 20px; }
    @media all and (max-width: 1500px) {
      #page_sub_nav .back_to_section {
        font-size: 1vw; } }
  #page_sub_nav h3 {
    color: white;
    margin-bottom: 20px;
    padding-left: 20px; }
    @media all and (max-width: 1500px) {
      #page_sub_nav h3 {
        font-size: 1.8vw; } }
  #page_sub_nav .animation-dropdown {
    position: relative;
    width: 100%;
    height: 40px; }
  #page_sub_nav .accordion-button {
    height: 100%;
    width: 20vw;
    background-color: transparent;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 2;
    overflow: hidden; }
    @media all and (max-width: 770px) {
      #page_sub_nav .accordion-button {
        width: 35.5vw; } }
  #page_sub_nav a {
    text-decoration: none; }
  #page_sub_nav li {
    list-style: none;
    padding: 20px;
    color: white;
    text-transform: uppercase;
    padding-left: 50px;
    border-top: 2px solid rgba(255, 255, 255, 0.4);
    font-weight: 700; }
    #page_sub_nav li.selected {
      background: white;
      color: #c7362d; }
      @media all and (max-width: 770px) {
        #page_sub_nav li.selected {
          background: #90181e;
          color: white; } }
    @media all and (max-width: 1500px) {
      #page_sub_nav li {
        padding-left: 4vw;
        font-size: 1.2vw; } }
    @media all and (max-width: 770px) {
      #page_sub_nav li {
        font-size: 3.4vw;
        border: none;
        padding: 0; }
        #page_sub_nav li.minerva_vacancies_link {
          color: #c7362d;
          padding-left: 10px;
          text-decoration: underline; } }
  #page_sub_nav .no_border {
    border: none; }
  @media all and (max-width: 770px) {
    #page_sub_nav .side-column-nav ul {
      width: 100%;
      background-color: #90181e;
      border-top: 4px solid #fff; } }
  #page_sub_nav .side-column-nav ul li {
    list-style: none;
    position: relative; }
    @media all and (max-width: 770px) {
      #page_sub_nav .side-column-nav ul li {
        max-width: 100%;
        width: 100%;
        margin: 0; } }
    #page_sub_nav .side-column-nav ul li a {
      text-transform: uppercase;
      font-size: 17px;
      letter-spacing: -0.5px;
      display: block; }
      @media all and (max-width: 1360px) {
        #page_sub_nav .side-column-nav ul li a {
          font-size: 1.25VW;
          letter-spacing: -0.03vw; } }
      @media all and (max-width: 770px) {
        #page_sub_nav .side-column-nav ul li a {
          width: 100%;
          text-align: center;
          padding: 3vw 5vw;
          color: #fff;
          font-size: 3.75VW; } }
  #page_sub_nav .side-column-nav h1.section-title {
    font-size: 5vw;
    color: #fff;
    display: none;
    padding: 3.72vw;
    padding-right: 40.5vw;
    text-align: center;
    line-height: 6.1vw; }
    @media all and (max-width: 770px) {
      #page_sub_nav .side-column-nav h1.section-title {
        font-size: 4vw; } }
  #page_sub_nav .side-column-nav a.accordion-button {
    font-size: 4.5vw;
    line-height: 4.5vw;
    color: #fff; }
    #page_sub_nav .side-column-nav a.accordion-button span {
      height: 9vw;
      width: 15vw;
      position: absolute;
      top: 0;
      bottom: 0;
      left: 4.7vw;
      margin: auto;
      z-index: 2; }
  @media all and (max-width: 770px) {
    #page_sub_nav .side-column-nav h1.section-title,
    #page_sub_nav .side-column-nav h2.section-title {
      display: block; }
    #page_sub_nav .side-column-nav .side-column-mobile-nav .mobile-accordion-buttons {
      position: relative;
      background-color: #c7362d; }
      #page_sub_nav .side-column-nav .side-column-mobile-nav .mobile-accordion-buttons:after {
        content: " ";
        z-index: 1;
        background-color: #90181e;
        height: 100%;
        width: 35.5vw;
        position: absolute;
        right: 0;
        top: 0; }
      #page_sub_nav .side-column-nav .side-column-mobile-nav .mobile-accordion-buttons .accordion-button {
        height: 100%;
        width: 35.5vw;
        position: absolute;
        right: 0;
        top: 0;
        overflow: hidden;
        z-index: 3; }
    #page_sub_nav .side-column-nav .side-column-mobile-nav .arrow-animation {
      height: 15px;
      width: 18px;
      position: absolute;
      right: 0;
      top: 0;
      bottom: 0;
      margin: auto 10px auto auto;
      z-index: 2;
      background-image: url("/images/layout/right_arrow_white.svg");
      background-repeat: no-repeat; } }

.page_header_image {
  text-align: center;
  height: 500px;
  width: 100%;
  display: table;
  max-width: 1500px;
  margin: auto;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("/images/temporary/page_header.jpg"); }
  .page_header_image .page_header_inner {
    background: rgba(0, 0, 0, 0.3);
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: table; }
  .page_header_image h1 {
    display: table-cell;
    vertical-align: middle;
    color: white;
    font-size: 52px;
    text-transform: uppercase; }

#content-wrapper {
  width: 100%;
  position: relative;
  max-width: 1500px;
  margin: auto;
  overflow: hidden; }
  #content-wrapper .software_logos {
    margin-top: 20px; }
    #content-wrapper .software_logos .logo {
      width: 33%;
      float: left;
      text-align: center;
      margin-bottom: 25px;
      padding: 10px; }
      @media all and (max-width: 770px) {
        #content-wrapper .software_logos .logo {
          width: 50%; } }
      #content-wrapper .software_logos .logo:hover p {
        text-decoration: underline; }
      #content-wrapper .software_logos .logo img {
        width: 100%; }
      #content-wrapper .software_logos .logo p {
        font-size: 18px; }
        @media all and (max-width: 1500px) {
          #content-wrapper .software_logos .logo p {
            font-size: 1.200vw; } }
        @media all and (max-width: 770px) {
          #content-wrapper .software_logos .logo p {
            font-size: 2.4vw; } }
    #content-wrapper .software_logos .logo:nth-child(3n + 2) {
      margin-right: .5%;
      margin-left: .5%; }
      @media all and (max-width: 770px) {
        #content-wrapper .software_logos .logo:nth-child(3n + 2) {
          margin-left: 0;
          margin-right: 0; } }
  #content-wrapper .spacer {
    margin-bottom: 20px; }
  #content-wrapper #page-title {
    margin-bottom: 20px; }
    #content-wrapper #page-title h4 {
      margin-bottom: 10px; }
    @media all and (max-width: 770px) {
      #content-wrapper #page-title {
        display: none; } }
  #content-wrapper .pager-wrapper .pager {
    list-style: none;
    text-align: center; }
    #content-wrapper .pager-wrapper .pager li {
      padding: 5px;
      display: inline-block;
      font-size: 18px; }
  #content-wrapper .content_tagged {
    margin-bottom: 20px; }
    #content-wrapper .content_tagged a {
      font-weight: 700; }
  #content-wrapper h2 {
    margin-bottom: 20px; }
  #content-wrapper .latest_updates_title {
    padding-left: 20px;
    font-size: 24px;
    padding-top: 0;
    padding-bottom: 0; }
    @media all and (max-width: 770px) {
      #content-wrapper .latest_updates_title {
        padding-left: 2.94vw; } }
    #content-wrapper .latest_updates_title.events {
      padding-left: 0; }
  #content-wrapper .column .item {
    padding-bottom: 30px; }
  #content-wrapper .column a {
    color: #c7362d;
    text-decoration: none;
    font-weight: 700; }
  #content-wrapper .column h5 {
    margin-top: 5px; }
    @media all and (max-width: 770px) {
      #content-wrapper .column h5 {
        margin-bottom: 5px; } }
    #content-wrapper .column h5 a {
      text-decoration: none;
      font-size: 16px; }
  #content-wrapper .column p {
    margin: 5px 0; }
    #content-wrapper .column p a {
      font-size: 14px;
      text-decoration: none;
      color: black;
      font-weight: normal; }
  #content-wrapper .column-right {
    float: right;
    width: 75%;
    padding: 40px; }
    #content-wrapper .column-right.page_title {
      padding: 40px 40px 0px 40px; }
      @media all and (max-width: 770px) {
        #content-wrapper .column-right.page_title {
          padding: 0 10px 0 10px; } }
      #content-wrapper .column-right.page_title .content_tagged {
        padding-left: 20px; }
    #content-wrapper .column-right .content_tagged {
      padding-left: 20px; }
    @media all and (max-width: 770px) {
      #content-wrapper .column-right {
        width: 100%;
        padding-top: 0; } }
    @media all and (max-width: 770px) {
      #content-wrapper .column-right.contact {
        padding: 40px; } }
  #content-wrapper .column-left {
    float: left;
    background: #c7362d;
    width: 25%; }
    #content-wrapper .column-left::after {
      content: "";
      position: absolute;
      height: 100%;
      width: 25%;
      left: 0;
      top: 0;
      z-index: 1;
      display: block;
      background: #c7362d; }
      @media all and (max-width: 770px) {
        #content-wrapper .column-left::after {
          display: none; } }
    @media all and (max-width: 770px) {
      #content-wrapper .column-left {
        height: auto;
        width: 100%;
        float: none;
        background: white; }
        #content-wrapper .column-left #page_sub_nav {
          width: 100%;
          position: relative;
          height: auto;
          background: white;
          padding: 40px 20px; } }
  #content-wrapper .page_header h4 {
    margin-bottom: 10px; }
  #content-wrapper .page_header h1 {
    color: #c7362d;
    font-size: 44px; }
  #content-wrapper .page_header .author_and_date {
    padding-bottom: 15px; }
  #content-wrapper .page_header .summary {
    padding-bottom: 25px; }
  #content-wrapper .page_header .job_info {
    padding-bottom: 10px; }
    #content-wrapper .page_header .job_info p {
      text-transform: capitalize; }
  @media all and (max-width: 800px) {
    #content-wrapper {
      width: 100%;
      float: none; } }
  #content-wrapper .column-right .listing-items .column {
    width: 50%;
    float: left; }
  #content-wrapper .column-right .listing-items .item {
    padding: 20px; }
    @media all and (max-width: 1500px) {
      #content-wrapper .column-right .listing-items .item {
        padding: 1.47vw; } }
    #content-wrapper .column-right .listing-items .item .inner {
      background-color: #e3e3e3; }
      @media all and (max-width: 770px) {
        #content-wrapper .column-right .listing-items .item .inner h3 {
          margin-bottom: 8px;
          font-size: 15px; } }
    #content-wrapper .column-right .listing-items .item span.date {
      font-size: 16px;
      padding-bottom: 10px;
      display: block; }
      @media all and (max-width: 770px) {
        #content-wrapper .column-right .listing-items .item span.date {
          font-size: 13px; } }
  #content-wrapper .listing-items .items {
    height: 100%;
    width: 100%;
    margin: auto; }
  #content-wrapper .listing-items .item {
    width: 100%;
    height: 100%; }
    #content-wrapper .listing-items .item .inner {
      padding: 30px; }
      @media all and (max-width: 1500px) {
        #content-wrapper .listing-items .item .inner {
          padding: 2.2vw; } }
      @media all and (max-width: 770px) {
        #content-wrapper .listing-items .item .inner {
          padding: 4.4vw; } }
      #content-wrapper .listing-items .item .inner h5 a,
      #content-wrapper .listing-items .item .inner p a {
        color: black; }
      #content-wrapper .listing-items .item .inner h5 {
        font-size: 40px; }
        @media all and (max-width: 1500px) {
          #content-wrapper .listing-items .item .inner h5 {
            font-size: 2.9vw; } }
        @media all and (max-width: 770px) {
          #content-wrapper .listing-items .item .inner h5 {
            font-size: 5.8vw; } }
      #content-wrapper .listing-items .item .inner p {
        font-size: 17px;
        line-height: 25px;
        padding-top: 25px;
        padding-bottom: 15px; }
        @media all and (max-width: 1500px) {
          #content-wrapper .listing-items .item .inner p {
            font-size: 1.25VW;
            line-height: 1.83vw;
            padding-top: 1vw;
            padding-bottom: 1vw; } }
        @media all and (max-width: 770px) {
          #content-wrapper .listing-items .item .inner p {
            display: none; } }
      #content-wrapper .listing-items .item .inner a.button {
        margin-top: 80px; }
        @media all and (max-width: 1500px) {
          #content-wrapper .listing-items .item .inner a.button {
            margin-top: 5.88vw; } }
        @media all and (max-width: 770px) {
          #content-wrapper .listing-items .item .inner a.button {
            margin-top: 11.76vw;
            font-size: 13px; } }

#content-wrapper .block {
  padding-bottom: 30px; }
  #content-wrapper .block.text {
    padding-bottom: 0; }
    #content-wrapper .block.text h2 {
      padding-left: 0;
      margin-bottom: 10px;
      font-size: 24px; }
    #content-wrapper .block.text h3 {
      margin-bottom: 10px; }
    #content-wrapper .block.text h4 {
      margin-bottom: 10px; }
    #content-wrapper .block.text p {
      padding-bottom: 30px; }
    #content-wrapper .block.text ul {
      padding: 0px 10px 30px 20px;
      margin-left: 2%; }
      #content-wrapper .block.text ul li {
        padding: 2px; }
    #content-wrapper .block.text ol {
      padding: 0px 10px 30px 20px;
      margin-left: 2%; }
      #content-wrapper .block.text ol li {
        padding: 2px; }
    #content-wrapper .block.text a {
      font-weight: 700; }
    #content-wrapper .block.text a:hover {
      text-decoration: underline; }
  #content-wrapper .block.image {
    width: 100%; }
    #content-wrapper .block.image img {
      max-width: 100%; }
  #content-wrapper .block.table .caption {
    color: #c7362d;
    font-size: 32px;
    padding-bottom: 10px; }
  #content-wrapper .block.table table {
    width: 100%;
    border-collapse: collapse;
    border-top: 1px solid black; }
    #content-wrapper .block.table table td {
      padding: 8px;
      border-bottom: 1px solid black;
      border-left: 1px solid black;
      border-right: 1px solid black; }
    #content-wrapper .block.table table thead tr {
      background: #c7362d;
      color: white; }
      #content-wrapper .block.table table thead tr th {
        padding: 8px;
        border-bottom: 1px solid black;
        border-left: 1px solid black;
        border-right: 1px solid black; }
  #content-wrapper .block.framed_image {
    display: table;
    width: 100%; }
    #content-wrapper .block.framed_image .text {
      display: table-cell;
      width: 70%;
      padding: 10px; }
      #content-wrapper .block.framed_image .text .name {
        font-size: 28px;
        font-weight: 700; }
      #content-wrapper .block.framed_image .text .show_more {
        color: #c7362d;
        font-weight: 700; }
      #content-wrapper .block.framed_image .text .show_less {
        display: none;
        color: #c7362d;
        font-weight: 700; }
      #content-wrapper .block.framed_image .text .supporting_title {
        font-size: 20px;
        margin-bottom: 10px;
        margin-top: 2px; }
      #content-wrapper .block.framed_image .text .short_text {
        font-size: 16px;
        margin-bottom: 10px; }
      #content-wrapper .block.framed_image .text .body {
        display: none;
        margin-bottom: 10px; }
      #content-wrapper .block.framed_image .text.responsive {
        display: none; }
    #content-wrapper .block.framed_image .frame {
      display: table-cell;
      vertical-align: top;
      width: 30%;
      padding: 10px 10px 10px 0; }
      #content-wrapper .block.framed_image .frame div {
        width: 100%;
        height: 220px;
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat; }
    @media all and (max-width: 770px) {
      #content-wrapper .block.framed_image {
        display: block; }
        #content-wrapper .block.framed_image .text {
          display: block;
          width: 90%;
          margin: auto;
          text-align: center;
          padding: 0; }
        #content-wrapper .block.framed_image .frame {
          display: block;
          width: 60vw;
          margin: auto; } }
  #content-wrapper .block.file .file_wrapper {
    background: #c7362d;
    padding: 20px; }
  #content-wrapper .block.file img {
    width: 40px;
    height: 50px;
    display: inline-block;
    padding-right: 5px; }
  #content-wrapper .block.file .filesize {
    float: right; }
    @media all and (max-width: 1500px) {
      #content-wrapper .block.file .filesize {
        font-size: 1.7vw; } }
    @media all and (max-width: 770px) {
      #content-wrapper .block.file .filesize {
        font-size: 2vw; } }
  #content-wrapper .block.file a {
    color: white;
    text-decoration: none;
    position: relative; }
    #content-wrapper .block.file a :before {
      content: " ";
      width: 40px;
      height: 50px;
      display: block;
      position: absolute;
      background-size: 40px 50px;
      left: 0;
      top: 0;
      background-image: url("/images/layout/file.svg");
      background-repeat: no-repeat;
      margin-left: 16px;
      margin-top: 12px; }
      @media all and (max-width: 770px) {
        #content-wrapper .block.file a :before {
          width: 20px;
          height: 25px;
          background-size: 20px 25px;
          top: 15%; } }
    #content-wrapper .block.file a :after {
      display: block;
      content: "";
      clear: both; }
    #content-wrapper .block.file a .filename {
      overflow-wrap: break-word;
      text-transform: uppercase;
      font-size: 19px;
      font-weight: 700;
      width: 70%;
      display: inline-block;
      margin-left: 60px; }
      @media all and (max-width: 1500px) {
        #content-wrapper .block.file a .filename {
          font-size: 1.7vw; } }
      @media all and (max-width: 770px) {
        #content-wrapper .block.file a .filename {
          font-size: 2vw;
          width: 60%;
          margin-left: 30px; } }
  #content-wrapper .block.youtube {
    margin: 30px 0;
    position: relative;
    padding-bottom: 52.25%;
    height: 0;
    overflow: hidden;
    width: 900px;
    max-width: 100%;
    max-height: 470px; }
    #content-wrapper .block.youtube iframe {
      position: absolute;
      top: 0px;
      left: 0;
      width: 100%;
      height: 100%; }
    #content-wrapper .block.youtube .video_bar {
      color: white;
      background: #c7362d;
      padding: 5px 20px;
      height: 100px;
      cursor: pointer;
      z-index: 1;
      position: relative;
      top: 0;
      z-index: 1;
      overflow: hidden;
      display: table;
      width: 100%; }
      @media all and (max-width: 770px) {
        #content-wrapper .block.youtube .video_bar {
          padding: 0.649vw 2.597vw;
          height: 12.987vw; } }
      #content-wrapper .block.youtube .video_bar .triangle-right {
        width: 0;
        height: 0;
        border-top: 15px solid transparent;
        border-left: 30px solid white;
        float: right;
        margin-top: 8px;
        top: 0;
        border-bottom: 18px solid transparent;
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
        -webkit-transition: .25s ease-in-out;
        -moz-transition: .25s ease-in-out;
        -o-transition: .25s ease-in-out;
        transition: .25s ease-in-out; }
        #content-wrapper .block.youtube .video_bar .triangle-right.open {
          -webkit-transform: rotate(135deg);
          -moz-transform: rotate(135deg);
          -o-transform: rotate(135deg);
          transform: rotate(90deg); }
        @media all and (max-width: 770px) {
          #content-wrapper .block.youtube .video_bar .triangle-right {
            border-top: 1.948vw solid transparent;
            border-left: 3.896vw solid white;
            margin-top: 1.039vw;
            border-bottom: 2.338vw solid transparent; } }
      #content-wrapper .block.youtube .video_bar h2 {
        margin-top: 10px;
        display: inline-block;
        margin-bottom: 10px;
        width: 80%;
        display: table-cell;
        vertical-align: middle; }
        @media all and (max-width: 770px) {
          #content-wrapper .block.youtube .video_bar h2 {
            margin-top: 1.299vw;
            margin-bottom: 1.299vw;
            font-size: 3.117vw; } }
      #content-wrapper .block.youtube .video_bar .youtube_logo_wrapper {
        display: table-cell;
        vertical-align: middle;
        width: 10%; }
      #content-wrapper .block.youtube .video_bar .youtube_logo {
        width: 60px;
        height: 41px;
        margin-top: 2px;
        margin-right: 20px; }
        @media all and (max-width: 770px) {
          #content-wrapper .block.youtube .video_bar .youtube_logo {
            width: 7.792vw;
            height: 5.325vw;
            margin-top: 0.260vw;
            margin-right: 2.597vw; } }
      #content-wrapper .block.youtube .video_bar .triangle_wrapper {
        display: table-cell;
        vertical-align: middle;
        width: 10%; }
    #content-wrapper .block.youtube.hidden_video {
      height: auto;
      padding-bottom: 0; }
    #content-wrapper .block.youtube.hideable_video {
      max-height: 570px; }
      #content-wrapper .block.youtube.hideable_video iframe {
        margin-top: 100px;
        padding-bottom: 100px; }
        @media all and (max-width: 770px) {
          #content-wrapper .block.youtube.hideable_video iframe {
            margin-top: 12.687vw;
            padding-bottom: 12.987vw; } }
  #content-wrapper .block.quote p {
    color: #c7362d;
    font-size: 26px;
    padding-bottom: 10px; }
  #content-wrapper .block.quote span {
    font-weight: 700; }
  #content-wrapper .block.gallery h2 {
    padding-bottom: 20px;
    color: #c7362d;
    font-size: 32px; }
  #content-wrapper .block.gallery .image-wrapper {
    display: inline-block;
    width: 24%; }
    #content-wrapper .block.gallery .image-wrapper img {
      width: 100%; }
  #content-wrapper .block.tweets {
    padding-bottom: 0; }
    #content-wrapper .block.tweets .tweet {
      margin-bottom: 30px; }
    #content-wrapper .block.tweets a:hover {
      text-decoration: underline; }
    #content-wrapper .block.tweets .user {
      font-weight: 700;
      color: #c7362d; }
    #content-wrapper .block.tweets .body {
      margin-top: 10px;
      margin-bottom: 10px; }
    #content-wrapper .block.tweets .actions {
      list-style: none;
      margin-top: 5px; }
      #content-wrapper .block.tweets .actions li {
        display: inline-block;
        font-weight: 700;
        color: #c7362d; }

.pager-wrapper {
  display: block;
  text-align: center;
  padding: 40px 0 20px 0; }
  @media all and (max-width: 1500px) {
    .pager-wrapper {
      padding: 2.9vw 0 1.4vw 0; } }
  @media all and (max-width: 770px) {
    .pager-wrapper {
      padding: 5.8vw 0 2.8vw 0; } }
  .pager-wrapper ol {
    list-style: none;
    display: inline-block; }
    .pager-wrapper ol li {
      float: left; }
    .pager-wrapper ol a, .pager-wrapper ol span {
      font-size: 50px;
      display: inline-block;
      padding: 15px; }
      @media all and (max-width: 1500px) {
        .pager-wrapper ol a, .pager-wrapper ol span {
          font-size: 3.67vw;
          padding: 1.47vw; } }
      @media all and (max-width: 770px) {
        .pager-wrapper ol a, .pager-wrapper ol span {
          font-size: 11.01vw;
          padding: 4.41vw; } }
    .pager-wrapper ol a {
      text-decoration: none;
      color: black; }
    .pager-wrapper ol span,
    .pager-wrapper ol a:hover {
      color: #c7362d; }

#page_sub_nav .tags {
  padding: 0; }
  @media all and (max-width: 770px) {
    #page_sub_nav .tags {
      display: none; } }
  #page_sub_nav .tags h2 {
    padding: 10px 10px 10px 20px;
    font-size: 20px;
    margin-bottom: 0; }
  #page_sub_nav .tags ul {
    list-style: none;
    padding: 10px; }
    #page_sub_nav .tags ul li {
      padding: 7px 5px 7px 0;
      display: inline-block;
      border-top: 0;
      padding: 10px; }
#page_sub_nav .tags a,
#page_sub_nav a.tag {
  padding: 5px 10px;
  color: white;
  border: 4px solid white;
  border-radius: 20px;
  transition: background 0.2s ease-in-out, color 0.2s ease-in-out;
  display: inline-block;
  position: relative; }
  #page_sub_nav .tags a:hover,
  #page_sub_nav a.tag:hover {
    color: black;
    background-color: white; }
#page_sub_nav p.content_tagged {
  font-size: 20px;
  padding-bottom: 30px; }
  #page_sub_nav p.content_tagged a.tag:after {
    content: "x";
    color: white;
    font-size: 20px;
    line-height: 18px;
    display: block;
    position: absolute;
    text-align: center;
    width: 20px;
    height: 20px;
    top: 0;
    right: 0;
    margin-top: -10px;
    margin-right: -10px;
    border-radius: 50px;
    background-color: #c7362d;
    border: 1px solid white;
    transition: background-color 0.2s ease-in-out !important; }

#minerva_header a img,
#minerva_footer a img {
  border: 0; }
#minerva_header *,
#minerva_footer * {
  margin: 0;
  padding: 0; }

#minerva_header {
  background: black;
  padding: 12px 60px 15px 60px; }
  #minerva_header .header_inner {
    max-width: 1250px;
    margin: auto; }
    #minerva_header .header_inner:after {
      display: block;
      content: " ";
      clear: both; }
  #minerva_header .logo img {
    width: 161px;
    height: 41px;
    display: inline-block;
    float: right;
    max-width: 50%; }
  #minerva_header .text img {
    width: 420px;
    height: 14px;
    margin-top: 14px;
    display: inline-block;
    float: left; }
  @media all and (max-width: 895px) {
    #minerva_header {
      padding: 12px 30px 15px 30px; } }
  @media all and (max-width: 800px) {
    #minerva_header .logo img {
      width: 100px;
      height: 26px; }
    #minerva_header .text img {
      width: 350px;
      height: 11px;
      margin-top: 8px; } }
  @media all and (max-width: 600px) {
    #minerva_header {
      text-align: center;
      padding: 12px 30px 11px 30px; }
      #minerva_header .logo img {
        float: none; }
      #minerva_header .text img {
        display: none; } }

#minerva_footer {
  background: black;
  color: white;
  padding: 60px 20px;
  width: 100%;
  margin: auto;
  text-align: center;
  box-sizing: border-box; }
  #minerva_footer .footer_inner {
    max-width: 1350px;
    margin: auto; }
  #minerva_footer .logo {
    width: 33%;
    display: inline-block;
    float: left;
    padding: 0 0 0 20px; }
    #minerva_footer .logo img {
      max-width: 270px;
      margin-top: -2px; }
  #minerva_footer .slogan {
    width: 34%;
    display: inline-block;
    padding: 10px 20px 0 20px;
    /*
    p {
    	max-width: 75%;
    	margin: auto;
    	font-weight: bold;
    	font-size: 16px;
    	margin-top: 5px;
    	
    	span {
    		font-weight: normal;
    	}
    }
    */ }
    #minerva_footer .slogan img {
      width: 259px;
      height: 36px; }
  #minerva_footer .website_link {
    width: 33%;
    display: inline-block;
    float: right;
    padding: 15px 20px 0 0;
    /*
    p {
    	margin-bottom: 5px;
    }
    
    a {
    	color: white;
    	text-decoration: none;
    	font-weight: normal;
    }
    */ }
    #minerva_footer .website_link img {
      width: 262px;
      height: 39px; }
  @media all and (max-width: 1023px) {
    #minerva_footer {
      text-align: center; }
      #minerva_footer .logo {
        display: inline-block;
        width: 100%;
        padding: 0; }
      #minerva_footer .slogan {
        display: inline-block;
        width: 100%;
        padding: 0;
        margin-top: 20px;
        margin-bottom: 20px; }
      #minerva_footer .website_link {
        display: inline-block;
        float: none;
        width: 100%;
        padding: 0; } }

#homepage_flash:nth-child(2n) a {
  background-color: #333333; }
#homepage_flash a {
  width: 100%;
  background-color: #90181e;
  text-align: center;
  color: #fff;
  display: block;
  font-weight: bold;
  text-transform: uppercase;
  transition: background-color 0.2s ease-in-out;
  font-size: 20px;
  padding: 20px; }
  @media all and (max-width: 1360px) {
    #homepage_flash a {
      font-size: 1.47vw;
      padding: 1.47vw; } }
  @media all and (max-width: 770px) {
    #homepage_flash a {
      font-size: 4.41vw;
      padding: 4.41vw; } }
  #homepage_flash a:hover {
    background-color: #000; }

/*# sourceMappingURL=site.css.map */
