@charset "utf-8";
@import url("https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@400;700&family=Roboto:wght@400;500;700&display=swap");

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

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  min-width: 300px;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

:root {
  --primary: #0b4638;
  --secondary: #b29b69;
  --hover: #54776b;
  --light: #F1EFE4;
  --darkgray: #222;
  --white: #fff;
  --text: #444;
}

/* #Basic Styles ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
body, html {
  font-size: 18px;
  line-height: 1.5em;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  height: 100%;
}

a, a:visited {
  text-decoration: none;
  outline: 0;
  -webkit-transition: 0.3s all ease;
  -moz-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  transition: 0.3s all ease;
}

p a, p a:visited {
  line-height: inherit;
}

li {
  line-height: 1.4em;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  font-family: "Roboto Condensed", sans-serif;
}

strong {
  font-weight: 700;
}

em {
  font-style: italic;
}

small {
  font-size: 85%;
}

sup {
  font-size: 75%;
  vertical-align: super;
}

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

main {
  flex: 1 0 auto;
}

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

.no-touch a[href^="tel:"] {
  pointer-events: none;
  cursor: text;
}

/* #Misc ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
#sapper {
  position: relative;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /* overflow-x: hidden; */
}

.container {
  margin: 0 auto;
  position: relative;
  padding: 0;
  width: calc(100% - 40px);
  max-width: 1260px;
  z-index: 1;
}

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

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

.smallwrap {
  margin: 0 auto;
  max-width: 900px;
  position: relative;
  z-index: 1;
}

.bigfont {
  font-size: 1.2em;
  line-height: 1.6em;
}

.uppercase {
  text-transform: uppercase;
}

.redcolor {
  color: #c51d26;
}

/* Helpers */
.hidden {
  display: none !important;
}

.sr-only {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  white-space: nowrap;
}

.sr-only.focusable:active, .sr-only.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
  white-space: inherit;
}

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

.clearfix:after {
  clear: both;
}

.clear {
  clear: both;
}

.col12 {
  width: 48%;
}

.col50 {
  width: 50%;
}

.col23 {
  width: 65.333%;
}

.col13 {
  width: 30.666%;
}

.col14 {
  width: 23%;
}

.col40 {
  width: 40%;
}

.col56 {
  width: 56%;
}

.col60 {
  width: 60%;
}

.col33 {
  width: 33.33%;
}

.spaceTop {
  position: relative;
  padding-top: 70px;
}

.spaceBottom {
  position: relative;
  padding-bottom: 70px;
}

.row {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex: 0 1 auto;
  -webkit-flex: 0 1 auto;
  flex: 0 1 auto;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.nowrap {
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.row-reverse {
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.itemcenter {
  align-items: center;
}

.selfcenter {
  align-self: center;
}

.justify {
  -webkit-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
}

.contentcenter {
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
}

/* #header ~~~~~~~~~~~~~~~~~~~~~~~~ */
.header {
  position: relative;
  background-color: var(--primary);
  width: 100%;
  z-index: 5;
}

.logo {
  width: 260px;
  padding: 10px 0;
}

.banner {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.banner:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  margin: auto;
  opacity: 0.5;
  z-index: 0;
  background: var(--primary);
  background-image: linear-gradient(to right top, var(--secondary), var(--primary));
}

#myVideo {
  object-fit: cover;
  width: 100vw;
  height: calc(100vh - 120px);
  min-height: 400px;
  position: relative;
  display: block;
}

.banner img {
  width: 100%;
  position: relative;
}

.bannertext {
  position: absolute;
  color: #fff;
  z-index: 2;
  width: 100%;
  max-width: 700px;
  left: 0;
  right: 0;
  top: 150px;
  bottom: 60px;
  margin: auto;
}

.shapes:before, .footer:before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 100px;
  aspect-ratio: 1;
  clip-path: polygon(0 0, 100% 0, 100% 100%);
  background: var(--primary);
  z-index: 1;
  opacity: .9;
}

.shapes:after, .footer:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 160px;
  aspect-ratio: 1;
  clip-path: polygon(0 0, 100% 100%, 0 100%);
  background: var(--primary);
  z-index: 1;
  opacity: .9;
}

.bannertext img {
  width: 300px;
}

.welcomeWrap {
  background-color: var(--light);
  color: var(--primary);
}

.welcomeWrap p {
  letter-spacing: 1px;
}

.welcomeImg {
  position: relative;
  background-size: cover;
  min-height: 480px;
}

