@import "https://fonts.googleapis.com/css2?family=Libre+Franklin:ital,wght@0,100..900;1,100..900&family=Roboto+Slab:wght@100..900&display=swap";

@font-face {
  font-family: "st-johns";
  src: url("../fonts/st-johns.eot?20375719");
  src:
    url("../fonts/st-johns.eot?20375719#iefix") format("embedded-opentype"),
    url("../fonts/st-johns.woff2?20375719") format("woff2"),
    url("../fonts/st-johns.woff?20375719") format("woff"),
    url("../fonts/st-johns.ttf?20375719") format("truetype"),
    url("../fonts/st-johns.svg?20375719#st-johns") format("svg");
  font-weight: normal;
  font-style: normal;
}

[class^="icon-"]:before,
[class*=" icon-"]:before {
  font-family: "st-johns";
  font-style: normal;
  font-weight: normal;
  speak: never;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: 0.2em;
  text-align: center;
  font-variant: normal;
  text-transform: none;
  line-height: 1em;
  margin-left: 0.2em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-arrow:before {
  content: "";
}

.icon-menu:before {
  content: "";
}

.icon-plus:before {
  content: "";
}

.icon-minus:before {
  content: "";
}

.icon-search:before {
  content: "";
}

.icon-close:before {
  content: "";
}

.icon-youtube:before {
  content: "";
}

.icon-x:before {
  content: "";
}

.icon-instagram:before {
  content: "";
}

.icon-facebook:before {
  content: "";
}

:root {
  --pri-color: #006341;
  --sec-color: #06aa39;
  --third-color: #7ac300;
  --black-color: #020202;
  --white-color: white;
  --off-white-color: #e7f7f1;
  --grey-color: #f2f2f2;
  --gold-color: #a59444;
  --dark-grey-color: #c1d3cc;
  --transition: all 0.5s;
  --plyr-color-main: #006341;
}

@keyframes color-change {
  0% {
    background-color: var(--sec-color);
  }

  50% {
    background-color: var(--pri-color);
  }

  100% {
    background-color: var(--sec-color);
  }
}

.has-afros-orange-color {
  color: var(--sec-color) !important;
}

.has-afros-blue-color {
  color: var(--pri-color) !important;
}

.banner {
  background-color: var(--pri-color);
  background-size: cover;
  background-position-y: initial;
  background-attachment: initial;
  background-repeat: no-repeat;
  height: 200px;
  margin: 0 0 20px 0;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
}

.banner .banner__overlay {
  background-color: rgba(13, 39, 83, 0.5);
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 1;
}

.banner .content {
  z-index: 2;
}

.banner h1 {
  color: var(--white-color);
  margin: 0;
  font-size: 2.5rem;
}

.banner p#breadcrumbs {
  color: var(--white-color);
  margin: 10px 0 0 0;
  font-size: 1.4rem;
}

.banner p#breadcrumbs a,
.banner p#breadcrumbs a:link,
.banner p#breadcrumbs a:visited {
  color: var(--white-color);
}

.banner p#breadcrumbs a:hover,
.banner p#breadcrumbs a:link:hover,
.banner p#breadcrumbs a:visited:hover {
  color: var(--sec-color);
}

.banner p#breadcrumbs span.breadcrumb_last {
  color: var(--white-color);
}

@media screen and (min-width: 768px) {
  .banner {
    background-position-y: center;
    background-attachment: fixed;
    height: 300px;
    margin: 0 0 50px 0;
  }

  .banner .content {
    padding: 0;
  }

  .banner h1 {
    font-size: 3.5rem;
  }
}

.slider-item {
  position: relative;
}

.slider-caption {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: #fff;
}

.slider-button {
  background-color: #007bff;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  text-decoration: none;
}

.news-category {
  background-color: var(--grey-color);
  padding: 40px 0;
}

figure.st-cards {
  background-color: var(--off-white-color);
  color: var(--black-color);
  position: relative;
  overflow: hidden;
  min-height: 560px;
  margin: 50px 0 0 0;
  width: 100%;
  text-align: left;
  font-size: 16px;
}

