
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

html {
  transition: all 0.4s ease;
}
html.wf-loading {
  opacity: 0;
}
html.wf-active, html.wf-inactive {
  opacity: 1;
}

* {
  font-family: "sofia-pro";
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.container {
  height: 100%;
  position: relative;
  padding: 0 30px;
  margin: 0 auto;
  width: 100%;
}
@media (min-width: 768px) {
  .container {
    width: 768px;
  }
}
@media (min-width: 1024px) {
  .container {
    width: 960px;
  }
}
@media (min-width: 1310px) {
  .container {
    padding: 0;
    width: 1170px;
  }
}

.wrapper {
  overflow: hidden;
}
.wrapper .container {
  display: -ms-flexbox;
  display: flex;
  gap: 25px;
}
@media (max-width: 768px) {
  .wrapper .container {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

h1 {
  font-size: 52px;
  line-height: 52px;
  text-transform: uppercase;
  font-weight: 700;
  color: #3C3C3C;
  margin-bottom: 0px;
}

h2 {
  font-size: 44px;
  line-height: 44px;
  text-transform: uppercase;
  font-weight: 700;
  color: #3C3C3C;
  margin-bottom: 40px;
}

h3 {
  font-size: 40px;
  line-height: 44px;
  text-transform: uppercase;
  font-weight: 700;
  color: #3C3C3C;
  margin-bottom: 20px;
}

h4 {
  font-size: 32px;
  line-height: 34px;
  text-transform: uppercase;
  font-weight: 700;
  color: #3C3C3C;
  margin-bottom: 5px;
}

h5 {
  font-size: 22px;
  line-height: 24px;
  text-transform: uppercase;
  font-weight: 700;
  color: #3C3C3C;
  margin-bottom: 35px;
}

h6 {
  font-size: 16px;
  line-height: 20px;
  text-transform: uppercase;
  font-weight: 700;
  color: #3C3C3C;
  margin-bottom: 10px;
}

p {
  color: #3C3C3C;
  font-size: 16px;
  line-height: 20px;
  font-weight: 200;
  margin-bottom: 16px;
}
p strong {
  font-weight: 600;
}
p em {
  font-style: italic;
}
p ul {
  list-style-type: disc;
  list-style-position: inside;
}
p ol {
  list-style-type: decimal;
  list-style-position: inside;
}
p ul ul, p ol ul {
  list-style-type: circle;
  list-style-position: inside;
  margin-left: 15px;
}
p ol ol, p ul ol {
  list-style-type: lower-latin;
  list-style-position: inside;
  margin-left: 15px;
}

a {
  transition: all 0.4s ease;
  color: #6AA2B8;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

header[aria-role=banner] {
  background-color: white;
  padding: 30px 0 10px;
  position: relative;
}
header[aria-role=banner] h2 {
  margin-bottom: 0;
  color: #002147;
}

.logos {
  float: right;
}
.logos div {
  background-color: #002046;
  height: 80px;
  width: 80px;
  margin-right: 10px;
  display: inline-block;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  vertical-align: top;
}
@media (min-width: 1100px) {
  .logos div {
    height: 125px;
    width: 125px;
  }
}
.logos div .content-holder {
  background-color: transparent;
  bottom: 10px;
  height: 23px;
  left: 5px;
  margin-right: 0px;
  position: absolute;
  width: 90px;
}
.logos div p {
  color: #FFF;
  font-size: 12px;
  font-weight: 700;
  margin: 0px;
  text-transform: uppercase;
}
@media (min-width: 769px) {
  .logos div p {
    font-size: 16px;
  }
}
.logos div p.small-text {
  font-size: 7px;
  font-weight: 500;
  line-height: 4px;
  margin-top: 6px;
}
@media (min-width: 769px) {
  .logos div p.small-text {
    font-size: 9px;
    line-height: 9px;
    margin-top: -2px;
  }
}
.search-overlay {
  z-index: 30;
  background-color: rgba(0, 0, 0, 0);
  position: fixed;
  top: 220px;
  left: 0;
  right: 0;
  bottom: 0;
  transition: all 0.4s ease;
  pointer-events: none;
}
.search-overlay.active {
  background-color: rgba(0, 0, 0, 0.4);
}

.search-bar {
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 100000;
  display: none;
  background-color: #3C3C3C;
}
.search-bar form {
  display: inline-block;
  width: calc(100% - 100px);
  padding: 10px 0px;
}
.search-bar input[type=submit] {
  text-transform: uppercase;
  font-size: 16px;
  background-color: #6AA2B8;
  transition: all 0.4s ease;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 6px 20px;
  padding: 15px 45px 15px 20px;
  background-image: url(images/button-arrow.svg);
  border: 0;
  outline: 0;
  -webkit-appearance: none;
  color: white;
  cursor: pointer;
}
.search-bar input[type=submit]:hover {
  background-color: #3A6E8D;
  text-decoration: none;
  background-position: right 10px center;
}
.search-bar input[type=text] {
  padding: 10px 35px 10px 15px;
  color: #EEEEEE;
  font-size: 16px;
  line-height: 20px;
  font-weight: 200;
  margin-bottom: 0;
  background-color: transparent;
  font-size: 18px;
  line-height: 24px;
  -webkit-appearance: none;
  outline: 0;
  border: 0;
  width: calc(100% - 140px);
  transition: all 0.4s ease;
}
.search-bar input[type=text] strong {
  font-weight: 600;
}
.search-bar input[type=text] em {
  font-style: italic;
}
.search-bar input[type=text] ul {
  list-style-type: disc;
  list-style-position: inside;
}
.search-bar input[type=text] ol {
  list-style-type: decimal;
  list-style-position: inside;
}
.search-bar input[type=text] ul ul, .search-bar input[type=text] ol ul {
  list-style-type: circle;
  list-style-position: inside;
  margin-left: 15px;
}
.search-bar input[type=text] ol ol, .search-bar input[type=text] ul ol {
  list-style-type: lower-latin;
  list-style-position: inside;
  margin-left: 15px;
}
.search-bar input[type=text]::-webkit-input-placeholder {
  color: #EEEEEE;
}
.search-bar input[type=text]:-moz-placeholder {
  color: #EEEEEE;
}
.search-bar input[type=text]::-moz-placeholder {
  color: #EEEEEE;
}
.search-bar input[type=text]:-ms-input-placeholder {
  color: #EEEEEE;
}
.search-bar svg {
  position: relative;
  height: 30px;
  width: 40px;
  display: inline-block;
  vertical-align: middle;
  margin-bottom: 5px;
  padding-right: 10px;
  border-right: 3px solid #EEEEEE;
  cursor: pointer;
}
.search-bar svg:last-of-type {
  border-right: 0;
}
.search-bar svg .search_st0 {
  stroke: white;
}

.dept-logo {
  background-image: url(/wp-content/themes/dept-of-education/images/doe_logo.jpg);
  background-position: center;
  backgorund-size: cover;
  background-repeat: no-repeat;
}
.dept-logo .content-holder {
  display: none;
}

.oxford-uni-logo {
  background-image: url(/wp-content/themes/dept-of-education/images/uoo_logo.jpg);
  background-position: center;
  backgorund-size: cover;
  background-repeat: no-repeat;
}

.skip-to-content-link {
  text-transform: uppercase;
  height: 30px;
  left: 50%;
  padding: 8px;
  position: absolute;
  transform: translateY(-500%);
  transition: transform 0.3s;
}

.skip-to-content-link:focus {
  transform: translateY(-100%);
}

nav.main-menu ul:not(.sub-menu) {
  list-style-type: none;
  padding: 30px 0;
  display: inline-block;
}
nav.main-menu ul:not(.sub-menu) > li {
  display: inline-block;
  padding: 10px 20px;
  position: relative;
}
nav.main-menu ul:not(.sub-menu) > li:first-of-type {
  padding-left: 0;
}
nav.main-menu ul:not(.sub-menu) > li:hover {
  cursor: pointer;
}
nav.main-menu ul:not(.sub-menu) > li a {
  transition: all 0.4s ease;
  color: #3C3C3C;
  text-decoration: none;
  transition: all 0.4s ease;
  text-transform: uppercase;
}
nav.main-menu ul:not(.sub-menu) > li a:hover {
  text-decoration: underline;
}
nav.main-menu ul:not(.sub-menu) > li a:hover {
  text-decoration: none;
}
nav.main-menu ul:not(.sub-menu) > li.current-menu-item .sub-menu, nav.main-menu ul:not(.sub-menu) > li.current_page_item .sub-menu {
  top: 60px;
}
nav.main-menu ul:not(.sub-menu) > li.current-menu-item > a, nav.main-menu ul:not(.sub-menu) > li.current_page_item > a {
  text-transform: uppercase;
  font-size: 16px;
  background-color: #6AA2B8;
  transition: all 0.4s ease;
  display: inline-block;
  padding: 15px 20px;
  color: white;
}
nav.main-menu ul:not(.sub-menu) > li.current-menu-item > a:hover, nav.main-menu ul:not(.sub-menu) > li.current_page_item > a:hover {
  background-color: #3A6E8D;
  text-decoration: none;
  background-position: right 10px center;
}
nav.main-menu span {
  padding: 7px;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  background-color: transparent;
  vertical-align: middle;
  border-radius: 50%;
  top: -3px;
  position: relative;
  display: inline-block;
  height: 15px;
  width: 15px;
  transform: scale(1);
  transition: all 0.4s ease;
  cursor: pointer;
}
nav.main-menu span .search_st0 {
  transition: all 0.4s ease;
}
nav.main-menu.active span {
  background-color: #6AA2B8;
  transform: scale(0.95);
}
nav.main-menu.active span .search_st0 {
  stroke: white;
}

nav.main-menu ul ul.sub-menu {
  display: none;
  position: absolute;
  top: 45px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  z-index: 1000;
}
nav.main-menu ul ul.sub-menu:before {
  content: "";
  height: 0;
  width: 0;
  border: 10px solid transparent;
  border-bottom-color: #EEEEEE;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
}
nav.main-menu ul ul.sub-menu li {
  position: relative;
}
nav.main-menu ul ul.sub-menu li a {
  font-weight: 200;
  display: block;
  padding: 20px 40px 20px 20px;
  background-color: #EEEEEE;
}
nav.main-menu ul ul.sub-menu li a:hover {
  background-color: #D2D2D2;
}

.strip {
  clear: both;
}
.strip:nth-of-type(even) {
  background-color: #FFF;
}
.strip:nth-of-type(odd) {
  background-color: #EEEEEE;
}
.strip:nth-of-type(odd) .tiles.post li .list-content {
  background-color: #FFF;
}

.owl-carousel {
  overflow: hidden;
  position: relative;
}
.owl-carousel .owl-item {
  float: left;
}
.owl-carousel .owl-item > div {
  min-height: 600px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.owl-carousel .owl-item > div .container {
  position: relative;
  min-height: 520px;
}
.owl-carousel .owl-item > div .container .content {
  position: absolute;
  bottom: 40px;
  width: 90%;
}
.owl-carousel .owl-item > div h1 {
  color: white;
  margin-bottom: 20px;
}
.owl-carousel .owl-item > div p {
  font-size: 24px;
  line-height: 30px;
  color: white;
  margin-bottom: 20px;
  font-weight: 500;
  font-weight: 300;
  line-height: 30px;
}
.owl-carousel .owl-item > div a {
  text-transform: uppercase;
  font-size: 14px;
  background-color: #6AA2B8;
  transition: all 0.4s ease;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 6px 20px;
  padding: 15px 45px 15px 20px;
  background-image: url(images/button-arrow.svg);
  color: white;
  margin: 20px 0 0;
  display: inline-block;
  text-decoration: underline;
}
.owl-carousel .owl-item > div a:hover {
  background-color: #3A6E8D;
  text-decoration: none;
  background-position: right 10px center;
}
.owl-carousel .owl-item > div a:hover {
  text-decoration: none;
}
.owl-carousel .owl-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
}
.owl-carousel .owl-dots .owl-dot {
  display: inline-block;
  margin-right: 5px;
  cursor: pointer;
}
.owl-carousel .owl-dots .owl-dot span {
  display: inline-block;
  height: 10px;
  width: 10px;
  background-color: white;
}
.owl-carousel .owl-dots .owl-dot.active span {
  background-color: #6AA2B8;
}
.owl-carousel .owl-nav {
  padding: 0 30px;
  margin: 0 auto;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (min-width: 768px) {
  .owl-carousel .owl-nav {
    width: 768px;
  }
}
@media (min-width: 1024px) {
  .owl-carousel .owl-nav {
    width: 960px;
  }
}
@media (min-width: 1310px) {
  .owl-carousel .owl-nav {
    padding: 0;
    width: 1170px;
  }
}
.owl-carousel .owl-nav div {
  height: 50px;
  width: 25px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
}
.owl-carousel .owl-nav div.owl-next {
  right: -55px;
  background-image: url(images/carousel-next.svg);
  font-size: 0;
}
.owl-carousel .owl-nav div.owl-prev {
  left: -55px;
  background-image: url(images/carousel-prev.svg);
  font-size: 0;
}
.owl-carousel.full .owl-item > div {
  padding: 20px 0;
}

.owl-carousel.half-carousel {
  min-height: 600px;
  background-color: #3C3C3C;
}
@media (max-width: 992px) {
  .owl-carousel.half-carousel {
    height: 100%;
    background-color: #EEEEEE;
  }
}
.owl-carousel.half-carousel .owl-stage-outer {
  height: 100%;
}
.owl-carousel.half-carousel .owl-stage-outer .owl-stage {
  height: 100%;
}
.owl-carousel.half-carousel .owl-stage-outer .owl-stage .owl-item {
  height: 100%;
  overflow: hidden;
}
.owl-carousel.half-carousel .owl-stage-outer .owl-stage .owl-item .container {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: end;
  justify-content: flex-end;
  min-height: unset;
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
}
@media (max-width: 992px) {
  .owl-carousel.half-carousel .owl-stage-outer .owl-stage .owl-item .container {
    -ms-flex-flow: column-reverse;
    flex-flow: column-reverse;
  }
}
.owl-carousel.half-carousel .owl-stage-outer .owl-stage .owl-item .container .content {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 20px;
  height: 100%;
  width: 50%;
  padding: 50px 100px;
}
@media (max-width: 1200px) {
  .owl-carousel.half-carousel .owl-stage-outer .owl-stage .owl-item .container .content {
    padding: 50px;
  }
}
@media (max-width: 992px) {
  .owl-carousel.half-carousel .owl-stage-outer .owl-stage .owl-item .container .content {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .owl-carousel.half-carousel .owl-stage-outer .owl-stage .owl-item .container .content {
    padding: 25px;
  }
}
.owl-carousel.half-carousel .owl-stage-outer .owl-stage .owl-item .container .content h1 {
  margin: 0;
  word-wrap: break-word;
}
@media (max-width: 992px) {
  .owl-carousel.half-carousel .owl-stage-outer .owl-stage .owl-item .container .content h1 {
    color: #3C3C3C;
    font-size: 30px;
    line-height: 1.2;
  }
}
.owl-carousel.half-carousel .owl-stage-outer .owl-stage .owl-item .container .content p {
  margin: 0;
  word-wrap: break-word;
}
@media (max-width: 992px) {
  .owl-carousel.half-carousel .owl-stage-outer .owl-stage .owl-item .container .content p {
    color: #3C3C3C;
    font-size: 18px;
    line-height: 1.2;
  }
}
.owl-carousel.half-carousel .owl-stage-outer .owl-stage .owl-item .container .content a {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0;
}
.owl-carousel.half-carousel .owl-stage-outer .owl-stage .owl-item .container .image {
  height: 100%;
  width: 50%;
}
@media (max-width: 992px) {
  .owl-carousel.half-carousel .owl-stage-outer .owl-stage .owl-item .container .image {
    width: 100%;
    height: 300px;
  }
}
.owl-carousel.half-carousel .owl-stage-outer .owl-stage .owl-item .container .image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.owl-carousel.half-carousel .owl-controls .owl-nav {
  display: block;
  position: unset;
  width: 100%;
  transform: unset;
}
.owl-carousel.half-carousel .owl-controls .owl-nav .owl-prev {
  left: 25px;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 1200px) {
  .owl-carousel.half-carousel .owl-controls .owl-nav .owl-prev {
    left: 12.5px;
  }
}
@media (max-width: 992px) {
  .owl-carousel.half-carousel .owl-controls .owl-nav .owl-prev {
    top: 150px;
  }
}
.owl-carousel.half-carousel .owl-controls .owl-nav .owl-next {
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 1200px) {
  .owl-carousel.half-carousel .owl-controls .owl-nav .owl-next {
    right: 12.5px;
  }
}
@media (max-width: 992px) {
  .owl-carousel.half-carousel .owl-controls .owl-nav .owl-next {
    top: 150px;
  }
}
.owl-carousel.half-carousel .owl-controls .owl-dots {
  left: 25%;
}
@media (max-width: 992px) {
  .owl-carousel.half-carousel .owl-controls .owl-dots {
    left: 50%;
  }
}

.strip.carousel {
  font-size: 0px;
  position: relative;
}
.strip.carousel .content-holder {
  background-color: #3C3C3C;
  height: 600px;
  position: absolute;
  width: 50%;
}

.full-width-tacticals {
  padding: 40px 0;
}
.full-width-tacticals .container {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 50px;
}
@media (max-width: 756px) {
  .full-width-tacticals .container {
    gap: 25px;
  }
}
.full-width-tacticals .container .alt-title {
  color: #6AA2B8;
  margin-bottom: 0;
}
.full-width-tacticals .container .tac-box-container {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  height: -moz-fit-content;
  height: fit-content;
  min-height: 400px;
  width: auto;
}
@media (max-width: 768px) {
  .full-width-tacticals .container .tac-box-container {
    min-height: unset;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: -50px;
  }
}
.full-width-tacticals .container .tac-box-container .img {
  position: absolute;
  width: 60%;
  height: 400px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 768px) {
  .full-width-tacticals .container .tac-box-container .img {
    position: unset;
    height: 300px;
    width: 100%;
  }
}
@media (max-width: 576px) {
  .full-width-tacticals .container .tac-box-container .img {
    height: 200px;
  }
}
.full-width-tacticals .container .tac-box-container:nth-of-type(odd) .img {
  right: 0;
}
.full-width-tacticals .container .tac-box-container:nth-of-type(even) {
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.full-width-tacticals .container .tac-box-container:nth-of-type(even) .img {
  left: 0;
}
.full-width-tacticals .container .tactical-box {
  position: relative;
  width: 45%;
  padding: 56px 40px 20px 40px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  background-color: #EEEEEE;
  z-index: 10;
}
@media (max-width: 768px) {
  .full-width-tacticals .container .tactical-box {
    width: 90%;
    transform: translateY(-50px);
  }
}
@media (max-width: 576px) {
  .full-width-tacticals .container .tactical-box {
    padding: 28px 20px 10px 20px;
  }
}
.full-width-tacticals .container .tactical-box .item-type {
  position: absolute;
  top: -20px;
  padding: 10px 15px;
  color: white;
  background-color: #6AA2B8;
  text-transform: uppercase;
  font-size: 16px;
  line-height: 20px;
}
.full-width-tacticals .container .tactical-box p {
  color: #3C3C3C;
  font-size: 16px;
  line-height: 20px;
  font-weight: 200;
  margin-bottom: 40px;
}
.full-width-tacticals .container .tactical-box p strong {
  font-weight: 600;
}
.full-width-tacticals .container .tactical-box p em {
  font-style: italic;
}
.full-width-tacticals .container .tactical-box p ul {
  list-style-type: disc;
  list-style-position: inside;
}
.full-width-tacticals .container .tactical-box p ol {
  list-style-type: decimal;
  list-style-position: inside;
}
.full-width-tacticals .container .tactical-box p ul ul, .full-width-tacticals .container .tactical-box p ol ul {
  list-style-type: circle;
  list-style-position: inside;
  margin-left: 15px;
}
.full-width-tacticals .container .tactical-box p ol ol, .full-width-tacticals .container .tactical-box p ul ol {
  list-style-type: lower-latin;
  list-style-position: inside;
  margin-left: 15px;
}
@media (max-width: 768px) {
  .full-width-tacticals .container .tactical-box p {
    margin-bottom: 20px;
  }
}
.full-width-tacticals .container .tactical-box a {
  letter-spacing: 2px;
  transition: all 0.4s ease;
  display: inline-block;
  color: #6AA2B8;
  text-transform: uppercase;
  text-decoration: underline;
  margin-bottom: 20px;
  padding-right: 25px;
  background-image: url(images/button-arrow-light-blue.svg);
  background-position: right 10px center;
  background-repeat: no-repeat;
  background-size: 8px 16px;
}
.full-width-tacticals .container .tactical-box a:hover {
  text-decoration: none;
  background-position: right 8px center;
}

.strip.people {
  padding: 25px 0;
  position: relative;
}
@media (min-width: 768px) {
  .strip.people {
    padding: 75px 0;
  }
}
.strip.people .container:first-of-type {
  padding-top: 20px;
}
.strip.people .container .owl-carousel .owl-item {
  min-height: auto;
}
.strip.people .container > a {
  text-transform: uppercase;
  font-size: 16px;
  background-color: #6AA2B8;
  transition: all 0.4s ease;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 6px 20px;
  padding: 15px 45px 15px 20px;
  background-image: url(images/button-arrow.svg);
  color: white;
  top: 0;
  right: 0;
  text-decoration: underline;
}
.strip.people .container > a:hover {
  background-color: #3A6E8D;
  text-decoration: none;
  background-position: right 10px center;
}
@media (min-width: 768px) {
  .strip.people .container > a {
    position: absolute;
  }
}

.owl-navigation-people.research .prev {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateX(-100%) translateY(-50%);
}
@media (max-width: 768px) {
  .owl-navigation-people.research .prev {
    transform: translateY(-50%);
    left: 12px;
  }
}
.owl-navigation-people.research .next {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateX(100%) translateY(-50%);
}
@media (max-width: 768px) {
  .owl-navigation-people.research .next {
    transform: translateY(-50%);
    right: 12px;
  }
}

.owl-carousel.people {
  padding: 15px 0;
  overflow: hidden;
}
@media (min-width: 768px) {
  .owl-carousel.people {
    padding: 30px 0;
  }
}
.owl-carousel.people .owl-item li {
  margin: 0 15px;
  position: relative;
  border: 1px solid white;
  padding: 130px 20px 40px;
  background-color: #EEEEEE;
}
.owl-carousel.people .owl-item li:nth-of-type(odd) {
  background-color: #fff;
}
.owl-carousel.people .owl-item li .img {
  height: 120px;
  width: 120px;
  position: absolute;
  top: -20px;
  left: 20px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.owl-carousel.people .owl-item li a {
  display: inline-block;
  color: #6AA2B8;
  transition: all 0.4s ease;
  text-transform: uppercase;
  text-decoration: underline;
  position: relative;
  padding-right: 35px;
  background-image: url(images/button-arrow-light-blue.svg);
  background-position: right 10px center;
  background-repeat: no-repeat;
  background-size: 7px 16px;
  margin: 5px 0 0;
  position: absolute;
  bottom: 30px;
}
.owl-carousel.people .owl-item li a:hover {
  text-decoration: none;
  background-position: right 8px center;
}
.owl-carousel.people .owl-item li p {
  margin-bottom: 10px;
}

.strip.custom-tacticals {
  padding: 80px 0 40px;
}
.strip.custom-tacticals.research-group {
  padding: 60px 0 0;
}
.strip.custom-tacticals.research-group .container {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 40px;
}
.strip.custom-tacticals.research-group .container .header {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 12.5px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  max-width: 100%;
}
.strip.custom-tacticals.research-group .container .header h2 {
  padding: 0;
  margin: 0;
}
.strip.custom-tacticals.research-group .container .tiles {
  max-width: 100%;
}
.strip.custom-tacticals.center ul li {
  margin: 0px 12px 20px;
  text-align: left;
}
.strip.custom-tacticals .button {
  text-decoration: underline;
}
.strip.custom-tacticals ul {
  font-size: 0;
  min-height: 300px;
  padding-top: 3%;
  padding-bottom: 3%;
}
.strip.custom-tacticals li {
  display: inline-block;
  vertical-align: top;
}
.strip.custom-tacticals li:nth-of-type(2) {
  display: none;
}
@media (min-width: 640px) {
  .strip.custom-tacticals li:nth-of-type(2) {
    display: inline-block;
  }
}
.strip.custom-tacticals li:nth-of-type(3) {
  display: none;
}
@media (min-width: 1024px) {
  .strip.custom-tacticals li:nth-of-type(3) {
    display: inline-block;
  }
}
.strip.custom-tacticals li:nth-of-type(4) {
  display: none;
}
@media (min-width: 1311px) {
  .strip.custom-tacticals li:nth-of-type(4) {
    display: inline-block;
  }
}
.strip.custom-tacticals li.curated {
  width: 270px;
  margin-right: 30px;
}
.strip.custom-tacticals li.curated:last-of-type {
  margin-right: 0;
}
.strip.custom-tacticals li.curated:nth-of-type(4n) {
  margin-right: 0;
}
.strip.custom-tacticals li .img {
  width: 100%;
  height: 150px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.strip.custom-tacticals li .content {
  width: 90%;
  margin: 0 auto;
  background-color: white;
  border: 1px solid #EEEEEE;
  position: relative;
  top: -10px;
  padding: 20px;
  transition: all 0.4s ease;
  min-height: 0px;
}
.strip.custom-tacticals li .content a {
  display: inline-block;
  color: #3A6E8D;
  transition: all 0.4s ease;
  text-transform: uppercase;
  position: relative;
  padding-right: 35px;
  background-image: url(images/button-arrow-light-blue.svg);
  background-position: right 10px center;
  background-repeat: no-repeat;
  background-size: 7px 16px;
  margin: 10px 0 0;
  position: relative;
  font-size: 14px;
  text-decoration: underline;
}
.strip.custom-tacticals li .content a:hover {
  text-decoration: none;
  background-position: right 0px center;
}
.strip.custom-tacticals li:hover .content a {
  opacity: 1;
  top: 0;
  font-size: 14px;
}

.main-content {
  margin: 60px 0;
  width: 100%;
  max-width: 870px;
}
@media (max-width: 768px) {
  .main-content {
    margin: 0;
    padding: 30px 0px;
  }
  .main-content h1 {
    font-size: 33px;
    line-height: 40px;
  }
  .main-content p {
    word-break: break-word;
  }
  .main-content p:first-of-type {
    font-size: 20px;
    line-height: 25px;
  }
}
.main-content.strip {
  width: 100%;
}
.main-content table {
  overflow-x: scroll;
  position: sticky;
  left: 0;
}
.main-content iframe {
  aspect-ratio: auto 16/9;
  width: 100%;
  height: 56.25%;
}

.page-id-13882 .main-content {
  position: relative;
}
.page-id-13882 .main-content .wp-block-image {
  position: absolute;
  right: -25px;
  width: 275px;
  transform: translateX(100%);
  max-width: 100%;
}
@media (max-width: 1300px) {
  .page-id-13882 .main-content .wp-block-image {
    transform: unset;
    position: unset;
  }
}
.page-id-13882 .sidebar {
  margin-top: 260px;
}
@media (max-width: 1300px) {
  .page-id-13882 .sidebar {
    margin-top: unset;
    float: unset;
  }
}

.alignright {
  float: right;
}

.alignleft {
  float: left;
}

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.cut-out {
  position: relative;
  margin-bottom: 50px;
}

.wrapper.tab-layout-wrapper {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -ms-flex-flow: column;
  flex-flow: column;
}

.reesX, .rees-youtube{
  display: flex;
  align-items: center;
  gap: 20px;
}
.rees-youtube img{
  background: #6aa2b8;
  width: 44px;
  height: 44px;
}
.wrapper.tab-layout-wrapper .social-bar {
  -ms-flex-order: 998;
  order: 998;
}
.wrapper.tab-layout-wrapper footer {
  -ms-flex-order: 999;
  order: 999;
}
@media (max-width: 756px) {
  .wrapper.tab-layout-wrapper {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: column;
    flex-flow: column;
  }
  .wrapper.tab-layout-wrapper .main-content-area.container {
    -ms-flex-order: 1;
    order: 1;
  }
}

.tab-headings {
  position: absolute;
  background-color: #EEEEEE;
  width: 968px;
  height: 70px;
  max-width: 100%;
}
@media (max-width: 758px) {
  .tab-headings {
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}
.tab-headings li {
  display: inline-block;
  padding: 25px 20px;
  cursor: pointer;
  position: relative;
}
@media (max-width: 758px) {
  .tab-headings li {
    font-size: 0;
    padding-right: 0;
    padding-left: 0;
    max-width: 25%;
    margin-right: 15px;
  }
  .tab-headings li:last-of-type {
    padding-right: 0;
  }
}
.tab-headings li:first-of-type {
  padding-left: 0;
}
.tab-headings li p {
  margin-bottom: 0;
  text-transform: uppercase;
  transition: all 0.4s ease;
}
@media (max-width: 758px) {
  .tab-headings li p {
    font-size: 12px;
    line-height: 14px;
  }
}
.tab-headings li:hover p {
  color: #6AA2B8;
}
.tab-headings li:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 1px solid transparent;
  transition: all 0.4s ease;
}
.tab-headings li.active {
  cursor: default;
}
.tab-headings li.active p {
  color: #6AA2B8;
}
@media (min-width: 758px) {
  .tab-headings li.active:after {
    border: 30px solid transparent;
    border-top-color: #EEEEEE;
  }
}

.research-people {
  padding: 60px 0;
  overflow: hidden;
}
.research-people .container {
  -ms-flex-direction: column;
  flex-direction: column;
}
.research-people ul {
  font-size: 0;
  min-height: 300px;
}
.research-people ul li {
  display: inline-block;
  min-height: 200px;
  height: auto;
}

.people-listing {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  row-gap: 100px;
  -moz-column-gap: 20px;
  column-gap: 20px;
}
.people-listing .tiles {
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 12.5px;
  min-height: unset;
  width: 22%;
  position: relative;
  background-color: #eeeeee;
  padding: 0px 25px;
}
@media (max-width: 768px) {
  .people-listing .tiles {
    width: calc(50% - 50px);
  }
}
@media (max-width: 576px) {
  .people-listing .tiles {
    width: 100%;
  }
}
.people-listing .tiles .img {
  height: 120px;
  width: 120px;
  margin: -40px 0px 20px;
  min-width: 100px;
  background-size: cover;
  
}
.people-listing .tiles .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.people-listing .tiles .content-holder {
  margin: -20px 0px 20px;
}
.people-listing .tiles .content-holder .tag {
  background-color: #6AA2B8;
  color: white;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  padding: 10px;
  text-transform: uppercase;
}
.people-listing .tiles .content-holder .person-name {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 0;
  text-transform: uppercase;
}
.people-listing .tiles .content-holder .person-job {
  color: #6AA2B8;
  margin-bottom: 0;
}

.single-people .main-content {
  padding-bottom: 0;
}

.main-content.reduced {
  padding: 20px 0px;
}
.main-content .events-bar {
  margin-bottom: 30px;
  position: relative;
}
.main-content .events-bar .event-info-holder {
  margin-bottom: 10px;
  position: relative;
}
.main-content .events-bar .event-info-holder svg {
  display: inline-block;
  height: 30px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.main-content .events-bar .event-info-holder p {
  display: inline-block;
  font-size: 16px;
  margin: 0px;
  line-height: 18px;
  padding: 7px 0px 0px 40px;
  width: 100%;
}
.main-content p {
  color: #505050;
  font-size: 16px;
  line-height: 20px;
  font-weight: 200;
  margin-bottom: 16px;
}
.main-content p strong {
  font-weight: 600;
}
.main-content p em {
  font-style: italic;
}
.main-content p ul {
  list-style-type: disc;
  list-style-position: inside;
}
.main-content p ol {
  list-style-type: decimal;
  list-style-position: inside;
}
.main-content p ul ul, .main-content p ol ul {
  list-style-type: circle;
  list-style-position: inside;
  margin-left: 15px;
}
.main-content p ol ol, .main-content p ul ol {
  list-style-type: lower-latin;
  list-style-position: inside;
  margin-left: 15px;
}
.main-content p:first-of-type:not(.title) {
  font-size: 24px;
  line-height: 30px;
  color: #505050;
  margin-bottom: 20px;
  font-weight: 500;
}
.main-content p strong {
  color: #505050;
  font-size: 16px;
  line-height: 20px;
  font-weight: 200;
  margin-bottom: 16px;
  font-weight: bold;
}
.main-content p strong strong {
  font-weight: 600;
}
.main-content p strong em {
  font-style: italic;
}
.main-content p strong ul {
  list-style-type: disc;
  list-style-position: inside;
}
.main-content p strong ol {
  list-style-type: decimal;
  list-style-position: inside;
}
.main-content p strong ul ul, .main-content p strong ol ul {
  list-style-type: circle;
  list-style-position: inside;
  margin-left: 15px;
}
.main-content p strong ol ol, .main-content p strong ul ol {
  list-style-type: lower-latin;
  list-style-position: inside;
  margin-left: 15px;
}
.main-content h1 {
  font-size: 44px;
  line-height: 44px;
  text-transform: uppercase;
  font-weight: 700;
  color: #3C3C3C;
  margin-bottom: 30px;
}
.main-content blockquote {
  margin: 40px 0;
  padding: 20px 0;
  border-top: 1px solid #EEEEEE;
  border-bottom: 1px solid #EEEEEE;
}
.main-content blockquote p, .main-content blockquote p:first-of-type {
  font-family: "Georgia";
  font-style: italic;
  font-size: 28px;
  line-height: 38px;
  font-weight: 100;
  color: #6AA2B8;
  width: 90%;
  margin-bottom: 0;
}
.main-content li {
  color: #3C3C3C;
  line-height: 20px;
  position: relative;
  margin-left: 20px;
}
.main-content ul {
  list-style-type: disc;
  list-style-position: outside;
  margin-bottom: 16px;
  font-weight: 100;
}
.main-content ol {
  list-style-type: none;
  list-style-position: inside;
  margin-bottom: 16px;
  font-weight: 100;
}
.main-content ol li {
  counter-increment: step-counter;
}
.main-content ol li:before {
  content: counter(step-counter) ".";
  margin-right: 10px;
  width: 20px;
  text-align: left;
  display: inline-block;
  position: absolute;
  left: -20px;
}
.main-content ul ul, .main-content ol ul {
  list-style-type: circle;
  list-style-position: outside;
  margin-left: 15px;
}
.main-content ol ol, .main-content ul ol {
  list-style-position: inside;
  margin-left: 15px;
  margin-bottom: 0;
}
.main-content ol ol li, .main-content ul ol li {
  counter-increment: step-step-counter;
}
.main-content ol ol li:before, .main-content ul ol li:before {
  content: counter(step-step-counter, lower-alpha) ".";
}
.main-content .tab-content div {
  display: none;
}
.main-content .tab-content blockquote {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
  padding: 25px;
  background-color: #EEEEEE;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.main-content .tab-content blockquote p {
  font-size: 20px;
  line-height: 1.2;
  margin-bottom: 0 !important;
  font-weight: normal;
  font-style: normal;
}
@media (max-width: 768px) {
  .main-content .tab-content blockquote p {
    font-size: 18px;
    line-height: 1;
  }
}
.main-content .tab-content blockquote a {
  font-size: 20px;
  line-height: 1.2;
  font-weight: normal;
  font-style: normal;
}
@media (max-width: 768px) {
  .main-content .tab-content blockquote a {
    font-size: 18px;
    line-height: 1;
  }
}
.main-content .tab-content blockquote span {
  font-size: 20px;
  line-height: 1.2;
  color: #282828;
  font-weight: normal;
  font-style: normal;
}
@media (max-width: 768px) {
  .main-content .tab-content blockquote span {
    font-size: 18px;
    line-height: 1;
  }
}
.main-content .accordion-panels {
  padding: 30px 0 60px;
  list-style-type: none;
  max-width: 100%;
}
.main-content .accordion-panels li {
  border-top: 2px solid #D2D2D2;
  border-bottom: 2px solid transparent;
  padding: 20px;
  background-color: white;
  list-style-type: none;
  max-width: 100%;
  transition: all 0.4s ease;
}
@media (main-width: 640px) {
  .main-content .accordion-panels li {
    max-width: calc(100% - 100px);
  }
}
.main-content .accordion-panels li.active {
  background-color: #EEEEEE;
  border-top-color: #D2D2D2;
}
.main-content .accordion-panels li.active > h3 {
  margin-bottom: 15px;
}
.main-content .accordion-panels li:last-of-type {
  border-bottom-color: #EEEEEE;
}
.main-content .accordion-panels li > h3 {
  position: relative;
  font-size: 24px;
  line-height: 30px;
  color: #505050;
  margin-bottom: 0px;
  font-weight: 500;
  display: block;
  text-transform: none;
  padding-right: 40px;
}
.main-content .accordion-panels li > h3:after {
  content: "";
  height: 36px;
  width: 36px;
  background-color: #6AA2B8;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background-image: url(images/down-arrow.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 20px;
  transition: all 0.4s ease;
}
.main-content .accordion-panels li > h3.active:after {
  background-color: #35647E;
  background-image: url(images/up-arrow.svg);
}
.main-content .accordion-panels .accordion-content {
  display: none;
}
.main-content .accordion-panels .accordion-content .related-news {
  border-bottom: 1px solid #D2D2D2;
  padding: 10px 0;
  margin-bottom: 5px;
  background-color: transparent;
  background-image: url(images/button-arrow-light-orange.svg);
  background-position: center right 20px;
  background-repeat: no-repeat;
  background-size: 10px;
  transition: all 0.4s ease;
}
.main-content .accordion-panels .accordion-content .related-news:last-of-type {
  margin-bottom: 0;
}
.main-content .accordion-panels .accordion-content .related-news p:first-of-type {
  color: #3C3C3C;
  font-size: 16px;
  line-height: 20px;
  font-weight: 200;
  margin-bottom: 0;
  font-weight: 600;
}
.main-content .accordion-panels .accordion-content .related-news p:first-of-type strong {
  font-weight: 600;
}
.main-content .accordion-panels .accordion-content .related-news p:first-of-type em {
  font-style: italic;
}
.main-content .accordion-panels .accordion-content .related-news p:first-of-type ul {
  list-style-type: disc;
  list-style-position: inside;
}
.main-content .accordion-panels .accordion-content .related-news p:first-of-type ol {
  list-style-type: decimal;
  list-style-position: inside;
}
.main-content .accordion-panels .accordion-content .related-news p:first-of-type ul ul, .main-content .accordion-panels .accordion-content .related-news p:first-of-type ol ul {
  list-style-type: circle;
  list-style-position: inside;
  margin-left: 15px;
}
.main-content .accordion-panels .accordion-content .related-news p:first-of-type ol ol, .main-content .accordion-panels .accordion-content .related-news p:first-of-type ul ol {
  list-style-type: lower-latin;
  list-style-position: inside;
  margin-left: 15px;
}
.main-content .accordion-panels .accordion-content .related-news p.date {
  color: #6AA2B8;
  font-size: 16px;
  line-height: 20px;
  font-weight: 200;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 100;
}
.main-content .accordion-panels .accordion-content .related-news p.date strong {
  font-weight: 600;
}
.main-content .accordion-panels .accordion-content .related-news p.date em {
  font-style: italic;
}
.main-content .accordion-panels .accordion-content .related-news p.date ul {
  list-style-type: disc;
  list-style-position: inside;
}
.main-content .accordion-panels .accordion-content .related-news p.date ol {
  list-style-type: decimal;
  list-style-position: inside;
}
.main-content .accordion-panels .accordion-content .related-news p.date ul ul, .main-content .accordion-panels .accordion-content .related-news p.date ol ul {
  list-style-type: circle;
  list-style-position: inside;
  margin-left: 15px;
}
.main-content .accordion-panels .accordion-content .related-news p.date ol ol, .main-content .accordion-panels .accordion-content .related-news p.date ul ol {
  list-style-type: lower-latin;
  list-style-position: inside;
  margin-left: 15px;
}
.main-content .accordion-panels .accordion-content .related-news:hover {
  background-position: center right 15px;
}
.main-content .accordion-panels .accordion-content .students {
  border-bottom: 1px solid #D2D2D2;
  padding: 20px 0;
  position: relative;
}
.main-content .accordion-panels .accordion-content .students aside {
  display: inline-block;
  vertical-align: top;
  height: 90px;
  width: 90px;
  margin-right: 20px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.main-content .accordion-panels .accordion-content .students .student-content {
  display: inline-block;
  vertical-align: top;
  width: calc(100% - 90px - 25px);
  position: relative;
}
.main-content .accordion-panels .accordion-content .students .student-content p {
  color: #3C3C3C;
  font-size: 16px;
  line-height: 20px;
  font-weight: 200;
  margin-bottom: 16px;
}
.main-content .accordion-panels .accordion-content .students .student-content p strong {
  font-weight: 600;
}
.main-content .accordion-panels .accordion-content .students .student-content p em {
  font-style: italic;
}
.main-content .accordion-panels .accordion-content .students .student-content p ul {
  list-style-type: disc;
  list-style-position: inside;
}
.main-content .accordion-panels .accordion-content .students .student-content p ol {
  list-style-type: decimal;
  list-style-position: inside;
}
.main-content .accordion-panels .accordion-content .students .student-content p ul ul, .main-content .accordion-panels .accordion-content .students .student-content p ol ul {
  list-style-type: circle;
  list-style-position: inside;
  margin-left: 15px;
}
.main-content .accordion-panels .accordion-content .students .student-content p ol ol, .main-content .accordion-panels .accordion-content .students .student-content p ul ol {
  list-style-type: lower-latin;
  list-style-position: inside;
  margin-left: 15px;
}
.main-content .accordion-panels .accordion-content .students .student-content p:first-of-type {
  font-size: 24px;
  line-height: 30px;
  color: #3C3C3C;
  margin-bottom: 5px;
  font-weight: 500;
}
.main-content .accordion-panels .accordion-content .students .student-content svg {
  height: 20px;
  width: 10px;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translate(-50%, -50%);
  transition: all 0.4s ease;
}
.main-content .accordion-panels .accordion-content .students:hover .student-content svg {
  right: 5px;
}
.main-content .accordion-panels .accordion-content p:first-of-type {
  color: #3C3C3C;
  font-size: 16px;
  line-height: 20px;
  font-weight: 200;
  margin-bottom: 16px;
}
.main-content .accordion-panels .accordion-content p:first-of-type strong {
  font-weight: 600;
}
.main-content .accordion-panels .accordion-content p:first-of-type em {
  font-style: italic;
}
.main-content .accordion-panels .accordion-content p:first-of-type ul {
  list-style-type: disc;
  list-style-position: inside;
}
.main-content .accordion-panels .accordion-content p:first-of-type ol {
  list-style-type: decimal;
  list-style-position: inside;
}
.main-content .accordion-panels .accordion-content p:first-of-type ul ul, .main-content .accordion-panels .accordion-content p:first-of-type ol ul {
  list-style-type: circle;
  list-style-position: inside;
  margin-left: 15px;
}
.main-content .accordion-panels .accordion-content p:first-of-type ol ol, .main-content .accordion-panels .accordion-content p:first-of-type ul ol {
  list-style-type: lower-latin;
  list-style-position: inside;
  margin-left: 15px;
}

.sidebar {
  width: 270px;
  display: inline-block;
  min-height: 300px;
  margin: 60px 0;
}
@media (max-width: 768px) {
  .sidebar {
    margin-top: 0;
  }
}
.sidebar .generic {
  transition: all 0.4s ease;
  height: auto;
  margin: 0px 0px 30px 0px;
  position: relative;
  transform: scale(1);
  width: 270px;
  max-width: 100%;
  vertical-align: top;
}
.sidebar .generic:hover {
  transform: scale(1.1);
}
.sidebar .generic .tag {
  background-color: #3A6E8D;
  color: white;
  display: inline-block;
  font-size: 16px;
  margin-left: 10px;
  padding: 10px;
  position: relative;
  text-transform: uppercase;
  width: auto;
  z-index: 5;
}
.sidebar .generic .image-holder {
  background-size: cover;
  height: 170px;
  position: absolute;
  top: 15px;
  width: 100%;
  z-index: 0;
}
.sidebar .generic .list-content {
  background-color: #EEEEEE;
  margin: 140px auto 0px;
  padding: 20px;
  position: relative;
  width: 250px;
  max-width: 100%;
  z-index: 5;
}
.sidebar .generic .list-content p {
  color: #6AA2B8;
}
.sidebar .quick {
  background-color: #35647E;
  height: auto;
  margin: 0px 0px 30px 0px;
  position: relative;
  width: 450px;
  max-width: 100%;
  vertical-align: top;
}
@media (min-width: 1024px) {
  .sidebar .quick {
    width: 270px;
  }
}
.sidebar .quick.green {
  background-color: #75AC99;
}
.sidebar .quick .quick-links h5 {
  color: white;
  font-weight: 300;
  margin: 0px;
}
.sidebar .quick .quick-links li {
  border-bottom: 1px solid #8090A3;
  padding: 20px 40px 20px 20px;
  position: relative;
  cursor: pointer;
}
.sidebar .quick .quick-links li a {
  color: white;
  font-weight: 300;
  text-decoration: underline;
}
.sidebar .quick .quick-links li .arrow {
  transition: all 0.4s ease;
  background-image: url(images/button-arrow.svg);
  background-size: cover;
  height: 15px;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}
.sidebar .quick .quick-links li:hover a {
  text-decoration: none;
}
.sidebar .quick .quick-links li:hover .arrow {
  right: 15px;
}

@media (max-width: 1310px) {
  .sidebar {
    max-width: 100%;
  }
}
.single-events .sidebar .quick.green li:hover a {
  color: #c4e1d6;
}

.share-bar {
  background-color: #EEEEEE;
  padding: 10px;
  margin-bottom: 20px;
}
.share-bar h2 {
  font-size: 16px;
  line-height: 20px;
  text-transform: uppercase;
  font-weight: 700;
  color: #3C3C3C;
  margin-bottom: 10px;
}
.share-bar li {
  display: inline-block;
}
.share-bar li a svg {
  height: 40px;
  width: 40px;
}
.share-bar li a svg path {
  transition: all 0.4s ease;
}
.share-bar li:hover a svg path {
  fill: #002147;
}

@media (max-width: 768px) {
  .single-people .wrapper .container {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.single-people .wrapper .container .main-content {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 50px;
  width: calc(100% - 295px);
}
@media (max-width: 768px) {
  .single-people .wrapper .container .main-content {
    width: 100%;
    margin-top: 0;
  }
}
.single-people .wrapper .container .main-content h3 {
  text-transform: none;
  margin-bottom: 40px;
}
.single-people .wrapper .container .main-content .accordions {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 40px;
}
.single-people .wrapper .container .main-content .accordions .accordion-item {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
}
.single-people .wrapper .container .main-content .accordions .accordion-item.open .accordion-title::after {
  background-image: url(images/up-arrow.svg);
}
.single-people .wrapper .container .main-content .accordions .accordion-item::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #3C3C3C;
}
.single-people .wrapper .container .main-content .accordions .accordion-item .accordion-title {
  position: relative;
  padding-right: 35px;
  font-size: 20px;
  text-transform: uppercase;
  color: #3C3C3C;
  cursor: pointer;
}
.single-people .wrapper .container .main-content .accordions .accordion-item .accordion-title::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 30px;
  height: 30px;
  background-color: #6AA2B8;
  background-image: url(images/down-arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
}
.single-people .wrapper .container .main-content .accordions .accordion-item .accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: all ease 1s;
}
.single-people .wrapper .container .main-content .accordions .accordion-item .accordion-content li {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 2px;
  list-style: none;
  margin-left: 0;
}
.single-people .wrapper .container .main-content .accordions .accordion-item .accordion-content .citation, .single-people .wrapper .container .main-content .accordions .accordion-item .accordion-content .citation p {
  font-size: 16px;
  line-height: 1.2;
  color: #3C3C3C;
  font-weight: 300;
}
.single-people .wrapper .container .main-content .funded-research .splide {
  margin-bottom: 50px;
}
.single-people .wrapper .container .main-content .funded-research .splide ul li {
  margin-left: 0;
}
.single-people .wrapper .container .main-content .funded-research .splide ul li .research-project {
  height: 100%;
}
.single-people .wrapper .container .main-content .funded-research .splide ul li .research-project:hover .wrapper .link::after {
  width: 0;
}
.single-people .wrapper .container .main-content .funded-research .splide ul li .research-project .wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
  height: 100%;
  padding: 25px;
  margin-right: 25px;
  background-color: #F2F2F2;
}
.single-people .wrapper .container .main-content .funded-research .splide ul li .research-project .wrapper .title {
  font-size: 18px;
  font-weight: 500;
}
.single-people .wrapper .container .main-content .funded-research .splide ul li .research-project .wrapper .link {
  position: relative;
  text-transform: uppercase;
  width: -moz-fit-content;
  width: fit-content;
}
.single-people .wrapper .container .main-content .funded-research .splide ul li .research-project .wrapper .link::after {
  content: "";
  position: absolute;
  bottom: -2.5px;
  left: 0;
  height: 1px;
  width: 100%;
  background-color: #3C3C3C;
  transition: all ease 0.5s;
}
.single-people .wrapper .container .main-content .funded-research .splide ul li .research-project a.wrapper {
  text-decoration: none;
  color: #3C3C3C;
}
.single-people .wrapper .container .main-content .funded-research .splide .splide__pagination {
  margin-bottom: -20px;
  transform: translateY(100%) translateX(-12.5px);
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
}
.single-people .wrapper .container .main-content .funded-research .splide .splide__pagination .splide__pagination__page {
  border: solid 1px #6AA2B8;
  background-color: transparent;
  transform: scale(1.4);
}
.single-people .wrapper .container .main-content .funded-research .splide .splide__pagination .splide__pagination__page.is-active {
  background-color: #6AA2B8;
}
.single-people .wrapper .container .sidebar {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 50px;
}
.single-people .wrapper .container .sidebar .doctoral-applications {
  padding: 25px;
  background-color: #EDEDED;
}
@media (max-width: 768px) {
  .single-people .wrapper .container .sidebar {
    width: 100%;
  }
}
.single-people .wrapper .container .sidebar h5 {
  text-transform: none;
  font-weight: 500;
}
.single-people .wrapper .container .sidebar .subjects-taught .subjects {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 25px;
}
.single-people .wrapper .container .sidebar .subjects-taught .subjects .subject {
  position: relative;
  line-height: 1.5;
}
.single-people .wrapper .container .sidebar .subjects-taught .subjects .subject::after {
  content: "";
  position: absolute;
  bottom: -12.5px;
  left: 0;
  height: 2px;
  width: 100%;
  background-color: #F2F2F2;
}
.single-people .wrapper .container .sidebar .related-news .news {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 25px;
}
.single-people .wrapper .container .sidebar .related-news .news .news-item {
  position: relative;
  line-height: 1.5;
}
.single-people .wrapper .container .sidebar .related-news .news .news-item::after {
  content: "";
  position: absolute;
  bottom: -12.5px;
  left: 0;
  height: 2px;
  width: 100%;
  background-color: #F2F2F2;
}
.single-people .wrapper .container .sidebar .related-news .news .news-item a {
  color: #3C3C3C;
}
.single-people .wrapper .container .sidebar .students {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 25px;
}
.single-people .wrapper .container .sidebar .students .student a {
  display: -ms-flexbox;
  display: flex;
  gap: 12.5px;
  -ms-flex-align: center;
  align-items: center;
}
.single-people .wrapper .container .sidebar .students .student a img {
  width: 75px;
  height: 75px;
  border-radius: 100%;
  background-color: #3C3C3C;
  object-fit: cover;
}
.single-people .wrapper .container .sidebar .students .student a .details {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 5px;
}
.single-people .wrapper .container .sidebar .students .student a .details .name {
  font-weight: 500;
}
.single-people .wrapper .container .sidebar .students .student a .details .title {
  font-size: 14px;
}
.single-people .wrapper .container .sidebar .students .student a .details p {
  margin: 0;
}
.single-people .wrapper .container .sidebar .thesis .title {
  position: relative;
}
.single-people .wrapper .container .sidebar .thesis .title::after {
  content: "";
  position: absolute;
  bottom: -12.5px;
  left: 0;
  height: 2px;
  width: 100%;
  background-color: #F2F2F2;
}
.single-people .wrapper .container .sidebar .doctoral-applications {
  font-weight: lighter;
  color: #3C3C3C;
}
.single-people .wrapper .container .sidebar .doctoral-applications ul {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
  list-style: unset;
  margin-left: 20px;
}

.page-banner.plain {
  padding: 40px 0 60px;
}
.page-banner.plain ul.breadcrumbs a {
  text-decoration: underline;
}
.page-banner.plain ul.breadcrumbs a:hover {
  text-decoration: none;
}
.page-banner.plain.people {
  background-color: #35647E;
}
.page-banner.plain.news {
  background-color: #3A6E8D;
}
.page-banner.plain.blog {
  background-color: #118475;
}
.page-banner.plain.media {
  background-color: #6AA2B8;
}
.page-banner.plain.research_projects {
  background-color: #6AA2B8;
}
.page-banner.plain.events {
  background-color: #75AC99;
}
.page-banner.plain.search {
  background-color: #35647E;
}
.page-banner.plain.search p {
  color: white;
}
.page-banner.plain .container > h2 {
  font-size: 52px;
  line-height: 52px;
  text-transform: uppercase;
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
}
.page-banner.plain aside {
  height: 140px;
  width: 140px;
  display: inline-block;
  vertical-align: top;
  margin-right: 30px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.page-banner.plain aside.profile-picture {
  margin-bottom: 20px;
}
.page-banner.plain .person-content {
  display: inline-block;
  vertical-align: top;
  width: 600px;
  max-width: 100%;
}
.page-banner.plain .person-content h1 {
  position: relative;
  top: 0;
  transform: none;
  margin-bottom: 20px;
}
.page-banner.plain .person-content p {
  color: white;
  font-size: 16px;
  line-height: 20px;
  font-weight: 200;
  margin-bottom: 16px;
}
.page-banner.plain .person-content p strong {
  font-weight: 600;
}
.page-banner.plain .person-content p em {
  font-style: italic;
}
.page-banner.plain .person-content p ul {
  list-style-type: disc;
  list-style-position: inside;
}
.page-banner.plain .person-content p ol {
  list-style-type: decimal;
  list-style-position: inside;
}
.page-banner.plain .person-content p ul ul, .page-banner.plain .person-content p ol ul {
  list-style-type: circle;
  list-style-position: inside;
  margin-left: 15px;
}
.page-banner.plain .person-content p ol ol, .page-banner.plain .person-content p ul ol {
  list-style-type: lower-latin;
  list-style-position: inside;
  margin-left: 15px;
}
.page-banner.plain .person-contact {
  display: inline-block;
  vertical-align: top;
}
.page-banner.plain .person-contact a {
  text-decoration: underline;
}
.page-banner.plain .person-contact a:hover {
  text-decoration: none;
}
.page-banner.plain .person-contact a[target=_BLANK] svg {
  margin-right: 10px;
}
.page-banner.plain .person-contact a[target=_BLANK] svg path {
  transition: all 0.4s ease;
}
.page-banner.plain .person-contact a[target=_BLANK]:hover {
  text-decoration: none;
}
.page-banner.plain .person-contact svg {
  height: 40px;
  width: 40px;
  display: inline-block;
  vertical-align: top;
}
.page-banner.plain .person-contact svg .phone_st0, .page-banner.plain .person-contact svg .email_st0 {
  transition: all 0.4s ease;
}
.page-banner.plain .person-contact li svg .phone_st0, .page-banner.plain .person-contact li svg .email_st0, .page-banner.plain .person-contact li svg .banab0 {
  fill: #3C3C3C;
}
.page-banner.plain .person-contact li svg .phone_st0:hover, .page-banner.plain .person-contact li svg .email_st0:hover, .page-banner.plain .person-contact li svg .banab0:hover {
  fill: #002147;
}
.page-banner.plain .person-contact p {
  display: inline-block;
  vertical-align: top;
  color: white;
  font-size: 16px;
  line-height: 20px;
  font-weight: 200;
  margin-bottom: 16px;
  margin-bottom: 10px;
  font-weight: 600;
}
.page-banner.plain .person-contact p strong {
  font-weight: 600;
}
.page-banner.plain .person-contact p em {
  font-style: italic;
}
.page-banner.plain .person-contact p ul {
  list-style-type: disc;
  list-style-position: inside;
}
.page-banner.plain .person-contact p ol {
  list-style-type: decimal;
  list-style-position: inside;
}
.page-banner.plain .person-contact p ul ul, .page-banner.plain .person-contact p ol ul {
  list-style-type: circle;
  list-style-position: inside;
  margin-left: 15px;
}
.page-banner.plain .person-contact p ol ol, .page-banner.plain .person-contact p ul ol {
  list-style-type: lower-latin;
  list-style-position: inside;
  margin-left: 15px;
}
.page-banner.plain .person-contact p a {
  display: block;
  font-weight: 100;
}
.page-banner.plain .person-contact .socials {
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
}
.page-banner.plain .person-contact .socials a.twitter {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background-color: #3C3C3C;
}
.page-banner.plain .person-contact .socials a.twitter:hover {
  background-color: #002147;
}
.page-banner.plain .person-contact .socials a.twitter svg {
  width: 20px;
  height: 20px;
}

.single-research h2 {
  font-size: 32px;
}
.single-research .people-listing {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.single-research > .container {
  margin: 25px auto;
}
.single-research .event-info-holder p {
  color: #6AA2B8;
  font-size: 16px;
  line-height: 20px;
  font-weight: 200;
  margin-bottom: 0px;
}
.single-research .event-info-holder p strong {
  color: #505050;
  font-size: 16px;
  line-height: 20px;
  font-weight: 200;
  margin-bottom: 0px;
}
.single-research .event-info-holder:last-of-type {
  margin-bottom: 16px;
}

@media (max-width: 768px) {
  .single-events .main-content {
    margin-top: 0;
  }
}
.single-events h1 {
  font-size: 30px;
  line-height: 35px;
}
.single-events .date {
  font-size: 24px;
  font-weight: bold;
}
.single-events .date span {
  font-weight: 100;
}

.single-deanery_digest {
  word-break: break-word;
}
.single-deanery_digest .page-banner {
  background-color: #3d9881;
}
.single-deanery_digest .page-banner .container {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12.5px;
  color: white;
}
.single-deanery_digest .page-banner .container h2 {
  color: white;
  margin-bottom: 12.5px;
}
.single-deanery_digest .page-banner .container p {
  font-size: 20px;
  font-weight: 200;
}
@media (max-width: 768px) {
  .single-deanery_digest .page-banner .container p {
    font-size: 18px;
  }
}
.single-deanery_digest .page-banner .container .date, .single-deanery_digest .page-banner .container .license {
  font-size: 20px;
}
.single-deanery_digest .page-banner .breadcrumbs {
  background-color: #1cad8a;
}
.single-deanery_digest .wrapper .container .main-content {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 25px;
}
.single-deanery_digest .wrapper .container .main-content .text-accordions {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 25px;
}
.single-deanery_digest .wrapper .container .main-content .text-accordions .text-accordion {
  position: relative;
  cursor: pointer;
}
.single-deanery_digest .wrapper .container .main-content .text-accordions .text-accordion.open .title::after {
  background-image: url(images/up-arrow.svg);
}
.single-deanery_digest .wrapper .container .main-content .text-accordions .text-accordion::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: black;
}
.single-deanery_digest .wrapper .container .main-content .text-accordions .text-accordion .title {
  position: relative;
  padding-right: 40px;
}
.single-deanery_digest .wrapper .container .main-content .text-accordions .text-accordion .title h3 {
  font-size: 24px;
  line-height: 1.5;
  text-transform: uppercase;
}
.single-deanery_digest .wrapper .container .main-content .text-accordions .text-accordion .title::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  background-color: #3d9881;
  background-image: url(images/down-arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
}
.single-deanery_digest .wrapper .container .main-content .text-accordions .text-accordion .text {
  max-height: 0;
  overflow: hidden;
  transition: all 1s ease;
}
.single-deanery_digest .wrapper .container .main-content h3 {
  text-transform: capitalize;
}
.single-deanery_digest .wrapper .container .main-content p {
  font-size: 20px;
  font-weight: 200;
  line-height: 1.3;
}
@media (max-width: 768px) {
  .single-deanery_digest .wrapper .container .main-content p {
    font-size: 18px;
  }
}
.single-deanery_digest .wrapper .container .main-content li {
  font-size: 20px;
  font-weight: 200;
  line-height: 1.3;
}
@media (max-width: 768px) {
  .single-deanery_digest .wrapper .container .main-content li {
    font-size: 18px;
  }
}
.single-deanery_digest .wrapper .container .sidebar {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 25px;
}
@media (max-width: 768px) {
  .single-deanery_digest .wrapper .container .sidebar {
    width: 100%;
  }
}
.single-deanery_digest .wrapper .container .sidebar img {
  max-width: 270px;
}
.single-deanery_digest .wrapper .container .sidebar .file-download {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12.5px;
}
@media (max-width: 768px) {
  .single-deanery_digest .wrapper .container .sidebar .file-download {
    display: none;
  }
}
.single-deanery_digest .wrapper .container .sidebar .file-download .file {
  background-color: #002046;
  text-align: center;
}
.single-deanery_digest .wrapper .container .sidebar .file-download .file a {
  display: block;
  width: 100%;
  padding: 12.5px;
  color: white;
}
.single-deanery_digest .wrapper .container .sidebar h5 {
  text-transform: capitalize;
  margin-bottom: 10px;
}
.single-deanery_digest .wrapper .container .sidebar ul {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
}
.single-deanery_digest .wrapper .container .sidebar ul li {
  list-style: disc;
  list-style-position: inside;
  font-weight: 200;
}
.single-deanery_digest .wrapper .container .sidebar ul li a {
  color: black;
  text-decoration: underline;
}
.single-deanery_digest .wrapper .container .sidebar ul li a:hover {
  text-decoration: none;
}
.single-deanery_digest .social-bar {
  background-color: #3d9881;
}

.digest-view.strip .container {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 25px;
}
.digest-view.strip .container .filters {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 25px;
  background-color: #3d9881;
  padding: 25px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}
.digest-view.strip .container .filters select {
  -ms-flex-positive: 1;
  flex-grow: 1;
  border-radius: 0;
  border: 0;
  background-color: white;
  font-size: 18px;
  padding: 12.5px;
  font-weight: 200;
  -webkit-appearance: none;
}
.digest-view.strip .container .filters form {
  display: -ms-flexbox;
  display: flex;
  gap: 12.5px;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.digest-view.strip .container .filters form input {
  padding: 12.5px;
  font-size: 18px;
  border: 0;
  height: 56px;
}
.digest-view.strip .container .filters form input.keyword {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.digest-view.strip .container .filters form input.submit {
  cursor: pointer;
  border-radius: 0;
  aspect-ratio: 1;
  background-color: #002046;
  background-image: url(images/search-icon-white.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: auto;
}
.digest-view.strip .container .filters .reset-filter {
  cursor: pointer;
  font-size: 22px;
  text-transform: uppercase;
  color: white;
  padding: 12.5px 25px;
  background-color: #002046;
}
.digest-view.strip .container .no-results {
  padding: 25px;
}
.digest-view.strip .container .no-results p {
  font-size: 18px;
}
.digest-view.strip .container .posts {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -moz-column-gap: 5%;
  column-gap: 5%;
  row-gap: 50px;
  margin-top: 25px;
}
.digest-view.strip .container .posts a {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 30%;
  background-color: white;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}
@media (max-width: 1170px) {
  .digest-view.strip .container .posts a {
    width: 47.5%;
  }
}
@media (max-width: 640px) {
  .digest-view.strip .container .posts a {
    width: 100%;
  }
}
.digest-view.strip .container .posts a:hover {
  text-decoration: none;
}
.digest-view.strip .container .posts a:hover .content .link {
  text-decoration: none;
}
.digest-view.strip .container .posts a:hover .content .link::after {
  transform: translateY(-40%) translateX(7.5px);
}
.digest-view.strip .container .posts a .tag {
  position: absolute;
  top: 0;
  left: 25px;
  padding: 10px;
  background-color: #1cad8a;
  color: white;
  text-transform: uppercase;
  transform: translateY(-50%);
}
.digest-view.strip .container .posts a .image img {
  width: 100%;
}
.digest-view.strip .container .posts a .content {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12.5px;
  padding: 25px;
  color: black;
}
.digest-view.strip .container .posts a .content .title h5 {
  margin-bottom: 0;
  text-transform: capitalize;
}
.digest-view.strip .container .posts a .content .text {
  font-weight: 200;
}
.digest-view.strip .container .posts a .content .link {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  color: white;
  text-transform: uppercase;
  text-decoration: underline;
  background-color: #3d9881;
  margin-top: 12.5px;
  padding: 12.5px 35px 12.5px 25px;
}
.digest-view.strip .container .posts a .content .link::after {
  content: "";
  position: absolute;
  right: 12.5px;
  top: 50%;
  transform: translateY(-40%);
  transition: all 0.5s ease;
  background-image: url(images/button-arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 12.5px;
  height: 12.5px;
}
.digest-view.strip .container .pagination li .page-numbers:hover {
  background-color: #1cad8a;
}

.form .nf-form-fields-required {
  display: none;
}
.form .nf-field-element input, .form .nf-field-element select, .form .nf-field-element textarea {
  background-color: #EEEEEE;
  border: 0px;
  font-size: 16px;
  height: 60px;
  padding-left: 20px;
  text-transform: uppercase;
  width: 100%;
}
.form .nf-field-label label {
  font-weight: 500;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.form .field-wrap input[type=button] {
  text-transform: uppercase;
  font-size: 16px;
  background-color: #6AA2B8;
  transition: all 0.4s ease;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 6px 20px;
  padding: 15px 45px 15px 20px;
  background-image: url(images/button-arrow.svg);
  color: white;
}
.form .field-wrap input[type=button]:hover {
  background-color: #3A6E8D;
  text-decoration: none;
  background-position: right 10px center;
}
.form .nf-after-field .nf-error-msg {
  margin-top: 15px;
}

.page-template-template-people-profile .burger-conteiner, .page-template-template-people-profile nav, .page-template-template-log-in .burger-conteiner, .page-template-template-log-in nav {
  display: none;
}

.form-holder {
  padding: 150px 0px 50px;
  width: 100%;
}
.form-holder .user-form {
  margin: 0px auto;
  max-width: 600px;
  width: 100%;
}
.form-holder .user-form h5 {
  color: #3A6E8D;
  margin-bottom: 70px;
  text-align: center;
}
.form-holder .user-form .error {
  color: red;
  display: block;
  font-weight: 500;
  margin-bottom: 30px;
  text-transform: uppercase;
}
.form-holder form .input-holder {
  margin-bottom: 20px;
}
.form-holder form .login-remember {
  display: none;
}
.form-holder form .login-submit {
  height: 90px;
}
.form-holder form input, .form-holder form select, .form-holder form textarea {
  background-color: #EEEEEE;
  border: 0px;
  font-size: 16px;
  height: 60px;
  padding-left: 20px;
  width: 100%;
}
.form-holder form input[type=checkbox] {
  height: 15px;
  margin: 20px 0px;
  width: 30px;
}
.form-holder form input[type=submit] {
  text-transform: uppercase;
  font-size: 16px;
  background-color: #6AA2B8;
  transition: all 0.4s ease;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 6px 20px;
  padding: 15px 45px 15px 20px;
  background-image: url(images/button-arrow.svg);
  color: white;
  font-weight: 500;
  margin-top: 30px;
  width: 130px;
}
.form-holder form input[type=submit]:hover {
  background-color: #3A6E8D;
  text-decoration: none;
  background-position: right 10px center;
}
.form-holder form input[type=submit].large {
  margin-top: 30px;
  width: 190px;
}
.form-holder form .button {
  text-transform: uppercase;
  font-size: 16px;
  background-color: #6AA2B8;
  transition: all 0.4s ease;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 6px 20px;
  padding: 15px 45px 15px 20px;
  background-image: url(images/button-arrow.svg);
  color: white;
  float: right;
  font-weight: 500;
  height: 60px;
  margin-top: 30px;
  padding: 20px 45px 15px 20px;
  width: 130px;
}
.form-holder form .button:hover {
  background-color: #3A6E8D;
  text-decoration: none;
  background-position: right 10px center;
}
.form-holder form .button-left {
  text-transform: uppercase;
  font-size: 16px;
  background-color: #3A6E8D;
  transition: all 0.4s ease;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 6px 20px;
  padding: 15px 45px 15px 20px;
  background-image: url(images/button-arrow.svg);
  color: white;
  float: left;
  height: 60px;
  font-weight: 500;
  margin-top: 30px;
  width: 170px;
  background-position: left 15px center;
  background-size: 6px 20px;
  padding: 20px 20px 15px 45px;
  background-image: url(images/button-arrow-left.svg);
}
.form-holder form .button-left:hover {
  background-color: #6AA2B8;
  text-decoration: none;
  background-position: right 10px center;
}
.form-holder form .button-left:hover {
  background-color: #3A6E8D;
  text-decoration: none;
  background-position: left 10px center;
}
.form-holder form label {
  display: block;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.strip.custom-tacticals .container a.button {
  text-transform: uppercase;
  font-size: 16px;
  background-color: #6AA2B8;
  transition: all 0.4s ease;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 6px 20px;
  padding: 15px 45px 15px 20px;
  background-image: url(images/button-arrow.svg);
  color: white;
}
.strip.custom-tacticals .container a.button:hover {
  background-color: #3A6E8D;
  text-decoration: none;
  background-position: right 10px center;
}
@media (max-width: 756px) {
  .strip.custom-tacticals .container a.button {
    right: 30px;
  }
}
.strip.custom-tacticals h2 {
  padding-right: 300px;
}
.strip.text-image {
  font-size: 0px;
  padding: 50px 0;
}
@media (min-width: 1024px) {
  .strip.text-image {
    padding: 70px 0;
  }
}
.strip.text-image .left {
  display: inline-block;
  padding-right: 50px;
  vertical-align: top;
  width: 50%;
}
.strip.text-image .left h3 {
  font-weight: 500;
  margin-bottom: 20px;
}
.strip.text-image .left img {
  width: 100%;
}
.strip.text-image .right {
  display: inline-block;
  padding-left: 20px;
  vertical-align: top;
  width: 50%;
}
.strip.text-image .right h5 {
  font-weight: 500;
  font-size: 24px;
  line-height: 28px;
  margin-bottom: 30px;
}
.strip.custom-tiles {
  padding: 50px 0 10px;
}
@media (min-width: 1024px) {
  .strip.custom-tiles {
    padding: 70px 0;
  }
}
.strip.custom-tiles h3 {
  color: #6AA2B8;
}
.strip.custom-tiles ul {
  margin-top: 55px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: left;
  justify-content: left;
}
@media (max-width: 992px) {
  .strip.custom-tiles ul {
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.strip.custom-tiles ul li {
  background-color: #FFF;
  border: 1px solid #EEEEEE;
  display: inline-block;
  margin: 0px 25px 50px 0px;
  padding: 20px 20px 60px;
  position: relative;
  vertical-align: top;
  width: 450px;
  max-width: 100%;
}
@media (min-width: 1024px) {
  .strip.custom-tiles ul li {
    width: 370px;
  }
}
.strip.custom-tiles ul li.image {
  background-color: transparent;
  border: 0px;
  display: inline-block;
  margin: 0px 25px 50px 0px;
  padding: 0px;
  position: relative;
}
@media (max-width: 756px) {
  .strip.custom-tiles ul li.image {
    margin: 0px 0px 50px 0px;
  }
}
.strip.custom-tiles ul li.image .image-holder {
  background-position: center;
  background-size: cover;
  height: 230px;
  position: absolute;
  width: 100%;
}
.strip.custom-tiles ul li.image .content-holder {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 25px;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background-color: white;
  border: 1px solid #EEEEEE;
  margin: 190px auto 0px;
  padding: 20px;
  position: relative;
  width: 450px;
  max-width: 90%;
}
@media (min-width: 1024px) {
  .strip.custom-tiles ul li.image .content-holder {
    width: 370px;
  }
}
.strip.custom-tiles ul li.image .content-holder h5 {
  margin: 0px;
  word-wrap: break-word;
}
.strip.custom-tiles ul li .tag {
  color: white;
  display: inline-block;
  font-size: 16px;
  left: 15px;
  padding: 10px;
  position: absolute;
  text-transform: uppercase;
  top: 0px;
  transform: translateY(-50%);
  width: auto;
}
.strip.custom-tiles ul li h5 {
  margin-top: 15px;
}
@media (min-width: 1310px) {
  .strip.custom-tiles ul li:nth-child(3n+3) {
    margin-right: 0px;
  }
}
.strip.custom-tiles ul li a {
  text-transform: uppercase;
  font-size: 16px;
  background-color: #6AA2B8;
  transition: all 0.4s ease;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 6px 20px;
  padding: 15px 45px 15px 20px;
  width: -moz-fit-content;
  width: fit-content;
  color: white;
  background-image: url(images/button-arrow.svg);
  transition: all 0.3s ease-in-out;
  text-decoration: underline;
}
.strip.custom-tiles ul li a:hover {
  background-color: #6AA2B8;
  text-decoration: none;
  background-position: right 10px center;
}
.strip.custom-tiles ul li a:hover {
  text-decoration: none;
  background-position-x: calc(100% - 9px);
}
.strip.latest-posts {
  padding: 70px 0px;
  font-size: 0px;
}
.strip.latest-posts li {
  word-break: break-word;
}
.strip.latest-posts li .tag {
  background-color: #6AA2B8;
}
.strip.latest-posts li .tag.project {
  background-color: #6AA2B8;
}
.strip.latest-posts li .tag.media {
  background-color: #6AA2B8;
}
.strip.latest-posts li .tag.blog {
  background-color: #6AA2B8;
}
.strip.latest-posts li .tag.news {
  background-color: #6AA2B8;
}
.strip.latest-posts li.events {
  transition: all 0.4s ease;
  background-color: white;
  border: 1px solid #EEEEEE;
  display: inline-block;
  height: auto;
  margin: 15px 30px 60px 0px;
  min-height: 370px;
  padding: 35px 50px 50px 20px;
  position: relative;
  transform: scale(1);
  width: 270px;
  vertical-align: top;
}
.strip.latest-posts li.events:hover {
  transform: scale(1.1);
}
.strip.latest-posts li.events .tag {
  background-color: #6AA2B8;
  color: white;
  display: inline-block;
  font-size: 16px;
  margin: -50px 0px 20px 0px;
  padding: 10px;
  position: absolute;
  text-transform: uppercase;
  width: auto;
}
.strip.latest-posts li.events .date img, .strip.latest-posts li.events .location img {
  display: inline-block;
  margin-right: 15px;
  vertical-align: top;
}
.strip.latest-posts li.events .date p, .strip.latest-posts li.events .location p {
  color: #6AA2B8;
  display: inline-block;
  width: 160px;
}
.strip.latest-posts li.latest-post {
  cursor: pointer;
  min-height: 481px;
  width: 270px;
  border: 1px solid #EEEEEE;
  display: inline-block;
  margin: 15px 30px 60px 0px;
  transition: all 0.4s ease;
  position: relative;
}
.strip.latest-posts li.latest-post .tag.news {
  color: white;
  display: inline-block;
  font-size: 16px;
  margin: -18px 0px 20px 20px;
  padding: 10px;
  position: absolute;
  text-transform: uppercase;
  width: auto;
}
.strip.latest-posts li.latest-post:hover {
  transform: scale(1.1);
}
.strip.latest-posts li.latest-post .image-holder {
  height: 200px;
  background-size: cover;
  background-position: center center;
}
.strip.latest-posts li.latest-post .list-content {
  padding: 20px;
}
.strip.latest-posts li.post {
  transition: all 0.4s ease;
  display: inline-block;
  height: auto;
  margin: 0px 30px 40px 0px;
  min-height: 370px;
  position: relative;
  transform: scale(1);
  width: 270px;
  vertical-align: top;
}
.strip.latest-posts li.post:first-of-type {
  width: 570px;
  position: relative;
}
.strip.latest-posts li.post:first-of-type h5 {
  font-size: 22px;
  line-height: 24px;
  text-transform: uppercase;
  font-weight: 700;
  color: #3C3C3C;
  margin-bottom: 35px;
}
.strip.latest-posts li.post:first-of-type .image-holder {
  height: 100%;
}
.strip.latest-posts li.post:first-of-type .list-content {
  bottom: -30px;
  height: auto;
  left: 10px;
  margin: 0px;
  position: absolute;
  margin-top: 100px;
}
@media (min-width: 768px) {
  .strip.latest-posts li.post:first-of-type .list-content {
    margin-top: 40px;
    max-width: 260px;
  }
}
.strip.latest-posts li.post:first-of-type:hover {
  transform: scale(1.05);
}
.strip.latest-posts li.post:hover {
  transform: scale(1.1);
}
.strip.latest-posts li.post .tag {
  color: white;
  display: inline-block;
  font-size: 16px;
  margin-left: 10px;
  padding: 10px;
  position: relative;
  text-transform: uppercase;
  width: auto;
  z-index: 5;
}
.strip.latest-posts li.post .image-holder {
  background-size: cover;
  height: 170px;
  position: absolute;
  top: 15px;
  width: 100%;
  z-index: 0;
}
.strip.latest-posts li.post .list-content {
  background-color: white;
  border: 1px solid #EEEEEE;
  margin: 140px auto 0px;
  padding: 20px;
  position: relative;
  z-index: 5;
}
.strip.latest-posts li.post .list-content.curated p {
  color: #3C3C3C;
}
.strip.latest-posts li.post .list-content p {
  color: #6AA2B8;
}
@media (min-width: 1311px) {
  .strip.latest-posts li:nth-child(3) {
    margin: 15px 0px 40px 0px;
  }
}
.strip.latest-posts li:nth-child(7) {
  margin: 15px 0px 40px 0px;
}
.strip.highlight-section {
  padding-top: 30px;
}
.strip.highlight-section .wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 1170px;
  max-width: 90%;
  margin: 20px auto;
  gap: 5%;
}
@media (max-width: 756px) {
  .strip.highlight-section .wrapper {
    gap: 10%;
  }
}
.strip.highlight-section .wrapper a:hover {
  text-decoration: none;
}
.strip.highlight-section .wrapper .container {
  -ms-flex: 40%;
  flex: 40%;
  margin-bottom: 5%;
  height: unset;
  background-color: #6AA2B8;
  transition: all 0.3s ease-in-out;
  padding: 0;
  cursor: pointer;
}
@media (max-width: 756px) {
  .strip.highlight-section .wrapper .container {
    -ms-flex: 80%;
    flex: 80%;
    margin-bottom: 10%;
  }
}
.strip.highlight-section .wrapper .container:hover .image p {
  text-decoration: none;
}
.strip.highlight-section .wrapper .container a {
  width: 100%;
}
.strip.highlight-section .wrapper .container .image p {
  color: white;
  position: absolute;
  right: 0px;
  top: 180px;
  min-width: 175px;
  background-color: #002147;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: bold;
  transition: all 0.4s ease;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 6px 20px;
  padding: 15px 45px 15px 20px;
  background-image: url(images/button-arrow.svg);
  margin: 20px 0 0;
  display: inline-block;
  text-decoration: underline;
}
.strip.highlight-section .wrapper .container h3 {
  color: white;
}
.strip.highlight-section .wrapper .container p {
  color: white;
  font-size: 18px;
}
.strip.highlight-section .wrapper .container:hover {
  background-color: #3A6E8D;
}
.strip.highlight-section .wrapper .container img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}
.strip.highlight-section .wrapper .container .text-wrapper {
  padding: 20px;
}
.strip.text-video {
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
  padding: 100px 150px;
  background-color: #FAFAFA;
  margin-top: 75px;
}
@media (max-width: 1700px) {
  .strip.text-video {
    padding: 50px 5%;
  }
}
@media (max-width: 1310px) {
  .strip.text-video {
    gap: 50px;
  }
}
@media (max-width: 768px) {
  .strip.text-video {
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    gap: 0;
    margin-top: 0;
  }
}
.strip.text-video.right {
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
@media (max-width: 768px) {
  .strip.text-video.right {
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}
.strip.text-video .video {
  position: relative;
  width: 50%;
  margin-bottom: -125px;
  transform: translateY(-125px);
  padding-top: 28.125%;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
@media (max-width: 768px) {
  .strip.text-video .video {
    width: 100%;
    margin-bottom: 0;
    transform: unset;
    padding-top: 56.25%;
  }
}
.strip.text-video .video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.strip.text-video .text {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: center;
  justify-content: center;
  width: 50%;
}
@media (max-width: 768px) {
  .strip.text-video .text {
    width: 100%;
  }
}
.strip.text-video .text h3 {
  text-transform: none;
}

.text-image.mstext.single .left {
  width: 100%;
}
.text-image.mstext.double .left {
  width: 70%;
}
.text-image.mstext.double .right {
  width: 30%;
}
.text-image.mstext.double .right .text-container {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
}

.strip.video-section {
  padding: 70px 0;
}

.page-banner {
  background-size: cover;
  position: relative;
  width: 100%;
}
.page-banner.short {
  height: 300px;
}
.page-banner.large {
  height: 500px;
}
.page-banner .overlay {
  background-color: rgba(0, 0, 0, 0.3);
  height: 100%;
  position: absolute;
  width: 100%;
}
.page-banner .container {
  height: 100%;
}
.page-banner .container h1 {
  color: white;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.banner {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row-reverse;
  flex-flow: row-reverse;
  height: -moz-max-content;
  height: max-content;
}
@media (max-width: 1024px) {
  .banner {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: column;
    flex-flow: column;
  }
}
.banner .page-banner-home {
  background-size: cover;
  position: relative;
  width: 50%;
  height: auto;
}
@media (max-width: 1024px) {
  .banner .page-banner-home {
    width: 100%;
    height: 300px;
  }
}
.banner .page-banner-home .overlay {
  height: 100%;
  position: absolute;
  width: 100%;
}
.banner .page-banner-content {
  width: 50%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: column;
  flex-flow: column;
  padding: 100px 150px;
  background-color: #6AA2B8;
}
@media (max-width: 1700px) {
  .banner .page-banner-content {
    padding: 50px 5%;
  }
}
@media (max-width: 1024px) {
  .banner .page-banner-content {
    width: 100%;
  }
}
@media (max-width: 782px) {
  .banner .page-banner-content {
    padding: 25px 5%;
  }
}
.banner .page-banner-content .page-banner-title {
  font-size: 45px;
  text-transform: none;
  color: white;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.5;
}
@media (max-width: 1600px) {
  .banner .page-banner-content .page-banner-title {
    font-size: 40px;
  }
}
@media (max-width: 1024px) {
  .banner .page-banner-content .page-banner-title {
    font-size: 35px;
  }
}
@media (max-width: 782px) {
  .banner .page-banner-content .page-banner-title {
    font-size: 30px;
  }
}
.banner .page-banner-content .page-banner-text p {
  margin: 0;
  font-size: 18px;
  line-height: 30px;
  font-weight: 500;
  padding: 0;
  color: white;
  margin-bottom: 25px;
}
@media (max-width: 1024px) {
  .banner .page-banner-content .page-banner-text p {
    font-size: 16px;
  }
}
.banner .page-banner-content .page-banner-link {
  background-color: #002147;
  width: -moz-max-content;
  width: max-content;
  padding: 15px 25px;
}
.banner .page-banner-content .page-banner-link a .page-banner-link-text {
  color: white;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 18px;
}
.banner .page-banner-content .page-banner-link a .page-banner-link-text:hover {
  text-decoration: underline;
}
@media (max-width: 1024px) {
  .banner .page-banner-content .page-banner-link a .page-banner-link-text {
    font-size: 16px;
  }
}

.breadcrumbs {
  background-color: #6AA2B8;
  bottom: 0px;
  color: white;
  left: 0px;
  padding: 12px;
  position: absolute;
  min-height: 40px;
  width: 870px;
  max-width: 100%;
}
@media (max-width: 756px) {
  .breadcrumbs .breadcrumbs {
    padding: 10px;
  }
}
.breadcrumbs a {
  text-decoration: underline;
}
.breadcrumbs a:hover {
  text-decoration: none;
}
.breadcrumbs span a {
  color: white;
}

.filter-bar.people {
  background-color: #35647E;
}
.filter-bar.event {
  padding: 25px 0;
}
@media (max-width: 769px) {
  .filter-bar.event {
    margin-top: -100px;
    margin-bottom: 50px;
  }
}
.filter-bar.event form {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 25px;
  -ms-flex-align: end;
  align-items: end;
}
@media (max-width: 520px) {
  .filter-bar.event form {
    -ms-flex-flow: column;
    flex-flow: column;
    -ms-flex-align: start;
    align-items: start;
  }
}
.filter-bar.event form .filter {
  max-width: 100%;
}
@media (max-width: 520px) {
  .filter-bar.event form .filter {
    width: 100%;
  }
}
.filter-bar.event form .filter label {
  max-width: 100%;
}
.filter-bar.event form .filter label h5 {
  margin-bottom: 15px;
  font-size: 20px;
  color: #EEEEEE;
  font-weight: normal;
}
@media (max-width: 520px) {
  .filter-bar.event form .filter label h5 {
    font-size: 15px;
    margin-bottom: 8px;
  }
}
.filter-bar.event form input {
  max-width: 100%;
  height: 50px;
  padding: 10px 20px;
  font-size: 18px;
  text-transform: uppercase;
  border: none !important;
}
@media (max-width: 520px) {
  .filter-bar.event form input {
    height: 35px;
    padding: 0 10px;
    font-size: 15px;
    width: 100%;
  }
}
.filter-bar.event form input.submit {
  background-color: #FFF !important;
  font-weight: normal !important;
  color: black !important;
}
@media (max-width: 520px) {
  .filter-bar.event form input.submit {
    width: -moz-fit-content;
    width: fit-content;
  }
}
.filter-bar.event form input.submit:hover {
  text-decoration: underline;
  cursor: pointer;
}
.filter-bar.event form .buttons {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 25px;
}
.filter-bar.event form .buttons .button {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 50px;
  background: #3C3C3C;
  padding: 10px 20px;
}
@media (max-width: 520px) {
  .filter-bar.event form .buttons .button {
    height: 35px;
  }
}
.filter-bar.event form .buttons .button a {
  font-size: 18px;
  color: white;
}
@media (max-width: 520px) {
  .filter-bar.event form .buttons .button a {
    font-size: 15px;
  }
}
.filter-bar.events {
  background-color: #75AC99;
}
.filter-bar.post {
  background-color: #3A6E8D;
}
.filter-bar.research {
  background-color: #35647E;
}
.filter-bar .filters-button {
  display: block;
  font-size: 18px;
  color: white;
  font-weight: 500;
  margin-bottom: 0;
}
.filter-bar .filters-button:hover {
  cursor: pointer;
}
@media (min-width: 1024px) {
  .filter-bar .filters-button {
    display: none;
  }
}
@media (max-width: 756px) {
  .filter-bar ul.filters {
    padding-bottom: 30px;
  }
}
.filter-bar .container {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: column-reverse;
  flex-flow: column-reverse;
}
.filter-bar .filters {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 12.5px;
  padding: 50px 0;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media (min-width: 601px) {
  .filter-bar .filters {
    row-gap: 25px;
  }
}
.filter-bar .filters li {
  width: 30%;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
@media (max-width: 900px) {
  .filter-bar .filters li {
    width: 45%;
  }
}
@media (max-width: 600px) {
  .filter-bar .filters li {
    width: 100%;
  }
}
.filter-bar .filters li.search-filter form {
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.filter-bar .filters li.search-filter input[type=text] {
  display: inline-block;
}
.filter-bar .filters li.search-filter input[type=submit] {
  display: inline-block;
}
.filter-bar .filters li.reset-filter {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin: 0;
}
.filter-bar .filters li.reset-filter h5 {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 150px;
  height: 50px;
  margin-bottom: 0;
  padding: 10px 20px;
  background-color: #6AA2B8;
  font-weight: 500;
  cursor: pointer;
}
@media (max-width: 600px) {
  .filter-bar .filters li.reset-filter h5 {
    width: 100%;
  }
}
.filter-bar .filters li h5 {
  color: white;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 8px;
}
@media (min-width: 1310px) {
  .filter-bar .filters li h5 {
    font-size: 20px;
    margin-bottom: 15px;
  }
}
.filter-bar .filters li select,
.filter-bar .filters li input[type=text] {
  border-radius: 0px;
  border: 0px;
  padding-left: 10px;
  font-size: 18px;
  height: 50px;
  width: 100%;
  text-overflow: ellipsis;
  -webkit-appearance: none;
  cursor: pointer;
}
.filter-bar .filters input[type=submit] {
  -webkit-appearance: none;
  background-image: url(images/search-button.svg);
  border: none;
  font-size: 0px;
  height: 50px;
  width: 50px;
  min-width: 50px;
  padding: 0;
  vertical-align: bottom;
  cursor: pointer;
}

.tile-container {
  padding: 50px 0px 0px;
}
@media (min-width: 1024px) {
  .tile-container {
    padding: 80px 0px 0px;
  }
}
.tile-container.events {
  background-color: #EEEEEE;
  padding: 0;
}
.tile-container .no-results {
  font-size: 25px;
  text-align: center;
}
@media (max-width: 900px) {
  .tile-container .no-results {
    font-size: 20px;
  }
}

.tiles {
  font-size: 0px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.tiles a {
  text-decoration: none;
}
.tiles.people {
  padding-top: 20px;
  text-align: left;
}
.tiles.people li {
  transition: all 0.4s ease;
  background-color: #EEEEEE;
  display: inline-block;
  height: 300px;
  margin: 0px 0px 60px 0px;
  padding: 20px 40px 40px 20px;
  position: relative;
  transform: scale(1);
  vertical-align: top;
  width: 450px;
  max-width: 100%;
}
@media (min-width: 1024px) {
  .tiles.people li {
    height: 330px;
    padding: 20px 50px 50px 20px;
    width: 270px;
  }
}
@media (max-width: 992px) {
  .tiles.people li {
    width: 45%;
    gap: 15px;
  }
}
@media (max-width: 576px) {
  .tiles.people li {
    width: 100%;
  }
}
.tiles.people li:hover {
  transform: scale(1.1);
}
.tiles.people li .profile-image {
  background-size: cover;
  height: 120px;
  margin: -40px 0px 20px;
  width: 120px;
}
.tiles.people li .email {
  display: none;
}
.tiles.people li .phone {
  display: none;
}
.tiles.people li a {
  color: #6AA2B8;
  display: block;
  font-size: 16px;
  margin-bottom: 10px;
  text-transform: uppercase;
  word-break: break-word;
}
.tiles.people li a:hover {
  text-decoration: none;
}
.tiles.people li a.read-more {
  text-transform: uppercase;
  font-size: 16px;
  background-color: transparent;
  transition: all 0.4s ease;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 6px 20px;
  padding: 15px 45px 15px 20px;
  background-image: url(images/button-arrow-light-blue.svg);
  margin-bottom: 0px;
  padding-left: 0px;
  position: relative;
}
.tiles.people li a.read-more:hover {
  background-color: transparent;
  text-decoration: none;
  background-position: right 10px center;
}
@media (min-width: 615px) {
  .tiles.people li {
    margin-right: 30px;
  }
  .tiles.people li:nth-of-type(2n) {
    margin-right: 0;
  }
}
@media (min-width: 1024px) {
  .tiles.people li:nth-of-type(2n) {
    margin-right: 30px;
  }
  .tiles.people li:nth-of-type(3n) {
    margin-right: 0;
  }
  .tiles.people li:nth-of-type(4n+4) {
    margin-right: 30px;
  }
}
@media (min-width: 1310px) {
  .tiles.people li:nth-of-type(2n) {
    margin-right: 30px;
  }
  .tiles.people li:nth-of-type(3n) {
    margin-right: 30px;
  }
  .tiles.people li:nth-of-type(4n+4) {
    margin-right: 0px;
  }
}
.tiles.events {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 50px 0;
}
.tiles.events .full, .tiles.events .wrapper {
  width: calc(25% - 25px);
  margin: 12.5px;
  padding: 20px;
  background-color: white;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}
@media (max-width: 1310px) {
  .tiles.events .full, .tiles.events .wrapper {
    width: calc(33% - 25px);
  }
}
@media (max-width: 768px) {
  .tiles.events .full, .tiles.events .wrapper {
    width: calc(50% - 25px);
  }
}
@media (max-width: 600px) {
  .tiles.events .full, .tiles.events .wrapper {
    width: 100%;
    margin: 12.5px 0;
  }
}
.tiles.research {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.tiles.research.owl-carousel {
  padding: 50px 0;
}
.tiles.research.owl-carousel .owl-item li {
  width: unset;
}
.tiles.research li {
  transition: all 0.4s ease;
  background-color: white;
  border: 1px solid #EEEEEE;
  display: inline-block;
  height: auto;
  margin: 0px 30px 60px 0px;
  padding: 40px 40px 40px 20px;
  position: relative;
  transform: scale(1);
  max-width: 100%;
  vertical-align: top;
  width: calc(25% - 25px);
  gap: 15px;
}
@media (max-width: 992px) {
  .tiles.research li {
    width: calc(50% - 35px);
    gap: 15px;
  }
}
@media (max-width: 767px) {
  .tiles.research li {
    width: 100%;
  }
}
.tiles.research li:hover {
  transform: scale(1.1);
}
.tiles.research li .tag {
  background-color: #6AA2B8;
  color: white;
  display: inline-block;
  font-size: 16px;
  left: 10px;
  margin: 0px 0px 20px 0px;
  padding: 10px;
  position: absolute;
  text-transform: uppercase;
  top: -10px;
  width: auto;
}
.tiles.research li .date img,
.tiles.research li .location img {
  display: inline-block;
  margin-right: 15px;
  vertical-align: top;
}
.tiles.research li .date p,
.tiles.research li .location p {
  color: #6AA2B8;
  display: inline-block;
  width: 160px;
}
.tiles.research li:nth-of-type(4n+4) {
  margin-right: 0px;
}
.tiles.post {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.tiles.post li {
  transition: all 0.4s ease;
  display: inline-block;
  height: auto;
  margin: 0px 30px 40px 0px;
  position: relative;
  transform: scale(1);
  width: 270px;
  vertical-align: top;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: column;
  flex-flow: column;
}
@media (max-width: 756px) {
  .tiles.post li {
    width: 450px;
    max-width: 100%;
  }
}
.tiles.post li:hover {
  transform: scale(1.1);
}
.tiles.post li .tag {
  background-color: #3A6E8D;
  color: white;
  display: inline-block;
  font-size: 16px;
  margin-left: 10px;
  padding: 10px;
  position: relative;
  text-transform: uppercase;
  width: auto;
  z-index: 10;
  -ms-flex-item-align: start;
  align-self: flex-start;
  top: -25px;
}
.tiles.post li .tag.blog {
  background-color: #118475;
}
.tiles.post li .tag.media {
  background-color: #6AA2B8;
}
.tiles.post li .tag.news {
  background-color: #3A6E8D;
}
.tiles.post li.image .image-holder {
  background-size: cover !important;
  background-position: center !important;
  display: block;
  height: 170px;
  position: absolute;
  top: 15px;
  width: 100%;
  z-index: 0;
}
.tiles.post li.image .list-content {
  margin: 140px auto 0px;
  padding: 20px;
}
.tiles.post li .image-holder {
  display: none;
}
.tiles.post li .list-content {
  background-color: #EEEEEE;
  border: 1px solid #FFF;
  margin: -20px auto 0px;
  padding: 30px 20px 20px;
  position: relative;
  width: 250px;
  z-index: 5;
  -ms-flex: 1;
  flex: 1;
}
@media (max-width: 756px) {
  .tiles.post li .list-content {
    width: 450px;
    max-width: 100%;
  }
}
.tiles.post li .list-content p {
  word-break: break-word;
}
.tiles.post li .list-content p.post-date {
  color: #6AA2B8;
}
@media (min-width: 1310px) {
  .tiles.post li:nth-of-type(4n+4) {
    margin-right: 0px;
  }
}

.pagination {
  padding-bottom: 70px;
}
.pagination.post {
  padding-top: 20px;
}
.pagination.events {
  background-color: #EEEEEE;
}
.pagination .page-numbers {
  text-align: center;
}
.pagination .page-numbers li {
  display: inline-block;
  vertical-align: top;
}
.pagination .page-numbers li .page-numbers {
  transition: all 0.4s ease;
  background-color: #3C3C3C;
  color: white;
  display: block;
  font-size: 15px;
  height: 30px;
  line-height: 30px;
  transform: scale(1);
  width: 30px;
}
@media (min-width: 520px) {
  .pagination .page-numbers li .page-numbers {
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 20px;
  }
}
.pagination .page-numbers li .page-numbers:hover {
  background-color: #6AA2B8;
  text-decoration: none;
  transform: scale(1.1);
}
.pagination .page-numbers li .page-numbers.current {
  background-color: #6AA2B8;
}
.pagination .page-numbers li .page-numbers.current:hover {
  transform: scale(1);
}
.pagination .page-numbers li .page-numbers.next {
  background-color: transparent;
  background-image: url(images/button-arrow-light-blue.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 25%;
  font-size: 0px;
}
.pagination .page-numbers li .page-numbers.next:hover {
  margin-left: 10px;
}
.pagination .page-numbers li .page-numbers.prev {
  background-color: transparent;
  background-image: url(images/button-arrow-light-blue.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 25%;
  font-size: 0px;
  transform: rotate(180deg);
}
.pagination .page-numbers li .page-numbers.prev:hover {
  margin-right: 10px;
}

.video-section {
  margin-bottom: 50px;
}
.video-section .video-listing {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.video-section .video-listing .video-item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: calc(33% - 25px);
  margin: 12.5px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}
@media (max-width: 1310px) {
  .video-section .video-listing .video-item {
    width: calc(50% - 25px);
  }
}
@media (max-width: 600px) {
  .video-section .video-listing .video-item {
    width: 100%;
    margin: 12.5px 0;
  }
}
.video-section .video-listing .video-item .video {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-top: 56.25%;
}
.video-section .video-listing .video-item .video iframe {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.video-section .video-listing .video-item .video-description {
  margin: 25px;
  text-align: center;
}

.post-type-toggle {
  background-color: #D2D2D2;
  height: 70px;
  width: 100%;
}

.search-container {
  padding: 70px 0px;
}
.search-container .results {
  color: #969696;
  margin-bottom: 20px;
}
.search-container .search-listing {
  margin-bottom: 50px;
}
.search-container .search-listing li {
  border-top: 1px solid #D2D2D2;
  padding: 50px 0px 20px;
  position: relative;
}
.search-container .search-listing li .tag {
  background-color: #6AA2B8;
  color: white;
  display: inline-block;
  font-size: 16px;
  left: 0px;
  padding: 10px;
  position: absolute;
  text-transform: uppercase;
  top: 0px;
  width: auto;
}
.search-container .search-listing li .search-title {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
}
.search-container .search-listing li p {
  margin: 0px;
}
.search-container .search-listing .pagination {
  padding-bottom: 0px;
}

.page-template-page-research-centre-landing .microsite .container {
  padding: 60px;
}
.page-template-page-research-centre-landing .centrename .container {
  padding-top: 30px;
  padding-bottom: 10px;
}
.page-template-page-research-centre-landing .custom-tacticals .container {
  max-width: 1190px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 25px;
  padding: 0 30px 30px 30px;
}
.page-template-page-research-centre-landing .custom-tacticals .container .strip-header {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 25px;
  gap: 25px;
}
.page-template-page-research-centre-landing .custom-tacticals .container .strip-header h2 {
  padding: 0;
  margin-bottom: 0;
}
.page-template-page-research-centre-landing .custom-tacticals .container .strip-header a {
  height: -moz-fit-content;
  height: fit-content;
}
.page-template-page-research-centre-landing .custom-tacticals .container.it-is-a-carousel .owl-carousel {
  padding-top: 0;
  padding-bottom: 0;
}
@media (max-width: 600px) {
  .page-template-page-research-centre-landing .custom-tacticals .container.it-is-a-carousel .owl-carousel {
    padding: 0 25px;
  }
}
.page-template-page-research-centre-landing .custom-tacticals .container.it-is-a-carousel .owl-carousel .owl-stage-outer {
  width: 100%;
  overflow: hidden;
}
.page-template-page-research-centre-landing .custom-tacticals .container.it-is-a-carousel .owl-carousel .owl-stage-outer .owl-stage .owl-item {
  margin: 37.5px 0;
}
.page-template-page-research-centre-landing .custom-tacticals .container.it-is-a-carousel .owl-carousel .owl-stage-outer .owl-stage .owl-item li {
  width: unset;
}
@media (max-width: 600px) {
  .page-template-page-research-centre-landing .custom-tacticals .container.it-is-a-carousel .owl-carousel .owl-stage-outer .owl-stage .owl-item li {
    margin: 0 12.5px;
  }
}
@media (max-width: 600px) {
  .page-template-page-research-centre-landing .custom-tacticals .container.it-is-a-carousel .owl-navigation-people .prev {
    margin-left: 15px;
  }
}
@media (max-width: 600px) {
  .page-template-page-research-centre-landing .custom-tacticals .container.it-is-a-carousel .owl-navigation-people .next {
    margin-right: 15px;
  }
}
.page-template-page-research-centre-landing .custom-tacticals .container .tiles {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding-bottom: 4%;
}
@media (max-width: 600px) {
  .page-template-page-research-centre-landing .custom-tacticals .container .tiles {
    padding-top: 8%;
  }
}
.page-template-page-research-centre-landing .custom-tacticals .container .tiles .image-holder {
  width: 100%;
}
.page-template-page-research-centre-landing .custom-tacticals .container .tiles > li {
  display: block;
  width: calc(25% - 25px);
  margin: 12.5px;
  background-color: white;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}
@media (max-width: 1310px) {
  .page-template-page-research-centre-landing .custom-tacticals .container .tiles > li {
    width: calc(33% - 25px);
  }
}
@media (max-width: 768px) {
  .page-template-page-research-centre-landing .custom-tacticals .container .tiles > li {
    width: calc(50% - 25px);
  }
}
@media (max-width: 600px) {
  .page-template-page-research-centre-landing .custom-tacticals .container .tiles > li {
    width: 100%;
    margin: 12.5px 0;
  }
}
.page-template-page-research-centre-landing .custom-tacticals .container .tiles > li .location p {
  word-wrap: break-word;
}
.page-template-page-research-centre-landing .custom-tacticals .container .tiles .h5 {
  width: 100%;
}
.page-template-page-research-centre-landing .custom-tacticals .container .tiles.research {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  row-gap: 25px;
}
.page-template-page-research-centre-landing .custom-tacticals .container .tiles.research .inside h5 {
  margin-top: 25px;
}
.page-template-page-research-centre-landing .custom-tacticals .container .tiles.post {
  row-gap: 25px;
}
.page-template-page-research-centre-landing .custom-tacticals .container .tiles.post .inside {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: center;
  align-items: center;
  box-shadow: none;
  width: calc(25% - 40px);
  padding: 0;
  margin: 20px;
}
.page-template-page-research-centre-landing .custom-tacticals .container .tiles.post .inside.image {
  margin-top: 10px;
}
.page-template-page-research-centre-landing .custom-tacticals .container .tiles.post .inside.image .tag {
  top: -15px;
}
@media (max-width: 1310px) {
  .page-template-page-research-centre-landing .custom-tacticals .container .tiles.post .inside {
    width: calc(33% - 40px);
  }
}
@media (max-width: 1024px) {
  .page-template-page-research-centre-landing .custom-tacticals .container .tiles.post .inside {
    width: calc(50% - 40px);
  }
}
@media (max-width: 600px) {
  .page-template-page-research-centre-landing .custom-tacticals .container .tiles.post .inside {
    width: 100%;
    margin: 12.5px 0;
  }
}
.page-template-page-research-centre-landing .custom-tacticals .container .tiles.post .inside .tag {
  position: absolute;
}
.page-template-page-research-centre-landing .custom-tacticals .container .tiles.post .inside .image-holder {
  position: unset;
  background-color: black;
  width: calc(20px + 100%);
}
.page-template-page-research-centre-landing .custom-tacticals .container .tiles.post .inside .list-content {
  width: 100%;
  margin: -12.5px 0 auto 0;
}

.traction-strip {
  padding: 50px 100px;
}
@media (max-width: 1310px) {
  .traction-strip {
    padding: 50px;
  }
}
@media (max-width: 500px) {
  .traction-strip {
    padding: 25px;
  }
}
.traction-strip.banner {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  flex-direction: row;
  padding: 0;
  background: linear-gradient(90deg, #0D3769 0%, #4886BA 100%);
}
@media (max-width: 992px) {
  .traction-strip.banner {
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.traction-strip.banner .left {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 25px;
  width: 40%;
  padding: 50px 0 50px 100px;
}
@media (max-width: 1310px) {
  .traction-strip.banner .left {
    padding-left: 50px;
  }
}
@media (max-width: 992px) {
  .traction-strip.banner .left {
    width: 100%;
    padding-bottom: 25px;
    padding-right: 50px;
  }
}
@media (max-width: 768px) {
  .traction-strip.banner .left {
    padding: 25px;
  }
}
.traction-strip.banner .left .logo img {
  max-width: 200px;
}
.traction-strip.banner .left .text h3 {
  color: white;
  text-transform: capitalize;
}
.traction-strip.banner .left .text p {
  color: white;
}
.traction-strip.banner .left .link {
  width: -moz-fit-content;
  width: fit-content;
  padding: 15px 25px 15px 15px;
  background-color: #002147;
}
.traction-strip.banner .left .link a {
  display: block;
  position: relative;
  color: white;
  text-transform: uppercase;
}
.traction-strip.banner .left .link a::after {
  content: "";
  position: absolute;
  right: -17.5px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background-image: url(images/button-arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.traction-strip.banner .right {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
  align-items: end;
  width: 60%;
}
@media (max-width: 992px) {
  .traction-strip.banner .right {
    width: 100%;
  }
}
.traction-strip.banner .right svg {
  width: 100%;
  height: auto;
}
.traction-strip.text-image {
  display: -ms-flexbox;
  display: flex;
  gap: 100px;
}
@media (max-width: 1310px) {
  .traction-strip.text-image {
    gap: 50px;
  }
}
@media (max-width: 768px) {
  .traction-strip.text-image {
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    gap: 0;
  }
}
.traction-strip.text-image.right {
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
@media (max-width: 768px) {
  .traction-strip.text-image.right {
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}
.traction-strip.text-image .image {
  width: 50%;
}
@media (max-width: 768px) {
  .traction-strip.text-image .image {
    width: 100%;
  }
}
.traction-strip.text-image .image img {
  height: auto;
  width: 100%;
  aspect-ratio: 1.7;
  object-fit: cover;
}
.traction-strip.text-image .text {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: center;
  justify-content: center;
  width: 50%;
}
@media (max-width: 768px) {
  .traction-strip.text-image .text {
    width: 100%;
  }
}
.traction-strip.text-image .text h3 {
  text-transform: none;
}
.traction-strip.text-video {
  display: -ms-flexbox;
  display: flex;
  gap: 100px;
  background-color: #FAFAFA;
  margin-top: 75px;
}
@media (max-width: 1310px) {
  .traction-strip.text-video {
    gap: 50px;
  }
}
@media (max-width: 768px) {
  .traction-strip.text-video {
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    gap: 0;
    margin-top: 0;
  }
}
.traction-strip.text-video.right {
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
@media (max-width: 768px) {
  .traction-strip.text-video.right {
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}
.traction-strip.text-video .video {
  position: relative;
  width: 50%;
  margin-bottom: -125px;
  transform: translateY(-125px);
  padding-top: 28.125%;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
@media (max-width: 768px) {
  .traction-strip.text-video .video {
    width: 100%;
    margin-bottom: 0;
    transform: unset;
    padding-top: 56.25%;
  }
}
.traction-strip.text-video .video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.traction-strip.text-video .text {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: center;
  justify-content: center;
  width: 50%;
}
@media (max-width: 768px) {
  .traction-strip.text-video .text {
    width: 100%;
  }
}
.traction-strip.text-video .text h3 {
  text-transform: none;
}
.traction-strip.featured-content-row {
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (max-width: 1310px) {
  .traction-strip.featured-content-row {
    gap: 25px;
  }
}
@media (max-width: 768px) {
  .traction-strip.featured-content-row {
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 12.5px;
  }
}
.traction-strip.featured-content-row .featured-content {
  width: 33%;
}
@media (max-width: 768px) {
  .traction-strip.featured-content-row .featured-content {
    width: 100%;
  }
}
.traction-strip.featured-content-row .featured-content .image img {
  width: 100%;
  aspect-ratio: 1.4;
  object-fit: cover;
}
.traction-strip.featured-content-row .featured-content .info {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 5px;
  width: 85%;
  margin: auto;
  padding: 20px;
  background: linear-gradient(90deg, #0D3769 0%, #4886BA 100%);
  transform: translateY(-50px);
}
.traction-strip.featured-content-row .featured-content .info h4 {
  text-transform: none;
  color: white;
}
@media (max-width: 992px) {
  .traction-strip.featured-content-row .featured-content .info h4 {
    font-size: 24px;
    line-height: 24px;
  }
}
.traction-strip.featured-content-row .featured-content .info a {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  color: white;
  padding-right: 25px;
}
.traction-strip.featured-content-row .featured-content .info a::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background-image: url(images/button-arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.vacancy-list {
  padding-top: 20px;
}
.vacancy-list .vacancy {
  background-color: #EEEEEE;
  margin-bottom: 30px;
  padding: 20px;
}
.vacancy-list .vacancy h5 {
  margin-bottom: 16px;
}
.vacancy-list .vacancy p {
  font-size: 16px;
}
.vacancy-list .vacancy p:first-of-type {
  font-size: 16px;
  line-height: 20px;
}
.vacancy-list .vacancy p:last-of-type {
  margin-bottom: 25px;
}
.vacancy-list .vacancy span {
  color: #6AA2B8;
  display: block;
  margin-bottom: 16px;
}
.vacancy-list .vacancy .button {
  text-transform: uppercase;
  font-size: 16px;
  background-color: #6AA2B8;
  transition: all 0.4s ease;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 6px 20px;
  padding: 15px 45px 15px 20px;
  background-image: url(images/button-arrow.svg);
  color: white;
}
.vacancy-list .vacancy .button:hover {
  background-color: #3A6E8D;
  text-decoration: none;
  background-position: right 10px center;
}

.error-page {
  background-color: #75AC99;
  padding: 150px 0px;
}
.error-page h1 {
  color: white;
  line-height: 60px;
  margin-bottom: 50px;
}
.error-page h3 {
  color: #002147;
  margin-bottom: 20px;
}
.error-page p {
  color: #002147;
  font-size: 26px;
  line-height: 35px;
  margin-bottom: 50px;
  width: 550px;
}
.error-page a {
  text-transform: uppercase;
  font-size: 16px;
  background-color: #002147;
  transition: all 0.4s ease;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 6px 20px;
  padding: 15px 45px 15px 20px;
  background-image: url(images/button-arrow.svg);
  color: white;
  text-decoration: underline;
}
.error-page a:hover {
  background-color: #6AA2B8;
  text-decoration: none;
  background-position: right 10px center;
}

.social-bar {
  background-color: #6AA2B8;
  min-height: 90px;
  padding: 22px 0px;
}
.social-bar h5 {
  color: #FFF;
  display: inline-block;
  font-weight: 100;
  margin: 10px 5px;
  vertical-align: top;
}
@media (min-width: 520px) {
  .social-bar h5 {
    margin: 10px 20px;
  }
}
.social-bar .social-icons {
  display: inline-block;
}
.social-bar .social-icons li {
  display: inline-block;
  margin-right: 5px;
}
@media (min-width: 520px) {
  .social-bar .social-icons li {
    margin-right: 20px;
  }
}
.social-bar .social-icons li img {
  width: 44px;
  height: auto;
  opacity: 1;
  transition: 0.4s;
}
.social-bar .social-icons li img:hover {
  opacity: 0.9;
}

footer {
  padding: 60px 0 25px;
}
footer .container {
  display: -ms-flexbox;
  display: flex;
  -ms-flex: 30%;
  flex: 30%;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 1170px;
  max-width: 100%;
}
@media (max-width: 756px) {
  footer .container {
    -ms-flex: 90%;
    flex: 90%;
    -ms-flex-pack: left;
    justify-content: left;
  }
}
@media (max-width: 756px) {
  footer .container .links {
    width: 100%;
  }
}
footer .container .links .main-footer-nav > ul {
  -moz-column-count: 2;
  column-count: 2;
}
footer .container .links .main-footer-nav > ul > li {
  padding: 2px 10px;
}
@media (max-width: 756px) {
  footer .container .links .main-footer-nav > ul > li {
    padding: 0;
  }
}
footer .container .nav-header {
  color: white;
  font-weight: bold;
  line-height: 30px;
}
footer .container .footer-logos div {
  background-color: #002046;
  height: 100px;
  width: 100px;
  margin-right: 10px;
  display: inline-block;
  background-position: center;
  background-size: 100px;
  background-repeat: no-repeat;
  position: relative;
}
footer .container .footer-logos div .content-holder {
  background-color: transparent;
  bottom: 10px;
  height: 23px;
  left: 5px;
  margin-right: 0px;
  position: absolute;
  width: 90px;
}
footer .container .footer-logos div p {
  color: #FFF;
  font-size: 16px;
  font-weight: 700;
  margin: 0px;
  text-transform: uppercase;
}
footer .container .footer-logos div p.small-text {
  font-size: 9px;
  font-weight: 500;
  line-height: 9px;
}
footer .container .footer-logos div.oxford-uni-logo {
  background-image: url(images/uni-logo.svg);
}
footer .container .footer-logos div.dept-logo {
  border: 1px solid #FFF;
}
footer .container .links a {
  text-decoration: underline;
  color: white;
  line-height: 25px;
}
footer .container .links a:hover {
  text-decoration: none;
}
footer .container .links .nav-header {
  padding: 2px 10px;
}
@media (max-width: 756px) {
  footer .container .links .nav-header {
    padding: 2px 0;
  }
}
footer .container .links .sub-menu {
  display: none;
}
footer .container .contact p {
  color: white;
}
footer .container .contact a {
  text-decoration: underline;
  color: white;
}
footer .container .contact a:hover {
  text-decoration: none;
}
footer .social-media-footer {
  float: right;
}
footer .social-media-footer li {
  display: inline-block;
  margin-right: 5px;
}
footer .social-media-footer li:last-of-type {
  margin-right: 0;
}
footer .social-media-footer li a svg path, footer .social-media-footer li a svg polygon, footer .social-media-footer li a svg circle {
  transition: all 0.4s ease;
}
footer .social-media-footer li a:hover svg path, footer .social-media-footer li a:hover svg polygon, footer .social-media-footer li a:hover svg circle {
  fill: white;
}
footer .bottom-bar {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 25px;
  overflow: hidden;
  margin: 25px auto;
  width: 1170px;
  max-width: 90%;
}
@media (max-width: 756px) {
  footer .bottom-bar {
    margin: auto;
    padding: 0 30px;
    max-width: 100%;
  }
}
footer .bottom-bar p.bottom-bar-copyright {
  float: left;
  color: #8090A3;
  font-size: 14px;
}
footer .bottom-bar .footer-nav {
  float: left;
}
@media (min-width: 1311px) {
  footer .bottom-bar .footer-nav {
    float: right;
  }
}
footer .bottom-bar .footer-nav li {
  display: block;
}
@media (min-width: 756px) {
  footer .bottom-bar .footer-nav li {
    display: inline-block;
  }
}
footer .bottom-bar .footer-nav li:first-of-type a {
  margin-left: 0;
}
footer .bottom-bar .footer-nav li:last-of-type a {
  margin-left: 0;
}
footer .bottom-bar .footer-nav li a {
  margin: 10px;
  font-weight: 100;
  color: #8090A3;
  transition: all 0.4s ease;
  font-size: 14px;
  text-decoration: underline;
}
@media (max-width: 756px) {
  footer .bottom-bar .footer-nav li a {
    margin: 0;
  }
}
footer .bottom-bar .footer-nav li a:hover {
  color: white;
  text-decoration: none;
}
footer .bottom-bar .footer-nav li:last-of-type a {
  margin-right: 0;
}

@media (max-width: 768px) {
  h2 {
    font-size: 32px;
    line-height: 38px;
    margin-bottom: 20px;
  }
  h3 {
    font-size: 30px;
    line-height: 36px;
  }
}
@media (max-width: 1100px) {
  header {
    display: block;
    width: 100%;
    z-index: 999;
    top: 0px;
  }
  header h2 {
    font-size: 35px;
  }
}
@media (max-width: 768px) {
  .search-bar {
    position: relative;
    top: 0px;
    width: 100%;
  }
  .search-bar svg {
    display: none;
  }
  .search-bar .container {
    padding-left: 0px;
    padding-right: 0px;
    font-weight: 100;
    font-style: italic;
  }
  .search-bar form {
    width: 100%;
  }
  .search-bar input[type=submit] {
    padding: 10px 40px 10px 15px;
  }
  .search-bar input[type=text] {
    font-family: "sofia-pro";
    padding-left: 30px;
  }
  header {
    margin-bottom: 100px;
    margin-top: 0px;
    padding-top: 7px;
    margin-top: -20px;
  }
  header h2 {
    font-size: 18px;
    display: none !important;
  }
  header .logos {
    position: absolute;
    left: 20px;
  }
  header .logos a div {
    width: 80px;
    height: 80px;
    background-size: cover;
  }
}
.search-icon.main-menu-small {
  display: none;
}

nav.main-menu-small {
  display: none;
}

@media (max-width: 1200px) {
  nav.main-menu a {
    font-size: 14px;
  }
}
.click-box {
  position: absolute;
  background-color: transparent;
  right: 0;
  width: 60px;
  height: 45px;
  top: 0;
  display: block;
  cursor: pointer;
}
@media (min-width: 768px) {
  .click-box {
    z-index: -1;
  }
}

.main-menu-small li {
  position: relative;
}

@media (max-width: 768px) {
  nav.main-menu {
    display: none;
  }
  .main-menu-small.search-icon {
    position: absolute;
    display: block;
    cursor: pointer;
    right: 80px;
    top: 30px;
    width: 20px;
    height: 20px;
    z-index: 999;
  }
  .main-menu-small.search-icon svg {
    width: 20px;
    height: 20px;
    transition: all 0.4s ease;
  }
  .main-menu-small.search-icon svg circle, .main-menu-small.search-icon svg line {
    stroke: rgb(60, 60, 60);
  }
  .main-menu-small.search-icon:hover svg {
    transform-origin: middle middle;
    transform: scale(1.1);
  }
  .main-menu-small.search-icon:hover svg circle, .main-menu-small.search-icon:hover svg line {
    stroke: #002147;
  }
  .main-menu-small.search-icon.active svg {
    transform-origin: middle middle;
    transform: scale(1.1);
  }
  .main-menu-small.search-icon.active svg circle, .main-menu-small.search-icon.active svg line {
    stroke: #002147;
  }
  .burger-conteiner {
    width: 40px;
    height: 40px;
    position: absolute;
    right: 20px;
    top: 25px;
    font-size: 0px;
    z-index: 999;
    transition: all 0.4s ease;
    cursor: pointer;
  }
  .burger-conteiner .line {
    width: 32px;
    height: 3px;
    background-color: rgb(60, 60, 60);
    transform-origin: middle middle;
    transition: all 0.4s cubic-bezier(1, -0.04, 0.25, 1);
  }
  .burger-conteiner:hover .line {
    background-color: #6AA2B8;
  }
  .burger-conteiner .line1, .burger-conteiner .line2, .burger-conteiner .line3 {
    margin-top: 5px;
  }
  .burger-conteiner.active .line {
    background-color: #002147;
  }
  .burger-conteiner.active .line1 {
    transform: translateY(8px) rotate(405deg);
  }
  .burger-conteiner.active .line2 {
    transform-origin: middle middle;
    transform: scale(0);
  }
  .burger-conteiner.active .line3 {
    transform: translateY(-8px) rotate(135deg);
  }
  nav.main-menu-small {
    position: relative;
    display: none;
    z-index: 999;
    width: 100%;
  }
  nav.main-menu-small ul:not(.sub-menu) > li a {
    transition: all 0.4s ease;
  }
  nav.main-menu-small ul {
    width: 100%;
    padding: 0px;
    margin: 0px;
    background-color: black;
  }
  nav.main-menu-small ul.sub-menu {
    display: none;
  }
  nav.main-menu-small ul li {
    list-style: none;
    display: block;
    line-height: 45px;
  }
  nav.main-menu-small ul li:hover > a {
    box-shadow: inset 3px 2px 33px -7px rgba(0, 118, 169, 0.5);
  }
  nav.main-menu-small ul li:first-child a {
    border-top: 1px solid rgb(80, 80, 80);
  }
  nav.main-menu-small ul li.menu-item-has-children > a {
    background-image: url(images/down-arrow-white-menu.svg);
    background-position: right 20px center;
    background-repeat: no-repeat;
    background-size: 18px 18px;
  }
  nav.main-menu-small ul li.current-menu-item.menu-item-has-children > a {
    background-color: rgb(244, 114, 8);
    background-color: #6AA2B8;
    background-image: url(images/down-arrow-white-menu.svg);
  }
  nav.main-menu-small ul li a {
    text-decoration: none;
    display: block;
    background-color: rgb(60, 60, 60);
    padding-left: 30px;
    color: white;
    text-transform: uppercase;
    font-family: "sofia-pro";
    font-size: 16px;
    border-left: 1px solid black;
    border-right: 1px solid black;
    border-bottom: 1px solid rgb(80, 80, 80);
  }
  nav.main-menu-small ul li a .m-touch-btn {
    width: 60px;
    height: 46px;
    display: inline-block;
    position: absolute;
    right: 0px;
    z-index: 1000;
  }
  nav.main-menu-small ul li.current-menu-item > a {
    background-color: rgb(244, 114, 8);
    background-color: #6AA2B8;
  }
  nav.main-menu-small ul ul {
    padding: 0px;
    border: none;
    display: block;
    position: relative;
    width: 100%;
  }
  nav.main-menu-small ul ul li:first-child a {
    border-top: none;
  }
  nav.main-menu-small ul ul li a {
    border-top: 1px solid rgb(90, 90, 90);
    border-bottom: none;
    padding-left: 35px;
    background-color: rgb(80, 80, 80);
    display: block;
    background-position: right 20px center;
    background-repeat: no-repeat;
    background-size: 18px 18px;
  }
  nav.main-menu-small ul ul li.current-menu-item a {
    background-image: url(images/right-arrow-white-menu.svg);
  }
}
@media (max-width: 1100px) {
  .strip.text-image {
    position: relative;
  }
  .strip.text-image .container {
    position: relative;
  }
  .strip.text-image .container .left {
    width: 100%;
    display: block;
    position: relative;
    padding-right: 0;
  }
  .strip.text-image .container .left img {
    width: auto;
    max-width: 100%;
    padding: 20px 0 !important;
    position: relative;
    display: block;
    padding: 0;
    margin: auto;
  }
  .strip.text-image .container .right {
    width: 100%;
    display: block;
    position: relative;
    padding-left: 0;
  }
  .strip.text-image .container .right .text-content {
    overflow: scroll;
  }
}
@media (max-width: 756px) {
  .strip.carousel .content-holder {
    opacity: 0;
    width: 100%;
    height: 300px;
  }
  .strip.carousel .owl-navigation-half {
    top: 116px;
  }
  .strip.carousel .left-carousel {
    display: block;
    width: 100% !important;
  }
  .strip.carousel .left-carousel h1 {
    font-size: 30px;
    line-height: 34px;
    margin-bottom: 20px;
    color: #3C3C3C;
    width: 100%;
  }
  .strip.carousel .left-carousel p {
    font-size: 16px;
    line-height: 20px;
    color: #3C3C3C;
    width: 100%;
  }
  .strip.carousel .right-carousel {
    display: block;
    width: 100%;
    opacity: 1;
    position: absolute;
    top: 0px;
    pointer-events: none;
  }
  .owl-carousel .owl-nav {
    width: 70%;
    display: block;
    top: 116px;
    display: none;
  }
  .owl-carousel .owl-dots {
    top: 260px;
    z-index: 99;
  }
  .owl-carousel .owl-item {
    min-height: 610px;
  }
  .owl-carousel .owl-item .half .carousel-image {
    background-size: cover !important;
    background-position: center !important;
    height: 300px;
    position: relative;
    width: 100%;
  }
  .owl-carousel .owl-item .half .content {
    position: absolute;
    top: 460px !important;
    width: 100%;
  }
  .owl-carousel .owl-item .half .content .container {
    padding: 0 30px;
  }
  .owl-carousel .owl-item .half .content .container h1 {
    width: 100%;
  }
  .owl-carousel .owl-item .half .content .container p {
    width: 100%;
  }
  .strip.carousel .full-carousel .owl-item {
    min-height: 700px;
  }
  .strip.carousel .full-carousel .owl-item > div {
    background-size: cover;
    background-position: center top;
    height: 300px;
    min-height: 300px;
  }
  .strip.carousel .full-carousel .owl-item > div .container .content {
    bottom: 0;
    width: 90%;
    top: 300px;
  }
  .strip.carousel .full-carousel .container {
    padding: 0 30px;
  }
  .strip.carousel .full-carousel h1 {
    font-size: 30px;
    line-height: 34px;
    margin-bottom: 20px;
    color: #3C3C3C;
  }
  .strip.carousel .full-carousel p {
    font-size: 16px;
    line-height: 20px;
    color: #3C3C3C;
  }
  .strip.carousel .full-carousel .owl-nav {
    width: 70%;
    display: block;
    top: 116px;
  }
  .strip.carousel .full-carousel .owl-dots {
    top: 260px;
  }
}
@media (max-width: 756px) {
  .strip.latest-posts li.events,
  .strip.latest-posts li.latest-post {
    margin: 30px 0;
    min-height: 240px;
    min-height: 240px;
    padding: 35px 20px 20px 20px;
    width: 100%;
  }
  .strip.latest-posts li.post:first-of-type .list-content {
    left: 5%;
    width: 90%;
  }
  .strip.latest-posts {
    padding: 30px 0px;
  }
  .strip.latest-posts .latest-posts {
    width: auto;
  }
  .strip.latest-posts .latest-posts li .post:first-of-type {
    width: auto;
  }
  .strip.latest-posts .latest-posts li .post:first-of-type .image-holder {
    width: 60%;
  }
  .strip.latest-posts li.post:first-of-type {
    width: 320px;
  }
}
@media (max-width: 756px) {
  .custom-tacticals .container h2 {
    padding-top: 22%;
    padding-right: 0;
  }
  .custom-tacticals .container .owl-navigation-people {
    width: 100%;
  }
  .strip.custom-tacticals {
    padding: 40px 0 0;
  }
  .strip.custom-tacticals li.curated {
    width: 450px;
    max-width: 100%;
    margin-right: 0;
  }
  .strip.custom-tacticals.center ul li {
    margin: 0px 0px 20px;
  }
}
@media (max-width: 756px) {
  footer .right {
    display: none;
  }
}
.kei-model-nav.small .knowledge-exchange-model {
  width: 50px;
  height: 50px;
  bottom: 20px;
  right: 20px;
  position: fixed;
  bottom: 20px;
  right: 20px;
  transition: width 0.4s ease;
  transition: height 0.4s ease;
  z-index: 999;
}
@media (min-width: 768px) {
  .kei-model-nav.small .knowledge-exchange-model {
    right: calc(50% - 285px);
  }
}
.kei-model-nav.small .knowledge-exchange-model:hover {
  cursor: pointer;
}
.kei-model-nav.small .knowledge-exchange-model.active {
  width: 513px;
  height: 320px;
  max-width: 90%;
  top: 50%;
  left: 50%;
  transition: width 0.4s ease;
  transition: height 0.4s ease;
  z-index: 999;
  transform: translateY(-50%) translateX(-50%);
}
@media (min-width: 756px) {
  .kei-model-nav.small .knowledge-exchange-model.active {
    height: 513px;
    right: calc(50% - 285px);
    left: auto;
    transform: translateY(-50%);
  }
}
.kei-model-nav.small .knowledge-exchange-model.active ul {
  list-style: none;
}
.kei-model-nav.small .knowledge-exchange-model.active ul li {
  transform: scale(1) translateX(-50%);
  margin: 0;
}
.kei-model-nav.small .knowledge-exchange-model.active ul li.scope, .kei-model-nav.small .knowledge-exchange-model.active ul li.attribution {
  transform: scale(1) translateY(-50%);
}
.kei-model-nav.small .knowledge-exchange-model ul {
  list-style: none;
}
.kei-model-nav.small .knowledge-exchange-model ul li {
  transform: scale(0) translateX(-50%);
  margin: 0;
}
.kei-model-nav.small .knowledge-exchange-model ul li.scope, .kei-model-nav.small .knowledge-exchange-model ul li.attribution {
  transform: translateY(-50%) scale(0);
}
.kei-model-nav .container {
  padding-top: 25px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (min-width: 1024px) {
  .kei-model-nav .container {
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}
.kei-model-nav .content {
  width: 100%;
}
@media (min-width: 1024px) {
  .kei-model-nav .content {
    max-width: 870px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.text-kei .main-content {
  padding: 35px 0;
}
@media (min-width: 756px) {
  .text-kei .main-content p:first-of-type {
    font-size: 16px;
    line-height: 20px;
    font-weight: 200;
    margin-bottom: 16px;
  }
}

.knowledge-exchange-model {
  width: 513px;
  height: 350px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  max-width: 100%;
}
@media (min-width: 400px) {
  .knowledge-exchange-model {
    height: 420px;
  }
}
@media (min-width: 520px) {
  .knowledge-exchange-model {
    height: 513px;
  }
}
.knowledge-exchange-model .scope {
  top: 50%;
  position: absolute;
  transform: translateY(-50%);
  left: 13.5%;
}
.knowledge-exchange-model .attribution {
  top: 50%;
  position: absolute;
  transform: translateY(-50%);
  right: 10.5%;
  text-align: right;
}
.knowledge-exchange-model .kem-copyright {
  position: absolute;
  right: 0;
  bottom: 0;
  text-align: right;
  width: 100%;
  font-size: 12px;
  color: #666666;
}
@media (min-width: 520px) {
  .knowledge-exchange-model .kem-copyright {
    font-size: 16px;
  }
}
.knowledge-exchange-model ul {
  width: 100%;
  padding-top: 100%;
  position: relative;
  background-image: url(http://www.education.ox.ac.uk/wordpress/wp-content/uploads/2015/07/diag_wordpress_2.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  list-style: none;
}
.knowledge-exchange-model ul li {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
}
.knowledge-exchange-model ul li a {
  color: white;
  font-size: 12px;
}
.knowledge-exchange-model ul li a:hover {
  cursor: pointer;
}
@media (min-width: 520px) {
  .knowledge-exchange-model ul li a {
    font-size: 16px;
  }
}
.knowledge-exchange-model ul li:nth-of-type(1) {
  top: 4%;
}
.knowledge-exchange-model ul li:nth-of-type(2) {
  top: 14.5%;
}
.knowledge-exchange-model ul li:nth-of-type(3) {
  top: 26%;
}
.knowledge-exchange-model ul li:nth-of-type(4) {
  top: 35.5%;
}
.knowledge-exchange-model ul li:nth-of-type(5) {
  top: 42%;
}
.knowledge-exchange-model ul li:nth-of-type(6) {
  top: 53.5%;
}
.knowledge-exchange-model ul li:nth-of-type(7) {
  top: 60%;
}
.knowledge-exchange-model ul li:nth-of-type(8) {
  top: 69%;
}
.knowledge-exchange-model ul li:nth-of-type(9) {
  top: 80%;
}
.knowledge-exchange-model ul li:nth-of-type(10) {
  top: 91%;
}

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