@charset "utf-8";
/* @import url('https://fonts.googleapis.com/css2?family=Karla:ital,wght@0,200..800;1,200..800&family=Spectral:wght@400;600;700&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&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 {
  --body: #f5f5f5;
  --primary: #0B85C7;
  --secondary: #0975AE;
  --accent: #253B6E;
  --white: #fff;
  --hover: #519872;
  --darkgray: #333;
  --bodytext: "Rubik", sans-serif;
  --headingtext: "Rubik", sans-serif;
}

/* #Basic Styles ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
body, html {
  font-size: 19px;
  line-height: 1.5em;
  font-family: var(--bodytext);
  font-weight: 400;
  color: var(--darkgray);
  -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-family: var(--headingtext);
  font-weight: 500;
  line-height: 1;
}

strong {
  font-weight: 600;
}

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: 1400px;
  z-index: 1;
}

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

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

.smallwrap {
  margin: 0 auto;
  width: calc(100% - 40px);
  max-width: 900px;
}

.bigfont {
  font-size: 1.2em;
  letter-spacing: 1px;
}

.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%;
}

.col23 {
  width: 65.333%;
}

.col13 {
  width: 30.666%;
}

.col40 {
  width: 40%;
}

.col60 {
  width: 60%;
}

.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;
}

.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;
}

.spaceLeft {
  position: relative;
  padding-left: 7em;
}

.spaceRight {
  position: relative;
  padding-right: 7em;
}

h1 {
  font-size: 2em;
}

h2 {
  font-size: 1.8em;
}

h3 {
  font-size: 1.6em;
}

h4 {
  font-size: 1.4em;
}

h5 {
  font-size: 1.1em;
}

h6 {
  font-size: 1em;
}

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

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

table {
  margin: 10px 0;
  font-size: 0.9em;
  color: var(--text);
  background: #fff;
}

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

table tr td {
  padding: 6px 10px;
  border: 1px solid #ffe0d1;
  background-color: #fff9f6;
}

table tr:nth-child(even) td {
  background-color: #fff;
}

table a {
  word-break: break-word;
}

.title h2 {
  font-size: 2em;
}

main {
  margin-top: 92px;
}

.fixed main {
  margin-top: 90px;
}

/* #header ~~~~~~~~~~~~~~~~~~~~~~~~ */
.header {
  position: fixed;
  width: 100%;
  z-index: 5;
  background-color: var(--white);
  box-shadow: 0 0 10px rgb(0 0 0 / 50%);
}

.logo {
  position: relative;
  width: 110px;
  padding: 10px 0;
}

.fixed .logo {
  width: 74px;
}

.socialIcon a {
  font-size: 8px;
  padding: 9px;
  background-color: var(--white);
  line-height: 1;
  border-radius: 50%;
  color: var(--primary);
  border: 1px solid var(--primary);
}

.socialIcon a:not(:first-child) {
  margin-left: 10px;
}

.socialIcon a:hover {
  background-color: var(--secondary);
  color: var(--white) !important;
  animation-name: animation-pulse;
  animation-duration: 1s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

@keyframes animation-pulse {
  25% {
    transform: scale(1.1)
  }

  75% {
    transform: scale(0.9)
  }
}

.topIcons .login a {
  color: var(--white);
  background-color: var(--primary);
  border-radius: 30px;
  padding: 10px 20px;
  font-size: 0.85em;
  text-transform: uppercase;
  margin-left: 10px;
  border: 1px solid;
  border-color: transparent;
}

.topIcons .login a:hover {
  color: var(--primary);
  border-color: var(--primary);
  background-color: transparent;
}

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

.banner .bnrImg {
  position: relative;
  width: 70%;
  height: calc(100vh - 110px);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 0 30px 30px 0;
  overflow: hidden;
}

.banner .bnrImg:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  right: 0;
  bottom: 0;
  z-index: 1;
  background: rgb(255, 255, 255);
  background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, #0975ae 100%);
}

.banner .textcontent {
  position: relative;
  width: 30%;
}