.welcomeWrap:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  bottom: 0;
  right: 75%;
  background-color: var(--hover);
}

.welcomeWrap.giveWrap::before {
  right: 0;
  left: 60%;
}

.welcomeImg:after {
  position: absolute;
  content: "";
  left: 20px;
  right: 20px;
  bottom: 20px;
  top: 20px;
  border: 2px solid var(--secondary);
}

.boxesWrap:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 40%;
  background-color: var(--primary);
  left: 0;
  top: 0;
}

.boxes {
  gap: 20px;
}

.boxes img {
  position: relative;
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: center;
}

.boxes>* {
  width: calc(25% - 15px);
  position: relative;
  color: #fff;
}

.boxes>*:after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 15px;
  top: 15px;
  right: 15px;
  z-index: 1;
  border: 1px solid var(--secondary);
}

.boxes a h3 {
  color: var(--primary);
  position: relative;
  z-index: 2;
}

.boxes a:hover h3 {
  color: var(--white);
}

.boxes .circleIcon {
  position: absolute;
  right: 0;
  left: 0;
  bottom: 20px;
  opacity: 0;
  z-index: 2;
}

.boxes i {
  font-size: 10px;
}

.boxes>a:hover {
  color: #fff;
}

.boxes>a:hover:after {
  background: linear-gradient(to top, rgb(3 70 57 / 95%), rgb(3 70 57 / 10%));
}

.boxes>a:hover h3 {
  margin-top: -40px;
}

.boxes>a:hover .circleIcon {
  opacity: 1;
}

.boxes>*:after, .boxes h3, .boxes .circleIcon {
  -webkit-transition: 0.3s all ease;
  -moz-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  transition: 0.3s all ease;
}

.events .glEvent {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}

.events .glEvent:last-child {
  margin-bottom: 0;
}

.events .glEvent .glEventDate {
  width: 120px;
  background-color: var(--hover);
  color: var(--white);
  text-align: center;
  font-size: 0.9em;
}

.events .glEvent .glEventDate span.glMonth {
  display: block;
  text-transform: uppercase;
  line-height: 1.4em;
}

.events .glEvent .glEventDate span.glDay {
  font-size: 1.8em;
  font-weight: 600;
  display: block;
  padding: 10px 0;
}

.events .glEvent .glEventDate span.gldayName {
  font-size: 0.8em;
  background-color: var(--primary);
  padding: 3px;
  margin-bottom: 10px;
  display: block;
}

.events .glEvent .glEventTitle {
  width: calc(100% - 140px);
}

.events .glEventTitle>div {
  padding-left: 15px;
  position: relative;
}

.events .glEventTitle>div:before {
  content: "\f115";
  position: absolute;
  left: 0;
  top: 0;
  font-family: beehivelyicons;
  font-size: 11px;
  color: var(--secondary);
}

/*  */
.atglance {
  background-color: var(--primary);
}

.atglance.title h2 {
  color: var(--white);
  margin-bottom: 40px;
}

.atglance article {
  width: 33.33%;
  border: 2px solid var(--light);
  position: relative;
  background-position: center;
  background-size: cover;
  height: 300px;
  z-index: 1;
}

.atglance article::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  background-color: var(--primary);
  opacity: 0.8;
  z-index: -1;
}

.atglance article .glancettl h3 {
  color: var(--white);
}

.atglance article:hover .glancettl {
  display: none;
}

.atglance .glancebox {
  transition: transform 1s;
  transform-style: preserve-3d;
  width: 100%;
  height: 100%;
}