figure.st-cards .clamped-text {
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

figure.st-cards h3,
figure.st-cards p {
  margin: 0;
  padding: 0;
}

figure.st-cards h3 {
  margin-bottom: 10px;
  display: inline-block;
  font-weight: 600;
  color: #333;
  text-transform: uppercase;
}

figure.st-cards p {
  font-size: 0.9em;
  margin-bottom: 20px;
  line-height: 1.6em;
}

figure.st-cards p.date-category a {
  color: var(--sec-color);
  font-weight: 500;
}

figure.st-cards p.date-category a a:hover {
  color: var(--black-color);
}

figure.st-cards .excerpt {
  margin: 0 0 50px 0;
}

figure.st-cards .button {
  display: block;
  position: absolute;
  padding: 0;
  right: 0;
  bottom: 0;
  text-transform: capitalize;
}

figure.st-cards .button a {
  background-color: rgba(0, 0, 0, 0);
  border-radius: 0;
  color: var(--black-color);
  display: inline-block;
  font-size: 1em;
  font-weight: 400;
  padding: 10px 0 10px 20px;
  text-decoration: none;
  outline: 0;
  transition: var(--transition);
}

figure.st-cards .button a i {
  background-color: var(--sec-color);
  color: var(--white-color);
  padding: 12px 15px;
}

figure.st-cards .button a:hover {
  background-color: var(--sec-color);
  color: var(--white-color);
  cursor: pointer;
}

figure.st-cards .button a:hover i {
  background-color: var(--sec-color);
  color: var(--white-color);
}

figure.st-cards * {
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

figure.st-cards img {
  max-width: 100%;
  vertical-align: top;
  -webkit-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

figure.st-cards:hover img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

figure.st-cards figcaption {
  padding: 25px;
  position: relative;
}

.blog-card__latest {
  display: flex;
  background-size: cover;
  border-radius: 20px;
  box-shadow: 0px 2px 20px -5px rgba(123, 123, 123, 0.75);
  height: 100px;
  width: 100%;
  position: relative;
  margin-bottom: 20px;
  transition: var(--transition);
}

.blog-card__latest .blog-card__overlay {
  background-color: var(--pri-color);
  border-radius: 20px;
  position: absolute;
  height: 100%;
  width: 100%;
  transition: var(--transition);
  z-index: 1;
}

.blog-card__latest:hover .blog-card__overlay {
  background-color: rgba(0, 99, 65, 0.5);
}

.blog-card__latest .blog-card__post-date {
  background-color: var(--pri-color);
  color: var(--white-color);
}

.blog-card__latest .blog-card__content {
  display: flex;
  padding: 20px;
  flex-direction: column;
  justify-content: flex-end;
  z-index: 2;
}

.blog-card__latest .blog-card__content h1 {
  color: var(--white-color);
  margin: 0;
  font-size: 1.2em;
  line-height: 1em;
}

.blog-card__latest .blog-card__content .blog-card__date {
  color: var(--white-color);
  font-size: 1.4rem;
  padding: 1em 0;
  line-height: 1em;
}

.card-image {
  position: relative;
  display: inline-block;
  overflow: hidden;
  margin: 10px;
  min-width: 230px;
  max-width: 315px;
  width: 100%;
  border: 1px solid var(--dark-grey-color);
  color: var(--white-color);
  text-align: left;
  font-size: 16px;
  background: #000;
}

.card-image *,
.card-image:before,
.card-image:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.card-image img {
  max-width: 100%;
  backface-visibility: hidden;
  vertical-align: top;
}

.card-image:before,
.card-image:after {
  position: absolute;
  top: 20px;
  right: 20px;
  content: "";
  background-color: #fff;
  z-index: 1;
  opacity: 0;
  height: 0;
  width: 1px;
}

.card-image figcaption {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 15px 20px;
}

.card-image h3 {
  color: var(--white-color);
  margin: 0;
  font-size: 1.5em;
  font-weight: normal;
  opacity: 0;
}

.card-image a,
.card-image a:link,
.card-image a:visited {
  background-color: var(--pri-color);
  color: var(--white-color);
  position: absolute;
  padding: 5px 10px;
  bottom: 0;
  right: 0;
  z-index: 1;
}

.card-image a:hover,
.card-image a:link:hover,
.card-image a:visited:hover {
  background-color: var(--sec-color);
  color: var(--white-color);
}

.card-image:hover img,
.card-image.hover img {
  zoom: 1;
  filter: alpha(opacity=20);
  -webkit-opacity: 0.2;
  opacity: 0.2;
}

.card-image:hover img .card-image a,
.card-image:hover img .card-image a:link,
.card-image:hover img .card-image a:visited,
.card-image.hover img .card-image a,
.card-image.hover img .card-image a:link,
.card-image.hover img .card-image a:visited {
  color: var(--white-color);
}

.card-image:hover:before,
.card-image.hover:after {
  opacity: 1;
  transition-delay: 0.25s;
}

.card-image.hover:before,
.card-image.hover:after {
  height: 40px;
}

.card-image:hover h3 {
  opacity: 1;
  transition-delay: 0.3s;
}

.google-map iframe {
  border: 2px solid var(--grey-color);
  width: 100%;
  height: 540px;
}

.home footer.footer {
  margin: 0;
}

footer.footer {
  background-color: var(--pri-color);
  color: var(--white-color);
  padding: 50px 0 15px 0;
  margin: 50px 0 0 0;
}

footer.footer h3,
footer.footer h4 {
  color: var(--white-color);
}

footer.footer hr {
  margin: 30px 0 5px 0;
}

footer.footer p,
footer.footer ul li {
  color: var(--white-color);
  font-size: 14px;
}

footer.footer ul {
  padding: 0;
}

footer.footer ul li {
  list-style: none;
  padding: 0 0 15px 0;
}

footer.footer a,
footer.footer a:link,
footer.footer a:visited {
  color: var(--white-color);
}

footer.footer a:hover,
footer.footer a:link:hover,
footer.footer a:visited:hover {
  color: var(--sec-color);
  padding-left: 10px;
}

footer.footer p.copyright {
  margin: 20px 0 0 0;
}

footer.footer ul.social-media-nav {
  display: block;
  padding: 0;
  margin: 10px 0 0 0;
}

footer.footer ul.social-media-nav li {
  display: inline-block;
  padding: 0 10px;
}

footer.footer ul.social-media-nav a,
footer.footer ul.social-media-nav a:link,
footer.footer ul.social-media-nav a:visited {
  color: var(--white-color);
}

footer.footer ul.social-media-nav a:hover,
footer.footer ul.social-media-nav a:link:hover,
footer.footer ul.social-media-nav a:visited:hover {
  color: var(--third-color);
  padding-left: 0;
}

@media screen and (max-width: 768px) {
  footer .grid-section {
    gap: 0;
  }
}

.wpcf7 {
  margin: 0 0 30px 0;
}

.wpcf7 .content {
  width: 100%;
}

.wpcf7 .grid-section {
  gap: 0;
  row-gap: 0;
  column-gap: 30px;
}

.wpcf7 h2 {
  color: var(--sec-color);
  margin-top: 0;
}

.wpcf7 h3 {
  color: var(--black-color);
  font-size: 1.2em;
  margin: 0;
}

.wpcf7 label {
  color: var(--black-color);
  font-size: 1.5rem;
}

.wpcf7 .wpcf7-spinner {
  background-color: var(--sec-color);
  opacity: 1;
}

.wpcf7 .wpcf7-spinner::before {
  background-color: var(--white-color);
}

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="date"],
.wpcf7 select,
.wpcf7 textarea {
  background-color: var(--grey-color);
  border: none;
  border: 1px solid var(--black-color);
  box-shadow: none;
  color: var(--black-color);
  font-size: 16px;
  width: 100%;
  height: auto;
  padding: 12px;
  outline: 0;
}

.wpcf7 input[type="submit"] {
  background-color: var(--pri-color);
  border: none;
  border-radius: 10px !important;
  box-shadow: none;
  color: var(--white-color);
  cursor: pointer;
  display: inline-block;
  font-weight: 600 !important;
  padding: 15px 20px !important;
  outline: 0;
  text-align: center;
  text-decoration: none;
  white-space: normal;
  overflow-wrap: break-word;
  text-transform: uppercase;
  transition: var(--transition);
}

.wpcf7 input[type="submit"]:hover {
  background-color: var(--sec-color);
}

.wpcf7 form.sent .wpcf7-response-output {
  border-color: #3bac45;
  background-color: #3bac45;
  color: #fff;
  padding: 20px;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output {
  border-color: #f2b100;
  background-color: #f2b100;
  padding: 20px;
  margin: 20px 0;
}

@media screen and (min-width: 768px) {
  .grid-section {
    gap: 5px;
  }
}

:root {
  --white-color: white;
  --wrapper-padding-inline: 1rem;
  --wrapper-max-width: 60rem;
  --section-padding-block: 3rem;
}

.full-width-split-screen__bg {
  background-color: var(--white-color);
}

.full-width-split-screen {
  padding-block: 0;
  grid-template-columns: 1fr;
}

.full-width-split-screen h1 {
  margin: 0;
}

.full-width-split-screen h1:first-child {
  color: var(--third-color);
}

.full-width-split-screen > :not(img) {
  padding-block: var(--section-padding-block);
  padding-inline: var(--wrapper-padding-inline);
}

@media (min-width: 600px) {
  .full-width-split-screen {
    display: grid;
    grid-template-columns:
      minmax(var(--wrapper-padding-inline), 1fr) minmax(
        0,
        calc(var(--wrapper-max-width) / 1)
      )
      minmax(0, calc(var(--wrapper-max-width) / 1)) minmax(
        var(--wrapper-padding-inline),
        1fr
      );
    position: relative;
  }

  .full-width-split-screen > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .full-width-split-screen > img:first-child {
    grid-column: 1/3;
  }

  .full-width-split-screen > img:last-child {
    grid-column: 3/-1;
  }

  .full-width-split-screen > :not(img) {
    display: grid;
    align-content: center;
    justify-items: start;
  }

  .full-width-split-screen > :not(img):first-child {
    padding-left: 0;
    grid-column: 2/3;
  }

  .full-width-split-screen > :not(img):last-child {
    padding-right: 0;
    grid-column: 3/4;
  }

  .full-width-split-screen > :not(img)::before {
    content: "";
    position: absolute;
    inset: 0;
    background: inherit;
  }

  .full-width-split-screen > :not(img):first-child::before {
    grid-column: 1/2;
  }

  .full-width-split-screen > :not(img):last-child::before {
    grid-column: 4/5;
  }
}

.green-banner {
  background-color: var(--pri-color);
  color: var(--sec-color);
  padding: 15px 0;
  position: relative;
  top: -40px;
}

.green-banner p {
  font-family: "Roboto Slab", serif;
  font-weight: bold;
  font-size: 2.2em;
  text-align: center;
  color: #fff;
  margin: 0;
  padding-top: 25px;
}

.home-logos {
  display: flex;
  align-content: center;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 30px 0 30px 0;
}

.home-logos img {
  background-color: var(--white-color);
  border: 1px solid var(--pri-color);
  padding: 10px;
  width: 150px;
  margin: 20px;
}

.school-logos {
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  padding: 0 0 30px 0;
}

.school-logos img {
  padding: 10px;
  width: 200px;
}

.school-logos div {
  text-align: center;
}

.school-logos .button {
  display: inline-block;
  padding: 6px 15px;
  margin: 15px 10px;
  text-transform: capitalize;
  background-color: var(--pri-color);
  color: var(--white-color);
  border-radius: 10px;
  cursor: pointer;
}

@media (max-width: 639px) {
  .school-logos .button {
    display: inline-block;
    padding: 8px 8px;
    margin: 15px 10px;
    text-transform: capitalize;
    background-color: var(--pri-color);
    color: var(--white-color);
    border-radius: 10px;
    cursor: pointer;
    font-size: 12px;
  }
}

.school-logos .button:hover {
  background-color: var(--sec-color);
  color: var(--white-color);
}

.menu-container {
  background: rgba(0, 0, 0, 0);
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  z-index: 2;
}

.menu-container a.logo {
  display: block;
  position: relative;
  padding: 8px 10px 0 8px;
  float: left;
  width: 350px;
}

/* Support direct <ul class="menu"> markup */
.menu {
  margin: 0 auto;
  width: 100%;
  list-style: none;
  padding: 0;
  position: relative;
  box-sizing: border-box;
}

.menu:before,
.menu:after {
  content: "";
  display: table;
}

.menu:after {
  clear: both;
}

.menu > li {
  float: left;
  font-size: 1.6rem;
  padding: 0;
  margin: 0;
}

.menu > li > a {
  text-decoration: none;
  padding: 1.5em 1em;
  display: block;
  color: var(--pri-color);
}

.menu > li > a:hover {
  color: var(--white-color);
}

.menu > li:hover {
  background: var(--pri-color);
  color: var(--white-color);
}

.menu > li a[aria-current="page"] {
  background-color: var(--pri-color);
  color: var(--white-color);
}

.menu > li > ul {
  display: none;
  width: 100%;
  background: var(--pri-color);
  padding: 20px;
  position: absolute;
  z-index: 99;
  left: 0;
  margin: 0;
  list-style: none;
  box-sizing: border-box;
}

.menu > li > ul:before,
.menu > li > ul:after {
  content: "";
  display: table;
}

.menu > li > ul:after {
  clear: both;
}

.menu > li > ul > li {
  margin: 0;
  padding-bottom: 0;
  list-style: none;
  width: 33%;
  background: none;
  float: left;
}

.menu > li > ul > li a {
  color: var(--sec-color);
  padding: 0;
  width: 95%;
  display: block;
  border-bottom: 2px solid #ccc;
}

.menu > li > ul > li > a:hover {
  color: var(--white-color);
  padding-left: 10px;
}

.menu > li > ul > li > ul {
  display: block;
  padding: 0;
  margin: 10px 0 0;
  list-style: none;
  box-sizing: border-box;
}

.menu > li > ul > li > ul:before,
.menu > li > ul > li > ul:after {
  content: "";
  display: table;
}

.menu > li > ul > li > ul:after {
  clear: both;
}

.menu > li > ul > li > ul > li {
  float: left;
  width: 100%;
  padding: 10px 0;
  margin: 0;
  font-size: 0.8em;
}

.menu > li > ul > li > ul > li a {
  border: 0;
  color: var(--white-color);
}

.menu > li > ul > li > ul > li > a:hover {
  color: var(--sec-color);
  padding-left: 10px;
}

.menu > li > ul.normal-sub {
  width: 300px;
  left: auto;
  padding: 10px 20px;
}

.menu > li > ul.normal-sub > li {
  width: 100%;
}

.menu > li > ul.normal-sub > li a {
  border: 0;
  color: var(--white-color);
  padding: 1em 0;
}

.menu > li > ul.normal-sub > li a:hover {
  color: var(--sec-color);
}

@media only screen and (max-width: 959px) {
  .menu-container {
    width: 100%;
  }

  .menu-container a.logo {
    padding: 10px 5px 0 10px;
    width: 300px;
  }
}

@media only screen and (max-width: 400px) {
  .menu-container a.logo {
    padding: 10px 5px 0 10px;
    width: 250px;
  }
}

.menu-mobile {
  display: none;
  padding: 20px;
}

.menu-mobile span {
  color: var(--white-color);
}

.menu-mobile:after {
  content: "";
  font-family: "st-johns";
  font-size: 2.5rem;
  padding: 0;
  float: right;
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-25%);
  -ms-transform: translateY(-25%);
  transform: translateY(-25%);
}

.menu-dropdown-icon:before {
  content: "";
  font-family: "st-johns";
  display: none;
  cursor: pointer;
  float: right;
  padding: 1.5em 2em;
  background: var(--white-color);
  color: #333;
}

.menu > ul {
  margin: 0 auto;
  width: 100%;
  list-style: none;
  padding: 0;
  position: relative;
  right: -0px;
  box-sizing: border-box;
}

.menu > ul:before,
.menu > ul:after {
  content: "";
  display: table;
}

.menu > ul:after {
  clear: both;
}

.menu > ul > li {
  float: left;
  font-size: 1.6rem;
  padding: 0;
  margin: 0;
}

.menu > ul > li > a {
  text-decoration: none;
  padding: 1.5em 1em;
  display: block;
  color: var(--pri-color);
}

.menu > ul > li > a:hover {
  color: var(--white-color);
}

.menu > ul > li:hover {
  background: var(--pri-color);
  color: var(--white-color);
}

.menu > ul > li a[aria-current="page"] {
  background-color: var(--pri-color);
  color: var(--white-color);
}

.menu > ul > li > ul {
  display: none;
  width: 100%;
  background: var(--pri-color);
  padding: 20px;
  position: absolute;
  z-index: 99;
  left: 0;
  margin: 0;
  list-style: none;
  box-sizing: border-box;
}

.menu > ul > li > ul:before,
.menu > ul > li > ul:after {
  content: "";
  display: table;
}

.menu > ul > li > ul:after {
  clear: both;
}

.menu > ul > li > ul > li {
  margin: 0;
  padding-bottom: 0;
  list-style: none;
  width: 33%;
  background: none;
  float: left;
}

.menu > ul > li > ul > li a {
  color: var(--sec-color);
  padding: 0;
  width: 95%;
  display: block;
  border-bottom: 2px solid #ccc;
}

.menu > ul > li > ul > li > a:hover {
  color: var(--white-color);
  padding-left: 10px;
}

.menu > ul > li > ul > li > ul {
  display: block;
  padding: 0;
  margin: 10px 0 0;
  list-style: none;
  box-sizing: border-box;
}

.menu > ul > li > ul > li > ul:before,
.menu > ul > li > ul > li > ul:after {
  content: "";
  display: table;
}

.menu > ul > li > ul > li > ul:after {
  clear: both;
}

.menu > ul > li > ul > li > ul > li {
  float: left;
  width: 100%;
  padding: 10px 0;
  margin: 0;
  font-size: 0.8em;
}

.menu > ul > li > ul > li > ul > li a {
  border: 0;
  color: var(--white-color);
}

.menu > ul > li > ul > li > ul > li > a:hover {
  color: var(--sec-color);
  padding-left: 10px;
}

.menu > ul > li > ul.normal-sub {
  width: 300px;
  left: auto;
  padding: 10px 20px;
}

.menu > ul > li > ul.normal-sub > li {
  width: 100%;
}

.menu > ul > li:hover {
  background: var(--pri-color);
  color: var(--white-color);
}

.menu > ul > li > ul.normal-sub > li a {
  border: 0;
  color: var(--white-color);
  padding: 1em 0;
}

.menu > ul > li > ul.normal-sub > li a:hover {
  color: var(--sec-color);
}

@media only screen and (min-width: 960px) {
  .menu-container {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-inline: 24px;
  }

  .menu-container a.logo {
    float: none;
    flex: 0 0 320px;
    width: 320px;
  }

  .menu {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 4px;
    padding: 0 12px 0 0;
  }

  .menu > li {
    float: none;
    flex: 0 1 auto;
    min-width: 0;
  }

  .menu > li > a {
    padding: 1.5em 0.75em;
    white-space: normal;
    line-height: 1.15;
    text-align: center;
  }

  .menu > li:last-child > a {
    padding-right: 1.5em;
  }
}

@media only screen and (min-width: 960px) and (max-width: 1260px) {
  .menu-container {
    gap: 10px;
    padding-inline: 12px;
  }

  .menu-container a.logo {
    flex-basis: 280px;
    width: 280px;
  }

  .menu {
    padding-right: 6px;
  }

  .menu > li > a {
    padding: 1.4em 0.5em;
    font-size: 1.45rem;
  }
}

@media only screen and (max-width: 959px) {
  .menu-mobile {
    display: block;
  }

  .menu-dropdown-icon:before {
    display: block;
  }

  .menu {
    display: none;
    right: 0;
  }

  .menu > li {
    width: 100%;
    float: none;
    display: block;
  }

  .menu > li a {
    padding: 1.5em;
    width: 100%;
    display: block;
  }

  .menu > li > ul {
    position: relative;
  }

  .menu > li > ul.normal-sub {
    width: 100%;
  }

  .menu > li > ul > li {
    float: none;
    width: 100%;
    margin-top: 20px;
  }

  .menu > li > ul > li:first-child {
    margin: 0;
  }

  .menu > li > ul > li > ul {
    position: relative;
  }

  .menu > li > ul > li > ul > li {
    float: none;
  }

  .menu .show-on-mobile {
    display: block;
  }
}

.owl-carousel,
.owl-carousel .owl-item {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  position: relative;
}

.owl-carousel {
  display: none;
  width: 100%;
  z-index: 1;
}

.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
  touch-action: manipulation;
  -moz-backface-visibility: hidden;
}

.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  -webkit-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item,
.owl-carousel .owl-wrapper {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item {
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-touch-callout: none;
}

.owl-carousel .owl-item img {
  display: block;
  width: 100%;
}

.owl-carousel .owl-dots.disabled,
.owl-carousel .owl-nav.disabled {
  display: none;
}

.no-js .owl-carousel,
.owl-carousel.owl-loaded {
  display: block;
}

.owl-carousel .owl-dot,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-nav .owl-prev {
  cursor: pointer;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel button.owl-dot {
  background: 0 0;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit;
}

.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}

.owl-carousel.owl-hidden {
  opacity: 0;
}

.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}

.owl-carousel.owl-drag .owl-item {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel.owl-grab {
  cursor: move;
  cursor: grab;
}

.owl-carousel.owl-rtl {
  direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
  float: right;
}

.owl-carousel .animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
  z-index: 0;
}

.owl-carousel .owl-animated-out {
  z-index: 1;
}

.owl-carousel .fadeOut {
  animation-name: fadeOut;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.owl-height {
  transition: height 0.5s ease-in-out;
}

.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity 0.4s ease;
}

.owl-carousel .owl-item .owl-lazy:not([src]),
.owl-carousel .owl-item .owl-lazy[src^=""] {
  max-height: 0;
}

.owl-carousel .owl-item img.owl-lazy {
  transform-style: preserve-3d;
}

.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url(owl.video.play.png) no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform 0.1s ease;
}

.owl-carousel .owl-video-play-icon:hover {
  -ms-transform: scale(1.3, 1.3);
  transform: scale(1.3, 1.3);
}

.owl-carousel .owl-video-playing .owl-video-play-icon,
.owl-carousel .owl-video-playing .owl-video-tn {
  display: none;
}

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 0.4s ease;
}

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}

.owl-theme .owl-dots,
.owl-theme .owl-nav {
  text-align: center;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.owl-theme .owl-nav {
  margin-top: 10px;
}

.owl-theme .owl-nav [class*="owl-"] {
  color: #fff;
  font-size: 14px;
  margin: 5px;
  padding: 4px 7px;
  background: #d6d6d6;
  display: inline-block;
  cursor: pointer;
  border-radius: 3px;
}

.owl-theme .owl-nav [class*="owl-"]:hover {
  background: #869791;
  color: #fff;
  text-decoration: none;
}

.owl-theme .owl-nav .disabled {
  opacity: 0.5;
  cursor: default;
}

.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 10px;
}

.owl-theme .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
}

.owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px 7px;
  background: #d6d6d6;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity 0.2s ease;
  border-radius: 30px;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: #869791;
}

.pagination {
  clear: both;
  padding: 50px 0 80px 0;
  position: relative;
  line-height: 13px;
}