.banner .textcontent>div {
  padding: 30px 30px 30px 40px;
}

.aboutWrap {
  overflow-x: hidden;
}

.aboutWrap .col12 {
  position: relative;
}

.aboutWrap .abText {
  padding-right: 5em;
}

.aboutWrap .abText h2 {
  padding-left: 0.7em;
}

.aboutWrap .abText p {
  padding-left: 4.5em;
}

.aboutWrap .abText p:first-child {
  padding-left: 0;
}

.aboutWrap .imgBox img {
  padding: 10px;
  width: 70%;
  margin-bottom: 50px;
  border-radius: 30px;
}

.aboutWrap .imgBox img:last-child {
  width: 40%;
  position: absolute;
  bottom: -40px;
  right: -4em;
}

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

.wwdoWrap .container {
  align-items: flex-start;
}

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

.wwdoWrap .col40 {
  top: 0;
  position: sticky;
}

.wwdoWrap .col40 .btn a {
  color: var(--white);
  border: 1px solid var(--white);
}

.wwdoWrap .col40 .btn a:hover {
  border: 1px solid var(--secondary);
}

.wwdoWrap .boxes>article {
  background-color: var(--white);
  border-radius: 14px;
  margin-bottom: 25px;
  overflow: hidden;
  top: 20px;
  position: sticky;
}

.wwdoWrap .boxes>article:nth-child(2) {
  top: 30px;
}

.wwdoWrap .boxes>article:nth-child(3) {
  top: 40px;
}

.wwdoWrap .boxes>article:nth-child(4) {
  top: 50px;
}

.wwdoWrap.editor .boxes>article h3 {
  margin-top: 0;
}

.wwdoWrap .boxes .imgItem {
  width: 280px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  min-height: 320px;
}

.wwdoWrap .boxes .textItem {
  padding: 40px 30px 40px 40px;
  width: calc(100% - 300px);
}

.joinDAM {
  background-color: var(--body);
}

.workoutWrap {
  overflow-x: hidden;
}

.workoutWrap .col12 {
  position: relative;
}

.workoutWrap .abText {
  padding-left: 5em;
}

.workoutWrap .abText h2 {
  padding-left: 1em;
}

.workoutWrap .abText p {
  padding-left: 5em;
}

.workoutWrap .abText p:first-child {
  padding-left: 0;
}

.workoutWrap .imgBox img {
  padding: 10px;
  width: 70%;
  margin-bottom: 50px;
  border-radius: 30px;
}

.workoutWrap .imgBox img:last-child {
  width: 40%;
  position: absolute;
  bottom: -40px;
  left: -4em;
}

.eventWrap {
  background-color: var(--accent);
  color: var(--white);
}

.events {
  gap: 15px;
}

.eventItem {
  width: calc(25% - 15px);
  background-color: var(--white);
  padding: 1.5em;
  border-radius: 14px;
  color: var(--darkgray);
}

.eventItem .eDate {
  position: relative;
  color: var(--accent);
  padding-left: 40px;
  margin-bottom: 15px;
}

.eventItem strong {
  font-size: 1.2em;
  font-weight: 700;
}

.eventItem .eDate:before {
  content: "\f15e";
  font-family: beehivelyicons;
  font-size: 1.3em;
  position: absolute;
  width: 34px;
  height: 34px;
  left: 0;
}

.eventItem .icon {
  width: 42px;
  margin-top: 15px;
  -webkit-transition: 0.3s all ease;
  -moz-transition: 0.3s all ease;
  transition: 0.3s all ease;
}

.eventItem:hover .icon {
  width: 100%;
  height: inherit;
  text-align: right;
}

.eventItem .icon i {
  font-size: 11px;
  display: inline-block;
  line-height: 1;
  padding: 10px;
  border-radius: 50%;
  background-color: transparent;
}

.eventItem:hover .icon i {
  padding: 10px;
  border-radius: 50%;
  background-color: var(--darkgray);
  color: var(--white);
}