.atglance .glancebox .glancettl, .atglance .glancebox .glancetext {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.atglance .glancebox .glancettl::before {
  content: '';
  position: absolute;
  border: 2px solid var(--secondary);
  height: calc(100% - 40px);
  width: calc(100% - 40px);
  left: 20px;
  top: 20px;
}

.atglance article:hover .glancebox {
  transform: rotateY(180deg);
  transition: transform 0.5s;
}

.atglance article:hover .glancetext {
  display: flex;
  transform: rotateY(180deg);
  background-color: var(--primary);
}

.atglance .glancebox .glancetext {
  font-size: 1.2em;
  color: var(--white);
  display: none;
}

.atglance .glancebox .glancetext i {
  font-size: 1.5em;
}

.atglance .glancebox .glancetext h4 {
  font-size: 1.6em;
  margin: 25px 0 20px;
}

/*  */
.logoBox.title h2 {
  margin-bottom: 60px;
}

.logoBox .splide .splide__arrow--prev {
  left: -2em;
}

.logoBox .splide .splide__arrow--next {
  right: -2em;
}

.logoimg img {
  width: 100%;
  height: 100px;
  object-fit: contain;
}

.logoBox .splide__arrow {
  background: var(--light);
  height: 3em;
  width: 3em;
}

.logoBox .splide__arrow svg {
  fill: var(--primary);
}

/*  */
.socialevents {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 100%;
  position: relative;
  color: var(--white);
}

.socialevents::before {
  content: '';
  position: absolute;
  background-color: var(--primary);
  opacity: 0.9;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.socialevents.title h2 {
  color: var(--white);
}

.socialevents img {
  padding: 10px;
  background-color: var(--white);
}

/*  */
.footer {
  position: relative;
  background-color: var(--primary);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9em;
  padding-top: 25px;
}

.footer:before {
  background: var(--secondary);
  opacity: .2;
}

.footer:after {
  width: 260px;
  background: var(--hover);
  opacity: .2;
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
  right: 0;
  bottom: 0;
  left: inherit;
}

.footer.editor ul {
  margin: 0;
  font-weight: 500;
}

.footer.editor a {
  color: rgba(255, 255, 255, 0.7);
}

.footer .contactInfo {
  gap: 25px;
  z-index: 2;
}

.footer .fLogo img {
  width: 240px;
  margin-bottom: 15px;
}

.footer .socialIcon {
  gap: 15px;
}

.footer.editor a:hover {
  color: #fff;
}

.acclogo {
  align-items: end;
  gap: 30px;
}

.acclogo img {
  height: 60px;
}

.fLogo {
  width: 250px;
}

.biIcon {
  font-size: 10px;
  margin-right: 10px;
  line-height: 1;
}

.socialIcon a {
  font-size: 10px;
  line-height: 1em;
  border: 1PX solid;
  border-radius: 50%;
  padding: 15px;
}

.socialIcon a:hover {
  background-color: rgb(255 255 255 / 20%);
}

.footer .copyright {
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 15px;
  padding-bottom: 15px;
  line-height: 22px;
}

.footer small {
  line-height: 1.3em;
  font-size: 85%;
  color: rgba(255, 255, 255, 0.7);
}

.footer .copyright span {
  margin-left: 10px;
  margin-right: 10px;
}

.editor h1 {
  font-size: 2em;
}

h2 {
  font-size: 1.8em;
}

h3 {
  font-size: 1.4em;
  color: var(--primary);
}

h4 {
  font-size: 1.3em;
}

h5 {
  font-size: 1.2em;
}

h6 {
  font-size: 1em;
}

h2:not(:first-child), h3:not(:first-child), h4:not(:first-child), h5:not(:first-child), h6:not(:first-child) {
  margin-top: 15px;
}

h2:not(:last-child), h3:not(:last-child), h4:not(:last-child), h5:not(:last-child), h6:not(:last-child) {
  margin-bottom: 15px;
}

p:not(:last-child) {
  margin-bottom: 15px;
}

.editor ul, .editor ol {
  margin: 15px 0 15px 5px;
}

.editor ul li, .editor ol li {
  margin-bottom: 8px;
  list-style-type: square;
  padding: 0;
  margin-left: 20px;
  display: list-item;
}

.editor ol li {
  list-style-type: decimal;
}

.editor ol ul {
  margin-top: 10px;
}

.editor table {
  margin: 10px 0 10px 0;
  font-size: 0.9em;
  color: #222;
  background: #fff;
}

.editor table th {
  padding: 5px;
  text-align: left;
  font-size: 1em;
  background-color: var(--primary);
  border: 1px solid #b8d0c8;
  color: #ffffff;
  font-weight: 700;
}

.editor table td {
  padding: 5px;
  text-align: left;
  border: 1px solid #e3e7e6;
}

.editor table tr:nth-child(2n + 1) td {
  background-color: #eaf0ee;
}

.fullcal .fc-day-grid-event {
  background-color: #6a8078;
  color: #fff;
  font-size: 0.8em;
  font-weight: 500;
  border: 0;
  padding: 5px;
}

#detail h1 {
  font-size: 1.7em;
  color: var(--primary);
  margin-bottom: 10px;
  line-height: 1;
}

.fullcal .fc-day-grid-event .fc-content {
  white-space: normal;
}

.editor table.no-border {
  border: none;
}

.editor a {
  color: var(--hover);
  text-decoration: none;
  font-weight: 500;
}

.editor a:hover {
  color: #222;
}

.editor hr {
  font-size: 1px;
  line-height: 1px;
  height: 1px;
  margin: 30px 0;
  border: 0px;
  border-top: 2px solid var(--secondary);
}

.fc-left .fc-button-primary {
  text-transform: capitalize;
}

.fc-button-group .fc-button-primary, .fc-left .fc-button-primary:disabled {
  background-color: var(--primary);
  border-color: var(--primary);
  border-radius: 0;
}

.fc-button-group .fc-button-primary:hover {
  background-color: var(--hover);
  border-color: var(--hover);
}

.fulltable {
  width: 100%;
}

.title h2 {
  color: var(--primary);
  font-size: 3.2em;
  line-height: 1em;
  margin-bottom: 30px;
}

.title h2 strong {
  display: block;
  text-transform: uppercase;
  color: var(--secondary);
  font-size: 1rem;
  letter-spacing: 3px;
  line-height: 1.6em;
}

.btn a {
  cursor: pointer;
  position: relative;
  font-weight: 700;
  overflow: hidden;
  text-align: center;
  padding: 12px 30px;
  letter-spacing: 2px;
  display: inline-block;
  color: #fff;
  font-size: 0.9em;
  text-transform: uppercase;
  background-color: var(--primary);
  z-index: 1;
  margin-top: 15px;
}

.btn a:not(:last-child) {
  margin-right: 15px;
}

.btn a:before {
  -webkit-transition-duration: 800ms;
  transition-duration: 800ms;
  position: absolute;
  width: 200%;
  height: 200%;
  content: "";
  top: -200%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  border-radius: 50%;
  z-index: -1;
  background-color: var(--secondary);
}

.btn a:hover {
  color: var(--darkgray);
  background-color: transparent;
}

.btn a:hover:before {
  top: -40%;
}

.whitebtn .btn a {
  background-color: var(--secondary);
  color: var(--primary);
}

.whitebtn .btn a:before {
  background-color: var(--hover);
}

.whitebtn .btn a:hover {
  color: var(--white);
}

.content {
  padding: 40px 0px;
  position: relative;
  min-height: 300px;
}

.content .wave svg {
  top: 0;
  margin: auto;
  opacity: 0.6;
}

.twocolumn {
  -moz-column-count: 2;
  -webkit-column-count: 2;
  column-count: 2;
}

.editor .rightimg {
  float: right;
  margin: 0 0 20px 40px;
  max-width: 35%;
  position: relative;
  z-index: 1;
}

.editor .rightimg a {
  display: block;
}

.editor .leftimg {
  float: left;
  margin: 0 40px 20px 0px;
  max-width: 30%;
  position: relative;
  z-index: 1;
}

.leftimg img, .rightimg img {
  box-shadow: 0 0px 10px 0px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  padding: 10px !important;
}

.bnrinn .jarallax {
  min-height: 530px !important;
}

.bnrinn {
  position: relative;
}

.bnrinn:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.4);
  background: linear-gradient(to top, rgba(0, 0, 0, 0.94) 0%, rgba(255, 255, 255, 0) 56%, rgba(255, 255, 255, 0) 100%);
}