.pagination span,
.pagination a {
  display: block;
  float: left;
  font-weight: 500;
  margin: 2px 2px 2px 0;
  padding: 15px;
  text-decoration: none;
  width: auto;
}

.pagination span {
  color: var(--white-color);
  background-color: var(--pri-color);
}

.pagination a {
  color: var(--black-color) !important;
  background-color: var(--sec-color) !important;
}

.pagination a:hover {
  color: var(--black-color) !important;
  background-color: var(--grey-color) !important;
}

.pagination .current {
  padding: 15px;
  color: var(--white-color);
  background-color: var(--pri-color);
}

@keyframes plyr-progress {
  to {
    background-position: 25px 0;
    background-position: var(--plyr-progress-loading-size, 25px) 0;
  }
}

@keyframes plyr-popup {
  0% {
    opacity: 0.5;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes plyr-fade-in {
  0% {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.plyr {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  align-items: center;
  direction: ltr;
  display: flex;
  flex-direction: column;
  font-family: inherit;
  font-family: var(--plyr-font-family, inherit);
  font-variant-numeric: tabular-nums;
  font-weight: 400;
  font-weight: var(--plyr-font-weight-regular, 400);
  line-height: 1.7;
  line-height: var(--plyr-line-height, 1.7);
  max-width: 100%;
  min-width: 200px;
  position: relative;
  text-shadow: none;
  transition: box-shadow 0.3s ease;
  z-index: 0;
}

.plyr audio,
.plyr iframe,
.plyr video {
  display: block;
  height: 100%;
  width: 100%;
}

.plyr button {
  font: inherit;
  line-height: inherit;
  width: auto;
}

.plyr:focus {
  outline: 0;
}

.plyr--full-ui {
  box-sizing: border-box;
}

.plyr--full-ui *,
.plyr--full-ui :after,
.plyr--full-ui :before {
  box-sizing: inherit;
}

.plyr--full-ui a,
.plyr--full-ui button,
.plyr--full-ui input,
.plyr--full-ui label {
  touch-action: manipulation;
}

.plyr__badge {
  background: #4a5464;
  background: var(--plyr-badge-background, #4a5464);
  border-radius: 2px;
  border-radius: var(--plyr-badge-border-radius, 2px);
  color: #fff;
  color: var(--plyr-badge-text-color, #fff);
  font-size: 9px;
  font-size: var(--plyr-font-size-badge, 9px);
  line-height: 1;
  padding: 3px 4px;
}

.plyr--full-ui ::-webkit-media-text-track-container {
  display: none;
}

.plyr__captions {
  animation: plyr-fade-in 0.3s ease;
  bottom: 0;
  display: none;
  font-size: 13px;
  font-size: var(--plyr-font-size-small, 13px);
  left: 0;
  padding: 10px;
  padding: var(--plyr-control-spacing, 10px);
  position: absolute;
  text-align: center;
  transition: transform 0.4s ease-in-out;
  width: 100%;
}

.plyr__captions span:empty {
  display: none;
}

@media (min-width: 480px) {
  .plyr__captions {
    font-size: 15px;
    font-size: var(--plyr-font-size-base, 15px);
    padding: 20px;
    padding: calc(var(--plyr-control-spacing, 10px) * 2);
  }
}

@media (min-width: 768px) {
  .plyr__captions {
    font-size: 18px;
    font-size: var(--plyr-font-size-large, 18px);
  }
}

.plyr--captions-active .plyr__captions {
  display: block;
}

.plyr:not(.plyr--hide-controls) .plyr__controls:not(:empty) ~ .plyr__captions {
  transform: translateY(-40px);
  transform: translateY(calc(var(--plyr-control-spacing, 10px) * -4));
}

.plyr__caption {
  background: rgba(0, 0, 0, 0.8);
  background: var(--plyr-captions-background, rgba(0, 0, 0, 0.8));
  border-radius: 2px;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  color: #fff;
  color: var(--plyr-captions-text-color, #fff);
  line-height: 185%;
  padding: 0.2em 0.5em;
  white-space: pre-wrap;
}

.plyr__caption div {
  display: inline;
}

.plyr__control {
  background: rgba(0, 0, 0, 0);
  border: 0;
  border-radius: 4px;
  border-radius: var(--plyr-control-radius, 4px);
  color: inherit;
  cursor: pointer;
  flex-shrink: 0;
  overflow: visible;
  padding: 7px;
  padding: calc(var(--plyr-control-spacing, 10px) * 0.7);
  position: relative;
  transition: all 0.3s ease;
}

.plyr__control svg {
  fill: currentColor;
  display: block;
  height: 18px;
  height: var(--plyr-control-icon-size, 18px);
  pointer-events: none;
  width: 18px;
  width: var(--plyr-control-icon-size, 18px);
}

.plyr__control:focus {
  outline: 0;
}

.plyr__control:focus-visible {
  outline: 2px dashed #00b2ff;
  outline: 2px dashed
    var(
      --plyr-focus-visible-color,
      var(--plyr-color-main, var(--plyr-color-main, #00b2ff))
    );
  outline-offset: 2px;
}

a.plyr__control {
  text-decoration: none;
}

.plyr__control.plyr__control--pressed .icon--not-pressed,
.plyr__control.plyr__control--pressed .label--not-pressed,
.plyr__control:not(.plyr__control--pressed) .icon--pressed,
.plyr__control:not(.plyr__control--pressed) .label--pressed,
a.plyr__control:after,
a.plyr__control:before {
  display: none;
}

.plyr--full-ui ::-webkit-media-controls {
  display: none;
}

.plyr__controls {
  align-items: center;
  display: flex;
  justify-content: flex-end;
  text-align: center;
}

.plyr__controls .plyr__progress__container {
  flex: 1;
  min-width: 0;
}

.plyr__controls .plyr__controls__item {
  margin-left: 2.5px;
  margin-left: calc(var(--plyr-control-spacing, 10px) / 4);
}

.plyr__controls .plyr__controls__item:first-child {
  margin-left: 0;
  margin-right: auto;
}

.plyr__controls .plyr__controls__item.plyr__progress__container {
  padding-left: 2.5px;
  padding-left: calc(var(--plyr-control-spacing, 10px) / 4);
}

.plyr__controls .plyr__controls__item.plyr__time {
  padding: 0 5px;
  padding: 0 calc(var(--plyr-control-spacing, 10px) / 2);
}

.plyr__controls .plyr__controls__item.plyr__progress__container:first-child,
.plyr__controls .plyr__controls__item.plyr__time + .plyr__time,
.plyr__controls .plyr__controls__item.plyr__time:first-child {
  padding-left: 0;
}

.plyr [data-plyr="airplay"],
.plyr [data-plyr="captions"],
.plyr [data-plyr="fullscreen"],
.plyr [data-plyr="pip"],
.plyr__controls:empty {
  display: none;
}

.plyr--airplay-supported [data-plyr="airplay"],
.plyr--captions-enabled [data-plyr="captions"],
.plyr--fullscreen-enabled [data-plyr="fullscreen"],
.plyr--pip-supported [data-plyr="pip"] {
  display: inline-block;
}

.plyr__menu {
  display: flex;
  position: relative;
}

.plyr__menu .plyr__control svg {
  transition: transform 0.3s ease;
}

.plyr__menu .plyr__control[aria-expanded="true"] svg {
  transform: rotate(90deg);
}

.plyr__menu .plyr__control[aria-expanded="true"] .plyr__tooltip {
  display: none;
}

.plyr__menu__container {
  animation: plyr-popup 0.2s ease;
  background: hsla(0, 0%, 100%, 0.9019607843);
  background: var(--plyr-menu-background, rgba(255, 255, 255, 0.9019607843));
  border-radius: 8px;
  border-radius: var(--plyr-menu-radius, 8px);
  bottom: 100%;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1490196078);
  box-shadow: var(--plyr-menu-shadow, 0 1px 2px rgba(0, 0, 0, 0.1490196078));
  color: #4a5464;
  color: var(--plyr-menu-color, #4a5464);
  font-size: 15px;
  font-size: var(--plyr-font-size-base, 15px);
  margin-bottom: 10px;
  position: absolute;
  right: -3px;
  text-align: left;
  white-space: nowrap;
  z-index: 3;
}

.plyr__menu__container > div {
  overflow: hidden;
  transition:
    height 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.plyr__menu__container:after {
  border: 4px solid rgba(0, 0, 0, 0);
  border-top-color: hsla(0, 0%, 100%, 0.9019607843);
  border: var(--plyr-menu-arrow-size, 4px) solid rgba(0, 0, 0, 0);
  border-top-color: var(
    --plyr-menu-background,
    rgba(255, 255, 255, 0.9019607843)
  );
  content: "";
  height: 0;
  position: absolute;
  right: 14px;
  right: calc(
    var(--plyr-control-icon-size, 18px) / 2 +
      var(--plyr-control-spacing, 10px) * 0.7 -
      var(--plyr-menu-arrow-size, 4px) / 2
  );
  top: 100%;
  width: 0;
}

.plyr__menu__container [role="menu"] {
  padding: 7px;
  padding: calc(var(--plyr-control-spacing, 10px) * 0.7);
}

.plyr__menu__container [role="menuitem"],
.plyr__menu__container [role="menuitemradio"] {
  margin-top: 2px;
}

.plyr__menu__container [role="menuitem"]:first-child,
.plyr__menu__container [role="menuitemradio"]:first-child {
  margin-top: 0;
}

.plyr__menu__container .plyr__control {
  align-items: center;
  color: #4a5464;
  color: var(--plyr-menu-color, #4a5464);
  display: flex;
  font-size: 13px;
  font-size: var(--plyr-font-size-menu, var(--plyr-font-size-small, 13px));
  padding: 4.66667px 10.5px;
  padding: calc(var(--plyr-control-spacing, 10px) * 0.7 / 1.5)
    calc(var(--plyr-control-spacing, 10px) * 0.7 * 1.5);
  -webkit-user-select: none;
  user-select: none;
  width: 100%;
}

.plyr__menu__container .plyr__control > span {
  align-items: inherit;
  display: flex;
  width: 100%;
}

.plyr__menu__container .plyr__control:after {
  border: 4px solid rgba(0, 0, 0, 0);
  border: var(--plyr-menu-item-arrow-size, 4px) solid rgba(0, 0, 0, 0);
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.plyr__menu__container .plyr__control--forward {
  padding-right: 28px;
  padding-right: calc(var(--plyr-control-spacing, 10px) * 0.7 * 4);
}

.plyr__menu__container .plyr__control--forward:after {
  border-left-color: #728197;
  border-left-color: var(--plyr-menu-arrow-color, #728197);
  right: 6.5px;
  right: calc(
    var(--plyr-control-spacing, 10px) * 0.7 * 1.5 -
      var(--plyr-menu-item-arrow-size, 4px)
  );
}

.plyr__menu__container .plyr__control--forward:focus-visible:after,
.plyr__menu__container .plyr__control--forward:hover:after {
  border-left-color: initial;
}

.plyr__menu__container .plyr__control--back {
  font-weight: 400;
  font-weight: var(--plyr-font-weight-regular, 400);
  margin: 7px;
  margin: calc(var(--plyr-control-spacing, 10px) * 0.7);
  margin-bottom: 3.5px;
  margin-bottom: calc(var(--plyr-control-spacing, 10px) * 0.7 / 2);
  padding-left: 28px;
  padding-left: calc(var(--plyr-control-spacing, 10px) * 0.7 * 4);
  position: relative;
  width: calc(100% - 14px);
  width: calc(100% - var(--plyr-control-spacing, 10px) * 0.7 * 2);
}

.plyr__menu__container .plyr__control--back:after {
  border-right-color: #728197;
  border-right-color: var(--plyr-menu-arrow-color, #728197);
  left: 6.5px;
  left: calc(
    var(--plyr-control-spacing, 10px) * 0.7 * 1.5 -
      var(--plyr-menu-item-arrow-size, 4px)
  );
}

.plyr__menu__container .plyr__control--back:before {
  background: #dcdfe5;
  background: var(--plyr-menu-back-border-color, #dcdfe5);
  box-shadow: 0 1px 0 #fff;
  box-shadow: 0 1px 0 var(--plyr-menu-back-border-shadow-color, #fff);
  content: "";
  height: 1px;
  left: 0;
  margin-top: 3.5px;
  margin-top: calc(var(--plyr-control-spacing, 10px) * 0.7 / 2);
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 100%;
}

.plyr__menu__container .plyr__control--back:focus-visible:after,
.plyr__menu__container .plyr__control--back:hover:after {
  border-right-color: initial;
}

.plyr__menu__container .plyr__control[role="menuitemradio"] {
  padding-left: 7px;
  padding-left: calc(var(--plyr-control-spacing, 10px) * 0.7);
}

.plyr__menu__container .plyr__control[role="menuitemradio"]:after,
.plyr__menu__container .plyr__control[role="menuitemradio"]:before {
  border-radius: 100%;
}

.plyr__menu__container .plyr__control[role="menuitemradio"]:before {
  background: rgba(0, 0, 0, 0.1019607843);
  content: "";
  display: block;
  flex-shrink: 0;
  height: 16px;
  margin-right: 10px;
  margin-right: var(--plyr-control-spacing, 10px);
  transition: all 0.3s ease;
  width: 16px;
}

.plyr__menu__container .plyr__control[role="menuitemradio"]:after {
  background: #fff;
  border: 0;
  height: 6px;
  left: 12px;
  opacity: 0;
  top: 50%;
  transform: translateY(-50%) scale(0);
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
  width: 6px;
}

.plyr__menu__container
  .plyr__control[role="menuitemradio"][aria-checked="true"]:before {
  background: #00b2ff;
  background: var(
    --plyr-control-toggle-checked-background,
    var(--plyr-color-main, var(--plyr-color-main, #00b2ff))
  );
}

.plyr__menu__container
  .plyr__control[role="menuitemradio"][aria-checked="true"]:after {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}

.plyr__menu__container
  .plyr__control[role="menuitemradio"]:focus-visible:before,
.plyr__menu__container .plyr__control[role="menuitemradio"]:hover:before {
  background: rgba(35, 40, 47, 0.1019607843);
}

.plyr__menu__container .plyr__menu__value {
  align-items: center;
  display: flex;
  margin-left: auto;
  margin-right: -5px;
  margin-right: calc(var(--plyr-control-spacing, 10px) * 0.7 * -1 + 2px);
  overflow: hidden;
  padding-left: 24.5px;
  padding-left: calc(var(--plyr-control-spacing, 10px) * 0.7 * 3.5);
  pointer-events: none;
}

.plyr--full-ui input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  background: rgba(0, 0, 0, 0);
  border: 0;
  border-radius: 26px;
  border-radius: calc(var(--plyr-range-thumb-height, 13px) * 2);
  color: #00b2ff;
  color: var(
    --plyr-range-fill-background,
    var(--plyr-color-main, var(--plyr-color-main, #00b2ff))
  );
  display: block;
  height: 19px;
  height: calc(
    var(--plyr-range-thumb-active-shadow-width, 3px) * 2 +
      var(--plyr-range-thumb-height, 13px)
  );
  margin: 0;
  min-width: 0;
  padding: 0;
  transition: box-shadow 0.3s ease;
  width: 100%;
}

.plyr--full-ui input[type="range"]::-webkit-slider-runnable-track {
  background: rgba(0, 0, 0, 0);
  background-image: linear-gradient(90deg, currentColor 0, rgba(0, 0, 0, 0) 0);
  background-image: linear-gradient(
    to right,
    currentColor var(--value, 0),
    rgba(0, 0, 0, 0) var(--value, 0)
  );
  border: 0;
  border-radius: 2.5px;
  border-radius: calc(var(--plyr-range-track-height, 5px) / 2);
  height: 5px;
  height: var(--plyr-range-track-height, 5px);
  -webkit-transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  -webkit-user-select: none;
  user-select: none;
}

.plyr--full-ui input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  background: #fff;
  background: var(--plyr-range-thumb-background, #fff);
  border: 0;
  border-radius: 100%;
  box-shadow:
    0 1px 1px rgba(35, 40, 47, 0.1490196078),
    0 0 0 1px rgba(35, 40, 47, 0.2);
  box-shadow: var(
    --plyr-range-thumb-shadow,
    0 1px 1px rgba(35, 40, 47, 0.1490196078),
    0 0 0 1px rgba(35, 40, 47, 0.2)
  );
  height: 13px;
  height: var(--plyr-range-thumb-height, 13px);
  margin-top: -4px;
  margin-top: calc(
    (
        var(--plyr-range-thumb-height, 13px) -
          var(--plyr-range-track-height, 5px)
      ) /
      2 * -1
  );
  position: relative;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  width: 13px;
  width: var(--plyr-range-thumb-height, 13px);
}

.plyr--full-ui input[type="range"]::-moz-range-track {
  background: rgba(0, 0, 0, 0);
  border: 0;
  border-radius: 2.5px;
  border-radius: calc(var(--plyr-range-track-height, 5px) / 2);
  height: 5px;
  height: var(--plyr-range-track-height, 5px);
  -moz-transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  user-select: none;
}

.plyr--full-ui input[type="range"]::-moz-range-thumb {
  background: #fff;
  background: var(--plyr-range-thumb-background, #fff);
  border: 0;
  border-radius: 100%;
  box-shadow:
    0 1px 1px rgba(35, 40, 47, 0.1490196078),
    0 0 0 1px rgba(35, 40, 47, 0.2);
  box-shadow: var(
    --plyr-range-thumb-shadow,
    0 1px 1px rgba(35, 40, 47, 0.1490196078),
    0 0 0 1px rgba(35, 40, 47, 0.2)
  );
  height: 13px;
  height: var(--plyr-range-thumb-height, 13px);
  position: relative;
  -moz-transition: all 0.2s ease;
  transition: all 0.2s ease;
  width: 13px;
  width: var(--plyr-range-thumb-height, 13px);
}

.plyr--full-ui input[type="range"]::-moz-range-progress {
  background: currentColor;
  border-radius: 2.5px;
  border-radius: calc(var(--plyr-range-track-height, 5px) / 2);
  height: 5px;
  height: var(--plyr-range-track-height, 5px);
}

.plyr--full-ui input[type="range"]::-ms-track {
  color: rgba(0, 0, 0, 0);
}

.plyr--full-ui input[type="range"]::-ms-fill-upper,
.plyr--full-ui input[type="range"]::-ms-track {
  background: rgba(0, 0, 0, 0);
  border: 0;
  border-radius: 2.5px;
  border-radius: calc(var(--plyr-range-track-height, 5px) / 2);
  height: 5px;
  height: var(--plyr-range-track-height, 5px);
  -ms-transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  user-select: none;
}

.plyr--full-ui input[type="range"]::-ms-fill-lower {
  background: rgba(0, 0, 0, 0);
  background: currentColor;
  border: 0;
  border-radius: 2.5px;
  border-radius: calc(var(--plyr-range-track-height, 5px) / 2);
  height: 5px;
  height: var(--plyr-range-track-height, 5px);
  -ms-transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  user-select: none;
}

.plyr--full-ui input[type="range"]::-ms-thumb {
  background: #fff;
  background: var(--plyr-range-thumb-background, #fff);
  border: 0;
  border-radius: 100%;
  box-shadow:
    0 1px 1px rgba(35, 40, 47, 0.1490196078),
    0 0 0 1px rgba(35, 40, 47, 0.2);
  box-shadow: var(
    --plyr-range-thumb-shadow,
    0 1px 1px rgba(35, 40, 47, 0.1490196078),
    0 0 0 1px rgba(35, 40, 47, 0.2)
  );
  height: 13px;
  height: var(--plyr-range-thumb-height, 13px);
  margin-top: 0;
  position: relative;
  -ms-transition: all 0.2s ease;
  transition: all 0.2s ease;
  width: 13px;
  width: var(--plyr-range-thumb-height, 13px);
}

.plyr--full-ui input[type="range"]::-ms-tooltip {
  display: none;
}

.plyr--full-ui input[type="range"]::-moz-focus-outer {
  border: 0;
}

.plyr--full-ui input[type="range"]:focus {
  outline: 0;
}

.plyr--full-ui
  input[type="range"]:focus-visible::-webkit-slider-runnable-track {
  outline: 2px dashed #00b2ff;
  outline: 2px dashed
    var(
      --plyr-focus-visible-color,
      var(--plyr-color-main, var(--plyr-color-main, #00b2ff))
    );
  outline-offset: 2px;
}

.plyr--full-ui input[type="range"]:focus-visible::-moz-range-track {
  outline: 2px dashed #00b2ff;
  outline: 2px dashed
    var(
      --plyr-focus-visible-color,
      var(--plyr-color-main, var(--plyr-color-main, #00b2ff))
    );
  outline-offset: 2px;
}

.plyr--full-ui input[type="range"]:focus-visible::-ms-track {
  outline: 2px dashed #00b2ff;
  outline: 2px dashed
    var(
      --plyr-focus-visible-color,
      var(--plyr-color-main, var(--plyr-color-main, #00b2ff))
    );
  outline-offset: 2px;
}

.plyr__poster {
  background-color: #000;
  background-color: var(
    --plyr-video-background,
    var(--plyr-video-background, #000)
  );
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: contain;
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  transition: opacity 0.2s ease;
  width: 100%;
  z-index: 1;
}

.plyr--stopped.plyr__poster-enabled .plyr__poster {
  opacity: 1;
}

.plyr--youtube.plyr--paused.plyr__poster-enabled:not(.plyr--stopped)
  .plyr__poster {
  display: none;
}

.plyr__time {
  font-size: 13px;
  font-size: var(--plyr-font-size-time, var(--plyr-font-size-small, 13px));
}

.plyr__time + .plyr__time:before {
  content: "⁄";
  margin-right: 10px;
  margin-right: var(--plyr-control-spacing, 10px);
}

@media (max-width: 767px) {
  .plyr__time + .plyr__time {
    display: none;
  }
}

.plyr__tooltip {
  background: #fff;
  background: var(--plyr-tooltip-background, #fff);
  border-radius: 5px;
  border-radius: var(--plyr-tooltip-radius, 5px);
  bottom: 100%;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1490196078);
  box-shadow: var(--plyr-tooltip-shadow, 0 1px 2px rgba(0, 0, 0, 0.1490196078));
  color: #4a5464;
  color: var(--plyr-tooltip-color, #4a5464);
  font-size: 13px;
  font-size: var(--plyr-font-size-small, 13px);
  font-weight: 400;
  font-weight: var(--plyr-font-weight-regular, 400);
  left: 50%;
  line-height: 1.3;
  margin-bottom: 10px;
  margin-bottom: calc(var(--plyr-control-spacing, 10px) / 2 * 2);
  opacity: 0;
  padding: 5px 7.5px;
  padding: calc(var(--plyr-control-spacing, 10px) / 2)
    calc(var(--plyr-control-spacing, 10px) / 2 * 1.5);
  pointer-events: none;
  position: absolute;
  transform: translate(-50%, 10px) scale(0.8);
  transform-origin: 50% 100%;
  transition:
    transform 0.2s ease 0.1s,
    opacity 0.2s ease 0.1s;
  white-space: nowrap;
  z-index: 2;
}

.plyr__tooltip:before {
  border-left: 4px solid rgba(0, 0, 0, 0);
  border-left: var(--plyr-tooltip-arrow-size, 4px) solid rgba(0, 0, 0, 0);
  border-right: 4px solid rgba(0, 0, 0, 0);
  border-right: var(--plyr-tooltip-arrow-size, 4px) solid rgba(0, 0, 0, 0);
  border-top: 4px solid #fff;
  border-top: var(--plyr-tooltip-arrow-size, 4px) solid
    var(--plyr-tooltip-background, #fff);
  bottom: -4px;
  bottom: calc(var(--plyr-tooltip-arrow-size, 4px) * -1);
  content: "";
  height: 0;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 0;
  z-index: 2;
}

.plyr .plyr__control:focus-visible .plyr__tooltip,
.plyr .plyr__control:hover .plyr__tooltip,
.plyr__tooltip--visible {
  opacity: 1;
  transform: translate(-50%) scale(1);
}

.plyr .plyr__control:hover .plyr__tooltip {
  z-index: 3;
}

.plyr__controls > .plyr__control:first-child .plyr__tooltip,
.plyr__controls > .plyr__control:first-child + .plyr__control .plyr__tooltip {
  left: 0;
  transform: translateY(10px) scale(0.8);
  transform-origin: 0 100%;
}

.plyr__controls > .plyr__control:first-child .plyr__tooltip:before,
.plyr__controls
  > .plyr__control:first-child
  + .plyr__control
  .plyr__tooltip:before {
  left: 16px;
  left: calc(
    var(--plyr-control-icon-size, 18px) / 2 +
      var(--plyr-control-spacing, 10px) * 0.7
  );
}

.plyr__controls > .plyr__control:last-child .plyr__tooltip {
  left: auto;
  right: 0;
  transform: translateY(10px) scale(0.8);
  transform-origin: 100% 100%;
}

.plyr__controls > .plyr__control:last-child .plyr__tooltip:before {
  left: auto;
  right: 16px;
  right: calc(
    var(--plyr-control-icon-size, 18px) / 2 +
      var(--plyr-control-spacing, 10px) * 0.7
  );
  transform: translateX(50%);
}

.plyr__controls > .plyr__control:first-child .plyr__tooltip--visible,
.plyr__controls
  > .plyr__control:first-child
  + .plyr__control
  .plyr__tooltip--visible,
.plyr__controls
  > .plyr__control:first-child
  + .plyr__control:focus-visible
  .plyr__tooltip,
.plyr__controls
  > .plyr__control:first-child
  + .plyr__control:hover
  .plyr__tooltip,
.plyr__controls > .plyr__control:first-child:focus-visible .plyr__tooltip,
.plyr__controls > .plyr__control:first-child:hover .plyr__tooltip,
.plyr__controls > .plyr__control:last-child .plyr__tooltip--visible,
.plyr__controls > .plyr__control:last-child:focus-visible .plyr__tooltip,
.plyr__controls > .plyr__control:last-child:hover .plyr__tooltip {
  transform: translate(0) scale(1);
}

.plyr__progress {
  left: 6.5px;
  left: calc(var(--plyr-range-thumb-height, 13px) * 0.5);
  margin-right: 13px;
  margin-right: var(--plyr-range-thumb-height, 13px);
  position: relative;
}

.plyr__progress input[type="range"],
.plyr__progress__buffer {
  margin-left: -6.5px;
  margin-left: calc(var(--plyr-range-thumb-height, 13px) * -0.5);
  margin-right: -6.5px;
  margin-right: calc(var(--plyr-range-thumb-height, 13px) * -0.5);
  width: calc(100% + 13px);
  width: calc(100% + var(--plyr-range-thumb-height, 13px));
}

.plyr__progress input[type="range"] {
  position: relative;
  z-index: 2;
}

.plyr__progress .plyr__tooltip {
  left: 0;
  max-width: 120px;
  overflow-wrap: break-word;
}

.plyr__progress__buffer {
  -webkit-appearance: none;
  background: rgba(0, 0, 0, 0);
  border: 0;
  border-radius: 100px;
  height: 5px;
  height: var(--plyr-range-track-height, 5px);
  left: 0;
  margin-top: -2.5px;
  margin-top: calc(var(--plyr-range-track-height, 5px) / 2 * -1);
  padding: 0;
  position: absolute;
  top: 50%;
}

.plyr__progress__buffer::-webkit-progress-bar {
  background: rgba(0, 0, 0, 0);
}

.plyr__progress__buffer::-webkit-progress-value {
  background: currentColor;
  border-radius: 100px;
  min-width: 5px;
  min-width: var(--plyr-range-track-height, 5px);
  -webkit-transition: width 0.2s ease;
  transition: width 0.2s ease;
}

.plyr__progress__buffer::-moz-progress-bar {
  background: currentColor;
  border-radius: 100px;
  min-width: 5px;
  min-width: var(--plyr-range-track-height, 5px);
  -moz-transition: width 0.2s ease;
  transition: width 0.2s ease;
}

.plyr__progress__buffer::-ms-fill {
  border-radius: 100px;
  -ms-transition: width 0.2s ease;
  transition: width 0.2s ease;
}

.plyr--loading .plyr__progress__buffer {
  animation: plyr-progress 1s linear infinite;
  background-image: linear-gradient(
    -45deg,
    rgba(35, 40, 47, 0.6) 25%,
    rgba(0, 0, 0, 0) 0,
    rgba(0, 0, 0, 0) 50%,
    rgba(35, 40, 47, 0.6) 0,
    rgba(35, 40, 47, 0.6) 75%,
    rgba(0, 0, 0, 0) 0,
    rgba(0, 0, 0, 0)
  );
  background-image: linear-gradient(
    -45deg,
    var(--plyr-progress-loading-background, rgba(35, 40, 47, 0.6)) 25%,
    rgba(0, 0, 0, 0) 25%,
    rgba(0, 0, 0, 0) 50%,
    var(--plyr-progress-loading-background, rgba(35, 40, 47, 0.6)) 50%,
    var(--plyr-progress-loading-background, rgba(35, 40, 47, 0.6)) 75%,
    rgba(0, 0, 0, 0) 75%,
    rgba(0, 0, 0, 0)
  );
  background-repeat: repeat-x;
  background-size: 25px 25px;
  background-size: var(--plyr-progress-loading-size, 25px)
    var(--plyr-progress-loading-size, 25px);
  color: rgba(0, 0, 0, 0);
}

.plyr--video.plyr--loading .plyr__progress__buffer {
  background-color: hsla(0, 0%, 100%, 0.2509803922);
  background-color: var(
    --plyr-video-progress-buffered-background,
    rgba(255, 255, 255, 0.2509803922)
  );
}

.plyr--audio.plyr--loading .plyr__progress__buffer {
  background-color: rgba(193, 200, 209, 0.6);
  background-color: var(
    --plyr-audio-progress-buffered-background,
    rgba(193, 200, 209, 0.6)
  );
}

.plyr__progress__marker {
  background-color: #fff;
  background-color: var(--plyr-progress-marker-background, #fff);
  border-radius: 1px;
  height: 5px;
  height: var(--plyr-range-track-height, 5px);
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 3px;
  width: var(--plyr-progress-marker-width, 3px);
  z-index: 3;
}

.plyr__volume {
  align-items: center;
  display: flex;
  position: relative;
}

.plyr__volume input[type="range"] {
  margin-left: 5px;
  margin-left: calc(var(--plyr-control-spacing, 10px) / 2);
  margin-right: 5px;
  margin-right: calc(var(--plyr-control-spacing, 10px) / 2);
  max-width: 90px;
  min-width: 60px;
  position: relative;
  z-index: 2;
}

.plyr--audio {
  display: block;
}

.plyr--audio .plyr__controls {
  background: #fff;
  background: var(--plyr-audio-controls-background, #fff);
  border-radius: inherit;
  color: #4a5464;
  color: var(--plyr-audio-control-color, #4a5464);
  padding: 10px;
  padding: var(--plyr-control-spacing, 10px);
}

.plyr--audio .plyr__control:focus-visible,
.plyr--audio .plyr__control:hover,
.plyr--audio .plyr__control[aria-expanded="true"] {
  background: #00b2ff;
  background: var(
    --plyr-audio-control-background-hover,
    var(--plyr-color-main, var(--plyr-color-main, #00b2ff))
  );
  color: #fff;
  color: var(--plyr-audio-control-color-hover, #fff);
}

.plyr--full-ui.plyr--audio input[type="range"]::-webkit-slider-runnable-track {
  background-color: rgba(193, 200, 209, 0.6);
  background-color: var(
    --plyr-audio-range-track-background,
    var(--plyr-audio-progress-buffered-background, rgba(193, 200, 209, 0.6))
  );
}

.plyr--full-ui.plyr--audio input[type="range"]::-moz-range-track {
  background-color: rgba(193, 200, 209, 0.6);
  background-color: var(
    --plyr-audio-range-track-background,
    var(--plyr-audio-progress-buffered-background, rgba(193, 200, 209, 0.6))
  );
}

.plyr--full-ui.plyr--audio input[type="range"]::-ms-track {
  background-color: rgba(193, 200, 209, 0.6);
  background-color: var(
    --plyr-audio-range-track-background,
    var(--plyr-audio-progress-buffered-background, rgba(193, 200, 209, 0.6))
  );
}

.plyr--full-ui.plyr--audio input[type="range"]:active::-webkit-slider-thumb {
  box-shadow:
    0 1px 1px rgba(35, 40, 47, 0.1490196078),
    0 0 0 1px rgba(35, 40, 47, 0.2),
    0 0 0 3px rgba(35, 40, 47, 0.1019607843);
  box-shadow:
    var(
      --plyr-range-thumb-shadow,
      0 1px 1px rgba(35, 40, 47, 0.1490196078),
      0 0 0 1px rgba(35, 40, 47, 0.2)
    ),
    0 0 0 var(--plyr-range-thumb-active-shadow-width, 3px)
      var(
        --plyr-audio-range-thumb-active-shadow-color,
        rgba(35, 40, 47, 0.1019607843)
      );
}

.plyr--full-ui.plyr--audio input[type="range"]:active::-moz-range-thumb {
  box-shadow:
    0 1px 1px rgba(35, 40, 47, 0.1490196078),
    0 0 0 1px rgba(35, 40, 47, 0.2),
    0 0 0 3px rgba(35, 40, 47, 0.1019607843);
  box-shadow:
    var(
      --plyr-range-thumb-shadow,
      0 1px 1px rgba(35, 40, 47, 0.1490196078),
      0 0 0 1px rgba(35, 40, 47, 0.2)
    ),
    0 0 0 var(--plyr-range-thumb-active-shadow-width, 3px)
      var(
        --plyr-audio-range-thumb-active-shadow-color,
        rgba(35, 40, 47, 0.1019607843)
      );
}

.plyr--full-ui.plyr--audio input[type="range"]:active::-ms-thumb {
  box-shadow:
    0 1px 1px rgba(35, 40, 47, 0.1490196078),
    0 0 0 1px rgba(35, 40, 47, 0.2),
    0 0 0 3px rgba(35, 40, 47, 0.1019607843);
  box-shadow:
    var(
      --plyr-range-thumb-shadow,
      0 1px 1px rgba(35, 40, 47, 0.1490196078),
      0 0 0 1px rgba(35, 40, 47, 0.2)
    ),
    0 0 0 var(--plyr-range-thumb-active-shadow-width, 3px)
      var(
        --plyr-audio-range-thumb-active-shadow-color,
        rgba(35, 40, 47, 0.1019607843)
      );
}

.plyr--audio .plyr__progress__buffer {
  color: rgba(193, 200, 209, 0.6);
  color: var(
    --plyr-audio-progress-buffered-background,
    rgba(193, 200, 209, 0.6)
  );
}

.plyr--video {
  overflow: hidden;
}

.plyr--video.plyr--menu-open {
  overflow: visible;
}

.plyr__video-wrapper {
  background: #000;
  background: var(--plyr-video-background, var(--plyr-video-background, #000));
  border-radius: inherit;
  height: 100%;
  margin: auto;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.plyr__video-embed,
.plyr__video-wrapper--fixed-ratio {
  aspect-ratio: 16/9;
}

@supports not (aspect-ratio: 16/9) {
  .plyr__video-embed,
  .plyr__video-wrapper--fixed-ratio {
    height: 0;
    padding-bottom: 56.25%;
    position: relative;
  }
}

.plyr__video-embed iframe,
.plyr__video-wrapper--fixed-ratio video {
  border: 0;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.plyr--full-ui .plyr__video-embed > .plyr__video-embed__container {
  padding-bottom: 240%;
  position: relative;
  transform: translateY(-38.28125%);
}

.plyr--video .plyr__controls {
  background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.7490196078));
  background: var(
    --plyr-video-controls-background,
    linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.7490196078))
  );
  border-bottom-left-radius: inherit;
  border-bottom-right-radius: inherit;
  bottom: 0;
  color: #fff;
  color: var(--plyr-video-control-color, #fff);
  left: 0;
  padding: 5px;
  padding: calc(var(--plyr-control-spacing, 10px) / 2);
  padding-top: 20px;
  padding-top: calc(var(--plyr-control-spacing, 10px) * 2);
  position: absolute;
  right: 0;
  transition:
    opacity 0.4s ease-in-out,
    transform 0.4s ease-in-out;
  z-index: 3;
}

@media (min-width: 480px) {
  .plyr--video .plyr__controls {
    padding: 10px;
    padding: var(--plyr-control-spacing, 10px);
    padding-top: 35px;
    padding-top: calc(var(--plyr-control-spacing, 10px) * 3.5);
  }
}

.plyr--video.plyr--hide-controls .plyr__controls {
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
}

.plyr--video .plyr__control:focus-visible,
.plyr--video .plyr__control:hover,
.plyr--video .plyr__control[aria-expanded="true"] {
  background: #00b2ff;
  background: var(
    --plyr-video-control-background-hover,
    var(--plyr-color-main, var(--plyr-color-main, #00b2ff))
  );
  color: #fff;
  color: var(--plyr-video-control-color-hover, #fff);
}

.plyr__control--overlaid {
  background: #00b2ff;
  background: var(
    --plyr-video-control-background-hover,
    var(--plyr-color-main, var(--plyr-color-main, #00b2ff))
  );
  border: 0;
  border-radius: 100%;
  color: #fff;
  color: var(--plyr-video-control-color, #fff);
  display: none;
  left: 50%;
  opacity: 0.9;
  padding: 15px;
  padding: calc(var(--plyr-control-spacing, 10px) * 1.5);
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: 0.3s;
  z-index: 2;
}

.plyr__control--overlaid svg {
  left: 2px;
  position: relative;
}

.plyr__control--overlaid:focus,
.plyr__control--overlaid:hover {
  opacity: 1;
}

.plyr--playing .plyr__control--overlaid {
  opacity: 0;
  visibility: hidden;
}

.plyr--full-ui.plyr--video .plyr__control--overlaid {
  display: block;
}

.plyr--full-ui.plyr--video input[type="range"]::-webkit-slider-runnable-track {
  background-color: hsla(0, 0%, 100%, 0.2509803922);
  background-color: var(
    --plyr-video-range-track-background,
    var(
      --plyr-video-progress-buffered-background,
      rgba(255, 255, 255, 0.2509803922)
    )
  );
}

.plyr--full-ui.plyr--video input[type="range"]::-moz-range-track {
  background-color: hsla(0, 0%, 100%, 0.2509803922);
  background-color: var(
    --plyr-video-range-track-background,
    var(
      --plyr-video-progress-buffered-background,
      rgba(255, 255, 255, 0.2509803922)
    )
  );
}

.plyr--full-ui.plyr--video input[type="range"]::-ms-track {
  background-color: hsla(0, 0%, 100%, 0.2509803922);
  background-color: var(
    --plyr-video-range-track-background,
    var(
      --plyr-video-progress-buffered-background,
      rgba(255, 255, 255, 0.2509803922)
    )
  );
}

.plyr--full-ui.plyr--video input[type="range"]:active::-webkit-slider-thumb {
  box-shadow:
    0 1px 1px rgba(35, 40, 47, 0.1490196078),
    0 0 0 1px rgba(35, 40, 47, 0.2),
    0 0 0 3px hsla(0, 0%, 100%, 0.5019607843);
  box-shadow:
    var(
      --plyr-range-thumb-shadow,
      0 1px 1px rgba(35, 40, 47, 0.1490196078),
      0 0 0 1px rgba(35, 40, 47, 0.2)
    ),
    0 0 0 var(--plyr-range-thumb-active-shadow-width, 3px)
      var(
        --plyr-audio-range-thumb-active-shadow-color,
        rgba(255, 255, 255, 0.5019607843)
      );
}

.plyr--full-ui.plyr--video input[type="range"]:active::-moz-range-thumb {
  box-shadow:
    0 1px 1px rgba(35, 40, 47, 0.1490196078),
    0 0 0 1px rgba(35, 40, 47, 0.2),
    0 0 0 3px hsla(0, 0%, 100%, 0.5019607843);
  box-shadow:
    var(
      --plyr-range-thumb-shadow,
      0 1px 1px rgba(35, 40, 47, 0.1490196078),
      0 0 0 1px rgba(35, 40, 47, 0.2)
    ),
    0 0 0 var(--plyr-range-thumb-active-shadow-width, 3px)
      var(
        --plyr-audio-range-thumb-active-shadow-color,
        rgba(255, 255, 255, 0.5019607843)
      );
}

.plyr--full-ui.plyr--video input[type="range"]:active::-ms-thumb {
  box-shadow:
    0 1px 1px rgba(35, 40, 47, 0.1490196078),
    0 0 0 1px rgba(35, 40, 47, 0.2),
    0 0 0 3px hsla(0, 0%, 100%, 0.5019607843);
  box-shadow:
    var(
      --plyr-range-thumb-shadow,
      0 1px 1px rgba(35, 40, 47, 0.1490196078),
      0 0 0 1px rgba(35, 40, 47, 0.2)
    ),
    0 0 0 var(--plyr-range-thumb-active-shadow-width, 3px)
      var(
        --plyr-audio-range-thumb-active-shadow-color,
        rgba(255, 255, 255, 0.5019607843)
      );
}

.plyr--video .plyr__progress__buffer {
  color: hsla(0, 0%, 100%, 0.2509803922);
  color: var(
    --plyr-video-progress-buffered-background,
    rgba(255, 255, 255, 0.2509803922)
  );
}

.plyr:fullscreen {
  background: #000;
  border-radius: 0 !important;
  height: 100%;
  margin: 0;
  width: 100%;
}

.plyr:fullscreen video {
  height: 100%;
}

.plyr:fullscreen .plyr__control .icon--exit-fullscreen {
  display: block;
}

.plyr:fullscreen .plyr__control .icon--exit-fullscreen + svg {
  display: none;
}

.plyr:fullscreen.plyr--hide-controls {
  cursor: none;
}

@media (min-width: 1024px) {
  .plyr:fullscreen .plyr__captions {
    font-size: 21px;
    font-size: var(--plyr-font-size-xlarge, 21px);
  }
}

.plyr--fullscreen-fallback {
  background: #000;
  border-radius: 0 !important;
  bottom: 0;
  height: 100%;
  left: 0;
  margin: 0;
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 10000000;
}

.plyr--fullscreen-fallback video {
  height: 100%;
}

.plyr--fullscreen-fallback .plyr__control .icon--exit-fullscreen {
  display: block;
}

.plyr--fullscreen-fallback .plyr__control .icon--exit-fullscreen + svg {
  display: none;
}

.plyr--fullscreen-fallback.plyr--hide-controls {
  cursor: none;
}

@media (min-width: 1024px) {
  .plyr--fullscreen-fallback .plyr__captions {
    font-size: 21px;
    font-size: var(--plyr-font-size-xlarge, 21px);
  }
}

.plyr__ads {
  border-radius: inherit;
  bottom: 0;
  cursor: pointer;
  left: 0;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}

.plyr__ads > div,
.plyr__ads > div iframe {
  height: 100%;
  position: absolute;
  width: 100%;
}

.plyr__ads:after {
  background: #23282f;
  border-radius: 2px;
  bottom: 10px;
  bottom: var(--plyr-control-spacing, 10px);
  color: #fff;
  content: attr(data-badge-text);
  font-size: 11px;
  padding: 2px 6px;
  pointer-events: none;
  position: absolute;
  right: 10px;
  right: var(--plyr-control-spacing, 10px);
  z-index: 3;
}

.plyr__ads:empty:after {
  display: none;
}

.plyr__cues {
  background: currentColor;
  display: block;
  height: 5px;
  height: var(--plyr-range-track-height, 5px);
  left: 0;
  opacity: 0.8;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  z-index: 3;
}

.plyr__preview-thumb {
  background-color: #fff;
  background-color: var(--plyr-tooltip-background, #fff);
  border-radius: 8px;
  border-radius: var(--plyr-menu-radius, 8px);
  bottom: 100%;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1490196078);
  box-shadow: var(--plyr-tooltip-shadow, 0 1px 2px rgba(0, 0, 0, 0.1490196078));
  margin-bottom: 10px;
  margin-bottom: calc(var(--plyr-control-spacing, 10px) / 2 * 2);
  opacity: 0;
  padding: 3px;
  pointer-events: none;
  position: absolute;
  transform: translateY(10px) scale(0.8);
  transform-origin: 50% 100%;
  transition:
    transform 0.2s ease 0.1s,
    opacity 0.2s ease 0.1s;
  z-index: 2;
}

.plyr__preview-thumb--is-shown {
  opacity: 1;
  transform: translate(0) scale(1);
}

.plyr__preview-thumb:before {
  border-left: 4px solid rgba(0, 0, 0, 0);
  border-left: var(--plyr-tooltip-arrow-size, 4px) solid rgba(0, 0, 0, 0);
  border-right: 4px solid rgba(0, 0, 0, 0);
  border-right: var(--plyr-tooltip-arrow-size, 4px) solid rgba(0, 0, 0, 0);
  border-top: 4px solid #fff;
  border-top: var(--plyr-tooltip-arrow-size, 4px) solid
    var(--plyr-tooltip-background, #fff);
  bottom: -4px;
  bottom: calc(var(--plyr-tooltip-arrow-size, 4px) * -1);
  content: "";
  height: 0;
  left: calc(50% + var(--preview-arrow-offset));
  position: absolute;
  transform: translateX(-50%);
  width: 0;
  z-index: 2;
}

.plyr__preview-thumb__image-container {
  background: #c1c8d1;
  border-radius: 7px;
  border-radius: calc(var(--plyr-menu-radius, 8px) - 1px);
  overflow: hidden;
  position: relative;
  z-index: 0;
}

.plyr__preview-thumb__image-container img,
.plyr__preview-thumb__image-container:after {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.plyr__preview-thumb__image-container:after {
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.1490196078);
  content: "";
  pointer-events: none;
}

.plyr__preview-thumb__image-container img {
  max-height: none;
  max-width: none;
}

.plyr__preview-thumb__time-container {
  background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.7490196078));
  background: var(
    --plyr-video-controls-background,
    linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.7490196078))
  );
  border-bottom-left-radius: 7px;
  border-bottom-left-radius: calc(var(--plyr-menu-radius, 8px) - 1px);
  border-bottom-right-radius: 7px;
  border-bottom-right-radius: calc(var(--plyr-menu-radius, 8px) - 1px);
  bottom: 0;
  left: 0;
  line-height: 1.1;
  padding: 20px 6px 6px;
  position: absolute;
  right: 0;
  z-index: 3;
}

.plyr__preview-thumb__time-container span {
  color: #fff;
  font-size: 13px;
  font-size: var(--plyr-font-size-time, var(--plyr-font-size-small, 13px));
}

.plyr__preview-scrubbing {
  bottom: 0;
  filter: blur(1px);
  height: 100%;
  left: 0;
  margin: auto;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  transition: opacity 0.3s ease;
  width: 100%;
  z-index: 1;
}

.plyr__preview-scrubbing--is-shown {
  opacity: 1;
}

.plyr__preview-scrubbing img {
  height: 100%;
  left: 0;
  max-height: none;
  max-width: none;
  object-fit: contain;
  position: absolute;
  top: 0;
  width: 100%;
}

.plyr--no-transition {
  transition: none !important;
}

.plyr__sr-only {
  clip: rect(1px, 1px, 1px, 1px);
  border: 0 !important;
  height: 1px !important;
  overflow: hidden;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
}

.plyr [hidden] {
  display: none !important;
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px;
  margin: 0 0 40px 0;
}

.grid-item {
  background-color: #eee;
}

.grid-item:nth-child(4) {
  grid-column: span 2;
}

.grid-item:nth-child(5) {
  grid-column: span 1;
}

@media (max-width: 768px) {
  .grid-container {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 30px;
    margin: 0 0 40px 0;
  }

  .grid-item:nth-child(4),
  .grid-item:nth-child(5) {
    grid-column: span 1;
  }
}

.grid-cards {
  background-color: var(--pri-color);
  background-size: cover;
  position: relative;
  height: 300px;
}

.grid-cards h3 {
  color: var(--white-color);
  position: absolute;
  bottom: 60px;
}

.grid-cards .button {
  display: block;
  position: absolute;
  padding: 0;
  right: 0;
  bottom: -1px;
  text-transform: capitalize;
}

.grid-cards .button a {
  background-color: rgba(0, 0, 0, 0);
  border-radius: 0;
  color: var(--white-color);
  display: inline-block;
  font-size: 1em;
  font-weight: 400;
  padding: 10px 0 10px 20px;
  text-decoration: none;
  outline: 0;
  transition: var(--transition);
}

.grid-cards .button a i {
  background-color: var(--sec-color);
  color: var(--white-color);
  padding: 13px 15px;
}

.grid-cards .button a:hover {
  background-color: var(--sec-color);
  color: var(--white-color);
  cursor: pointer;
}

.grid-cards .button a:hover i {
  background-color: var(--sec-color);
  color: var(--white-color);
}

.grid-cards__image {
  display: block;
  width: 100%;
  height: auto;
  max-height: 300px;
}

.grid-cards__overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  visibility: none;
  transition: 0.5s ease;
  background-color: rgba(0, 0, 0, 0.3);
}

.grid-cards__overlay__text {
  color: var(--white-color);
  padding: 20px;
}

.content {
  position: relative;
  max-width: 1200px;
  width: 95%;
  margin: 0 auto;
}

.grid-section {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 30px;
}

.grid-half,
.grid-third,
.grid-quarter,
.grid-two-thirds {
  grid-column: span 12;
}

@media screen and (min-width: 768px) {
  .grid-half {
    grid-column: span 6;
  }

  .grid-third {
    grid-column: span 4;
  }

  .grid-quarter {
    grid-column: span 3 !important;
  }

  .grid-two-thirds {
    grid-column: span 8;
  }
}

@media screen and (min-width: 600px) {
  .grid-quarter {
    grid-column: span 6;
  }
}

.content-static {
  position: relative;
  width: 95%;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
  clear: both;
}

.content-static:after {
  content: " ";
  display: table;
  clear: both;
}

.content-static .column {
  width: 100%;
  float: left;
  box-sizing: border-box;
}

@media only screen and (min-width: 768px) {
  .column {
    margin-left: 3%;
  }

  .column:first-child {
    margin-left: 0;
  }

  .column.quarter {
    width: 22.75%;
  }

  .column.three-quarters {
    width: 74.25%;
  }

  .column.third {
    width: 31.3333333333%;
  }

  .column.two-thirds {
    width: 65.6666666667%;
  }

  .column.fifth {
    width: 19.4%;
  }

  .column.four-fifths {
    width: 77.6%;
  }

  .column.half {
    width: 48.5%;
  }

  .column.third {
    width: 31.3333333333%;
  }

  .column.two-thirds {
    width: 65.6666666667%;
  }
}

.sticky-container {
  display: block;
}

.sticky-container .sticky-sidebar {
  position: -webkit-sticky;
  position: sticky;
  top: 20px;
}

@media only screen and (min-width: 768px) {
  .sticky-container {
    display: flex;
  }
}

.grid-school-menu {
  display: grid;
  grid-template-columns: 20% 80%;
  grid-gap: 0;
  position: relative;
  top: -38px;
}

.grid-school-menu img {
  padding: 10px 10px 10px 10px;
  width: 220px;
  margin: 0 auto 20px;
}

.grid-school-menu > div {
  padding: 0;
  margin: 0;
}

.grid-school-menu div:first-child {
  background-color: var(--white-color);
}

.grid-school-menu div:last-child {
  background-color: var(--sec-color);
}

@media (max-width: 768px) {
  .grid-school-menu {
    grid-template-columns: 1fr;
  }
}

.toggle,
[id^="drop"] {
  display: none;
}

nav.school-menu:after {
  content: "";
  display: table;
  clear: both;
}

nav.school-menu ul {
  display: none;
  float: right;
  padding: 0;
  margin: 0;
  list-style: none;
  position: relative;
}

nav.school-menu ul li {
  margin: 0px;
  display: inline-block;
  float: left;
  background-color: var(--sec-color);
}

nav.school-menu a {
  display: block;
  padding: 0 20px;
  color: var(--white-color);
  font-size: 16px;
  line-height: 75px;
  text-decoration: none;
  transition: var(--transition);
}

nav.school-menu a:hover {
  background-color: var(--pri-color);
  color: var(--white-color);
}

@media all and (max-width: 768px) {
  .grid-school-menu {
    top: 0;
  }

  nav.school-menu {
    margin: 0;
  }

  .toggle + a,
  .menu-sibling {
    display: none;
  }

  .toggle {
    display: block;
    background-color: var(--pri-color);
    color: var(--white-color);
    padding: 0 20px;
    font-size: 20px;
    line-height: 60px;
    text-decoration: none;
    border: none;
  }

  .toggle:hover {
    background-color: var(--black-color);
  }

  [id^="drop"]:checked + ul {
    display: block;
  }

  nav.school-menu ul li {
    display: block;
    width: 100%;
  }

  nav.school-menu a:hover {
    background-color: var(--pri-color);
    color: var(--white-color);
  }
}

@media all and (max-width: 330px) {
  nav.school-menu ul li {
    display: block;
    width: 94%;
  }
}

.sidebar-card {
  background-color: #f4f4f4;
  margin: 0 0 20px 0;
  width: 100%;
  max-width: 600px;
  height: auto;
  position: relative;
  transition: var(--transition);
}

.sidebar-card ul {
  margin: 0;
  padding: 0 0 20px 0;
}

.sidebar-card ul li {
  list-style: none;
  padding: 20px 0 0 0;
}

.sidebar-card ul li.current-page a,
.sidebar-card ul li.current-page a:link,
.sidebar-card ul li.current-page a:visited {
  border-bottom: 2px solid var(--pri-color);
  color: var(--pri-color);
}

.sidebar-card ul li.current-page a .icon-arrow:before,
.sidebar-card ul li.current-page a:link .icon-arrow:before,
.sidebar-card ul li.current-page a:visited .icon-arrow:before {
  font-size: 2rem;
  position: relative;
  right: 5px;
  color: var(--gold-color);
  transform: rotate(45deg);
  transition: var(--transition);
}

.sidebar-card ul li a,
.sidebar-card ul li a:link,
.sidebar-card ul li a:visited {
  border-bottom: 2px solid rgba(0, 0, 0, 0);
  display: flex;
  text-decoration: none;
}

.sidebar-card ul li a:hover,
.sidebar-card ul li a:link:hover,
.sidebar-card ul li a:visited:hover {
  border-bottom: 2px solid var(--pri-color);
  color: var(--pri-color);
}

.sidebar-card ul li a:hover .icon-arrow:before,
.sidebar-card ul li a:link:hover .icon-arrow:before,
.sidebar-card ul li a:visited:hover .icon-arrow:before {
  transform: rotate(45deg);
}

.sidebar-card ul li a .icon-arrow:before,
.sidebar-card ul li a:link .icon-arrow:before,
.sidebar-card ul li a:visited .icon-arrow:before {
  font-size: 2rem;
  position: relative;
  right: 5px;
  color: var(--gold-color);
  transition: var(--transition);
}

.video-container {
  width: 100%;
  height: 700px;
  position: relative;
  background-color: var(--pri-color);
}

.video-container .slider-home-content-area {
  background-color: rgba(0, 0, 0, 0.5);
  border-left: 5px solid var(--sec-color);
  position: relative;
  padding: 20px;
  top: 250px;
  max-width: 800px;
  width: 100%;
  height: auto;
}

.video-container h1 {
  color: var(--white-color);
  font-size: 2.5em;
  line-height: 1em;
  margin: 0;
  padding: 0;
}

.video-container h1:first-child {
  color: var(--sec-color);
  padding-bottom: 15px;
}

.video-container video,
.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#homeSlider.owl-carousel.owl-theme {
  display: block;
}

#homeSlider.owl-carousel.owl-theme .slider-home {
  background-color: var(--pri-color);
  background-size: cover;
  position: relative;
  height: 700px;
}

#homeSlider.owl-carousel.owl-theme .slider-home .content {
  z-index: 10 !important;
}

#homeSlider.owl-carousel.owl-theme .slider-home .slider-overlay {
  background-color: rgba(0, 0, 0, 0.4);
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 5;
}

#homeSlider.owl-carousel.owl-theme .slider-home .slider-home-content-area {
  background-color: rgba(0, 0, 0, 0.5);
  border-left: 5px solid var(--sec-color);
  position: relative;
  padding: 20px;
  top: 250px;
  max-width: 800px;
  width: 100%;
  height: auto;
}

#homeSlider.owl-carousel.owl-theme
  .slider-home
  .slider-home-content-area
  .button {
  display: block;
  position: absolute;
  padding: 0;
  right: 0;
  bottom: 0;
  text-transform: capitalize;
}

#homeSlider.owl-carousel.owl-theme
  .slider-home
  .slider-home-content-area
  .button
  a {
  background-color: rgba(0, 0, 0, 0);
  border-radius: 0;
  color: var(--white-color);
  display: inline-block;
  font-size: 1em;
  font-weight: 400;
  padding: 10px 0 10px 20px;
  text-decoration: none;
  outline: 0;
  transition: var(--transition);
}

#homeSlider.owl-carousel.owl-theme
  .slider-home
  .slider-home-content-area
  .button
  a
  i {
  background-color: var(--sec-color);
  padding: 13px 15px;
}

#homeSlider.owl-carousel.owl-theme
  .slider-home
  .slider-home-content-area
  .button
  a:hover {
  background-color: var(--sec-color);
  color: var(--white-color);
  cursor: pointer;
}

#homeSlider.owl-carousel.owl-theme
  .slider-home
  .slider-home-content-area
  .button
  a:hover
  i {
  background-color: var(--sec-color);
}

#homeSlider.owl-carousel.owl-theme .slider-home h1 {
  color: var(--white-color);
  font-size: 3.5em;
  line-height: 1em;
  margin: 0;
  padding: 0;
}

#homeSlider.owl-carousel.owl-theme .slider-home h1:first-child {
  color: var(--sec-color);
}

#homeSlider.owl-carousel.owl-theme .slider-home p {
  color: var(--white-color);
  font-size: 1.8rem;
}

#homeSlider.owl-carousel.owl-theme .owl-nav {
  margin-top: 0;
}

#homeSlider.owl-carousel.owl-theme .owl-nav button.owl-next,
#homeSlider.owl-carousel.owl-theme .owl-nav button.owl-prev {
  position: absolute;
  border-radius: 0;
  bottom: 50%;
  color: var(--white-color);
  display: block;
  height: 60px;
  width: 60px;
  transition: var(--transition);
}

#homeSlider.owl-carousel.owl-theme .owl-nav button.owl-next span,
#homeSlider.owl-carousel.owl-theme .owl-nav button.owl-prev span {
  position: relative;
  font-size: 90px;
  bottom: 50px;
}

#homeSlider.owl-carousel.owl-theme .owl-nav button.owl-next:hover,
#homeSlider.owl-carousel.owl-theme .owl-nav button.owl-prev:hover {
  background-color: var(--sec-color);
}

#homeSlider.owl-carousel.owl-theme .owl-nav button.owl-next {
  right: 20px;
}

#homeSlider.owl-carousel.owl-theme .owl-nav button.owl-prev {
  left: 20px;
}

#homeSlider.owl-carousel.owl-theme .owl-dots {
  position: relative;
  display: block;
  bottom: 50px;
}

#homeSlider.owl-carousel.owl-theme .owl-dots .owl-dot span {
  background: var(--white-color);
  border-radius: 0;
  width: 50px;
  height: 10px;
}

#homeSlider.owl-carousel.owl-theme .owl-dots .owl-dot.active span,
#homeSlider.owl-carousel.owl-theme .owl-dots .owl-dot:hover span {
  background: var(--sec-color);
}

#blockSlider.owl-carousel.owl-theme {
  display: block;
  padding: 30px 0;
  z-index: 0;
}

#blockSlider.owl-carousel.owl-theme .slider-block {
  background-color: var(--pri-color);
  background-size: cover;
  position: relative;
  height: 500px;
}

#blockSlider.owl-carousel.owl-theme .slider-block .content {
  z-index: 10 !important;
}

#blockSlider.owl-carousel.owl-theme .slider-block .slider-overlay {
  background-color: rgba(0, 0, 0, 0.4);
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 5;
}

#blockSlider.owl-carousel.owl-theme .slider-block .slider-block-content-area {
  background-color: rgba(0, 0, 0, 0.5);
  border-left: 5px solid var(--sec-color);
  position: relative;
  padding: 20px;
  top: 50px;
  max-width: 800px;
  width: 100%;
  height: auto;
}

#blockSlider.owl-carousel.owl-theme
  .slider-block
  .slider-block-content-area
  .button {
  display: block;
  position: absolute;
  padding: 0;
  right: 0;
  bottom: 0;
  text-transform: capitalize;
}

#blockSlider.owl-carousel.owl-theme
  .slider-block
  .slider-block-content-area
  .button
  a {
  background-color: rgba(0, 0, 0, 0);
  border-radius: 0;
  color: var(--white-color);
  display: inline-block;
  font-size: 1em;
  font-weight: 400;
  padding: 10px 0 10px 20px;
  text-decoration: none;
  outline: 0;
  transition: var(--transition);
}

#blockSlider.owl-carousel.owl-theme
  .slider-block
  .slider-block-content-area
  .button
  a
  i {
  background-color: var(--sec-color);
  padding: 13px 15px;
}

#blockSlider.owl-carousel.owl-theme
  .slider-block
  .slider-block-content-area
  .button
  a:hover {
  background-color: var(--sec-color);
  color: var(--white-color);
  cursor: pointer;
}

#blockSlider.owl-carousel.owl-theme
  .slider-block
  .slider-block-content-area
  .button
  a:hover
  i {
  background-color: var(--sec-color);
}

#blockSlider.owl-carousel.owl-theme .slider-block h1 {
  color: var(--white-color);
  font-size: 3.5em;
  line-height: 1em;
  margin: 0;
  padding: 0;
}

#blockSlider.owl-carousel.owl-theme .slider-block h1:first-child {
  color: var(--sec-color);
}

#blockSlider.owl-carousel.owl-theme .slider-block p {
  color: var(--white-color);
  font-size: 1.8rem;
}

#blockSlider.owl-carousel.owl-theme .owl-nav {
  margin-top: 0;
}

#blockSlider.owl-carousel.owl-theme .owl-nav button.owl-next,
#blockSlider.owl-carousel.owl-theme .owl-nav button.owl-prev {
  position: absolute;
  border-radius: 0;
  bottom: 50%;
  color: var(--white-color);
  display: block;
  height: 60px;
  width: 60px;
  transition: var(--transition);
}

#blockSlider.owl-carousel.owl-theme .owl-nav button.owl-next span,
#blockSlider.owl-carousel.owl-theme .owl-nav button.owl-prev span {
  position: relative;
  font-size: 90px;
  bottom: 50px;
}

#blockSlider.owl-carousel.owl-theme .owl-nav button.owl-next:hover,
#blockSlider.owl-carousel.owl-theme .owl-nav button.owl-prev:hover {
  background-color: var(--sec-color);
}

#blockSlider.owl-carousel.owl-theme .owl-nav button.owl-next {
  right: 20px;
}

#blockSlider.owl-carousel.owl-theme .owl-nav button.owl-prev {
  left: 20px;
}

#blockSlider.owl-carousel.owl-theme .owl-dots {
  position: relative;
  display: block;
  bottom: 50px;
}

#blockSlider.owl-carousel.owl-theme .owl-dots .owl-dot span {
  background: var(--white-color);
  border-radius: 0;
  width: 50px;
  height: 10px;
}

#blockSlider.owl-carousel.owl-theme .owl-dots .owl-dot.active span,
#blockSlider.owl-carousel.owl-theme .owl-dots .owl-dot:hover span {
  background: var(--sec-color);
}

@media only screen and (max-width: 768px) {
  .video-container {
    height: 400px;
  }

  .video-container .slider-home-content-area {
    top: 60px;
  }

  #homeSlider.owl-carousel.owl-theme .slider-home {
    height: 400px;
  }

  #homeSlider.owl-carousel.owl-theme .slider-home .slider-home-content-area {
    top: 230px;
    height: 150px;
  }

  #homeSlider.owl-carousel.owl-theme .slider-home h1 {
    font-size: 2em;
  }

  #blockSlider.owl-carousel.owl-theme .slider-block .slider-block-content-area {
    top: 250px;
    height: 150px;
  }

  #blockSlider.owl-carousel.owl-theme .slider-block h1 {
    font-size: 2em;
  }
  #blockSlider.owl-carousel.owl-theme .slider-block {
    height: 300px;
  }
}

