* {
  outline: none;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: #443f57;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Oxygen, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 14px;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
  color: #fff;
}

img {
  max-width: 100%;
}

a {
  color: #fff;
  text-decoration: none;
}
a:hover {
  color: #20afbb;
  text-decoration: underline;
}

h1, h2, h3 {
  margin: 10px 0;
  font-size: 20px;
  font-weight: 400;
  color: #fff;
  line-height: normal;
  text-transform: uppercase;
}
h1 small, h2 small, h3 small {
  font-size: 16px;
  font-weight: 400;
  color: #999;
}

.form-input {
  width: 100%;
  height: 32px;
  padding: 0 10px;
  border: 1px solid transparent;
  border-radius: 3px;
  background-color: #fff;
  box-sizing: border-box;
  font-size: 14px;
  color: #333;
  -webkit-appearance: none;
}
.form-input:focus {
  border-color: #20afbb;
}

.form-button {
  min-width: 32px;
  height: 32px;
  padding: 0 10px;
  display: inline-block;
  border: 0;
  border-radius: 3px;
  box-sizing: border-box;
  background-color: #2d293a;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
  line-height: 32px;
}
.form-button:hover {
  background-color: #ff6f61;
  color: #fff !important;
  text-decoration: none;
}
.form-button.form-button-alt {
  background-color: #ff6f61;
}
.form-button.form-button-alt:hover {
  opacity: 0.8;
}
.form-button.form-button-light {
  background-color: #d2d1d6;
  color: #2d293a;
}
.form-button.form-button-light:hover {
  background-color: #ff6f61;
  color: #fff;
}
.form-button[disabled] {
  pointer-events: none;
}

.wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.website-content {
  flex-grow: 1;
}
.website-content > .container {
  max-width: 1920px;
}

.container {
  width: 100%;
  max-width: 1298px;
  margin: 0 auto;
  padding: 0 10px;
  box-sizing: border-box;
}

.website-header {
  padding: 10px 0;
  background-color: #2d293a;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.website-header .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.website-header a {
  color: #fff;
}
.website-header a:hover {
  color: #20afbb;
}
.website-header .form-button:not(.form-button-alt) {
  background-color: #443f57;
}
.website-header .form-button:not(.form-button-alt):hover {
  background-color: #ff6f61;
}

.logo {
  width: 233px;
  height: 40px;
  margin-top: -2px;
  flex-shrink: 0;
}
.logo img {
  display: block;
}

.logo-secondary {
  width: 223px;
  height: 47px;
  flex-shrink: 0;
}
.logo-secondary img {
  display: block;
}

.website-navigation {
  margin: 0 0 0 12px;
  padding: 0 0 0 15px;
  border-left: 1px solid #443f57;
  display: flex;
  flex-wrap: wrap;
  flex-grow: 1;
  align-items: center;
  justify-content: space-between;
}
.website-navigation ul {
  margin: 0;
  padding: 0;
  display: flex;
}
.website-navigation ul li {
  margin: 0 10px 0 0;
  padding: 0;
  list-style: none;
}
.website-navigation ul li:last-child {
  margin-right: 0;
}

.locations, .categories {
  width: auto;
  min-width: 160px;
  background-image: url(../images/select.png);
  background-position: right;
  background-repeat: no-repeat;
}

.categories {
  display: none;
}

.toggle {
  width: 32px;
  height: 32px;
  margin: 0 0 0 auto;
  display: none;
  background: url(../images/menu.png) no-repeat center;
  background-size: 32px;
  cursor: pointer;
}
.toggle.toggled {
  background-image: url(../images/close.png);
}

.page-navigation {
  margin: 8px auto;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
  line-height: 40px;
}
.page-navigation li {
  margin: 2px;
  padding: 0;
  list-style: none;
}
.page-navigation .form-button {
  min-width: 40px;
  height: 40px;
  line-height: 40px;
}

.thumbs {
  margin: 10px -3px;
  display: flex;
  flex-wrap: wrap;
}

.ths {
  width: calc(100% / 4 - 6px);
  margin: 0 3px 6px 3px;
  display: block;
}
.ths-pic {
  position: relative;
  padding: 56.25% 0 0 0;
  display: block;
}
.ths-pic img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.ths-title, .ths-tags {
  height: 24px;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 24px;
}
.ths-title {
  font-size: 16px;
  font-weight: 500;
  text-align: center;
}
.ths:hover {
  text-decoration: none;
}
.ths:hover .ths-pic img {
  outline: 1px solid #ff6f61;
  outline-offset: -1px;
}
.ths:hover .ths-title {
  text-decoration: none;
}

.embed {
  max-width: 1278px;
  margin: 10px auto;
  display: flex;
}
.embed-col {
  flex-grow: 1;
}
.embed-player {
  position: relative;
  padding: 56.25% 0 0 0;
}
.embed-player > iframe, .embed-player .player-code {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  display: block;
}
.embed-aside {
  width: 300px;
  margin: 0 0 0 10px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}
.embed-aside > div {
  flex-shrink: 0;
  margin-bottom: 10px;
}
.embed-aside > div:last-child {
  margin-bottom: 0;
}

.mobile {
  width: 300px;
  margin: 10px auto;
}

.bottom-content {
  margin: 30px 0;
  height: 250px;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.bottom-content > div {
  width: 300px;
  height: 250px;
  margin: 0 5px;
  flex-shrink: 0;
}

.website-footer {
  margin-top: 20px;
  padding: 15px 0;
  background-color: #2d293a;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  text-align: center;
}
.website-footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.website-footer a {
  color: #fff;
}
.website-footer a:hover {
  color: #20afbb;
}
.website-footer .footer-menu {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.website-footer .footer-menu li {
  margin: 0 10px;
  padding: 0;
  list-style: none;
}
.website-footer .logo, .website-footer .logo-secondary {
  margin: 15px 0;
}
.website-footer .legal-info {
  margin: 0;
}

@media screen and (max-width: 1199px) {
  .ths {
    width: calc(100% / 3 - 6px);
  }

  .embed {
    flex-direction: column;
  }
  .embed-aside {
    width: 100%;
/*     height: 250px; */
    margin: 10px 0 0 0;
    overflow: hidden;
    flex-direction: row;
    justify-content: center;
  }
  .embed-aside > div {
    margin: 0 5px;
  }
}
@media screen and (max-width: 960px) {
  .container {
    padding: 0 6px;
  }

  .website-navigation {
    width: 100%;
    margin: 0;
    padding: 10px 0 0 0;
    border: 0;
    display: none;
    flex-direction: column;
  }
  .website-navigation .locations {
    width: 100%;
  }
  .website-navigation .categories {
    width: 100%;
    margin: 10px 0 0 0;
    display: block;
  }
  .website-navigation ul {
    width: 100%;
  }
  .website-navigation ul li {
    margin: 10px 10px 0 0;
  }
  .website-navigation.open {
    display: flex;
  }

  .toggle {
    display: block;
  }

  .ths {
    width: calc(100% / 2 - 6px);
  }
  .ths-title {
    font-size: 14px;
  }

  .mobile {
    display: block;
  }
}