.pageTitleBanner {
  position: absolute;
  bottom: 10%;
  color: #fff;
  z-index: 1;
  font-size: 3em;
  line-height: normal;
  text-align: center;
  left: 1%;
  right: 1%;
  color: #fff;
  font-family: "Roboto Condensed", sans-serif;
}

.pageTitle {
  padding: 25px 0 5px;
  text-align: center;
  border-bottom: 1px solid var(--secondary);
}

.grid {
  margin: 0 -10px 10px;
}

.grid .grid-item {
  width: calc(33.33% - 20px);
  margin: 10px;
  position: absolute;
  line-height: 1.3em;
  text-decoration: none;
  text-align: center;
}

.grid.publication-grid .grid-item, .grid.gpolo_img .grid-item {
  width: 23%;
}

.arts_gallery .open-popup {
  position: relative;
  display: inline-block;
}

.arts_gallery .open-popup h3 {
  position: absolute;
  bottom: 0;
  background: linear-gradient(0deg, rgb(3 70 56) 0%, rgba(255, 255, 255, 0) 100%);
  color: #fff;
  width: 100%;
  padding: 10px;
}

.row.player-name {
  padding: 20px 0;
}

.row.player-name .col33>section {
  background-color: #eef4f2;
  padding: 10px;
  margin: 2%;
}