#sb_instagram .sb_instagram_header .sbi_header_text,
.sb_instagram_header .sbi_header_text {
  display: none;
}

#sb_instagram #sbi_load {
  opacity: 0;
}

.wp-block-table thead {
  border-bottom: none !important;
}

.wp-block-table table,
table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 60px 0;
}

.wp-block-table table tr:nth-of-type(odd),
table tr:nth-of-type(odd) {
  background: var(--grey-color);
}

.wp-block-table table th,
table th {
  background: var(--pri-color) !important;
  color: var(--white-color) !important;
}

.wp-block-table table td,
.wp-block-table table th,
table td,
table th {
  padding: 10px;
  border: 1px solid var(--dark-grey-color);
  text-align: left;
  font-size: 17px;
  font-weight: 400;
}

@media screen and (max-width: 768px) {
  .wp-block-table table,
  table,
  thead,
  tbody,
  th,
  td,
  tr {
    display: block;
  }

  table {
    width: 100%;
  }

  table thead tr {
    position: absolute;
    top: -9999px;
    left: -9999px;
  }

  table tr {
    border: 1px solid var(--dark-grey-color);
  }

  table td {
    border: none;
    position: relative;
    padding-left: 50%;
  }

  table td:before {
    position: absolute;
    top: 6px;
    left: 6px;
    width: 45%;
    padding-right: 10px;
    white-space: nowrap;
    content: attr(data-column);
    color: #000;
    font-weight: bold;
  }
}