.recentWrap .imgBox {
  border-radius: 15px;
  overflow: hidden;
}

.recentWrap .imgBox img {
  width: 100%;
}

.recentWrap .text {
  padding: 25px;
}

.recentWrap .col12 {
  width: 44%;
}

.recentWrap .col12:last-child {
  margin-top: 7em;
}

.footer {
  position: relative;
  background-color: var(--primary);
  color: var(--white);
  font-size: 0.95em;
}

.footer .address>div {
  padding: 25px 0;
}

.footer .ftbox1 {
  max-width: 350px;
}

.footer .ftbox1 img {
  max-width: 150px;
}

.footer .ftbox3 {
  max-width: 450px;
}

.footer .address a {
  color: var(--primary);
}

.footer a, .footer .ftmenu>li>a {
  color: var(--white);
}

.footer a:hover {
  color: var(--accent);
}

.footer .biIcon {
  line-height: 1;
}

.footer .ftbox2>div:first-child .biIcon {
  font-size: 10px;
  margin-right: 10px;
}

.footer .ftbox2 .socialIcon {
  margin-top: 10px;
}

.footer .ftbox2 .socialIcon .biIcon {
  margin-right: 0 !important;
}

.footer .copyright {
  width: 100%;
  padding-top: 15px;
  padding-bottom: 15px;
  line-height: 22px;
  font-size: 90%;
  background-color: var(--secondary);
}

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

/* ~~~~~~~~~~~~~~~~~ */
.pageTitle {
  background-color: var(--accent);
  padding: 5% 0;
  color: var(--white);
  font-weight: 700;
}

.pageTitle h1 {
  font-size: 2.5em;
}

.content a {
  color: var(--secondary);
  text-decoration: none;
  cursor: pointer;
  text-decoration: underline;
}

.content a:hover {
  color: var(--primary);
}

table th a, .content th a {
  color: var(--accent);
}

table th a:hover {
  color: #fff;
}

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

hr {
  font-size: 1px;
  line-height: 1px;
  height: 1px;
  margin: 40px 0;
  border: 0px;
  border-top: 2px solid var(--accent);
}

.content ul, .content ol {
  margin: 10px 0 10px 5px;
}

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

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

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

.fulltable {
  width: 100%;
}

.btn a {
  cursor: pointer;
  position: relative;
  font-weight: 500;
  overflow: hidden;
  text-align: center;
  padding: 12px 24px;
  margin-top: 15px;
  border-radius: 50px;
  display: inline-block;
  color: var(--secondary);
  font-size: 1em;
  border: 1px solid var(--primary);
  z-index: 1;
  text-decoration: none;
}

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

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

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

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

.rightimg a {
  display: block;
}

.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: var(--body);
  padding: 10px !important;
}

/* Navigation */
.nav {
  width: calc(100% - 400px);
}

.menu, .menu>li, .flex {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

.menu>li {
  position: relative;
}

.menu>li:not(:last-child) {
  margin-right: 30px;
}

.menu li a {
  color: var(--body);
  margin: 0;
  display: block;
}

.menu>li>a {
  line-height: 24px;
  position: relative;
  color: #222;
  font-weight: 500;
  padding: 10px 0;
}

.menu>li>a:after {
  content: "";
  position: absolute;
  height: 3px;
  width: 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;
}

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

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

.menu ul {
  width: 210px;
  padding: 10px;
  position: absolute;
  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;
  border: 1px solid #e3e3d8;
}

.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;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

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


.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(--body);
}

#menu-trigger {
  display: none;
}

@media screen and (max-width:1240px) {
  .spaceRight {
    padding-right: 4em;
  }

  .spaceLeft {
    padding-left: 4em;
  }
}