.player-name {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 -1%;
}

.player-name>section {
  background-color: #eef4f2;
  padding: 10px;
  margin: 2%;
}

.grid-cols-5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.librarybox {
  display: grid;
  gap: 20px;
  clear: both;
  margin: 0;
}

.librarybox>article {
  background-color: #fff;
  -webkit-box-shadow: 0 1px 4px 2px rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 4px 2px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  overflow: hidden;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.librarybox>article .imgBox img {
  transform: scale(1);
  transition: 0.3s ease-in-out;
  padding: 15px;
  width: 100%;
}

.librarybox>article:hover .imgBox img {
  transform: scale(1.1);
}

.librarybox>article .text {
  background-color: #fff;
  padding: 10px 15px;
}

.support_tab button.tab-list-button {
  list-style: none;
  background: unset;
  padding: 12px 20px;
  margin: 0;
  display: inline-block;
  background-color: #6a8078;
  position: relative;
  border: 0;
  color: #fff;
  font-size: 1em;
  font-weight: 500;
  white-space: normal;
  margin-right: 5px;
}

.support_tab.course-tab button.tab-list-button {
  width: 100%;
  text-align: left;
  border-bottom: 1px solid rgb(255 255 255 / 10%);
  color: var(--secondary);
  background-color: var(--primary);
  margin-right: 0;
}

.tab-group.support_tab.course-tab .tab-list {
  border: 0;
  width: 25%;
  padding: 10px;
  background-color: #034638;
  height: 100%;
}

.support_tab.course-tab .tab-item {
  width: 72%;
  margin-left: 3%;
}

.support_tab button.tab-list-button:hover, .support_tab button.tab-list-button.active {
  color: #fff;
  background-color: var(--primary);
  border: 0;
}

.support_tab.course-tab button.tab-list-button:hover, .support_tab.course-tab button.tab-list-button.active {
  color: #fff;
  background-color: var(--primary);
  border-bottom: 1px solid rgb(255 255 255 / 10%);
}

.support_tab button.tab-list-button.active::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #1a462b;
  position: absolute;
  bottom: -8px;
  left: 50%;
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 100;
  transition: bottom 0.2s ease 0.1s, border 0.3s ease;
}

.support_tab.course-tab button.tab-list-button.active::before {
  left: auto;
  right: -24px;
  bottom: 45%;
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

.support_tab .tab-item.active {
  border: 1px solid #ddd;
  padding: 10px;
  background-color: #f9f9f9;
  margin-top: 15px;
  width: 100%;
}

.support_tab.course-tab .tab-item.active {
  padding: 20px;
  margin-top: 0;
}

section.course_page.crs_side .tab-group.support_tab .tab-item.active {
  width: 72%;
}

.responsive-wrapper {
  position: relative;
  height: 0;
}

.responsive-wrapper-padding-bottom-90pct {
  padding-bottom: 90%;
}

.responsive-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-style: none;
  padding: 0;
  margin: 0;
}

.award_ttl {
  padding-left: 35px;
  padding-bottom: 5px;
  position: relative;
}

.award_ttl::before {
  content: "";
  position: absolute;
  background-image: url("https://app.beehively.com/beehively/cms/admin/sites/890/files/95353/cdn_url.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 30px;
  height: 30px;
  left: 0;
}

.club_info {
  background-color: #eef4f2;
  padding: 15px;
}

.club_info p span:first-child {
  width: 160px;
  display: inline-block;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 600;
}

.club_main_pg .btn i {
  font-size: 8px;
  transform: rotate(180deg);
  display: inline-block;
  line-height: 1;
}

.editor .graduate_name {
  margin-bottom: 10px;
}

.editor .award_person, .editor .member_person {
  margin: 0 -1%;
}

.editor .graduate_name h3, .editor .award_person h3, .editor .member_person h3 {
  background-color: #eef4f2;
  padding: 10px;
  margin: 1%;
  width: 31%;
  font-size: 1.2em;
  text-align: left;
  font-weight: 500;
  font-family: "Roboto", sans-serif;
}

.editor .award_person h3 span {
  display: block;
  color: #333;
  font-weight: normal;
  margin-top: 10px;
  font-size: 0.8em;
}

.editor .award_person h3 span+span {
  margin-top: 0;
}

.editor .img_box_member {
  margin: 0 -10px;
}

.editor .img_box_member p {
  width: 50%;
  padding: 0 10px;
}

.editor .trustees_wrap>a, .editor .trustees_wrap>article {
  position: relative;
  width: calc(33.33% - 40px);
  padding: 20px;
  margin: 0 20px 25px;
  overflow: hidden;
  text-decoration: none;
  background-color: #f6fffd;
}

.editor .trustees_wrap>a:hover {
  background-color: #eef4f2;
}

.editor .trustees_wrap .photo {
  position: relative;
}

.editor .trustees_wrap .photo:after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(0deg, rgb(3 70 56) 0%, rgba(255, 255, 255, 0) 100%);
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  pointer-events: none;
  z-index: 0;
}