.wp-block-table figcaption.wp-element-caption {
  background-color: var(--grey-color);
  border: 1px solid var(--dark-grey-color);
  font-size: 14px;
  padding: 5px;
  position: relative;
  top: -50px;
}

@media (max-width: 767px) {
  .tab-list {
    display: none;
  }

  .tabs.enabled .tab-heading {
    cursor: pointer;
  }

  .tabs.enabled .tab-heading.active-tab-heading {
    cursor: default;
  }

  .hidden-mobile {
    display: none;
  }
}

@media (min-width: 768px) {
  .tabs.enabled .tab-heading {
    display: none;
  }

  .tab-list li {
    display: inline;
    cursor: pointer;
  }

  .hidden-mobile {
    display: block !important;
  }
}

.tab-panel {
  margin-bottom: 50px;
}

.tabs.enabled .tab-heading:focus,
.tabs.enabled .tab-list li:focus {
  outline: 1px solid #003d7c;
}

.tabs.enabled .tab-heading.active-tab-heading:focus,
.tabs.enabled .tab-list li.active-tab:focus {
  outline: none !important;
}

@media (max-width: 767px) {
  .tabs.enabled .tab-heading {
    padding: 0.5em;
    border: 1px solid #003d7c;
    background: #f0f0f0;
    color: #000;
    position: relative;
  }

  .tabs.enabled .tab-heading:after {
    content: "";
    display: block;
    position: absolute;
    right: 20px;
    top: 40%;
    width: 0px;
    height: 0px;
    border-left: 10px solid rgba(0, 0, 0, 0);
    border-right: 10px solid rgba(0, 0, 0, 0);
    border-top: 10px solid #000;
  }

  .tabs.enabled .tab-heading:hover,
  .tabs.enabled .tab-heading.active-tab-heading:hover {
    background-color: #003d7c;
    color: #fff;
  }

  .tabs.enabled .tab-heading.active-tab-heading {
    background: #003d7c;
    color: #fff;
  }

  .tabs.enabled .tab-heading.active-tab-heading:after {
    border-bottom: 10px solid #fff;
    border-top: 0;
  }
}