@media screen and (max-width:1120px) {
  .wwdoWrap .col40, .wwdoWrap .col60 {
    width: 100%;
  }

  .wwdoWrap .col40, .wwdoWrap .boxes>article {
    position: relative;
  }
}

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

  .spaceBottom {
    padding-bottom: 30px;
  }

  .spaceTop {
    padding-top: 30px;
  }

  .spaceLeft {
    padding-left: 2em;
  }

  .spaceRight {
    padding-right: 2em;
  }

  .wwdoWrap .boxes .textItem {
    padding: 20px;
  }

  .aboutWrap .imgBox img:last-child {
    right: -2em;
  }

  .aboutWrap .abText {
    padding-right: 0;
  }

  .workoutWrap .abText {
    padding-left: 0;
  }

  .recentWrap .col12 {
    width: 48%;
  }

  .banner .bnrImg {
    width: 60%;
  }

  .banner .textcontent {
    width: 40%;
  }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    z-index: 5;
    background-color: #fff;
    -webkit-box-shadow: 0px 5px 7px 0px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 5px 7px 0px rgba(0, 0, 0, 0.3);
    width: 288px;
  }

  .menu, .nav.showMobiNav {
    display: block;
  }

  .menu>li {
    display: block;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }

  .menu>li>a:after {
    display: none;
  }

  .menu li a {
    line-height: 1.3em;
    position: relative;
    display: block;
    margin-left: 40px;
    padding: 10px 10px 10px 0px;
    color: var(--text);
    font-size: 1em !important;
  }

  .menu>li:not(:last-child) {
    margin-right: 0;
  }

  .menu li ul li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }

  .menu li ul li a {
    padding: 10px 10px 10px 0px;
  }

  .menu ul, .menu>li li:hover>ul, .menu>li:hover>ul {
    display: block;
    width: inherit;
    position: relative;
    left: inherit;
    top: inherit;
    right: inherit;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    animation: none;
    visibility: visible;
    opacity: 1;
    background-color: var(--white);
  }

  .menu ul {
    padding-left: 10px;
  }

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

  .menu li .droparrow {
    position: absolute;
    top: 0;
    left: -40px;
    width: 40px;
    height: 100%;
    cursor: pointer;
  }

  .menu li .droparrow:after, .menu li .droparrow:before {
    top: 50%;
    content: " ";
    height: 2px;
    width: 8px;
    position: absolute;
    background-color: var(--primary);
    pointer-events: none;
    -webkit-transition: 0.3s all;
    -moz-transition: 0.3s all;
    transition: 0.3s all;
  }

  .menu li .droparrow:after {
    right: 14px;
    -moz-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }

  .menu li .droparrow:before {
    left: 13px;
    -moz-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  .menu li .droparrow.open:after {
    -moz-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  .menu li .droparrow.open:before {
    -moz-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }

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

  #menu-trigger span, #menu-trigger span:before, #menu-trigger span:after {
    position: absolute;
    width: 30px;
    left: 0;
    right: 0;
    height: 3px;
    background-color: var(--primary);
    -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: "";
  }

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

  .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;
  }
}

@media screen and (max-width:767px) {
  .content {
    padding: 20px 0;
  }

  .col12, .col23, .col13, .col40, .col50, .col60, .banner .bnrImg, .banner .textcontent, .recentWrap .col12, .wwdoWrap .boxes .imgItem, .wwdoWrap .boxes .textItem {
    width: 100%;
  }

  .col12+*, .col23+.col13, .col13+.col23 {
    margin-top: 20px;
  }

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

  .editor table td {
    word-break: break-word;
  }

  .editor .rightimg, .editor .leftimg {
    float: none;
    margin: 0 0 40px;
    max-width: initial;
    text-align: center;
  }

  .banner {
    height: inherit;
  }

  .banner .bnrImg, .wwdoWrap .boxes .imgItem {
    height: 400px;
  }

  .eventItem {
    width: calc(33.33% - 15px);
  }

  .workoutWrap {
    padding-left: 2em;
  }

  .recentWrap .col12:last-child {
    margin-top: 0;
  }
}

@media screen and (max-width:650px) {
  .eventItem {
    width: calc(50% - 15px);
  }
}

@media screen and (max-width:479px) {
  .eventItem {
    width: 100%;
  }
}