.editor .trustees_wrap a:hover .photo:after {
  opacity: 0.6;
}

.editor .trustees_wrap>a .arr-icon {
  border-radius: 50%;
  color: #fff;
  position: absolute;
  background-color: var(--primary);
  left: 50%;
  height: 50px;
  width: 50px;
  padding: 16px;
  font-size: 10px;
  line-height: 1;
  text-align: center;
  bottom: 0;
  transform: translateX(-50%);
  opacity: 0;
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: all 600ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 2;
}

.editor .trustees_wrap>a:hover .arr-icon {
  bottom: 40%;
  opacity: 1;
}

.trustees_wrap .info {
  text-align: center;
  margin-top: 10px;
}

/* staff page */
.staff .row {
  margin: 0 -10px;
}

.staff article {
  width: calc(20% - 20px);
  margin: 10px;
  padding: 10px;
  background-color: #e7efec;
  -webkit-transition: 0.3s all ease;
  -moz-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  transition: 0.3s all ease;
}

.staff article:hover {
  background-color: var(--hover);
}

.staff .staff-img {
  position: relative;
  overflow: hidden;
}

.staff .staff-img img {
  width: 100%;
  -webkit-transition: 0.3s all ease;
  -moz-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  transition: 0.3s all ease;
}

.staff article:hover .staff-img img {
  transform: scale(1.1);
}

.staff article .staff-img .email {
  position: absolute;
  right: 0;
  bottom: 0;
  color: #fff;
  width: 30px;
  height: 30px;
  background-color: var(--primary);
  font-size: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.staff article .staff-img .email:hover {
  background-color: var(--secondary);
}

.staff article .staff-img .email i {
  display: inline-flex;
}

.staff article .staff-title {
  padding: 15px 0 10px;
}

.staff article .staff-title h5 {
  margin-bottom: 5px;
  color: var(--primary);
}

.staff article .staff-title p {
  font-size: 0.9em;
  line-height: 1.4em;
  margin-top: 5px;
}

.staff article:hover .staff-title, .staff article:hover .staff-title h5 {
  color: #fff;
}

/*search form*/
.search {
  position: relative;
  width: 40px;
  height: 40px;
  font-size: 8px;
  margin-left: 20px;
  margin-top: auto;
  margin-bottom: auto;
  padding: 12px;
  color: var(--white);
  cursor: pointer;
  z-index: 1;
  -webkit-transition: 0.3s all ease;
  -moz-transition: 0.3s all ease;
  transition: 0.3s all ease;
}

.search:before {
  content: "";
  position: absolute;
  width: 1px;
  height: 24px;
  background-color: var(--hover);
  margin: auto;
  left: -10px;
  top: 0;
  bottom: 0;
}

.search i {
  display: inline-block;
  line-height: 1;
}

#search {
  position: absolute;
  z-index: 12;
  right: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  padding: 15px;
  background-color: rgb(3 70 56 / 85%);
}

.sitesearch {
  position: relative;
  z-index: 12;
  top: 50%;
  transform: translateY(-50%);
  max-width: 600px;
  margin: 0 auto;
  padding: 15px;
  color: #fff;
}

.search-bar {
  padding: 10px 20px;
  border: solid 1px #fff;
  background-color: #fff;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  position: relative;
  margin: 10px 0;
}

.input {
  background: none;
  border: none;
  padding: 0;
  width: 100%;
  outline: none;
  text-align: left;
  font-size: 1.1em;
}