@media (min-width: 768px) {
  .tab-list {
    font-size: 1.2em;
    margin: 2em 0 0 0;
    padding: 0;
    border-bottom: 1px solid #ddd;
    padding-bottom: 11px;
    line-height: 1em;
  }

  .tab-list li {
    background: #eee;
    padding: 10px 20px;
    border-right: 1px solid #ddd;
  }

  .tab-list li:hover,
  .tab-list li.active-tab {
    background: #003d7c;
    color: #fff;
    border-bottom-color: #fff;
  }
}

.timeline {
  position: relative;
}

.timeline-item {
  width: 100%;
  margin-bottom: 70px;
}

.timeline-item:nth-child(even) .timeline__content {
  float: right;
  padding: 40px 30px 10px 30px;
}

.timeline-item::after {
  content: "";
  display: block;
  clear: both;
}

.timeline__number {
  width: 100px;
  height: 100px;
  background: var(--pri-color);
  border-radius: 50%;
  position: absolute;
  left: 50%;
  margin-top: 25px;
  margin-left: -50px;
}

.timeline__number span {
  font-size: 30px;
  font-weight: 700;
  color: var(--white-color);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.timeline__content {
  position: relative;
  width: 45%;
}

.timeline__content h1 {
  color: var(--third-color);
  font-size: 4em;
  margin: 0;
}

.timeline__content h3 {
  color: var(--pri-color);
  font-size: 1.5em;
}

@media screen and (max-width: 768px) {
  .timeline::before {
    left: 50px;
  }

  .timeline .timeline__number {
    width: 100px;
    height: 100px;
    background: var(--pri-color);
    border-radius: 50%;
    position: relative;
    left: 50%;
    margin-top: 25px;
    margin-left: -50px;
  }

  .timeline .timeline__content {
    max-width: 100%;
    width: auto;
    margin-left: 0;
  }

  .timeline .timeline__content h1 {
    font-size: 3rem;
  }

  .timeline .timeline__content h3 {
    font-size: 2rem;
  }

  .timeline .timeline-item:nth-child(even) .timeline__content {
    float: none;
    padding: 40px 30px 10px 30px;
  }
}

*,
*::after,
*::before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body {
  margin: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 62.5%;
}

html * {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html body {
  background-color: #f4f4f4;
  color: var(--black-color);
  font-family: "Libre Franklin", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 1.6em;
  line-height: 1.6;
  overflow-x: hidden;
}

a,
a:link,
a:visited {
  color: var(--pri-color);
  text-decoration: none;
  transition: var(--transition);
}

a:hover,
a:link:hover,
a:visited:hover {
  color: var(--sec-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Roboto Slab", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 900;
}

h1,
h2,
h3 {
  color: var(--pri-color);
  line-height: normal;
}

h4,
h5,
h6 {
  line-height: normal;
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 2rem;
}

h4 {
  font-size: 1.8rem;
}

h5 {
  font-size: 1.2rem;
}

h6 {
  font-size: 1rem;
}

hr {
  border: none;
  border-top: none !important;
  border-bottom: none !important;
  height: 0.5px;
  margin: 50px 0;
  color: var(--dark-grey-color);
  background-color: var(--dark-grey-color);
}

p {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

ul {
  padding: 0 0 0 25px;
}

ul li {
  font-size: 1.8rem;
}

ul li::marker {
  color: var(--sec-color);
}

ol {
  list-style: none;
  counter-reset: li;
}

ol li::before {
  content: counter(li);
  color: var(--white-color);
  background: var(--pri-color);
  border-radius: 50%;
  display: inline-block;
  margin-left: -2.5em;
  margin-bottom: 0.5em;
  margin-right: 0.9em;
  text-align: center;
  width: 1.5em;
  height: 1.5em;
}

ol li {
  counter-increment: li;
  padding: 0 0 15px 0;
}

em {
  font-style: italic;
}

blockquote {
  background: var(--grey-color);
  border-left: 5px solid var(--pri-color);
  margin-left: 0;
  padding: 5px 20px;
}

blockquote cite {
  font-weight: 500;
}

img {
  display: block;
  border: 0;
  max-width: 100%;
  height: auto;
}

.wp-block-buttons,
.button {
  display: inline-block;
  padding: 20px 5px 20px 0px;
  text-transform: capitalize;
}

.wp-block-buttons a.wp-block-button__link,
.wp-block-buttons a,
.button a.wp-block-button__link,
.button a {
  background-color: var(--sec-color);
  border-radius: 0;
  color: var(--white-color);
  display: inline-block;
  font-size: 1em;
  font-weight: 400;
  padding: 10px 20px;
  text-decoration: none;
  outline: 0;
  transition: var(--transition);
}

.wp-block-buttons a.wp-block-button__link:hover,
.wp-block-buttons a:hover,
.button a.wp-block-button__link:hover,
.button a:hover {
  background-color: var(--pri-color);
  color: var(--white-color);
  cursor: pointer;
}

.mb,
.mt {
  margin-bottom: 50px;
}

.mobile {
  display: block;
}

.desktop {
  display: none;
}

.float-left {
  float: left;
}

.float-right {
  float: right;
}

@media screen and (min-width: 768px) {
  .wp-block-buttons,
  .button {
    padding: 20px 30px 20px 0px;
  }

  .mobile {
    display: none;
  }

  .desktop {
    display: block;
  }
}

/* FOUNDATION CSS */

.sf-cta {
  background: var(--sf-ink-green);
  color: var(--sf-cream-text);
  text-align: center;
  padding: 6.5rem var(--sf-edge);
}

.sf-cta-inner {
  max-width: 640px;
  margin: 0 auto;
}

.sf-cta h2 {
  font-family: var(--sf-font-display);
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 2.6rem);
  color: var(--sf-parchment);
  margin: 0 0 1.3rem;
}

.sf-cta p {
  color: var(--sf-cream-text-soft);
}

.sf-cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin: 2.2rem 0 1.6rem;
  font-size: large;
}

.sf-btn {
  display: inline-block;
  padding: 0.95rem 2rem;
  font-family: var(--sf-font-utility);
  font-weight: 600;
  letter-spacing: 0.03em;
  text-decoration: none;
  border-radius: 1px;
  transition: all 0.2s ease;
}

.sf-btn-gold {
  background: var(--sf-old-gold);
  color: var(--sf-ink-green);
  border: 1px solid var(--sf-old-gold);
}
.sf-btn-gold:hover {
  background: transparent;
  color: var(--sf-old-gold) !important;
}

.sf-btn-outline {
  background: transparent;
  color: var(--sf-cream-text);
  border: 1px solid var(--sf-cream-text);
}
.sf-btn-outline:hover {
  border-color: var(--sf-old-gold);
  color: var(--sf-old-gold) !important;
}

.sf-cta-email {
  display: inline-block;
  font-family: var(--sf-font-utility);
  color: var(--sf-old-gold);
  text-decoration: none;
  border-bottom: 1px solid var(--sf-gold-line);
  padding-bottom: 0.15em;
  font-size: 1.95rem;
}
.sf-cta-email:hover {
  border-color: var(--sf-old-gold);
}

/* Site search */
.site-search-toggle,
.site-search-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.site-search-toggle {
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  padding: 0;
  margin-right: 4px;
  border: 1px solid rgba(0, 99, 65, 0.22);
  border-radius: 50%;
  background: var(--off-white-color);
  color: var(--pri-color);
}

.site-search-toggle:hover,
.site-search-toggle:focus-visible {
  background: var(--pri-color);
  border-color: var(--pri-color);
  color: var(--white-color);
  transform: translateY(-2px);
}

.site-search-toggle svg,
.site-search-close svg,
.site-search-field > svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
}

.site-search-overlay[hidden] {
  display: none !important;
}

.site-search-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(0, 42, 30, 0.82);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.site-search-overlay.is-open {
  opacity: 1;
}

.site-search-panel {
  position: relative;
  width: min(760px, 100%);
  padding: clamp(32px, 6vw, 64px);
  border-top: 5px solid var(--gold-color);
  border-radius: 4px;
  background: var(--white-color);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
  transform: translateY(18px) scale(0.98);
  transition: transform 0.25s ease;
}

.site-search-overlay.is-open .site-search-panel {
  transform: translateY(0) scale(1);
}

.site-search-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--dark-grey-color);
  border-radius: 50%;
  background: transparent;
  color: var(--pri-color);
}