.close {
  position: absolute;
  right: 30px;
  top: 30px;
  width: 30px;
  height: 30px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.close:before, .close:after {
  position: absolute;
  content: "";
  width: 100%;
  left: 0;
  right: 0;
  height: 3px;
  background-color: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.close:before {
  -webkit-transform: translateY(0) rotate(45deg);
  transform: translateY(0) rotate(45deg);
  top: 9px;
  left: 0;
}

.close:after {
  -webkit-transform: translateY(0) rotate(-45deg);
  transform: translateY(0) rotate(-45deg);
  top: 9px;
  left: 0;
}

.search-bar .button {
  display: none;
}

/* ~~~~~~~ submenu ~~~~~~~~~~~~ */
.submenu {
  position: relative;
  display: block;
  padding: 10px 0;
  border-bottom: 2px solid var(--secondary);
}

.editor .submenu ul, .editor .sidemenu ul {
  margin: 0;
}

.submenu .sublist li, .submenu .sublist>li.active>a, .sidemenu .sidelist li, .sidemenu .sidelist>li.active>a, .sidemenu .sidelist>li.active>ul>li.active>a {
  display: none;
}

.submenu .sublist li.active, .submenu .sublist li.active li, .sidemenu .sidelist li.active, .sidemenu .sidelist li.active li.active li {
  display: block;
}

.submenu .sublist li.active li {
  margin: 5px;
}

.submenu .sublist li.active ul {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex: 0 1 auto;
  -webkit-flex: 0 1 auto;
  flex: 0 1 auto;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
}

.submenu li a {
  color: var(--darkgray);
  line-height: 22px;
  padding: 8px 15px;
  display: block;
  position: relative;
  font-weight: 500;
  opacity: 0.75;
  font-size: 0.9em;
}

.submenu li a:after {
  content: "";
  position: absolute;
  height: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  background-color: var(--primary);
  opacity: 0;
  z-index: -1;
  -webkit-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
}

.submenu li a:hover, .submenu li ul li.active>a {
  color: #fff;
  opacity: 1;
}

.submenu li a:hover:after, .submenu li.active>a:after {
  height: 100%;
  opacity: 1;
}

.submenu .sublist li.active ul li {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
}

.submenu .sublist li:not(.active) ul {
  display: none;
}

/* third level sidemenu */
.sidebar {
  width: 240px;
  margin-right: 40px;
  align-self: start;
}

.sidebar .sidelist {
  background-color: var(--primary);
  padding: 10px 20px;
}

.editor .sidemenu li {
  margin: 0;
}

.editor .sidemenu li.active li.active li:not(:last-child) {
  border-bottom: 1px solid rgb(255 255 255 / 10%);
}

.editor .sidemenu li.active li.active li a {
  padding-top: 10px;
  padding-bottom: 10px;
  display: block;
  color: var(--secondary);
}

.editor .sidemenu li.active li.active li a:hover, .editor .sidemenu li.active li.active li.active>a {
  color: #fff;
}

.sidebar-form iframe {
  width: 100%;
}

.rightContent {
  width: calc(100% - 290px);
}

.accordion-panel {
  background-color: #eaf0ee;
}

/* Navigation */
.menu, .menu>li, .menu>li>a, .flex {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

.menu>li {
  position: relative;
}

.menu li a {
  color: var(--white);
  margin: 0;
}

.menu>li>a {
  line-height: 24px;
  position: relative;
  font-weight: 500;
  padding: 10px 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
  align-items: center;
}

.menu>li>a:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  margin: auto;
  background-color: var(--light);
  width: 0;
  height: 0;
  border-left: 10px solid var(--primary);
  border-right: 10px solid var(--primary);
  border-top: 10px solid var(--light);
  opacity: 0;
  -webkit-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
}

.menu>li:hover>a:after, .menu>li.active>a:after {
  opacity: 1;
}

.menu ul {
  width: 210px;
  position: absolute;
  padding: 10px;
  left: 0px;
  top: 100%;
  display: none;
  z-index: 21;
  background-color: var(--primary);
}

.menu>li:hover>ul {
  display: block;
}

.menu>li li:hover>ul {
  left: inherit;
  right: 100%;
  top: 0;
}

.menu>li li:hover>ul {
  left: 100%;
  top: 0;
  display: block;
  right: inherit;
}

.menu>li:last-child>ul {
  left: inherit;
  right: 0;
}

.menu.right>li:last-child li>ul {
  right: 100%;
  left: inherit;
}

.menu li ul li {
  width: 100%;
  padding: 0px;
  position: relative;
}

.menu ul li:last-child {
  border-bottom: none;
}

.menu li ul li a {
  display: block;
  padding: 8px 10px;
  line-height: 1.3em;
}

.menu>li.active>a, .menu>li:hover>a {
  color: var(--light);
}

.menu li:hover li>a:hover, .menu li:hover li:hover>a, .menu li.active li.active>a, .menu ul li:hover li:hover>a:hover, .menu li.active li.active li.active>a {
  color: var(--primary);
  background-color: var(--light);
}

#menu-trigger {
  display: block;
  position: relative;
  z-index: 11;
  width: 40px;
  height: 40px;
  cursor: pointer;
  margin: auto;
}

#menu-trigger span, #menu-trigger span:before, #menu-trigger span:after {
  position: absolute;
  width: 28px;
  right: 0;
  border-radius: 2px;
  height: 3px;
  background-color: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

#menu-trigger span {
  top: 50%;
  margin: -1px auto auto;
  display: block;
  font-size: 0px;
}

#menu-trigger span:after {
  top: 8px;
  content: "";
  width: 32px;
}

#menu-trigger span:before {
  top: -8px;
  content: "";
  width: 32px;
}

#menu-trigger:hover span:before, #menu-trigger:hover span:after {
  width: 28px;
}

.showMobiNav#menu-trigger span {
  background-color: transparent;
}

.showMobiNav#menu-trigger span:before {
  -webkit-transform: translateY(0) rotate(45deg);
  transform: translateY(0) rotate(45deg);
  top: 0;
  left: 0;
}

.showMobiNav#menu-trigger span:after {
  -webkit-transform: translateY(0) rotate(-45deg);
  transform: translateY(0) rotate(-45deg);
  top: 0;
  left: 0;
}

.menuDimmed {
  overflow: hidden;
  position: relative;
}

.menuDimmed .logo {
  width: 180px;
}

.menuDimmed:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--primary);
  z-index: 3;
  position: fixed;
  left: 0;
  top: 0;
}

.showMobiNav.primarynav {
  display: block;
}

/* ~~~~~~~~~~~~~ */
.mainmenu>li#my-spsv, .mainmenu>li#admissions, .mainmenu>li#alumni {
  display: none;
}

.primarynav {
  width: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  max-height: calc(100vh - 80px);
  display: none;
  border-top: 1px solid var(--hover);
}

.mainmenu>li>a {
  font-size: 1em;
  text-transform: uppercase;
  color: #fff;
  padding: 15px;
  display: inline-block;
  width: 100%;
}

.mainmenu li.active>a, .mainmenu li:hover>a, .mainmenu li.hovered>a {
  color: var(--secondary);
}

.primarynav ul.mainmenu {
  width: 340px;
  border-right: 1px solid var(--hover);
  min-height: 400px;
  position: relative;
  z-index: 1;
}

.mainmenu>li {
  border-bottom: 1px solid var(--hover);
}

.mainmenu>li>ul {
  display: block;
  filter: blur(5px);
  height: 100%;
  left: 100%;
  opacity: 0;
  overflow: hidden;
  padding: 14px 44px 44px 44px;
  position: absolute;
  top: 0;
  transition: opacity 0.2s linear, visibility 0.2s linear, filter 0.3s ease;
  visibility: hidden;
  width: calc(100vw - ((100vw - 1200px) + 340px));
}

.mainmenu>li>ul::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  background-color: #F5F5F5;
}

.mainmenu>li>ul::-webkit-scrollbar {
  width: 12px;
  background-color: #F5F5F5;
}

.mainmenu>li>ul::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
  background-color: var(--secondary);
}


.mainmenu>li.hovered>ul, .mainmenu>li.active>ul {
  filter: blur(0);
  opacity: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  visibility: visible;
  z-index: 1;
}

.mainmenu>li>ul li a {
  position: relative;
  padding: 10px 15px;
  text-transform: none;
  display: inline-block;
  color: #fff;
}

.mainmenu>li>ul>li ul {
  position: relative;
  padding-left: 15px;
}

.mainmenu>li>ul li ul li a {
  font-size: 0.9em;
  margin-left: 15px;
  padding-top: 5px;
  padding-bottom: 5px;
}

@media screen and (max-width:1180px) {
  body, html {
    font-size: 17px;
  }

  #myVideo {
    height: 560px;
  }

  .joinusBox {
    padding: 25px;
  }

  .btn a {
    padding: 12px 20px;
  }
}

@media screen and (max-width:1023px) {
  body, html {
    font-size: 16px;
  }

  .logo {
    width: 180px;
  }

  .menu>li>a {
    padding: 10px;
  }

  .title h2 {
    font-size: 2.4em;
    margin-bottom: 20px;
  }
}