.site-search-close:hover,
.site-search-close:focus-visible {
  background: var(--pri-color);
  border-color: var(--pri-color);
  color: var(--white-color);
  transform: rotate(5deg);
}

.site-search-kicker,
.search-results-heading > p {
  margin: 0 0 8px;
  color: var(--gold-color);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-search-panel h2 {
  margin: 0 54px 26px 0;
  color: var(--pri-color);
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  line-height: 1.12;
}

.site-search-field {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 7px 7px 7px 18px;
  border: 2px solid var(--dark-grey-color);
  border-radius: 4px;
  background: var(--white-color);
  color: var(--pri-color);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.site-search-field:focus-within {
  border-color: var(--sec-color);
  box-shadow: 0 0 0 4px rgba(6, 170, 57, 0.12);
}

.site-search-field input {
  flex: 1 1 auto;
  min-width: 0;
  padding: 12px 4px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--black-color);
  font: inherit;
  font-size: 1.7rem;
}

.site-search-field button,
.search-results-form button {
  min-height: 48px;
  padding: 0 24px;
  border: 0;
  border-radius: 3px;
  background: var(--pri-color);
  color: var(--white-color);
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.site-search-field button:hover,
.site-search-field button:focus-visible,
.search-results-form button:hover,
.search-results-form button:focus-visible {
  background: var(--sec-color);
  transform: translateY(-1px);
}

.site-search-hint {
  margin: 14px 0 0;
  color: #64716c;
  font-size: 1.3rem;
}

body.site-search-open {
  overflow: hidden;
}

.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Search results */
.search-results-page {
  padding-top: clamp(30px, 6vw, 70px);
  padding-bottom: clamp(50px, 8vw, 100px);
}

.search-results-heading {
  max-width: 820px;
  margin-bottom: 36px;
}

.search-results-heading h1 {
  margin: 0 0 24px;
  color: var(--pri-color);
  font-size: clamp(2.8rem, 5vw, 4.6rem);
  line-height: 1.15;
}

.search-results-form {
  display: flex;
  max-width: 720px;
  padding: 6px;
  border: 2px solid var(--dark-grey-color);
  border-radius: 4px;
  background: var(--white-color);
}

.search-results-form:focus-within {
  border-color: var(--sec-color);
  box-shadow: 0 0 0 4px rgba(6, 170, 57, 0.1);
}

.search-results-form input {
  flex: 1 1 auto;
  min-width: 0;
  padding: 10px 14px;
  border: 0;
  outline: 0;
  font: inherit;
  font-size: 1.6rem;
}

.search-results-count {
  padding-bottom: 14px;
  border-bottom: 1px solid var(--dark-grey-color);
  color: #52615c;
  font-weight: 600;
}

.search-results-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin: 30px 0 44px;
}

.search-result-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid #dce8e3;
  border-top: 4px solid var(--gold-color);
  border-radius: 3px;
  background: var(--white-color);
  box-shadow: 0 8px 28px rgba(0, 49, 34, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.search-result-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(0, 49, 34, 0.12);
}

.search-result-meta {
  margin: 0 0 10px;
  color: var(--sec-color);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.search-result-card h2 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 3vw, 2.6rem);
  line-height: 1.25;
}

.search-result-card h2 a {
  color: var(--pri-color);
  text-decoration: none;
}

.search-result-card h2 a:hover {
  color: var(--sec-color);
}

.search-result-excerpt {
  color: #46534e;
}

.search-result-excerpt p {
  margin-top: 0;
}

.search-result-link {
  align-self: flex-start;
  margin-top: auto;
  padding-top: 16px;
  color: var(--pri-color);
  font-weight: 700;
  text-decoration: none;
}

.search-result-link span {
  display: inline-block;
  margin-left: 5px;
  transition: transform 0.2s ease;
}

.search-result-link:hover span {
  transform: translateX(4px);
}

.search-no-results {
  max-width: 720px;
  padding: 34px;
  border-left: 5px solid var(--gold-color);
  background: var(--off-white-color);
}

.search-no-results h2 {
  margin-top: 0;
  color: var(--pri-color);
}

.search-results-page .navigation.pagination {
  margin-top: 30px;
}

@media only screen and (max-width: 959px) {
  .menu-container > .menu {
    display: block;
    min-height: 72px;
  }

  .site-search-toggle {
    position: absolute;
    top: 13px;
    right: 68px;
    z-index: 4;
    margin: 0;
  }
}

@media only screen and (max-width: 700px) {
  .site-search-overlay {
    place-items: start center;
    padding: 16px;
    overflow-y: auto;
  }

  .site-search-panel {
    margin-top: 9vh;
    padding: 54px 22px 28px;
  }

  .site-search-panel h2 {
    margin-right: 20px;
  }

  .site-search-field {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    padding: 8px 12px 12px;
  }

  .site-search-field button {
    grid-column: 1 / -1;
    width: 100%;
  }

  .site-search-hint {
    display: none;
  }

  .search-results-grid {
    grid-template-columns: 1fr;
  }
}

@media only screen and (max-width: 480px) {
  .menu-container a.logo {
    width: min(220px, calc(100% - 112px));
  }

  .site-search-toggle {
    width: 42px;
    height: 42px;
    top: 11px;
    right: 58px;
  }

  .search-results-form {
    display: block;
  }

  .search-results-form input,
  .search-results-form button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-search-overlay,
  .site-search-panel,
  .site-search-toggle,
  .site-search-close,
  .search-result-card {
    transition: none;
  }
}
