@charset "UTF-8";
/******************************************************************************************
FONTS
******************************************************************************************/
/******************************************************************************************
MEDIA WIDTHS
******************************************************************************************/
/******************************************************************************************
MEDIA QUERY MIXINS

Sass voodoo ¯\_(ツ)_/¯
******************************************************************************************/
/******************************************************************************************
OTHER
******************************************************************************************/
/******************************************************************************************
FONT MIXINS
******************************************************************************************/
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
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;
}

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

html {
  min-width: fit-content;
}

body {
  line-height: 1;
  min-width: fit-content;
}

blockquote, q {
  quotes: none;
}

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

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

h1 {
  font-family: montserrat, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: initial;
  text-transform: uppercase;
}
@media screen and (max-width: 1199.98px) {
  h1 {
    font-size: 24px;
    line-height: 26px;
  }
}
@media screen and (max-width: 768px) {
  h1 {
    font-size: 22px;
    line-height: 24px;
  }
}
@media screen and (max-width: 500px) {
  h1 {
    font-size: 20px;
    line-height: 22px;
  }
}

h2 {
  font-family: montserrat, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: initial;
  text-transform: uppercase;
}
@media screen and (max-width: 1199.98px) {
  h2 {
    font-size: 18px;
    line-height: 20px;
  }
}
@media screen and (max-width: 768px) {
  h2 {
    font-size: 18px;
    line-height: 20px;
  }
}

h3 {
  font-family: montserrat, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: initial;
  text-transform: uppercase;
}
@media screen and (max-width: 1199.98px) {
  h3 {
    font-size: 18px;
  }
}
@media screen and (max-width: 768px) {
  h3 {
    font-size: 16px;
  }
}

strong {
  font-weight: 500 !important;
}

.content-wrap {
  display: block;
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
}

.hidden {
  display: none !important;
}

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

.link-hover {
  color: black;
  text-decoration: none;
}
.link-hover:hover {
  text-decoration: underline;
}

.sbl-circ {
  height: 48px;
  width: 48px;
  color: #0E4C7D;
  position: relative;
  display: none;
  margin: 0 auto;
  margin-top: 40px;
  margin-bottom: 40px;
  border: 1px solid;
  border-radius: 50%;
  border-top-color: transparent;
  animation: rotate 1s linear infinite;
}

@keyframes rotate {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
.popup-background {
  display: none;
  position: absolute;
  width: 100vw;
  height: 1000vh;
  z-index: 100;
  top: 0;
}

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

.show-desktop {
  display: grid !important;
}

.show-mobile {
  display: none !important;
}

.link-popup {
  display: none;
  place-items: center;
  position: absolute;
  background-color: white;
  border-radius: 8px;
  width: 150px;
  height: 30px;
  text-align: center;
  left: -40px;
  top: 40px;
}
.link-popup span {
  font-family: montserrat, sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: initial;
}
@media screen and (max-width: 1199.98px) {
  .link-popup span {
    font-size: 14px;
  }
}
@media screen and (max-width: 500px) {
  .link-popup span {
    font-size: 14px;
  }
}

@media screen and (max-width: 768px) {
  .show-desktop {
    display: none !important;
  }
  .show-mobile {
    display: grid !important;
  }
  .link-popup {
    left: -54px;
    top: 40px;
  }
}
.header-link {
  text-decoration: none !important;
}
.header-link:hover {
  text-decoration: none !important;
  cursor: pointer !important;
}

.background-image {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 720px;
  margin-top: 0;
}
.background-image #background-image {
  width: 100%;
  min-height: 720px;
  height: 100vh;
  object-fit: cover;
  object-position: bottom;
}
.background-image .center-text {
  display: block;
  position: absolute;
  top: 40%;
  left: 50%;
  width: calc(100% - 80px);
  max-width: 950px;
  height: auto;
  transform: translate(-50%, -50%);
  text-align: center;
}
.background-image .center-text h1 {
  font-family: montserrat, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: initial;
  text-transform: uppercase;
}
@media screen and (max-width: 1199.98px) {
  .background-image .center-text h1 {
    font-size: 24px;
    line-height: 26px;
  }
}
@media screen and (max-width: 768px) {
  .background-image .center-text h1 {
    font-size: 22px;
    line-height: 24px;
  }
}
@media screen and (max-width: 500px) {
  .background-image .center-text h1 {
    font-size: 20px;
    line-height: 22px;
  }
}
.background-image .center-text h1 {
  margin-bottom: 90px;
}
.background-image .center-text p, .background-image .center-text a {
  font-family: montserrat, sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 18px;
  line-height: initial;
}
@media screen and (max-width: 1199.98px) {
  .background-image .center-text p, .background-image .center-text a {
    font-size: 16px;
  }
}
@media screen and (max-width: 500px) {
  .background-image .center-text p, .background-image .center-text a {
    font-size: 16px;
  }
}
.background-image .center-text p, .background-image .center-text a {
  color: black;
  margin-bottom: 20px;
}
.background-image .home-arrow {
  display: block;
  position: absolute;
  left: 50%;
  bottom: 60px;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
}
.background-image .home-arrow img {
  width: 100%;
  height: auto;
}
.background-image .home-arrow img:hover {
  cursor: pointer;
}

.featured-posts {
  display: block;
  position: relative;
  margin: 0 auto;
  margin-bottom: 80px;
}
.featured-posts .post {
  text-align: center;
}
.featured-posts .post img {
  display: block;
  position: relative;
  width: 100%;
  height: auto;
}

.featured-events {
  display: block;
  position: relative;
}

.featured-availability {
  display: grid;
  position: relative;
  grid-template-columns: 1fr;
  grid-template-rows: 395px auto;
  grid-row-gap: 40px;
  width: 100%;
  height: auto;
  margin-bottom: 0px;
}
.featured-availability .col {
  display: block;
  position: relative;
  height: auto;
}
.featured-availability .text {
  display: block;
  position: relative;
  max-width: 620px;
  left: 50%;
  transform: translateX(-50%);
}
.featured-availability .text h1 {
  font-family: montserrat, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: initial;
  text-transform: uppercase;
}
@media screen and (max-width: 1199.98px) {
  .featured-availability .text h1 {
    font-size: 24px;
    line-height: 26px;
  }
}
@media screen and (max-width: 768px) {
  .featured-availability .text h1 {
    font-size: 22px;
    line-height: 24px;
  }
}
@media screen and (max-width: 500px) {
  .featured-availability .text h1 {
    font-size: 20px;
    line-height: 22px;
  }
}
.featured-availability .text h1 {
  margin-bottom: 80px;
  text-align: center;
}
.featured-availability .text p {
  font-family: montserrat, sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 18px;
  line-height: initial;
}
@media screen and (max-width: 1199.98px) {
  .featured-availability .text p {
    font-size: 16px;
  }
}
@media screen and (max-width: 500px) {
  .featured-availability .text p {
    font-size: 16px;
  }
}
.featured-availability .text p {
  text-align: center;
  margin-bottom: 80px;
}
.featured-availability .text .media-selector {
  width: 100%;
  margin-bottom: 0;
}
.featured-availability .text .media-selector h1 {
  font-family: montserrat, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: initial;
  text-transform: uppercase;
}
@media screen and (max-width: 1199.98px) {
  .featured-availability .text .media-selector h1 {
    font-size: 24px;
    line-height: 26px;
  }
}
@media screen and (max-width: 768px) {
  .featured-availability .text .media-selector h1 {
    font-size: 22px;
    line-height: 24px;
  }
}
@media screen and (max-width: 500px) {
  .featured-availability .text .media-selector h1 {
    font-size: 20px;
    line-height: 22px;
  }
}
.featured-availability .text .media-selector h1 {
  margin-bottom: 40px;
}
.featured-availability .text .media-selector a {
  text-decoration: none;
}
.featured-availability .text .media-selector a:hover {
  cursor: pointer;
}
.featured-availability .img-holder {
  display: block;
  position: relative;
  padding-top: 56.25%;
  overflow: hidden;
  max-height: 395px;
}
.featured-availability .img-holder img {
  width: 100%;
  height: 100%;
  max-height: 395px;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  transition: opacity ease-in-out 0.5s;
  object-fit: cover;
}

#media-gallery-featured {
  width: calc(100% - 160px);
}

#media-selector-featured {
  width: calc(100% - 160px);
  max-width: 100%;
  text-align: center;
}
#media-selector-featured h1:hover {
  text-decoration: none;
}

.sub-links {
  display: grid;
  position: relative;
  width: calc(100% - 160px);
  max-width: 1110px;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 0px;
  margin: 0 auto;
}
.sub-links a {
  font-family: montserrat, sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: initial;
}
@media screen and (max-width: 1199.98px) {
  .sub-links a {
    font-size: 14px;
  }
}
@media screen and (max-width: 500px) {
  .sub-links a {
    font-size: 14px;
  }
}
.sub-links a {
  color: black;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .background-image {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 720px;
    margin-top: 0;
  }
  .background-image #background-image {
    width: 100%;
    min-height: 720px;
    height: 100vh;
    object-fit: cover;
    object-position: bottom;
  }
  .background-image .center-text {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: calc(100% - 80px);
    max-width: 950px;
    height: auto;
    transform: translate(-50%, -50%);
  }
  .background-image .center-text h1 {
    font-family: montserrat, sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: initial;
    text-transform: uppercase;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 768px) and (max-width: 1199.98px) {
  .background-image .center-text h1 {
    font-size: 24px;
    line-height: 26px;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .background-image .center-text h1 {
    font-size: 22px;
    line-height: 24px;
  }
}
@media screen and (max-width: 768px) and (max-width: 500px) {
  .background-image .center-text h1 {
    font-size: 20px;
    line-height: 22px;
  }
}
@media screen and (max-width: 768px) {
  .background-image .center-text p, .background-image .center-text a {
    font-family: montserrat, sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 18px;
    line-height: initial;
    color: black;
  }
}
@media screen and (max-width: 768px) and (max-width: 1199.98px) {
  .background-image .center-text p, .background-image .center-text a {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) and (max-width: 500px) {
  .background-image .center-text p, .background-image .center-text a {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .background-image .home-arrow {
    display: block;
    position: absolute;
    left: 50%;
    bottom: 40px;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
  }
  .background-image .home-arrow img {
    width: 100%;
    height: auto;
  }
  .background-image .home-arrow img:hover {
    cursor: pointer;
  }
  #media-selector-featured {
    grid-template-columns: 1fr;
    margin-bottom: 60px;
  }
  #media-gallery-featured {
    grid-template-columns: 1fr;
    width: calc(100% - 40px);
    margin-bottom: 60px;
  }
  .selector-margin {
    margin-top: 30px !important;
    margin-bottom: 30px !important;
  }
  .featured-availability {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    grid-row-gap: 40px;
    border: none;
    margin-bottom: 60px;
  }
  .featured-availability .col .text {
    display: block;
    position: relative;
    width: calc(100% - 40px);
    top: unset;
    left: unset;
    transform: unset;
    margin: 0 auto;
    margin-bottom: 0px;
  }
  .featured-availability .col .text h1 {
    margin-bottom: 30px;
  }
  .featured-availability .col .text p {
    margin-bottom: 0px;
  }
  .featured-availability .col .img-holder {
    display: block;
    position: relative;
    padding-top: 56.25%;
    overflow: hidden;
    max-height: 280px;
  }
  .featured-availability .col .img-holder img {
    width: 100%;
    height: 100%;
    max-height: 280px;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    transition: opacity ease-in-out 0.5s;
    object-fit: cover;
  }
  .sub-links {
    display: grid;
    position: relative;
    width: calc(100% - 40px);
    grid-template-columns: 1fr;
    margin-bottom: 60px;
  }
  .sub-links a {
    font-size: 16px;
  }
  .sub-links a:first-of-type {
    margin-bottom: 20px;
  }
}
.posts-gallery {
  display: grid;
  position: relative;
  width: calc(100% - 160px);
  max-width: 1440px;
  height: auto;
  margin: 80px auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 40px;
}
.posts-gallery .thumbnail {
  display: block;
  position: relative;
  padding-top: 56.25%;
  overflow: hidden;
  background: rgb(203, 203, 203);
  transition: background-color ease-in 0.3s;
}
.posts-gallery .thumbnail:hover {
  background-color: black;
}
.posts-gallery .thumbnail img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  transition: opacity ease-in-out 0.3s;
  object-fit: cover;
  opacity: 0.85;
}
.posts-gallery .thumbnail img:hover {
  opacity: 0.75;
}
.posts-gallery .thumbnail img:active {
  opacity: 0.5;
}
.posts-gallery h3 {
  font-family: montserrat, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: initial;
  text-transform: uppercase;
}
@media screen and (max-width: 1199.98px) {
  .posts-gallery h3 {
    font-size: 18px;
  }
}
@media screen and (max-width: 768px) {
  .posts-gallery h3 {
    font-size: 16px;
  }
}
.posts-gallery h3 {
  text-align: left;
  min-height: 34px;
  height: auto;
  margin-top: 20px;
  margin-bottom: 10px;
}
.posts-gallery p {
  font-family: montserrat, sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: initial;
}
@media screen and (max-width: 1199.98px) {
  .posts-gallery p {
    font-size: 14px;
  }
}
@media screen and (max-width: 500px) {
  .posts-gallery p {
    font-size: 14px;
  }
}
.posts-gallery p {
  text-align: left;
}

@media screen and (max-width: 1600px) {
  .posts-gallery {
    grid-gap: 20px;
  }
  .posts-gallery h3 {
    font-family: montserrat, sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: initial;
    text-transform: uppercase;
    text-align: left;
    height: auto;
    margin-top: 20px;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 1600px) and (max-width: 1199.98px) {
  .posts-gallery h3 {
    font-size: 18px;
  }
}
@media screen and (max-width: 1600px) and (max-width: 768px) {
  .posts-gallery h3 {
    font-size: 16px;
  }
}
@media screen and (max-width: 1199.98px) {
  .posts-gallery {
    display: grid;
    position: relative;
    width: calc(100% - 80px);
    max-width: 1280px;
    height: auto;
    margin: 40px auto;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
  }
  .posts-gallery h3 {
    font-family: montserrat, sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: initial;
    text-transform: uppercase;
    text-align: left;
    margin-top: 20px;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 1199.98px) and (max-width: 1199.98px) {
  .posts-gallery h3 {
    font-size: 18px;
  }
}
@media screen and (max-width: 1199.98px) and (max-width: 768px) {
  .posts-gallery h3 {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .posts-gallery {
    display: grid;
    position: relative;
    width: calc(100% - 80px);
    max-width: 1280px;
    height: auto;
    margin: 40px auto;
    grid-template-columns: 1fr;
    grid-gap: 40px;
  }
  .posts-gallery h3 {
    font-family: montserrat, sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: initial;
    text-transform: uppercase;
    text-align: left;
    margin-top: 20px;
    margin-bottom: 10px;
    min-height: unset;
  }
}
@media screen and (max-width: 768px) and (max-width: 1199.98px) {
  .posts-gallery h3 {
    font-size: 18px;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .posts-gallery h3 {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .posts-gallery p {
    font-size: 15px;
  }
}
.breadcrumb {
  display: block;
  position: relative;
  margin-top: 140px;
  margin-left: 80px;
}
.breadcrumb p, .breadcrumb a {
  font-family: montserrat, sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 18px;
  line-height: initial;
}
@media screen and (max-width: 1199.98px) {
  .breadcrumb p, .breadcrumb a {
    font-size: 16px;
  }
}
@media screen and (max-width: 500px) {
  .breadcrumb p, .breadcrumb a {
    font-size: 16px;
  }
}
.breadcrumb p, .breadcrumb a {
  display: inline-block;
  font-weight: 300;
  font-size: 12px !important;
  line-height: 15px;
  color: black;
  text-transform: uppercase;
}
.breadcrumb .back-btn {
  width: 10px;
  transform: rotate(90deg);
}

.post-title {
  display: block;
  position: relative;
  max-width: 840px;
  margin: 0 auto;
  margin-top: 73px;
  margin-bottom: 75px;
  text-align: center;
}
.post-title h1 {
  font-family: montserrat, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: initial;
  text-transform: uppercase;
}
@media screen and (max-width: 1199.98px) {
  .post-title h1 {
    font-size: 24px;
    line-height: 26px;
  }
}
@media screen and (max-width: 768px) {
  .post-title h1 {
    font-size: 22px;
    line-height: 24px;
  }
}
@media screen and (max-width: 500px) {
  .post-title h1 {
    font-size: 20px;
    line-height: 22px;
  }
}
.post-title h1 {
  font-weight: 500;
  font-size: 28px;
  line-height: 34px;
}

.image-banner-post {
  display: block;
  position: relative;
  margin-bottom: 80px;
}
.image-banner-post img {
  width: 100%;
  height: auto;
}

.post-content {
  display: block;
  position: relative;
}
.post-content .headerText,
.post-content .headerTextLarge,
.post-content .paragraph,
.post-content .blog-standfirst,
.post-content .blog-author,
.post-content .blog-date,
.post-content .blog-pullquote,
.post-content .footnote {
  display: block;
  position: relative;
  width: calc(100% - 80px);
  height: auto;
  max-width: 860px;
  margin: 0 auto;
  margin-bottom: 20px;
}
.post-content .blog-standfirst p {
  font-family: montserrat, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: initial;
  text-transform: uppercase;
}
@media screen and (max-width: 1199.98px) {
  .post-content .blog-standfirst p {
    font-size: 24px;
    line-height: 26px;
  }
}
@media screen and (max-width: 768px) {
  .post-content .blog-standfirst p {
    font-size: 22px;
    line-height: 24px;
  }
}
@media screen and (max-width: 500px) {
  .post-content .blog-standfirst p {
    font-size: 20px;
    line-height: 22px;
  }
}
.post-content .blog-standfirst p {
  font-weight: normal;
  font-size: 24px;
  line-height: 29px;
}
.post-content .blog-author,
.post-content .blog-date {
  font-family: montserrat, sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 18px;
  line-height: initial;
}
@media screen and (max-width: 1199.98px) {
  .post-content .blog-author,
  .post-content .blog-date {
    font-size: 16px;
  }
}
@media screen and (max-width: 500px) {
  .post-content .blog-author,
  .post-content .blog-date {
    font-size: 16px;
  }
}
.post-content .blog-author,
.post-content .blog-date {
  text-transform: uppercase;
  font-weight: normal;
  font-size: 18px;
  line-height: 22px;
  margin-bottom: 40px;
  margin-top: 40px;
}
.post-content .blog-date {
  margin-bottom: 40px;
}
.post-content .blog-pullquote {
  margin-bottom: 80px;
}
.post-content .blog-pullquote p {
  display: inline;
  font-size: 26px;
  line-height: 32px;
}
.post-content .paragraph {
  margin-bottom: 60px;
}
.post-content .paragraph-contact {
  margin-bottom: 40px;
}
.post-content h1 {
  font-family: montserrat, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: initial;
  text-transform: uppercase;
}
@media screen and (max-width: 1199.98px) {
  .post-content h1 {
    font-size: 24px;
    line-height: 26px;
  }
}
@media screen and (max-width: 768px) {
  .post-content h1 {
    font-size: 22px;
    line-height: 24px;
  }
}
@media screen and (max-width: 500px) {
  .post-content h1 {
    font-size: 20px;
    line-height: 22px;
  }
}
.post-content h1 {
  font-weight: normal;
  font-size: 24px;
  line-height: 29px;
}
.post-content h2 {
  font-family: montserrat, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: initial;
  text-transform: uppercase;
}
@media screen and (max-width: 1199.98px) {
  .post-content h2 {
    font-size: 24px;
    line-height: 26px;
  }
}
@media screen and (max-width: 768px) {
  .post-content h2 {
    font-size: 22px;
    line-height: 24px;
  }
}
@media screen and (max-width: 500px) {
  .post-content h2 {
    font-size: 20px;
    line-height: 22px;
  }
}
.post-content h2 {
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
}
.post-content .headerText h1,
.post-content .headerText h2,
.post-content .headerText h3,
.post-content .headerText p {
  font-family: montserrat, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: initial;
  text-transform: uppercase;
}
@media screen and (max-width: 1199.98px) {
  .post-content .headerText h1,
  .post-content .headerText h2,
  .post-content .headerText h3,
  .post-content .headerText p {
    font-size: 24px;
    line-height: 26px;
  }
}
@media screen and (max-width: 768px) {
  .post-content .headerText h1,
  .post-content .headerText h2,
  .post-content .headerText h3,
  .post-content .headerText p {
    font-size: 22px;
    line-height: 24px;
  }
}
@media screen and (max-width: 500px) {
  .post-content .headerText h1,
  .post-content .headerText h2,
  .post-content .headerText h3,
  .post-content .headerText p {
    font-size: 20px;
    line-height: 22px;
  }
}
.post-content .headerText h1,
.post-content .headerText h2,
.post-content .headerText h3,
.post-content .headerText p {
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
}
.post-content .headerText em {
  font-style: italic;
}
.post-content .headerTextLarge {
  margin-bottom: 80px;
}
.post-content .headerTextLarge h1,
.post-content .headerTextLarge h2,
.post-content .headerTextLarge h3,
.post-content .headerTextLarge p {
  font-family: montserrat, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: initial;
  text-transform: uppercase;
}
@media screen and (max-width: 1199.98px) {
  .post-content .headerTextLarge h1,
  .post-content .headerTextLarge h2,
  .post-content .headerTextLarge h3,
  .post-content .headerTextLarge p {
    font-size: 24px;
    line-height: 26px;
  }
}
@media screen and (max-width: 768px) {
  .post-content .headerTextLarge h1,
  .post-content .headerTextLarge h2,
  .post-content .headerTextLarge h3,
  .post-content .headerTextLarge p {
    font-size: 22px;
    line-height: 24px;
  }
}
@media screen and (max-width: 500px) {
  .post-content .headerTextLarge h1,
  .post-content .headerTextLarge h2,
  .post-content .headerTextLarge h3,
  .post-content .headerTextLarge p {
    font-size: 20px;
    line-height: 22px;
  }
}
.post-content .headerTextLarge h1,
.post-content .headerTextLarge h2,
.post-content .headerTextLarge h3,
.post-content .headerTextLarge p {
  font-weight: 500;
  font-size: 28px;
  line-height: 34px;
  text-align: center;
}
.post-content .headerTextLarge em {
  font-style: italic;
}
.post-content p, .post-content a, .post-content ul, .post-content ol, .post-content li {
  font-family: montserrat, sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 18px;
  line-height: initial;
}
@media screen and (max-width: 1199.98px) {
  .post-content p, .post-content a, .post-content ul, .post-content ol, .post-content li {
    font-size: 16px;
  }
}
@media screen and (max-width: 500px) {
  .post-content p, .post-content a, .post-content ul, .post-content ol, .post-content li {
    font-size: 16px;
  }
}
.post-content p, .post-content a, .post-content ul, .post-content ol, .post-content li {
  font-weight: 300;
  font-size: 18px;
  line-height: 24px;
  margin-bottom: 20px;
}
.post-content p em, .post-content a em, .post-content ul em, .post-content ol em, .post-content li em {
  font-style: italic;
}
.post-content li {
  margin-bottom: 10px;
}
.post-content ol, .post-content ul {
  padding-left: 30px;
}
.post-content a {
  line-break: anywhere;
  color: black;
}
.post-content em {
  font-style: italic;
}
.post-content .image-caption {
  display: block;
  position: relative;
  width: calc(100% - 80px);
  height: auto;
  max-width: 840px;
  margin: 0 auto;
  margin-top: 10px;
}
.post-content .image-caption p {
  font-family: montserrat, sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 18px;
  line-height: initial;
}
@media screen and (max-width: 1199.98px) {
  .post-content .image-caption p {
    font-size: 16px;
  }
}
@media screen and (max-width: 500px) {
  .post-content .image-caption p {
    font-size: 16px;
  }
}
.post-content .image-caption p {
  font-size: 14px;
  margin-bottom: 0px;
}
.post-content .image {
  display: block;
  position: relative;
  margin-bottom: 80px;
}
.post-content .image img {
  width: 100%;
  height: auto;
}
.post-content .gallery {
  display: grid;
  position: relative;
  width: calc(100% - 80px);
  max-width: 1280px;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto;
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  margin: 0 auto;
  margin-bottom: 80px;
}
.post-content .gallery .gallery-image {
  display: block;
  position: relative;
  padding-top: 56.25%;
  overflow: hidden;
  margin-bottom: 30px;
}
.post-content .gallery .gallery-image img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  transition: opacity ease-in-out 0.5s;
  object-fit: cover;
}
.post-content .gallery .gallery-header {
  display: block;
  position: relative;
  margin-bottom: 20px;
}
.post-content .gallery .gallery-header p {
  font-family: montserrat, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: initial;
  text-transform: uppercase;
}
@media screen and (max-width: 1199.98px) {
  .post-content .gallery .gallery-header p {
    font-size: 18px;
    line-height: 20px;
  }
}
@media screen and (max-width: 768px) {
  .post-content .gallery .gallery-header p {
    font-size: 18px;
    line-height: 20px;
  }
}
.post-content .gallery .gallery-header p {
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  text-transform: uppercase;
}
.post-content .gallery .gallery-text {
  display: block;
  position: relative;
  margin-bottom: 0;
}
.post-content .gallery .gallery-text p {
  font-family: montserrat, sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 18px;
  line-height: initial;
}
@media screen and (max-width: 1199.98px) {
  .post-content .gallery .gallery-text p {
    font-size: 16px;
  }
}
@media screen and (max-width: 500px) {
  .post-content .gallery .gallery-text p {
    font-size: 16px;
  }
}
.post-content .gallery .gallery-text p {
  font-weight: 300;
  font-size: 18px;
  line-height: 22px;
  margin-bottom: 0;
}
.post-content .footnote {
  margin-bottom: 80px;
}
.post-content .footnote p {
  font-family: montserrat, sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 18px;
  line-height: initial;
}
@media screen and (max-width: 1199.98px) {
  .post-content .footnote p {
    font-size: 16px;
  }
}
@media screen and (max-width: 500px) {
  .post-content .footnote p {
    font-size: 16px;
  }
}
.post-content .footnote p {
  font-weight: 300;
  font-size: 10px;
  line-height: 12px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .breadcrumb {
    display: block;
    position: relative;
    width: calc(100% - 80px);
    height: auto;
    max-width: 840px;
    margin: 0 auto;
    margin-top: 126px;
  }
  .breadcrumb p, .breadcrumb a {
    font-family: montserrat, sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 18px;
    line-height: initial;
    display: inline-block;
    font-size: 12px !important;
    color: black;
    text-transform: uppercase;
  }
}
@media screen and (max-width: 768px) and (max-width: 1199.98px) {
  .breadcrumb p, .breadcrumb a {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) and (max-width: 500px) {
  .breadcrumb p, .breadcrumb a {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .post-title {
    width: calc(100% - 80px);
    height: auto;
    max-width: 840px;
    margin: 0 auto;
    margin-top: 40px;
    margin-bottom: 40px;
  }
  .post-title h1 {
    font-family: montserrat, sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: initial;
    text-transform: uppercase;
  }
}
@media screen and (max-width: 768px) and (max-width: 1199.98px) {
  .post-title h1 {
    font-size: 24px;
    line-height: 26px;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .post-title h1 {
    font-size: 22px;
    line-height: 24px;
  }
}
@media screen and (max-width: 768px) and (max-width: 500px) {
  .post-title h1 {
    font-size: 20px;
    line-height: 22px;
  }
}
@media screen and (max-width: 768px) {
  .image-banner-post {
    margin-bottom: 40px;
  }
  .post-content {
    display: block;
    position: relative;
  }
  .post-content .headerText,
  .post-content .headerTextLarge,
  .post-content .paragraph,
  .post-content .blog-standfirst,
  .post-content .blog-author,
  .post-content .blog-date,
  .post-content .blog-pullquote,
  .post-content .footnote {
    display: block;
    position: relative;
    width: calc(100% - 80px);
    height: auto;
    max-width: 840px;
    margin: 0 auto;
    margin-bottom: 40px;
  }
  .post-content .blog-author,
  .post-content .blog-date {
    margin-bottom: 30px;
    margin-top: 30px;
  }
  .post-content h1 {
    font-family: montserrat, sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: initial;
    text-transform: uppercase;
  }
}
@media screen and (max-width: 768px) and (max-width: 1199.98px) {
  .post-content h1 {
    font-size: 24px;
    line-height: 26px;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .post-content h1 {
    font-size: 22px;
    line-height: 24px;
  }
}
@media screen and (max-width: 768px) and (max-width: 500px) {
  .post-content h1 {
    font-size: 20px;
    line-height: 22px;
  }
}
@media screen and (max-width: 768px) {
  .post-content p {
    font-family: montserrat, sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 18px;
    line-height: initial;
  }
}
@media screen and (max-width: 768px) and (max-width: 1199.98px) {
  .post-content p {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) and (max-width: 500px) {
  .post-content p {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .post-content .image {
    display: block;
    position: relative;
    margin-bottom: 40px;
  }
  .post-content .image img {
    width: 100%;
    height: auto;
  }
  .post-content .image-caption p {
    font-family: montserrat, sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 18px;
    line-height: initial;
    font-size: 12px;
  }
}
@media screen and (max-width: 768px) and (max-width: 1199.98px) {
  .post-content .image-caption p {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) and (max-width: 500px) {
  .post-content .image-caption p {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .post-content .gallery {
    grid-template-columns: 1fr;
    margin-bottom: 40px;
  }
  .post-content .footnote {
    margin-bottom: 40px;
  }
  .post-content .footnote p {
    font-family: montserrat, sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 18px;
    line-height: initial;
    font-weight: 300;
    font-size: 10px;
    line-height: 12px;
    text-align: center;
  }
}
@media screen and (max-width: 768px) and (max-width: 1199.98px) {
  .post-content .footnote p {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) and (max-width: 500px) {
  .post-content .footnote p {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .post-content .blog-pullquote {
    margin-bottom: 40px;
  }
  .post-content .blog-pullquote p {
    display: inline;
    font-size: 20px;
    line-height: 24px;
  }
}
@media screen and (max-width: 500px) {
  .post-content .footnote {
    margin-bottom: 40px;
  }
  .post-content .footnote p {
    font-family: montserrat, sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 18px;
    line-height: initial;
    font-weight: 300;
    font-size: 10px !important;
    line-height: 12px !important;
    text-align: center;
  }
}
@media screen and (max-width: 500px) and (max-width: 1199.98px) {
  .post-content .footnote p {
    font-size: 16px;
  }
}
@media screen and (max-width: 500px) and (max-width: 500px) {
  .post-content .footnote p {
    font-size: 16px;
  }
}
.media-selector,
.media-selector-3col,
.media-selector-4col {
  display: grid;
  position: relative;
  grid-column-gap: 30px;
  width: calc(100% - 40px);
  max-width: 950px;
  margin: 0 auto;
  margin-bottom: 80px;
  text-align: center;
}
.media-selector h1,
.media-selector-3col h1,
.media-selector-4col h1 {
  font-family: montserrat, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: initial;
  text-transform: uppercase;
}
@media screen and (max-width: 1199.98px) {
  .media-selector h1,
  .media-selector-3col h1,
  .media-selector-4col h1 {
    font-size: 24px;
    line-height: 26px;
  }
}
@media screen and (max-width: 768px) {
  .media-selector h1,
  .media-selector-3col h1,
  .media-selector-4col h1 {
    font-size: 22px;
    line-height: 24px;
  }
}
@media screen and (max-width: 500px) {
  .media-selector h1,
  .media-selector-3col h1,
  .media-selector-4col h1 {
    font-size: 20px;
    line-height: 22px;
  }
}
.media-selector h1:hover,
.media-selector-3col h1:hover,
.media-selector-4col h1:hover {
  text-decoration: underline;
  cursor: pointer;
}
.media-selector h2,
.media-selector-3col h2,
.media-selector-4col h2 {
  font-family: montserrat, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: initial;
  text-transform: uppercase;
}
@media screen and (max-width: 1199.98px) {
  .media-selector h2,
  .media-selector-3col h2,
  .media-selector-4col h2 {
    font-size: 18px;
    line-height: 20px;
  }
}
@media screen and (max-width: 768px) {
  .media-selector h2,
  .media-selector-3col h2,
  .media-selector-4col h2 {
    font-size: 18px;
    line-height: 20px;
  }
}
.media-selector h2,
.media-selector-3col h2,
.media-selector-4col h2 {
  font-size: 24px;
}
.media-selector h2:hover,
.media-selector-3col h2:hover,
.media-selector-4col h2:hover {
  text-decoration: underline;
  cursor: pointer;
}
.media-selector a,
.media-selector-3col a,
.media-selector-4col a {
  text-decoration: none;
  color: black;
}
.media-selector .option-selected,
.media-selector-3col .option-selected,
.media-selector-4col .option-selected {
  text-decoration: underline;
}

.media-selector {
  grid-template-columns: 1fr 1fr;
}

.media-selector-3col {
  grid-template-columns: 1fr 1fr 1fr;
}
.media-selector-3col h2 {
  font-family: montserrat, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: initial;
  text-transform: uppercase;
}
@media screen and (max-width: 1199.98px) {
  .media-selector-3col h2 {
    font-size: 18px;
    line-height: 20px;
  }
}
@media screen and (max-width: 768px) {
  .media-selector-3col h2 {
    font-size: 18px;
    line-height: 20px;
  }
}
.media-selector-3col h2 {
  font-size: 22px;
}
.media-selector-3col h2:hover {
  text-decoration: underline;
  cursor: pointer;
}

.media-selector-4col {
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
.media-selector-4col h2 {
  font-family: montserrat, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: initial;
  text-transform: uppercase;
}
@media screen and (max-width: 1199.98px) {
  .media-selector-4col h2 {
    font-size: 18px;
    line-height: 20px;
  }
}
@media screen and (max-width: 768px) {
  .media-selector-4col h2 {
    font-size: 18px;
    line-height: 20px;
  }
}
.media-selector-4col h2 {
  font-size: 22px;
}
.media-selector-4col h2:hover {
  text-decoration: underline;
  cursor: pointer;
}
.media-selector-4col h2:first-of-type {
  font-weight: 400;
}
.media-selector-4col h2:first-of-type:hover {
  text-decoration: unset;
  cursor: initial;
}

.media-gallery,
.media-gallery-3col {
  display: grid;
  position: relative;
  grid-gap: 40px;
  width: calc(100% - 80px);
  max-width: 1440px;
  margin: 0 auto;
  margin-bottom: 80px;
}
.media-gallery .media-gallery-item,
.media-gallery-3col .media-gallery-item {
  text-align: center;
}
.media-gallery .media-gallery-item .thumbnail,
.media-gallery-3col .media-gallery-item .thumbnail {
  display: block;
  position: relative;
  padding-top: 56.25%;
  overflow: hidden;
}
.media-gallery .media-gallery-item .thumbnail img,
.media-gallery-3col .media-gallery-item .thumbnail img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  transition: opacity ease-in-out 0.5s;
  object-fit: cover;
}
.media-gallery .media-gallery-item h1, .media-gallery .media-gallery-item h2, .media-gallery .media-gallery-item h3,
.media-gallery-3col .media-gallery-item h1,
.media-gallery-3col .media-gallery-item h2,
.media-gallery-3col .media-gallery-item h3 {
  height: auto;
  margin-top: 20px;
  margin-bottom: 10px;
  text-align: center;
}
.media-gallery .media-gallery-item p,
.media-gallery-3col .media-gallery-item p {
  font-family: montserrat, sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: initial;
}
@media screen and (max-width: 1199.98px) {
  .media-gallery .media-gallery-item p,
  .media-gallery-3col .media-gallery-item p {
    font-size: 14px;
  }
}
@media screen and (max-width: 500px) {
  .media-gallery .media-gallery-item p,
  .media-gallery-3col .media-gallery-item p {
    font-size: 14px;
  }
}
.media-gallery .media-gallery-item p,
.media-gallery-3col .media-gallery-item p {
  text-align: center;
}
.media-gallery .media-gallery-item a,
.media-gallery-3col .media-gallery-item a {
  font-family: montserrat, sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: initial;
}
@media screen and (max-width: 1199.98px) {
  .media-gallery .media-gallery-item a,
  .media-gallery-3col .media-gallery-item a {
    font-size: 14px;
  }
}
@media screen and (max-width: 500px) {
  .media-gallery .media-gallery-item a,
  .media-gallery-3col .media-gallery-item a {
    font-size: 14px;
  }
}
.media-gallery .media-gallery-item a,
.media-gallery-3col .media-gallery-item a {
  color: black;
  text-align: center;
}
.media-gallery .media-gallery-item a p,
.media-gallery-3col .media-gallery-item a p {
  font-size: 16px;
  margin-top: 30px;
}

.media-gallery {
  grid-template-columns: 1fr 1fr;
}

.media-gallery-3col {
  grid-template-columns: repeat(3, 1fr);
}

@media screen and (max-width: 768px) {
  .media-gallery,
  .media-gallery-3col {
    grid-template-columns: 1fr;
    width: calc(100% - 40px);
  }
  .media-selector-4col {
    display: flex;
    flex-direction: column;
    flex-flow: wrap;
    justify-content: space-evenly;
    text-align: center;
    row-gap: 20px;
  }
  .media-selector-4col h2:first-of-type {
    width: 100%;
  }
}
.share-media {
  display: block;
  position: relative;
  width: calc(100% - 60px);
  max-width: fit-content;
  margin: 0 auto;
  margin-bottom: 60px;
}
.share-media h2 {
  font-family: montserrat, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: initial;
  text-transform: uppercase;
}
@media screen and (max-width: 1199.98px) {
  .share-media h2 {
    font-size: 24px;
    line-height: 26px;
  }
}
@media screen and (max-width: 768px) {
  .share-media h2 {
    font-size: 22px;
    line-height: 24px;
  }
}
@media screen and (max-width: 500px) {
  .share-media h2 {
    font-size: 20px;
    line-height: 22px;
  }
}
.share-media h2 {
  font-weight: normal;
  font-size: 24px;
  line-height: 29px;
  margin-bottom: 30px;
}
.share-media .share-icons {
  display: grid;
  position: relative;
  grid-template-columns: 1fr 1fr 1fr;
  grid-column-gap: 20px;
  justify-items: center;
}
.share-media .share-icons a {
  text-decoration: none;
}
.share-media .share-icons:hover {
  cursor: pointer;
}

.recent-media {
  display: block;
  position: relative;
  widows: calc(100% - 60px);
  max-width: 1440px;
  border-top: 1px solid black;
  padding-top: 60px;
}
.recent-media h2 {
  font-family: montserrat, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: initial;
  text-transform: uppercase;
}
@media screen and (max-width: 1199.98px) {
  .recent-media h2 {
    font-size: 24px;
    line-height: 26px;
  }
}
@media screen and (max-width: 768px) {
  .recent-media h2 {
    font-size: 22px;
    line-height: 24px;
  }
}
@media screen and (max-width: 500px) {
  .recent-media h2 {
    font-size: 20px;
    line-height: 22px;
  }
}
.recent-media h2 {
  font-style: normal;
  font-weight: normal;
  text-align: center;
  margin-bottom: 60px;
}

.post-video,
.post-video-embed {
  display: block;
  position: relative;
  margin-bottom: 80px;
}
.post-video img,
.post-video-embed img {
  width: 100%;
  height: auto;
}
.post-video video,
.post-video-embed video {
  width: 100%;
  height: auto;
}
.post-video #playLarge,
.post-video #pauseLarge,
.post-video #embed-playLarge,
.post-video-embed #playLarge,
.post-video-embed #pauseLarge,
.post-video-embed #embed-playLarge {
  display: block;
  position: absolute;
  border: none;
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 100px;
  width: 140px;
  height: 140px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all ease-in-out 0.3s;
}
.post-video #playLarge:hover,
.post-video #pauseLarge:hover,
.post-video #embed-playLarge:hover,
.post-video-embed #playLarge:hover,
.post-video-embed #pauseLarge:hover,
.post-video-embed #embed-playLarge:hover {
  cursor: pointer;
  width: 150px;
  height: 150px;
  background-color: rgba(0, 0, 0, 0.4);
}
.post-video #playLarge:focus,
.post-video #pauseLarge:focus,
.post-video #embed-playLarge:focus,
.post-video-embed #playLarge:focus,
.post-video-embed #pauseLarge:focus,
.post-video-embed #embed-playLarge:focus {
  outline: none;
  box-shadow: none;
}
.post-video #playLarge img,
.post-video #pauseLarge img,
.post-video #embed-playLarge img,
.post-video-embed #playLarge img,
.post-video-embed #pauseLarge img,
.post-video-embed #embed-playLarge img {
  position: absolute;
  border: none;
  background-color: rgba(255, 255, 255, 0);
  width: 60px;
  height: 60px;
  padding: 30px;
  top: 50%;
  left: 55%;
  transform: translate(-50%, -50%);
  transition: all ease-in-out 0.3s;
}
.post-video #playLarge img:hover,
.post-video #pauseLarge img:hover,
.post-video #embed-playLarge img:hover,
.post-video-embed #playLarge img:hover,
.post-video-embed #pauseLarge img:hover,
.post-video-embed #embed-playLarge img:hover {
  cursor: pointer;
  width: 65px;
  height: 65px;
  opacity: 0.7;
}
.post-video #pauseLarge,
.post-video-embed #pauseLarge {
  display: none;
}
.post-video #pauseLarge img,
.post-video-embed #pauseLarge img {
  left: 50%;
}
.post-video #video-controls,
.post-video #embed-video-controls,
.post-video-embed #video-controls,
.post-video-embed #embed-video-controls {
  display: flex;
  position: absolute;
  bottom: 2px;
  align-items: center;
  width: calc(100% - 30px);
  height: 40px;
  padding: 10px 15px;
  background-color: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: opacity ease-in 0.3s;
}
.post-video #video-controls button,
.post-video #embed-video-controls button,
.post-video-embed #video-controls button,
.post-video-embed #embed-video-controls button {
  border: none;
  background-color: rgba(255, 255, 255, 0);
  width: auto;
  height: auto;
  display: block;
  position: relative;
}
.post-video #video-controls button:hover,
.post-video #embed-video-controls button:hover,
.post-video-embed #video-controls button:hover,
.post-video-embed #embed-video-controls button:hover {
  cursor: pointer;
}
.post-video #video-controls button:focus,
.post-video #embed-video-controls button:focus,
.post-video-embed #video-controls button:focus,
.post-video-embed #embed-video-controls button:focus {
  outline: none;
  box-shadow: none;
}
.post-video #video-controls button img,
.post-video #embed-video-controls button img,
.post-video-embed #video-controls button img,
.post-video-embed #embed-video-controls button img {
  width: 24px;
  height: auto;
  vertical-align: bottom;
}
.post-video #video-controls #playpause,
.post-video #video-controls #embed-playpause,
.post-video #embed-video-controls #playpause,
.post-video #embed-video-controls #embed-playpause,
.post-video-embed #video-controls #playpause,
.post-video-embed #video-controls #embed-playpause,
.post-video-embed #embed-video-controls #playpause,
.post-video-embed #embed-video-controls #embed-playpause {
  margin-right: 40px;
}
.post-video #video-controls #playButton,
.post-video #video-controls #embed-playButton,
.post-video #embed-video-controls #playButton,
.post-video #embed-video-controls #embed-playButton,
.post-video-embed #video-controls #playButton,
.post-video-embed #video-controls #embed-playButton,
.post-video-embed #embed-video-controls #playButton,
.post-video-embed #embed-video-controls #embed-playButton {
  position: absolute;
  top: -11px;
}
.post-video #video-controls #pauseButton,
.post-video #video-controls #embed-pauseButton,
.post-video #embed-video-controls #pauseButton,
.post-video #embed-video-controls #embed-pauseButton,
.post-video-embed #video-controls #pauseButton,
.post-video-embed #video-controls #embed-pauseButton,
.post-video-embed #embed-video-controls #pauseButton,
.post-video-embed #embed-video-controls #embed-pauseButton {
  display: none;
  position: absolute;
  width: 18px;
  height: 24px;
  height: auto;
  top: -11px;
}
.post-video #video-controls #muteButton,
.post-video #video-controls #unmuteButton,
.post-video #video-controls #embed-muteButton,
.post-video #video-controls #embed-unmuteButton,
.post-video #embed-video-controls #muteButton,
.post-video #embed-video-controls #unmuteButton,
.post-video #embed-video-controls #embed-muteButton,
.post-video #embed-video-controls #embed-unmuteButton,
.post-video-embed #video-controls #muteButton,
.post-video-embed #video-controls #unmuteButton,
.post-video-embed #video-controls #embed-muteButton,
.post-video-embed #video-controls #embed-unmuteButton,
.post-video-embed #embed-video-controls #muteButton,
.post-video-embed #embed-video-controls #unmuteButton,
.post-video-embed #embed-video-controls #embed-muteButton,
.post-video-embed #embed-video-controls #embed-unmuteButton {
  position: absolute;
  top: -14px;
  left: -27px;
  width: 33px;
}
.post-video #video-controls #muteButton,
.post-video #video-controls #embed-muteButton,
.post-video #embed-video-controls #muteButton,
.post-video #embed-video-controls #embed-muteButton,
.post-video-embed #video-controls #muteButton,
.post-video-embed #video-controls #embed-muteButton,
.post-video-embed #embed-video-controls #muteButton,
.post-video-embed #embed-video-controls #embed-muteButton {
  width: 19px;
  top: -11px;
  left: -20px;
}
.post-video #video-controls #unmuteButton,
.post-video #video-controls #embed-unmuteButton,
.post-video #embed-video-controls #unmuteButton,
.post-video #embed-video-controls #embed-unmuteButton,
.post-video-embed #video-controls #unmuteButton,
.post-video-embed #video-controls #embed-unmuteButton,
.post-video-embed #embed-video-controls #unmuteButton,
.post-video-embed #embed-video-controls #embed-unmuteButton {
  display: none;
}
.post-video #video-controls #progress,
.post-video #video-controls #embed-progress,
.post-video #embed-video-controls #progress,
.post-video #embed-video-controls #embed-progress,
.post-video-embed #video-controls #progress,
.post-video-embed #video-controls #embed-progress,
.post-video-embed #embed-video-controls #progress,
.post-video-embed #embed-video-controls #embed-progress {
  width: 120%;
  margin-right: 40px;
  transition: all linear 0.2s;
}
.post-video #video-controls #progress:hover,
.post-video #video-controls #embed-progress:hover,
.post-video #embed-video-controls #progress:hover,
.post-video #embed-video-controls #embed-progress:hover,
.post-video-embed #video-controls #progress:hover,
.post-video-embed #video-controls #embed-progress:hover,
.post-video-embed #embed-video-controls #progress:hover,
.post-video-embed #embed-video-controls #embed-progress:hover {
  cursor: pointer;
}
.post-video #video-controls #mute,
.post-video #video-controls #embed-mute,
.post-video #embed-video-controls #mute,
.post-video #embed-video-controls #embed-mute,
.post-video-embed #video-controls #mute,
.post-video-embed #video-controls #embed-mute,
.post-video-embed #embed-video-controls #mute,
.post-video-embed #embed-video-controls #embed-mute {
  margin-right: 5px;
}
.post-video #video-controls #volume,
.post-video #video-controls #embed-volume,
.post-video #embed-video-controls #volume,
.post-video #embed-video-controls #embed-volume,
.post-video-embed #video-controls #volume,
.post-video-embed #video-controls #embed-volume,
.post-video-embed #embed-video-controls #volume,
.post-video-embed #embed-video-controls #embed-volume {
  width: 80px;
  margin-right: 15px;
}
.post-video #video-controls #volume::-webkit-slider-runnable-track,
.post-video #video-controls #embed-volume::-webkit-slider-runnable-track,
.post-video #embed-video-controls #volume::-webkit-slider-runnable-track,
.post-video #embed-video-controls #embed-volume::-webkit-slider-runnable-track,
.post-video-embed #video-controls #volume::-webkit-slider-runnable-track,
.post-video-embed #video-controls #embed-volume::-webkit-slider-runnable-track,
.post-video-embed #embed-video-controls #volume::-webkit-slider-runnable-track,
.post-video-embed #embed-video-controls #embed-volume::-webkit-slider-runnable-track {
  width: 80px !important;
}
.post-video #video-controls [type=range], .post-video #video-controls [type=range]::-webkit-slider-thumb,
.post-video #embed-video-controls [type=range],
.post-video #embed-video-controls [type=range]::-webkit-slider-thumb,
.post-video-embed #video-controls [type=range],
.post-video-embed #video-controls [type=range]::-webkit-slider-thumb,
.post-video-embed #embed-video-controls [type=range],
.post-video-embed #embed-video-controls [type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
}
.post-video #video-controls [type=range],
.post-video #embed-video-controls [type=range],
.post-video-embed #video-controls [type=range],
.post-video-embed #embed-video-controls [type=range] {
  margin: 0;
  padding: 0;
  width: 12.5em;
  height: 0.938em;
  background: transparent;
  font: 1em/1 arial, sans-serif;
  font-size: 12px;
}
.post-video #video-controls [type=range]:focus,
.post-video #embed-video-controls [type=range]:focus,
.post-video-embed #video-controls [type=range]:focus,
.post-video-embed #embed-video-controls [type=range]:focus {
  outline: none;
  box-shadow: none;
  border: none;
}
.post-video #video-controls [type=range]::-webkit-slider-runnable-track,
.post-video #embed-video-controls [type=range]::-webkit-slider-runnable-track,
.post-video-embed #video-controls [type=range]::-webkit-slider-runnable-track,
.post-video-embed #embed-video-controls [type=range]::-webkit-slider-runnable-track {
  box-sizing: border-box;
  border: none;
  width: 12.5em;
  height: 0.313em;
  background: #fff;
}
.post-video #video-controls [type=range]::-moz-range-track,
.post-video #embed-video-controls [type=range]::-moz-range-track,
.post-video-embed #video-controls [type=range]::-moz-range-track,
.post-video-embed #embed-video-controls [type=range]::-moz-range-track {
  box-sizing: border-box;
  border: none;
  width: 12.5em;
  height: 0.313em;
  background: #fff;
}
.post-video #video-controls [type=range]::-ms-track,
.post-video #embed-video-controls [type=range]::-ms-track,
.post-video-embed #video-controls [type=range]::-ms-track,
.post-video-embed #embed-video-controls [type=range]::-ms-track {
  box-sizing: border-box;
  border: none;
  width: 12.5em;
  height: 0.313em;
  background: #fff;
}
.post-video #video-controls [type=range]::-webkit-slider-thumb,
.post-video #embed-video-controls [type=range]::-webkit-slider-thumb,
.post-video-embed #video-controls [type=range]::-webkit-slider-thumb,
.post-video-embed #embed-video-controls [type=range]::-webkit-slider-thumb {
  margin-top: -0.3125em;
  box-sizing: border-box;
  border: none;
  width: 0.938em;
  height: 0.938em;
  border-radius: 50%;
  background: #fff;
}
.post-video #video-controls [type=range]::-moz-range-thumb,
.post-video #embed-video-controls [type=range]::-moz-range-thumb,
.post-video-embed #video-controls [type=range]::-moz-range-thumb,
.post-video-embed #embed-video-controls [type=range]::-moz-range-thumb {
  box-sizing: border-box;
  border: none;
  width: 0.938em;
  height: 0.938em;
  border-radius: 50%;
  background: #fff;
}
.post-video #video-controls [type=range]::-ms-thumb,
.post-video #embed-video-controls [type=range]::-ms-thumb,
.post-video-embed #video-controls [type=range]::-ms-thumb,
.post-video-embed #embed-video-controls [type=range]::-ms-thumb {
  margin-top: 0;
  box-sizing: border-box;
  border: none;
  width: 0.938em;
  height: 0.938em;
  border-radius: 50%;
  background: #fff;
}
.post-video #video-controls [type=range]::-ms-tooltip,
.post-video #embed-video-controls [type=range]::-ms-tooltip,
.post-video-embed #video-controls [type=range]::-ms-tooltip,
.post-video-embed #embed-video-controls [type=range]::-ms-tooltip {
  display: none;
}

.post-video-embed {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  margin-bottom: 80px;
}
.post-video-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 768px) {
  .post-video {
    display: block;
    position: relative;
    margin-bottom: 80px;
  }
  .post-video img {
    width: 100%;
    height: auto;
  }
  .post-video video {
    width: 100%;
    height: auto;
  }
  .post-video #playLarge {
    display: block;
    position: absolute;
    border: none;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 70px;
    width: 100px;
    height: 100px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .post-video #playLarge:hover {
    cursor: pointer;
    width: 120px;
    height: 120px;
    background-color: rgba(0, 0, 0, 0.4);
  }
  .post-video #playLarge:focus {
    outline: none;
    box-shadow: none;
  }
  .post-video #playLarge img {
    position: absolute;
    border: none;
    background-color: rgba(255, 255, 255, 0);
    width: 40px;
    height: 40px;
    top: 50%;
    left: 55%;
    transform: translate(-50%, -50%);
  }
  .post-video #playLarge img:hover {
    cursor: pointer;
    width: 45px;
    height: 45px;
    opacity: 0.7;
  }
  .post-video #video-controls {
    display: flex;
    position: absolute;
    bottom: 2px;
    align-items: center;
    width: calc(100% - 30px);
    height: 40px;
    padding: 10px 15px;
    background-color: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity ease-in 0.3s;
  }
  .post-video #video-controls button {
    border: none;
    background-color: rgba(255, 255, 255, 0);
    width: auto;
    height: auto;
    display: block;
    position: relative;
  }
  .post-video #video-controls button:hover {
    cursor: pointer;
  }
  .post-video #video-controls button:focus {
    outline: none;
    box-shadow: none;
  }
  .post-video #video-controls button img {
    width: 24px;
    height: auto;
    vertical-align: bottom;
  }
  .post-video #video-controls #playpause {
    margin-right: 40px;
  }
  .post-video #video-controls #playButton {
    position: absolute;
    top: -11px;
  }
  .post-video #video-controls #pauseButton {
    display: none;
    position: absolute;
    width: 18px;
    height: 24px;
    height: auto;
    top: -11px;
  }
  .post-video #video-controls #muteButton,
  .post-video #video-controls #unmuteButton {
    position: absolute;
    top: -14px;
    left: -27px;
    width: 33px;
  }
  .post-video #video-controls #muteButton {
    width: 19px;
    top: -11px;
    left: -20px;
  }
  .post-video #video-controls #unmuteButton {
    display: none;
  }
  .post-video #video-controls #progress {
    width: 120%;
    margin-right: 40px;
    transition: all linear 0.2s;
  }
  .post-video #video-controls #progress:hover {
    cursor: pointer;
  }
  .post-video #video-controls #mute {
    margin-right: 5px;
  }
  .post-video #video-controls #volume {
    width: 80px;
    margin-right: 15px;
  }
}
#trade-gallery .media-gallery-item,
#consumer-gallery .media-gallery-item {
  text-align: left;
}
#trade-gallery .media-gallery-item h2,
#consumer-gallery .media-gallery-item h2 {
  font-family: montserrat, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: initial;
  text-transform: uppercase;
}
@media screen and (max-width: 1199.98px) {
  #trade-gallery .media-gallery-item h2,
  #consumer-gallery .media-gallery-item h2 {
    font-size: 18px;
    line-height: 20px;
  }
}
@media screen and (max-width: 768px) {
  #trade-gallery .media-gallery-item h2,
  #consumer-gallery .media-gallery-item h2 {
    font-size: 18px;
    line-height: 20px;
  }
}
#trade-gallery .media-gallery-item h2, #trade-gallery .media-gallery-item p, #trade-gallery .media-gallery-item a,
#consumer-gallery .media-gallery-item h2,
#consumer-gallery .media-gallery-item p,
#consumer-gallery .media-gallery-item a {
  text-align: left;
}
#trade-gallery .media-gallery-item p,
#consumer-gallery .media-gallery-item p {
  margin-bottom: 6px;
}
#trade-gallery .media-gallery-item a,
#consumer-gallery .media-gallery-item a {
  font-family: montserrat, sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 18px;
  line-height: initial;
}
@media screen and (max-width: 1199.98px) {
  #trade-gallery .media-gallery-item a,
  #consumer-gallery .media-gallery-item a {
    font-size: 16px;
  }
}
@media screen and (max-width: 500px) {
  #trade-gallery .media-gallery-item a,
  #consumer-gallery .media-gallery-item a {
    font-size: 16px;
  }
}
#trade-gallery .media-gallery-item a,
#consumer-gallery .media-gallery-item a {
  color: black;
}

.event-gallery-3col {
  display: grid;
  position: relative;
  grid-gap: 40px;
  width: calc(100% - 160px);
  max-width: 1440px;
  margin: 0 auto;
  margin-bottom: 80px;
}
.event-gallery-3col .media-gallery-item {
  text-align: left;
}
.event-gallery-3col .media-gallery-item .thumbnail {
  display: block;
  position: relative;
  padding-top: 56.25%;
  overflow: hidden;
}
.event-gallery-3col .media-gallery-item .thumbnail img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  transition: opacity ease-in-out 0.5s;
  object-fit: cover;
}
.event-gallery-3col .media-gallery-item h3 {
  font-family: montserrat, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: initial;
  text-transform: uppercase;
}
@media screen and (max-width: 1199.98px) {
  .event-gallery-3col .media-gallery-item h3 {
    font-size: 18px;
  }
}
@media screen and (max-width: 768px) {
  .event-gallery-3col .media-gallery-item h3 {
    font-size: 16px;
  }
}
.event-gallery-3col .media-gallery-item h3 {
  height: auto;
  margin-top: 20px;
  margin-bottom: 10px;
  text-align: left;
}
.event-gallery-3col .media-gallery-item p, .event-gallery-3col .media-gallery-item a {
  font-family: montserrat, sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: initial;
}
@media screen and (max-width: 1199.98px) {
  .event-gallery-3col .media-gallery-item p, .event-gallery-3col .media-gallery-item a {
    font-size: 14px;
  }
}
@media screen and (max-width: 500px) {
  .event-gallery-3col .media-gallery-item p, .event-gallery-3col .media-gallery-item a {
    font-size: 14px;
  }
}
.event-gallery-3col .media-gallery-item p, .event-gallery-3col .media-gallery-item a {
  text-align: left;
  color: black;
}
.event-gallery-3col .media-gallery-item p {
  margin-bottom: 5px;
}

.event-gallery-3col {
  grid-template-columns: repeat(3, 1fr);
}

@media screen and (max-width: 768px) {
  .event-gallery-3col {
    grid-template-columns: 1fr;
    width: calc(100% - 40px);
    margin-bottom: 60px;
  }
}
.image-banner-event {
  display: block;
  position: relative;
  width: 100%;
  max-height: 480px;
  margin-bottom: 60px;
}
.image-banner-event img {
  width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: cover;
}

.event-grid {
  display: grid;
  position: relative;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 40px;
  text-align: left;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 60px;
}
.event-grid .event-info {
  margin-bottom: 80px;
}
.event-grid .event-info .event-info-header {
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
}
.event-grid .event-info h2, .event-grid .event-info p, .event-grid .event-info a {
  font-weight: normal;
  font-size: 24px;
  line-height: 28px;
  text-transform: uppercase;
  margin-bottom: 0px;
  text-decoration: none;
  color: black;
}
.event-grid .event-info a {
  text-decoration: underline;
}
.event-grid .col .paragraph {
  margin: 0;
  margin-bottom: 150px;
}
.event-grid .col iframe {
  width: 100%;
  height: 100%;
}

.share-event {
  display: block;
  position: relative;
  margin-bottom: 40px;
}
.share-event h2 {
  display: inline-block;
  font-weight: 300;
  font-size: 20px;
  line-height: 24px;
  vertical-align: middle;
  margin-right: 30px;
}
.share-event .share-icons {
  display: inline-block;
}
.share-event .share-icons img {
  display: inline-block;
  margin-right: 30px;
}
.share-event .share-icons a {
  text-decoration: none;
}

.add-calendar {
  display: block;
  position: relative;
  width: 100%;
  height: 54px;
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid #000;
  font-family: montserrat, sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 18px;
  line-height: initial;
}
@media screen and (max-width: 1199.98px) {
  .add-calendar {
    font-size: 16px;
  }
}
@media screen and (max-width: 500px) {
  .add-calendar {
    font-size: 16px;
  }
}
.add-calendar {
  text-align: center;
}
.add-calendar:hover {
  cursor: pointer;
}

@media screen and (max-width: 1440px) {
  .event-grid {
    width: calc(100% - 40px);
  }
}
@media screen and (max-width: 1199.98px) {
  .event-grid {
    grid-template-columns: 1fr;
    grid-column-gap: 0px;
    grid-row-gap: 40px;
  }
  .event-grid .col .paragraph {
    margin: 0;
    margin-bottom: 40px;
  }
  .event-grid .col iframe {
    width: 100%;
    min-height: 500px;
    height: 100%;
  }
}
@media screen and (max-width: 768px) {
  .event-grid .event-info {
    margin-bottom: 40px;
  }
  .event-grid .event-info .event-info-header {
    font-weight: 500;
    font-size: 16px;
    line-height: 18px;
  }
  .event-grid .event-info h2, .event-grid .event-info p, .event-grid .event-info a {
    font-weight: normal;
    font-size: 20px;
    line-height: 22px;
    text-transform: uppercase;
    margin-bottom: 0px;
    text-decoration: none;
    color: black;
  }
  .event-grid .col .paragraph {
    width: 100%;
  }
}
.height-container {
  display: block;
  position: relative;
  min-height: 500px;
}

.availability-filters-grid {
  display: grid;
  position: relative;
  width: calc(100% - 120px);
  max-width: 1060px;
  height: auto;
  grid-template-columns: 1fr;
  grid-column-gap: 120px;
  margin: 0 auto;
  margin-bottom: 60px;
}

.availability-search {
  display: block;
  position: relative;
  width: 100%;
}
.availability-search input {
  height: 30px;
  width: 100%;
  border: none;
  border-bottom: 1px solid black;
  outline: none;
  vertical-align: top;
  padding-bottom: 10px;
  padding-left: 15px;
  font-family: montserrat, sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 18px;
  line-height: initial;
}
@media screen and (max-width: 1199.98px) {
  .availability-search input {
    font-size: 16px;
  }
}
@media screen and (max-width: 500px) {
  .availability-search input {
    font-size: 16px;
  }
}
.availability-search input {
  text-align: left;
}
.availability-search input::placeholder {
  font-family: montserrat, sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 18px;
  line-height: initial;
}
@media screen and (max-width: 1199.98px) {
  .availability-search input::placeholder {
    font-size: 16px;
  }
}
@media screen and (max-width: 500px) {
  .availability-search input::placeholder {
    font-size: 16px;
  }
}
.availability-search input::placeholder {
  font-weight: 500;
  text-align: left;
  text-transform: uppercase;
}
.availability-search img {
  display: block;
  position: absolute;
  right: 0px;
  top: 5px;
  width: 24px;
  height: auto;
}

.categories-filter {
  display: block;
  position: relative;
  width: 320px;
  text-align: center;
  background-color: #fff;
  border-left: 1px solid rgb(150, 150, 150);
  border-right: 1px solid rgb(150, 150, 150);
  border-top: 1px solid rgb(150, 150, 150);
  border-bottom: 1px solid rgb(150, 150, 150);
  z-index: 50;
}
.categories-filter:hover {
  cursor: pointer;
}
.categories-filter h2 {
  font-family: montserrat, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: initial;
  text-transform: uppercase;
}
@media screen and (max-width: 1199.98px) {
  .categories-filter h2 {
    font-size: 18px;
    line-height: 20px;
  }
}
@media screen and (max-width: 768px) {
  .categories-filter h2 {
    font-size: 18px;
    line-height: 20px;
  }
}
.categories-filter h2 {
  font-size: 20px;
  margin-bottom: 10px;
  margin-top: 10px;
  margin-right: 10px;
}
.categories-filter img {
  display: block;
  position: absolute;
  width: 18px;
  height: auto;
  right: 15px;
  top: 15px;
}

.region-dropdown {
  display: none;
  position: absolute;
  left: -1px;
  height: auto;
  width: 100%;
  background-color: #fff;
  border-left: 1px solid rgb(150, 150, 150);
  border-right: 1px solid rgb(150, 150, 150);
  border-bottom: 1px solid rgb(150, 150, 150);
}
.region-dropdown span {
  display: block;
  font-family: montserrat, sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 18px;
  line-height: initial;
}
@media screen and (max-width: 1199.98px) {
  .region-dropdown span {
    font-size: 16px;
  }
}
@media screen and (max-width: 500px) {
  .region-dropdown span {
    font-size: 16px;
  }
}
.region-dropdown span {
  font-size: 20px;
  margin: 20px 20px;
  text-transform: uppercase;
}
.region-dropdown span:hover {
  cursor: pointer;
}

.option-selected {
  text-decoration: underline;
}

.availability-gallery,
.availability-gallery-results {
  display: grid;
  position: relative;
  padding-top: 60px;
  padding-bottom: 60px;
  grid-template-columns: 1fr 1fr 1fr;
  grid-row-gap: 40px;
  grid-column-gap: 40px;
  width: calc(100% - 120px);
  max-width: 1440px;
  margin: 0 auto;
}
.availability-gallery .availability-gallery-item,
.availability-gallery-results .availability-gallery-item {
  display: block;
  position: relative;
  width: 100%;
  height: auto;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.availability-gallery .availability-gallery-item a,
.availability-gallery-results .availability-gallery-item a {
  color: black;
  text-decoration: underline;
  text-transform: uppercase;
}
.availability-gallery .availability-gallery-item a:hover,
.availability-gallery-results .availability-gallery-item a:hover {
  cursor: pointer;
}
.availability-gallery .availability-gallery-item .item-title,
.availability-gallery-results .availability-gallery-item .item-title {
  color: black;
  text-decoration: none;
  text-transform: uppercase;
}
.availability-gallery .availability-gallery-item .item-title:hover,
.availability-gallery-results .availability-gallery-item .item-title:hover {
  cursor: pointer;
  text-decoration: underline;
}
.availability-gallery .availability-gallery-item h2,
.availability-gallery-results .availability-gallery-item h2 {
  font-family: montserrat, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: initial;
  text-transform: uppercase;
}
@media screen and (max-width: 1199.98px) {
  .availability-gallery .availability-gallery-item h2,
  .availability-gallery-results .availability-gallery-item h2 {
    font-size: 18px;
    line-height: 20px;
  }
}
@media screen and (max-width: 768px) {
  .availability-gallery .availability-gallery-item h2,
  .availability-gallery-results .availability-gallery-item h2 {
    font-size: 18px;
    line-height: 20px;
  }
}
.availability-gallery .availability-gallery-item h2,
.availability-gallery-results .availability-gallery-item h2 {
  font-weight: 400;
  margin-bottom: 6px;
  text-transform: uppercase;
}
.availability-gallery .availability-gallery-item p,
.availability-gallery-results .availability-gallery-item p {
  font-family: montserrat, sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: initial;
}
@media screen and (max-width: 1199.98px) {
  .availability-gallery .availability-gallery-item p,
  .availability-gallery-results .availability-gallery-item p {
    font-size: 14px;
  }
}
@media screen and (max-width: 500px) {
  .availability-gallery .availability-gallery-item p,
  .availability-gallery-results .availability-gallery-item p {
    font-size: 14px;
  }
}
.availability-gallery .availability-gallery-item p,
.availability-gallery-results .availability-gallery-item p {
  font-size: 14px;
  margin-bottom: 3px;
  text-transform: uppercase;
}
.availability-gallery .availability-gallery-item .thumbnail,
.availability-gallery-results .availability-gallery-item .thumbnail {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  margin-bottom: 15px;
}
.availability-gallery .availability-gallery-item .thumbnail img,
.availability-gallery-results .availability-gallery-item .thumbnail img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#availability-selector {
  grid-template-columns: 1fr 1fr;
  max-width: 540px;
  margin-bottom: 60px;
}
#availability-selector h2 {
  font-family: montserrat, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: initial;
  text-transform: uppercase;
}
@media screen and (max-width: 1199.98px) {
  #availability-selector h2 {
    font-size: 18px;
    line-height: 20px;
  }
}
@media screen and (max-width: 768px) {
  #availability-selector h2 {
    font-size: 18px;
    line-height: 20px;
  }
}

.featured-winery {
  display: block;
  position: relative;
  width: calc(100% - 120px);
  max-width: 1440px;
  border-top: 1px solid black;
  border-bottom: 1px solid black;
  text-align: center;
  margin: 0 auto;
  padding-top: 30px;
  padding-bottom: 60px;
  margin-bottom: 60px;
}
.featured-winery h2 {
  font-size: 24px;
  margin-bottom: 30px;
}
.featured-winery .item-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 40px;
}
.featured-winery .item-grid .item h2 {
  margin-bottom: unset;
}
.featured-winery .item-grid .item img {
  width: 100%;
  height: auto;
  margin-bottom: 30px;
}
.featured-winery .item-grid .item a {
  text-decoration: none;
  color: black;
}
.featured-winery .item-grid .item a:hover {
  cursor: pointer;
  text-decoration: underline;
}

@media screen and (max-width: 768px) {
  .availability-filters-grid {
    display: grid;
    position: relative;
    width: calc(100% - 40px);
    max-width: 1060px;
    height: auto;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr;
    grid-row-gap: 60px;
    justify-self: center;
    margin: 0 auto;
    margin-bottom: 0px;
    border-bottom: 1px solid black;
    padding-bottom: 0px;
  }
  .availability-search {
    display: block;
    position: relative;
    width: 100%;
    max-width: 620px;
  }
  .availability-search input {
    height: 30px;
    width: 100%;
    border: none;
    border-bottom: 1px solid black;
    outline: none;
    vertical-align: top;
    padding-bottom: 10px;
    padding-left: 0px;
    font-family: montserrat, sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 18px;
    line-height: initial;
    text-align: left;
  }
}
@media screen and (max-width: 768px) and (max-width: 1199.98px) {
  .availability-search input {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) and (max-width: 500px) {
  .availability-search input {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .availability-search input::placeholder {
    font-family: montserrat, sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 18px;
    line-height: initial;
    font-weight: 500;
    text-align: left;
    text-transform: uppercase;
  }
}
@media screen and (max-width: 768px) and (max-width: 1199.98px) {
  .availability-search input::placeholder {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) and (max-width: 500px) {
  .availability-search input::placeholder {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .availability-search img {
    display: block;
    position: absolute;
    right: 0px;
    top: 5px;
    width: 24px;
    height: auto;
  }
  .categories-filter {
    display: block;
    position: relative;
    width: 320px;
    text-align: center;
    background-color: #fff;
    justify-self: center;
    z-index: 50;
  }
  .categories-filter:hover {
    cursor: pointer;
  }
  .categories-filter h2 {
    font-family: montserrat, sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: initial;
    text-transform: uppercase;
    font-size: 22px;
    margin-bottom: 10px;
    margin-right: 10px;
  }
}
@media screen and (max-width: 768px) and (max-width: 1199.98px) {
  .categories-filter h2 {
    font-size: 18px;
    line-height: 20px;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .categories-filter h2 {
    font-size: 18px;
    line-height: 20px;
  }
}
@media screen and (max-width: 768px) {
  .categories-filter img {
    display: block;
    position: absolute;
    width: 18px;
    height: auto;
    right: 15px;
    top: 12px;
  }
  .region-dropdown {
    display: none;
    position: absolute;
    height: auto;
    width: 100%;
    background-color: #fff;
  }
  .region-dropdown span {
    display: block;
    font-size: 18px;
    margin: 20px 20px;
    text-transform: uppercase;
  }
  .region-dropdown span:hover {
    cursor: pointer;
  }
  .option-selected {
    text-decoration: underline;
  }
  .availability-gallery,
  .availability-gallery-results {
    display: grid;
    position: relative;
    padding-top: 40px;
    padding-bottom: 40px;
    grid-template-columns: 1fr;
    grid-row-gap: 40px;
    max-width: 1440px;
    margin: 0 auto;
  }
  .availability-gallery .availability-gallery-item,
  .availability-gallery-results .availability-gallery-item {
    display: block;
    position: relative;
    width: 100%;
    height: auto;
    text-align: center;
  }
  .availability-gallery .availability-gallery-item a,
  .availability-gallery-results .availability-gallery-item a {
    color: black;
    text-decoration: none;
  }
  .availability-gallery .availability-gallery-item a:hover,
  .availability-gallery-results .availability-gallery-item a:hover {
    text-decoration: underline;
  }
  .availability-gallery .availability-gallery-item h2,
  .availability-gallery-results .availability-gallery-item h2 {
    font-family: montserrat, sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: initial;
    text-transform: uppercase;
  }
}
@media screen and (max-width: 768px) and (max-width: 1199.98px) {
  .availability-gallery .availability-gallery-item h2,
  .availability-gallery-results .availability-gallery-item h2 {
    font-size: 18px;
    line-height: 20px;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .availability-gallery .availability-gallery-item h2,
  .availability-gallery-results .availability-gallery-item h2 {
    font-size: 18px;
    line-height: 20px;
  }
}
@media screen and (max-width: 768px) {
  .availability-gallery .availability-gallery-item p,
  .availability-gallery-results .availability-gallery-item p {
    font-family: montserrat, sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 16px;
    line-height: initial;
  }
}
@media screen and (max-width: 768px) and (max-width: 1199.98px) {
  .availability-gallery .availability-gallery-item p,
  .availability-gallery-results .availability-gallery-item p {
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) and (max-width: 500px) {
  .availability-gallery .availability-gallery-item p,
  .availability-gallery-results .availability-gallery-item p {
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  #availability-selector {
    grid-template-columns: 1fr 1fr;
    max-width: 540px;
    margin-bottom: 0px;
  }
  #availability-selector h2 {
    font-family: montserrat, sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: initial;
    text-transform: uppercase;
  }
}
@media screen and (max-width: 768px) and (max-width: 1199.98px) {
  #availability-selector h2 {
    font-size: 18px;
    line-height: 20px;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  #availability-selector h2 {
    font-size: 18px;
    line-height: 20px;
  }
}
@media screen and (max-width: 768px) {
  #availability-selector h2:first-of-type {
    font-weight: 500;
  }
  #availability-selector h2:hover {
    text-decoration: underline;
  }
  .featured-winery {
    display: block;
    position: relative;
    width: calc(100% - 40px);
    max-width: 1440px;
    border-top: 1px solid black;
    border-bottom: 1px solid black;
    text-align: center;
    margin: 0 auto;
    padding-top: 30px;
    padding-bottom: 30px;
    margin-bottom: 30px;
  }
  .featured-winery h2 {
    font-size: 18px;
    margin-bottom: 30px;
  }
  .featured-winery .item-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-row-gap: 40px;
  }
  .featured-winery .item-grid .item h2 {
    margin-bottom: unset;
  }
  .featured-winery .item-grid .item img {
    width: 100%;
    height: auto;
    margin-bottom: 30px;
  }
  .featured-winery .item-grid .item a {
    text-decoration: none;
    color: black;
  }
  .featured-winery .item-grid .item a:hover {
    cursor: pointer;
    text-decoration: underline;
  }
}
#availability-breadcrumb {
  margin-left: 0px;
}

.availability-header {
  display: grid;
  position: relative;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: auto;
  margin-top: 66px;
  margin-bottom: 70px;
}
.availability-header .post-title {
  text-align: left;
  margin: 0;
}
.availability-header .post-section {
  text-align: right;
  margin: 0;
}
.availability-header .post-section h1 {
  font-size: 24px;
}

@media screen and (max-width: 1580px) {
  #availability-breadcrumb {
    margin-left: 20px;
  }
  .availability-header {
    width: calc(100% - 40px);
    margin: 0 auto;
    margin-top: 66px;
    margin-bottom: 70px;
  }
}
@media screen and (max-width: 768px) {
  #availability-breadcrumb {
    margin-left: 20px;
  }
  .availability-header {
    width: calc(100% - 40px);
    margin: 0 auto;
    margin-top: 40px;
    margin-bottom: 40px;
  }
  .availability-header .post-title {
    text-align: left;
    margin: 0;
  }
  .availability-header .post-section {
    text-align: right;
    margin: 0;
  }
  .availability-header .post-section h1 {
    font-size: 20px;
  }
}
.forum-wrap {
  display: grid;
  position: relative;
  width: calc(100% - 40px);
  max-width: 1280px;
  margin: 0 auto;
  margin-bottom: 80px;
  grid-template-columns: 1fr;
  column-gap: 40px;
}
.forum-wrap--single {
  margin-top: 80px;
  max-width: 840px;
}
.forum-wrap--single .forum-header {
  grid-template-columns: 1fr !important;
}
.forum-wrap .forum-header {
  display: grid;
  position: relative;
  grid-template-columns: 7fr 1fr 1fr 1fr;
  place-items: center;
  column-gap: 16px;
  border-bottom: 1px solid black;
  width: 100%;
  height: 40px;
}
@media screen and (max-width: 900px) {
  .forum-wrap .forum-header {
    grid-template-columns: none;
    grid-template-areas: "search search search" "price country view";
    height: 70px;
  }
}
@media screen and (max-width: 768px) {
  .forum-wrap .forum-header {
    column-gap: 8px;
  }
}
.forum-wrap .forum-header h3 {
  display: none;
  position: relative;
  font-size: 16px;
  text-align: left;
  align-self: center;
  justify-self: baseline;
}
.forum-wrap .forum-header .forum-search {
  display: grid;
  position: relative;
  grid-template-columns: 24px auto;
  column-gap: 8px;
  justify-self: left;
  place-items: center;
  width: 100%;
}
@media screen and (max-width: 900px) {
  .forum-wrap .forum-header .forum-search {
    grid-area: search;
  }
}
@media screen and (max-width: 768px) {
  .forum-wrap .forum-header .forum-search {
    column-gap: 4px;
  }
}
.forum-wrap .forum-header .forum-search img {
  transform: rotate(90deg);
  height: 22px;
  width: auto;
}
@media screen and (max-width: 768px) {
  .forum-wrap .forum-header .forum-search img {
    height: 18px;
  }
}
.forum-wrap .forum-header .forum-search input {
  height: 20px;
  width: 100%;
  border: none;
  font-family: montserrat, sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 18px;
  line-height: initial;
}
@media screen and (max-width: 1199.98px) {
  .forum-wrap .forum-header .forum-search input {
    font-size: 16px;
  }
}
@media screen and (max-width: 500px) {
  .forum-wrap .forum-header .forum-search input {
    font-size: 16px;
  }
}
.forum-wrap .forum-header .forum-search input {
  font-size: 16px;
}
.forum-wrap .forum-header .forum-search input:focus {
  border: 1px solid #BFBFBF;
  border-radius: 4px;
  outline: none;
}
.forum-wrap .forum-header .sort {
  display: grid;
  position: relative;
  grid-template-columns: auto auto auto;
  place-items: center;
  column-gap: 8px;
}
@media screen and (max-width: 768px) {
  .forum-wrap .forum-header .sort {
    column-gap: 4px;
  }
}
.forum-wrap .forum-header .sort:hover {
  cursor: pointer;
}
@media screen and (max-width: 900px) {
  .forum-wrap .forum-header .sort--price {
    grid-area: price;
  }
}
.forum-wrap .forum-header .sort--filter.active img {
  transform: rotate(180deg);
}
@media screen and (max-width: 900px) {
  .forum-wrap .forum-header .sort--filter {
    grid-area: country;
  }
}
.forum-wrap .forum-header .sort--sort {
  display: none;
  grid-template-columns: auto 96px auto;
}
@media screen and (max-width: 900px) {
  .forum-wrap .forum-header .sort--sort {
    grid-area: sort;
  }
}
.forum-wrap .forum-header .sort--view .hidden {
  display: none;
}
@media screen and (max-width: 900px) {
  .forum-wrap .forum-header .sort--view {
    grid-area: view;
  }
}
.forum-wrap .forum-header .sort.active img:nth-of-type(2) {
  transform: rotate(180deg);
}
.forum-wrap .forum-header .sort p {
  font-family: montserrat, sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 18px;
  line-height: initial;
}
@media screen and (max-width: 1199.98px) {
  .forum-wrap .forum-header .sort p {
    font-size: 16px;
  }
}
@media screen and (max-width: 500px) {
  .forum-wrap .forum-header .sort p {
    font-size: 16px;
  }
}
.forum-wrap .forum-header .sort p {
  display: inline-block;
  position: relative;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .forum-wrap .forum-header .sort p {
    font-size: 12px;
  }
}
.forum-wrap .forum-header .sort select {
  display: none;
}
.forum-wrap .forum-header .sort .dropdown {
  display: none;
  position: absolute;
  top: 45px;
  background-color: white;
  border: 1px solid black;
  width: auto;
  height: auto;
  z-index: 110;
}
.forum-wrap .forum-header .sort .dropdown::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid black;
  width: 0;
  height: 0;
  z-index: -1;
}
.forum-wrap .forum-header .sort .dropdown::after {
  content: "";
  position: absolute;
  top: -9px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-bottom: 9px solid white;
  width: 0;
  height: 0;
}
.forum-wrap .forum-header .sort .dropdown .wrap {
  display: block;
  position: relative;
  padding: 16px;
}
.forum-wrap .forum-header .sort .dropdown--price {
  width: 450px;
  max-width: 450px;
}
.forum-wrap .forum-header .sort .dropdown--price .wrap {
  padding: 32px;
}
@media screen and (max-width: 768px) {
  .forum-wrap .forum-header .sort .dropdown--price .wrap {
    padding: 24px;
  }
}
@media screen and (max-width: 900px) {
  .forum-wrap .forum-header .sort .dropdown--price {
    left: 0px;
  }
}
@media screen and (max-width: 500px) {
  .forum-wrap .forum-header .sort .dropdown--price {
    width: calc(100vw - 40px);
  }
}
.forum-wrap .forum-header .sort .dropdown--price .price-header {
  display: block;
  position: relative;
  margin-bottom: 8px;
}
.forum-wrap .forum-header .sort .dropdown--price .price-header p {
  width: 100%;
}
.forum-wrap .forum-header .sort .dropdown--price .price-header p span {
  display: inline;
}
.forum-wrap .forum-header .sort .dropdown--price .price-labels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 14px;
}
.forum-wrap .forum-header .sort .dropdown--price .price-labels #price-label-min {
  justify-self: left;
}
.forum-wrap .forum-header .sort .dropdown--price .price-labels #price-label-max {
  justify-self: right;
}
.forum-wrap .forum-header .sort .dropdown--price .range {
  display: block;
  position: relative;
}
.forum-wrap .forum-header .sort .dropdown--price .range .range-slider {
  height: 5px;
  position: relative;
  background-color: #e1e9f6;
  border-radius: 2px;
}
.forum-wrap .forum-header .sort .dropdown--price .range .range-selected {
  height: 100%;
  left: 3%;
  right: 3%;
  position: absolute;
  border-radius: 5px;
  background-color: black;
}
.forum-wrap .forum-header .sort .dropdown--price .range .range-input {
  position: relative;
}
.forum-wrap .forum-header .sort .dropdown--price .range .range-input input {
  position: absolute;
  width: 100%;
  height: 5px;
  top: -7px;
  background: none;
  pointer-events: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.forum-wrap .forum-header .sort .dropdown--price .range .range-input input::-webkit-slider-thumb {
  height: 20px;
  width: 20px;
  border-radius: 50%;
  border: 1px solid black;
  background-color: black;
  pointer-events: auto;
  -webkit-appearance: none;
}
.forum-wrap .forum-header .sort .dropdown--price .range .range-input input::-moz-range-thumb {
  height: 15px;
  width: 15px;
  border-radius: 50%;
  border: 1px solid black;
  background-color: black;
  pointer-events: auto;
  -moz-appearance: none;
}
.forum-wrap .forum-header .sort .dropdown--price .range .range-price {
  display: none;
}
.forum-wrap .forum-header .sort .dropdown--country {
  top: 42px;
}
.forum-wrap .forum-header .sort .dropdown--country .wrap {
  display: grid;
  grid-template-columns: 24px 1fr;
  place-content: center;
  align-items: center;
  padding-left: 20px;
  background-color: white;
}
.forum-wrap .forum-header .sort .dropdown--country .wrap:hover {
  cursor: pointer;
  background-color: #f2f2f2;
}
.forum-wrap .forum-header .sort .dropdown--country .wrap p {
  padding-top: 0px;
  padding-bottom: 0px;
  padding-left: 10px;
  height: 18px;
  background-color: unset;
}
.forum-wrap .forum-header .sort .dropdown--country .wrap p:hover {
  cursor: pointer;
  background-color: unset;
}
.forum-wrap .forum-header .sort .dropdown--country .checkbox-dropdown {
  display: grid;
  position: relative;
  place-content: center;
  width: 12px;
  height: 12px;
  border: 1px solid black;
}
.forum-wrap .forum-header .sort .dropdown--country .checkbox-dropdown img {
  display: none;
  width: 12px;
  height: auto;
  right: 3px;
}
.forum-wrap .forum-header .sort .dropdown--sort {
  top: 45px !important;
  width: 126px;
}
.forum-wrap .forum-header .sort .dropdown--sort .wrap {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr 1fr 1fr 1fr;
  row-gap: 8px;
}
.forum-wrap .forum-header .sort .dropdown--sort .wrap p {
  display: block;
  position: relative;
  margin-bottom: 0px;
}
.forum-wrap .forum-header .sort .dropdown--sort .wrap p:hover {
  cursor: pointer;
}
.forum-wrap .forum-header .sort .dropdown--view .wrap p:first-of-type {
  margin-bottom: 8px;
}
.forum-wrap .forum-header .sort .dropdown-select,
.forum-wrap .forum-header .sort .dropdown-select-js {
  display: inline-block;
  position: relative;
  width: 160px;
  height: 40px;
  text-align: left;
  z-index: 110;
  -webkit-user-select: none; /* Safari */
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* IE10+/Edge */
  user-select: none; /* Standard */
}
.forum-wrap .forum-header .sort .dropdown-select:hover,
.forum-wrap .forum-header .sort .dropdown-select-js:hover {
  cursor: pointer;
}
.forum-wrap .forum-header .sort .dropdown-select p,
.forum-wrap .forum-header .sort .dropdown-select-js p {
  line-height: 40px;
  font-size: 16px;
  margin: 0;
  width: 100%;
  padding-left: 20px;
}
.forum-wrap .forum-header .sort .dropdown-select img,
.forum-wrap .forum-header .sort .dropdown-select-js img {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
  width: 20px;
}
.forum-wrap .forum-header .sort .dropdown-select .dropdown,
.forum-wrap .forum-header .sort .dropdown-select .dropdown-js,
.forum-wrap .forum-header .sort .dropdown-select-js .dropdown,
.forum-wrap .forum-header .sort .dropdown-select-js .dropdown-js {
  display: none;
  position: absolute;
  top: 34px;
  left: -1px;
  text-align: left;
  border: 1px solid black;
}
.forum-wrap .forum-header .sort .dropdown-select .dropdown p,
.forum-wrap .forum-header .sort .dropdown-select .dropdown-js p,
.forum-wrap .forum-header .sort .dropdown-select-js .dropdown p,
.forum-wrap .forum-header .sort .dropdown-select-js .dropdown-js p {
  width: 140px;
  line-height: 30px;
  background-color: white;
  margin: 0;
}
.forum-wrap .forum-header .sort .dropdown-select .dropdown p:hover,
.forum-wrap .forum-header .sort .dropdown-select .dropdown-js p:hover,
.forum-wrap .forum-header .sort .dropdown-select-js .dropdown p:hover,
.forum-wrap .forum-header .sort .dropdown-select-js .dropdown-js p:hover {
  cursor: pointer;
  background-color: #f2f2f2;
}
.forum-wrap .forum-header .sort .dropdown-select .dropdown-js,
.forum-wrap .forum-header .sort .dropdown-select-js .dropdown-js {
  z-index: 101;
}
.forum-wrap .forum-header--post {
  display: block;
  position: relative;
  height: auto;
}
.forum-wrap .forum-header--post h3 {
  margin-bottom: 8px;
}
.forum-wrap .forum-posts {
  display: grid;
  position: relative;
  grid-template-columns: 1fr;
  width: 100%;
  height: auto;
}
.forum-wrap .forum-posts a {
  text-decoration: none;
  color: black;
}
.forum-wrap .forum-posts .forum-post {
  display: grid;
  position: relative;
  grid-template-columns: 0.3fr 0.7fr;
  column-gap: 40px;
  width: 100%;
  height: auto;
  padding-top: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgb(202, 202, 202);
}
.forum-wrap .forum-posts .forum-post:hover {
  cursor: pointer;
  background-color: #f8f8f8;
}
.forum-wrap .forum-posts .forum-post .post-logo {
  display: none;
}
.forum-wrap .forum-posts .forum-post--single {
  display: block;
  border: none;
}
.forum-wrap .forum-posts .forum-post--single:hover {
  cursor: default;
  background-color: white;
}
@media screen and (max-width: 768px) {
  .forum-wrap .forum-posts .forum-post--single {
    padding-top: 20px;
  }
}
.forum-wrap .forum-posts .forum-post .forum-post-grid {
  display: grid;
  position: relative;
  grid-template-columns: 1fr 1fr;
  column-gap: 80px;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .forum-wrap .forum-posts .forum-post .forum-post-grid {
    grid-template-columns: 1fr;
    column-gap: 40px;
  }
  .forum-wrap .forum-posts .forum-post .forum-post-grid .col:last-of-type {
    grid-row-start: 1;
  }
  .forum-wrap .forum-posts .forum-post .forum-post-grid .col:last-of-type .forum-logo {
    padding: 0px;
    height: auto;
  }
  .forum-wrap .forum-posts .forum-post .forum-post-grid .col:last-of-type .forum-logo img {
    position: relative;
    width: 50%;
    left: unset;
    transform: unset;
    margin: 0 auto;
  }
}
.forum-wrap .forum-posts .forum-post .forum-post-grid .forum-logo {
  display: block;
  position: relative;
  width: auto;
  height: calc(100% - 40px);
  padding: 20px;
}
.forum-wrap .forum-posts .forum-post .forum-post-grid .forum-logo img {
  display: block;
  position: absolute;
  width: auto;
  height: auto;
  max-width: 320px;
  max-height: 100%;
  top: 0;
  right: 40px;
  transform: translate(0, 0);
  aspect-ratio: 4/3;
  object-fit: contain;
}
@media screen and (max-width: 768px) {
  .forum-wrap .forum-posts .forum-post .forum-post-grid .forum-logo img {
    right: 0px;
  }
}
.forum-wrap .forum-posts .forum-post .post-header {
  display: block;
  position: relative;
  width: 100%;
  height: auto;
  margin-bottom: 10px;
}
.forum-wrap .forum-posts .forum-post .post-header h2 {
  display: block;
  position: relative;
  font-size: 20px;
  text-transform: uppercase;
  margin-right: 20px;
}
.forum-wrap .forum-posts .forum-post .post-header h2:last-of-type {
  margin-top: 10px;
  font-weight: 300;
}
@media screen and (max-width: 768px) {
  .forum-wrap .forum-posts .forum-post .post-header h2 {
    font-size: 16px;
  }
}
.forum-wrap .forum-posts .forum-post .post-header--single h2 {
  font-weight: 400 !important;
  font-size: 18px;
}
@media screen and (max-width: 1199.98px) {
  .forum-wrap .forum-posts .forum-post .post-header--single h2 {
    font-size: 18px;
    line-height: normal;
  }
}
@media screen and (max-width: 768px) {
  .forum-wrap .forum-posts .forum-post .post-header--single h2 {
    font-size: 16px;
  }
}
.forum-wrap .forum-posts .forum-post .post-header--noCap h2 {
  text-transform: initial;
}
.forum-wrap .forum-posts .forum-post .post-text {
  display: block;
  position: relative;
  width: 100%;
  height: auto;
  margin-bottom: 0px;
}
.forum-wrap .forum-posts .forum-post .post-text p {
  display: block;
  position: relative;
  font-family: montserrat, sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 18px;
  line-height: initial;
}
@media screen and (max-width: 1199.98px) {
  .forum-wrap .forum-posts .forum-post .post-text p {
    font-size: 16px;
  }
}
@media screen and (max-width: 500px) {
  .forum-wrap .forum-posts .forum-post .post-text p {
    font-size: 16px;
  }
}
.forum-wrap .forum-posts .forum-post .post-text--single {
  margin-bottom: 30px;
}
.forum-wrap .forum-posts .forum-post .post-text--single p {
  font-weight: 300;
  margin-bottom: 20px;
}
.forum-wrap .forum-posts .forum-post .post-text--single a {
  font-family: montserrat, sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 18px;
  line-height: initial;
}
@media screen and (max-width: 1199.98px) {
  .forum-wrap .forum-posts .forum-post .post-text--single a {
    font-size: 16px;
  }
}
@media screen and (max-width: 500px) {
  .forum-wrap .forum-posts .forum-post .post-text--single a {
    font-size: 16px;
  }
}
.forum-wrap .forum-posts .forum-post .post-text--single a {
  font-weight: 300;
  text-decoration: underline;
}
.forum-wrap .forum-posts .forum-post .post-text--single .country {
  display: grid;
  position: relative;
  grid-template-columns: auto 1fr;
  column-gap: 20px;
  margin-top: 10px;
  align-items: center;
}
.forum-wrap .forum-posts .forum-post .post-text--single .country:first-of-type {
  margin-top: 20px;
}
.forum-wrap .forum-posts .forum-post .post-text--single .country .checkbox-static {
  display: grid;
  position: relative;
  place-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid black;
}
.forum-wrap .forum-posts .forum-post .post-text--single .country .checkbox-static img {
  display: block;
  width: 25px;
  height: 25px;
}
.forum-wrap .forum-posts .forum-post .post-text--single .country p {
  margin-bottom: 0px;
}
.forum-wrap .forum-posts .forum-post .post-text--single .attachments {
  display: grid;
  position: relative;
  grid-template-columns: auto 1fr;
  column-gap: 20px;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .forum-wrap .forum-posts .forum-post .post-text--single .attachments {
    grid-template-columns: 1fr;
    row-gap: 20px;
  }
}
.forum-wrap .forum-posts .forum-post .post-text--single .attachments .attachments-files {
  display: grid;
  position: relative;
  grid-template-columns: 24px auto 1fr;
  column-gap: 10px;
  row-gap: 10px;
  align-items: center;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .forum-wrap .forum-posts .forum-post .post-text--single .attachments .attachments-files {
    grid-template-columns: 24px 1fr;
    grid-template-areas: "icon text" "btn btn";
  }
  .forum-wrap .forum-posts .forum-post .post-text--single .attachments .attachments-files .att-icon {
    grid-area: icon;
  }
  .forum-wrap .forum-posts .forum-post .post-text--single .attachments .attachments-files .att-text {
    grid-area: text;
    text-align: left;
  }
  .forum-wrap .forum-posts .forum-post .post-text--single .attachments .attachments-files .att-btn {
    grid-area: btn;
    justify-self: stretch;
  }
  .forum-wrap .forum-posts .forum-post .post-text--single .attachments .attachments-files .att-btn button {
    width: 200px;
    float: none;
  }
}
.forum-wrap .forum-posts .forum-post .post-text--single .attachments .attachments-files .left {
  text-align: left;
}
.forum-wrap .forum-posts .forum-post .post-text--single .attachments .attachments-files button {
  display: flex;
  justify-content: space-evenly;
  align-content: center;
  align-items: center;
  float: right;
  font-family: montserrat, sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 18px;
  line-height: initial;
}
@media screen and (max-width: 1199.98px) {
  .forum-wrap .forum-posts .forum-post .post-text--single .attachments .attachments-files button {
    font-size: 16px;
  }
}
@media screen and (max-width: 500px) {
  .forum-wrap .forum-posts .forum-post .post-text--single .attachments .attachments-files button {
    font-size: 16px;
  }
}
.forum-wrap .forum-posts .forum-post .post-text--single .attachments .attachments-files button {
  font-size: 16px;
  background-color: white;
  border: 1px solid black;
  width: 200px;
  height: 40px;
}
.forum-wrap .forum-posts .forum-post .post-text--single .attachments .attachments-files button img {
  vertical-align: bottom;
  margin-left: 10px;
}
.forum-wrap .forum-posts .forum-post .post-text--single .attachments .attachments-files button:hover {
  cursor: pointer;
  background-color: rgb(233, 233, 233);
}
.forum-wrap .forum-posts .forum-post .post-text--single .attachments .attachments-files button:active {
  background-color: black;
  color: white;
}
.forum-wrap .forum-posts .forum-post .post-text--forum {
  height: auto;
}
.forum-wrap .forum-posts .forum-post .post-text--forum .summary {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
@media screen and (max-width: 768px) {
  .forum-wrap .forum-posts .forum-post .post-text--forum .summary {
    -webkit-line-clamp: 3;
    height: 60px;
  }
}
.forum-wrap .forum-posts .forum-post .post-text--forum p {
  font-size: 16px;
}
.forum-wrap .forum-posts .forum-post .post-text--forum .countries {
  display: grid;
  grid-template-columns: repeat(4, max-content);
  column-gap: 40px;
  margin-bottom: 16px;
}
@media screen and (max-width: 1199.98px) {
  .forum-wrap .forum-posts .forum-post .post-text--forum .countries {
    grid-template-columns: repeat(2, max-content);
    column-gap: 20px;
  }
}
@media screen and (max-width: 768px) {
  .forum-wrap .forum-posts .forum-post .post-text--forum .countries {
    grid-template-columns: repeat(1, max-content);
    column-gap: 0px;
  }
}
.forum-wrap .forum-posts .forum-post .post-text--forum .countries .country {
  display: grid;
  position: relative;
  grid-template-columns: auto 1fr;
  column-gap: 20px;
  margin-top: 20px;
  align-items: center;
}
.forum-wrap .forum-posts .forum-post .post-text--forum .countries .country:nth-of-type(2), .forum-wrap .forum-posts .forum-post .post-text--forum .countries .country:nth-of-type(3), .forum-wrap .forum-posts .forum-post .post-text--forum .countries .country:nth-of-type(4) {
  margin-top: 8px;
}
.forum-wrap .forum-posts .forum-post .post-text--forum .countries .country .checkbox-static {
  display: grid;
  position: relative;
  place-content: center;
  width: 12px;
  height: 12px;
  border: 1px solid black;
  border-radius: 1px;
}
.forum-wrap .forum-posts .forum-post .post-text--forum .countries .country .checkbox-static img {
  display: block;
  width: 12px;
  height: 12px;
}
.forum-wrap .forum-posts .forum-post .post-text--forum .countries .country p {
  font-size: 16px;
}
.forum-wrap .forum-posts .forum-post .post-text--forum .price-range {
  display: block;
  position: relative;
}
.forum-wrap .forum-posts--grid {
  display: grid;
  align-items: stretch;
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: 40px;
  row-gap: 40px;
  max-width: 100%;
  margin-top: 40px;
}
@media screen and (max-width: 1199.98px) {
  .forum-wrap .forum-posts--grid {
    grid-template-columns: 1fr 1fr;
    column-gap: 20px;
    row-gap: 20px;
  }
}
@media screen and (max-width: 768px) {
  .forum-wrap .forum-posts--grid {
    grid-template-columns: 1fr;
  }
}
.forum-wrap .forum-posts--grid .forum-post {
  border: 1px solid #BFBFBF;
  border-radius: 4px;
  grid-template-columns: 1fr;
  padding-left: 40px;
  padding-right: 40px;
  width: calc(100% - 80px);
  display: flex;
  flex-direction: column;
  height: calc(100% - 80px);
  row-gap: 16px;
}
@media screen and (max-width: 1199.98px) {
  .forum-wrap .forum-posts--grid .forum-post {
    padding: 20px;
    width: calc(100% - 40px);
    height: calc(100% - 40px);
  }
}
.forum-wrap .forum-posts--grid .forum-post .post-logo {
  display: grid;
  position: relative;
  margin-bottom: 24px;
  place-content: center;
  padding: 0px 20px;
}
@media screen and (max-width: 1199.98px) {
  .forum-wrap .forum-posts--grid .forum-post .post-logo {
    margin-bottom: 4px;
  }
}
.forum-wrap .forum-posts--grid .forum-post .post-logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
  aspect-ratio: 4/3;
}
.forum-wrap .forum-posts--grid .forum-post .post-header {
  margin-bottom: 0px;
}
.forum-wrap .forum-posts--grid .forum-post .post-header h2 {
  font-size: 18px;
}
.forum-wrap .forum-posts--grid .forum-post .post-header h2:last-of-type {
  margin-top: 4px;
}
.forum-wrap .forum-posts--grid .forum-post .post-text--forum .countries {
  grid-template-columns: 1fr;
}
.forum-wrap .forum-posts--grid .forum-post .post-text--forum .summary {
  -webkit-line-clamp: 4;
  margin-bottom: 0px;
}
@media screen and (max-width: 1199.98px) {
  .forum-wrap .forum-posts--grid .forum-post .post-text--forum .summary {
    height: auto;
  }
}

.dropdown-backdrop {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 100;
}

.forum-post-banner {
  display: block;
  position: relative;
  width: 100%;
  margin-bottom: 40px;
}
.forum-post-banner img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  object-position: center;
}
@media screen and (max-width: 768px) {
  .forum-post-banner {
    margin-bottom: 30px;
  }
  .forum-post-banner img {
    max-height: 250px;
  }
}

.social-media-links {
  display: block;
  margin-top: 10px;
}
.social-media-links .social-link {
  display: block;
  margin-top: 5px;
}
.social-media-links .social-link p {
  font-size: 14px;
  text-decoration: underline;
}

.wines-display-grid {
  display: block;
  position: relative;
  width: 100%;
  margin-top: 20px;
}
.wines-display-grid .wine-grid-header,
.wines-display-grid .wine-grid-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  column-gap: 20px;
  padding: 0px;
  border-bottom: 1px solid #eee;
}
.wines-display-grid .wine-grid-header p,
.wines-display-grid .wine-grid-row p {
  font-family: montserrat, sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 18px;
  line-height: initial;
}
@media screen and (max-width: 1199.98px) {
  .wines-display-grid .wine-grid-header p,
  .wines-display-grid .wine-grid-row p {
    font-size: 16px;
  }
}
@media screen and (max-width: 500px) {
  .wines-display-grid .wine-grid-header p,
  .wines-display-grid .wine-grid-row p {
    font-size: 16px;
  }
}
.wines-display-grid .wine-grid-header p,
.wines-display-grid .wine-grid-row p {
  font-weight: 300;
  margin: 0 !important;
  font-size: 14px;
}
.wines-display-grid .wine-grid-header p strong,
.wines-display-grid .wine-grid-row p strong {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .wines-display-grid .wine-grid-header,
  .wines-display-grid .wine-grid-row {
    grid-template-columns: 1fr;
    row-gap: 10px;
    padding: 20px 0;
  }
  .wines-display-grid .wine-grid-header p,
  .wines-display-grid .wine-grid-row p {
    font-size: 14px;
  }
  .wines-display-grid .wine-grid-header p strong,
  .wines-display-grid .wine-grid-row p strong {
    font-size: 12px;
  }
}
.wines-display-grid .wine-grid-header {
  border-bottom: 2px solid #ddd;
  padding-bottom: 12px;
  align-items: end;
  text-transform: uppercase;
}
.wines-display-grid .wine-grid-header p:last-of-type {
  text-align: end;
}
@media screen and (max-width: 768px) {
  .wines-display-grid .wine-grid-header {
    display: none;
  }
  .wines-display-grid .wine-grid-header p:last-of-type {
    text-align: start;
  }
}
.wines-display-grid .wine-grid-row {
  padding: 8px 0px;
}
.wines-display-grid .wine-grid-row p {
  padding-top: 12px;
  margin-bottom: 12px !important;
}
.wines-display-grid .wine-grid-row p:last-of-type {
  text-align: end;
}
.wines-display-grid .wine-grid-row:last-child {
  border-bottom: none;
}
@media screen and (max-width: 768px) {
  .wines-display-grid .wine-grid-row p {
    position: relative;
    padding-left: 0;
  }
  .wines-display-grid .wine-grid-row p:nth-child(1)::before {
    content: "Wine Name: ";
    font-weight: 600;
    display: block;
  }
  .wines-display-grid .wine-grid-row p:nth-child(2)::before {
    content: "Variety: ";
    font-weight: 600;
    display: block;
  }
  .wines-display-grid .wine-grid-row p:nth-child(3)::before {
    content: "AVA: ";
    font-weight: 600;
    display: block;
  }
  .wines-display-grid .wine-grid-row p:nth-child(4)::before {
    content: "Price USD: ";
    font-weight: 600;
    display: block;
  }
  .wines-display-grid .wine-grid-row p:last-of-type {
    text-align: start;
  }
}
@media screen and (max-width: 1199.98px) {
  .wines-display-grid .wine-grid-header,
  .wines-display-grid .wine-grid-row {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    column-gap: 12px;
  }
}
@media screen and (max-width: 768px) {
  .wines-display-grid .wine-grid-header,
  .wines-display-grid .wine-grid-row {
    grid-template-columns: 1fr 1fr;
    column-gap: 12px;
  }
}

.line-spacer {
  display: block;
  width: 100%;
  height: 1px;
  background-color: #ddd;
  margin: 30px 0;
}

.profile-wrap {
  display: block;
  position: relative;
  width: calc(100% - 40px);
  max-width: 920px;
  margin: 0 auto;
  margin-top: 160px;
  margin-bottom: 80px;
}
.profile-wrap .profile-pic {
  display: block;
  position: relative;
  width: 180px;
  height: 180px;
  margin: 0 auto;
  margin-bottom: 40px;
  border-radius: 50%;
  background-color: #C4C4C4;
}
.profile-wrap .profile-pic img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 50%;
}
.profile-wrap .username {
  display: block;
  position: relative;
  width: 100%;
  height: auto;
  text-align: center;
  margin-bottom: 80px;
}
.profile-wrap textarea {
  width: calc(100% - 22px) !important;
}
.profile-wrap .loading-profile {
  margin-right: 290px;
}
@media screen and (max-width: 768px) {
  .profile-wrap .loading-profile {
    margin-right: auto;
  }
}
.profile-wrap .button {
  display: block;
  position: relative;
  width: 100%;
  max-width: 620px;
  border: 1px solid black;
  font-family: montserrat, sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 18px;
  line-height: initial;
}
@media screen and (max-width: 1199.98px) {
  .profile-wrap .button {
    font-size: 16px;
  }
}
@media screen and (max-width: 500px) {
  .profile-wrap .button {
    font-size: 16px;
  }
}
.profile-wrap .button {
  font-size: 20px;
  line-height: 24px;
  text-align: center;
  margin-right: 0;
  margin-top: 40px;
  margin-bottom: 40px;
  height: 54px;
  background-color: white;
}
.profile-wrap .button:hover {
  cursor: pointer;
  background-color: rgb(233, 233, 233);
}
.profile-wrap .button:active {
  background-color: black;
  color: white;
}

.login {
  display: block;
  position: absolute;
  width: 480px;
  height: 406px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid black;
  background-color: white;
  text-align: center;
  padding: 120px;
}
@media screen and (max-width: 768px) {
  .login {
    padding: 20px;
    width: calc(100% - 60px);
  }
}
.login h1 {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .login h1 {
    font-size: 20px;
    margin-top: 20px;
    margin-bottom: 40px;
  }
}
.login .centered {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}
.login input {
  display: block;
  position: relative;
  width: 100%;
  max-width: 400px;
  height: 40px;
  border: none;
  border-bottom: 1px solid black;
  font-family: montserrat, sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 18px;
  line-height: initial;
}
@media screen and (max-width: 1199.98px) {
  .login input {
    font-size: 16px;
  }
}
@media screen and (max-width: 500px) {
  .login input {
    font-size: 16px;
  }
}
.login input {
  font-size: 20px;
  line-height: 24px;
  text-align: center;
  margin: 0 auto;
  margin-bottom: 20px;
}
.login input:focus {
  outline: none;
}
@media screen and (max-width: 768px) {
  .login input {
    max-width: 280px;
    font-size: 16px;
  }
}
.login #password {
  margin-bottom: 10px;
}
.login .caption {
  font-family: montserrat, sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 18px;
  line-height: initial;
}
@media screen and (max-width: 1199.98px) {
  .login .caption {
    font-size: 16px;
  }
}
@media screen and (max-width: 500px) {
  .login .caption {
    font-size: 16px;
  }
}
.login .caption {
  font-weight: 300;
  font-size: 10px;
  text-align: center;
  margin-bottom: 80px;
  color: black;
  text-decoration: none;
}
.login .caption:hover {
  cursor: pointer;
  text-decoration: underline;
}
.login button {
  display: block;
  position: relative;
  width: 100%;
  max-width: 400px;
  border: 1px solid black;
  font-family: montserrat, sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 18px;
  line-height: initial;
}
@media screen and (max-width: 1199.98px) {
  .login button {
    font-size: 16px;
  }
}
@media screen and (max-width: 500px) {
  .login button {
    font-size: 16px;
  }
}
.login button {
  font-size: 20px;
  line-height: 24px;
  text-align: center;
  margin: 0 auto;
  margin-bottom: 20px;
  height: 54px;
  background-color: white;
}
.login button:hover {
  cursor: pointer;
  background-color: rgb(233, 233, 233);
}
.login button:active {
  background-color: black;
  color: white;
}
@media screen and (max-width: 768px) {
  .login button {
    max-width: 280px;
    font-size: 16px;
  }
}
.login .error {
  font-family: montserrat, sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 18px;
  line-height: initial;
}
@media screen and (max-width: 1199.98px) {
  .login .error {
    font-size: 16px;
  }
}
@media screen and (max-width: 500px) {
  .login .error {
    font-size: 16px;
  }
}
.login .error {
  font-size: 16px;
  text-transform: uppercase;
  color: red;
}

.text-block {
  width: calc(100% - 80px);
  max-width: 620px;
  height: auto;
  margin: 0 auto;
  margin-bottom: 80px;
  margin-top: 80px;
  text-align: center;
}
.text-block h1 {
  font-family: montserrat, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: initial;
  text-transform: uppercase;
}
@media screen and (max-width: 1199.98px) {
  .text-block h1 {
    font-size: 24px;
    line-height: 26px;
  }
}
@media screen and (max-width: 768px) {
  .text-block h1 {
    font-size: 22px;
    line-height: 24px;
  }
}
@media screen and (max-width: 500px) {
  .text-block h1 {
    font-size: 20px;
    line-height: 22px;
  }
}
.text-block h1 {
  margin-bottom: 40px;
}
.text-block p, .text-block a {
  font-family: montserrat, sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 18px;
  line-height: initial;
}
@media screen and (max-width: 1199.98px) {
  .text-block p, .text-block a {
    font-size: 16px;
  }
}
@media screen and (max-width: 500px) {
  .text-block p, .text-block a {
    font-size: 16px;
  }
}
.text-block p, .text-block a {
  margin-bottom: 40px;
  color: black;
}

.text-block-wide {
  max-width: 950px;
}

.text-block-wrap p {
  text-wrap: balance;
}

@media screen and (max-width: 768px) {
  .text-block {
    width: calc(100% - 80px);
    max-width: 620px;
    height: auto;
    margin: 0 auto;
    margin-bottom: 60px;
    margin-top: 60px;
  }
  .text-block h1 {
    font-family: montserrat, sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: initial;
    text-transform: uppercase;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 768px) and (max-width: 1199.98px) {
  .text-block h1 {
    font-size: 24px;
    line-height: 26px;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .text-block h1 {
    font-size: 22px;
    line-height: 24px;
  }
}
@media screen and (max-width: 768px) and (max-width: 500px) {
  .text-block h1 {
    font-size: 20px;
    line-height: 22px;
  }
}
@media screen and (max-width: 768px) {
  .text-block p, .text-block a {
    font-family: montserrat, sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 18px;
    line-height: initial;
    margin-bottom: 40px;
    color: black;
  }
}
@media screen and (max-width: 768px) and (max-width: 1199.98px) {
  .text-block p, .text-block a {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) and (max-width: 500px) {
  .text-block p, .text-block a {
    font-size: 16px;
  }
}
.image-banner {
  display: block;
  position: relative;
  width: 100%;
  height: auto;
  max-height: 540px;
}
.image-banner img {
  display: block;
  position: relative;
  width: 100%;
  height: auto;
  max-height: 540px;
  object-fit: cover;
}

.scroll-top,
.scroll-top-search {
  display: grid;
  position: relative;
  width: 100%;
  height: auto;
  place-items: center;
  margin-bottom: 60px;
}
.scroll-top .arrow,
.scroll-top-search .arrow {
  display: block;
  position: relative;
  width: fit-content;
  height: auto;
  text-align: center;
}
.scroll-top .arrow:hover,
.scroll-top-search .arrow:hover {
  cursor: pointer;
}
.scroll-top .arrow img,
.scroll-top-search .arrow img {
  margin-bottom: 10px;
}
.scroll-top .arrow p,
.scroll-top-search .arrow p {
  font-family: montserrat, sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 18px;
  line-height: initial;
}
@media screen and (max-width: 1199.98px) {
  .scroll-top .arrow p,
  .scroll-top-search .arrow p {
    font-size: 16px;
  }
}
@media screen and (max-width: 500px) {
  .scroll-top .arrow p,
  .scroll-top-search .arrow p {
    font-size: 16px;
  }
}
.scroll-top .arrow p,
.scroll-top-search .arrow p {
  font-weight: 500;
  font-size: 20px;
}

.scroll-top-search {
  margin-bottom: 120px;
}

.form {
  display: block;
  position: relative;
  margin: 0 auto;
  margin-bottom: 80px;
  width: calc(100% - 160px);
  max-width: 650px;
}
.form h1 {
  font-family: montserrat, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: initial;
  text-transform: uppercase;
}
@media screen and (max-width: 1199.98px) {
  .form h1 {
    font-size: 24px;
    line-height: 26px;
  }
}
@media screen and (max-width: 768px) {
  .form h1 {
    font-size: 22px;
    line-height: 24px;
  }
}
@media screen and (max-width: 500px) {
  .form h1 {
    font-size: 20px;
    line-height: 22px;
  }
}
.form h1 {
  margin-bottom: 40px;
  text-align: center;
}
.form span {
  display: block;
  position: relative;
  font-family: montserrat, sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 18px;
  line-height: initial;
}
@media screen and (max-width: 1199.98px) {
  .form span {
    font-size: 16px;
  }
}
@media screen and (max-width: 500px) {
  .form span {
    font-size: 16px;
  }
}
.form span {
  text-align: center;
  margin-bottom: 40px;
}

#form-contact {
  margin-bottom: 80px;
}

.form #mce-EMAIL,
.form #mce-FNAME,
.form #mce-LNAME,
.form #mce-COMPANY,
.form #mce-POSITION {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: block;
  width: 100%;
  height: 38px;
  outline: none;
  border: none;
  border-bottom: 1px solid black;
  border-radius: 0px;
  background: rgba(0, 0, 0, 0);
  margin-bottom: 10px;
  padding: 0px;
  padding-bottom: 10px;
  font-family: montserrat, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: initial;
  text-transform: uppercase;
}
@media screen and (max-width: 1199.98px) {
  .form #mce-EMAIL,
  .form #mce-FNAME,
  .form #mce-LNAME,
  .form #mce-COMPANY,
  .form #mce-POSITION {
    font-size: 24px;
    line-height: 26px;
  }
}
@media screen and (max-width: 768px) {
  .form #mce-EMAIL,
  .form #mce-FNAME,
  .form #mce-LNAME,
  .form #mce-COMPANY,
  .form #mce-POSITION {
    font-size: 22px;
    line-height: 24px;
  }
}
@media screen and (max-width: 500px) {
  .form #mce-EMAIL,
  .form #mce-FNAME,
  .form #mce-LNAME,
  .form #mce-COMPANY,
  .form #mce-POSITION {
    font-size: 20px;
    line-height: 22px;
  }
}
.form #mce-EMAIL,
.form #mce-FNAME,
.form #mce-LNAME,
.form #mce-COMPANY,
.form #mce-POSITION {
  font-size: 20px;
  font-weight: 300;
  text-align: center;
}

.form #mce-EMAIL::placeholder,
.form #mce-FNAME::placeholder,
.form #mce-LNAME::placeholder,
.form #mce-COMPANY::placeholder,
.form #mce-POSITION::placeholder {
  font-size: 20px;
  text-align: center;
  color: black;
}

.form #mc-embedded-subscribe,
.button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: block;
  width: 100%;
  max-width: 320px;
  height: 50px;
  outline: none;
  border: 1px solid black;
  border-radius: 0px;
  background-color: rgba(0, 0, 0, 0);
  margin: 0 auto;
  margin-top: 40px;
  text-align: center;
  font-family: montserrat, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: initial;
  text-transform: uppercase;
}
@media screen and (max-width: 1199.98px) {
  .form #mc-embedded-subscribe,
  .button {
    font-size: 24px;
    line-height: 26px;
  }
}
@media screen and (max-width: 768px) {
  .form #mc-embedded-subscribe,
  .button {
    font-size: 22px;
    line-height: 24px;
  }
}
@media screen and (max-width: 500px) {
  .form #mc-embedded-subscribe,
  .button {
    font-size: 20px;
    line-height: 22px;
  }
}
.form #mc-embedded-subscribe,
.button {
  font-size: 20px;
  font-weight: 300;
}

.form #mc-embedded-subscribe:hover,
.button:hover {
  cursor: pointer;
  font-weight: 500;
}

.form #mc-embedded-subscribe:active,
.button:active {
  background-color: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(13, 13, 13, 0.2);
  color: black;
}

.button:hover a {
  color: white;
}

.newsletter-popup-background {
  display: none;
  position: fixed;
  top: 0;
  z-index: 900;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.255);
}
.newsletter-popup-background .newsletter-popup {
  display: block;
  position: fixed;
  width: auto;
  height: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 40px 0px;
  z-index: 1000;
  background-color: white;
  z-index: 1001;
}
@media screen and (max-width: 1199.98px) {
  .newsletter-popup-background .newsletter-popup {
    width: 680px;
  }
}
@media screen and (max-width: 768px) {
  .newsletter-popup-background .newsletter-popup {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .form {
    display: block;
    position: relative;
    width: calc(100% - 40px);
  }
  .form h1 {
    font-family: montserrat, sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: initial;
    text-transform: uppercase;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 768px) and (max-width: 1199.98px) {
  .form h1 {
    font-size: 24px;
    line-height: 26px;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .form h1 {
    font-size: 22px;
    line-height: 24px;
  }
}
@media screen and (max-width: 768px) and (max-width: 500px) {
  .form h1 {
    font-size: 20px;
    line-height: 22px;
  }
}
@media screen and (max-width: 768px) {
  .form #mce-EMAIL,
  .form #mce-FNAME,
  .form #mce-LNAME,
  .form #mce-COMPANY,
  .form #mce-POSITION {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    display: block;
    width: 100%;
    height: 38px;
    outline: none;
    border: none;
    border-bottom: 1px solid black;
    border-radius: 0px;
    background: rgba(0, 0, 0, 0);
    margin-bottom: 10px;
    padding-bottom: 10px;
    font-family: montserrat, sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: initial;
    text-transform: uppercase;
    font-weight: 300;
  }
}
@media screen and (max-width: 768px) and (max-width: 1199.98px) {
  .form #mce-EMAIL,
  .form #mce-FNAME,
  .form #mce-LNAME,
  .form #mce-COMPANY,
  .form #mce-POSITION {
    font-size: 24px;
    line-height: 26px;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .form #mce-EMAIL,
  .form #mce-FNAME,
  .form #mce-LNAME,
  .form #mce-COMPANY,
  .form #mce-POSITION {
    font-size: 22px;
    line-height: 24px;
  }
}
@media screen and (max-width: 768px) and (max-width: 500px) {
  .form #mce-EMAIL,
  .form #mce-FNAME,
  .form #mce-LNAME,
  .form #mce-COMPANY,
  .form #mce-POSITION {
    font-size: 20px;
    line-height: 22px;
  }
}
@media screen and (max-width: 768px) {
  .form #mce-EMAIL::placeholder,
  .form #mce-FNAME::placeholder,
  .form #mce-LNAME::placeholder,
  .form #mce-COMPANY::placeholder,
  .form #mce-POSITION::placeholder {
    font-size: 22px;
    text-align: center;
    color: black;
  }
  .form #mc-embedded-subscribe,
  .button {
    height: 50px;
  }
}
@media screen and (max-width: 500px) {
  .form {
    display: block;
    position: relative;
    padding-bottom: 0px;
  }
  .form h1 {
    font-family: montserrat, sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: initial;
    text-transform: uppercase;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 500px) and (max-width: 1199.98px) {
  .form h1 {
    font-size: 24px;
    line-height: 26px;
  }
}
@media screen and (max-width: 500px) and (max-width: 768px) {
  .form h1 {
    font-size: 22px;
    line-height: 24px;
  }
}
@media screen and (max-width: 500px) and (max-width: 500px) {
  .form h1 {
    font-size: 20px;
    line-height: 22px;
  }
}
@media screen and (max-width: 500px) {
  .form #mce-EMAIL,
  .form #mce-FNAME,
  .form #mce-LNAME,
  .form #mce-COMPANY,
  .form #mce-POSITION {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    display: block;
    width: 100%;
    height: 38px;
    outline: none;
    border: none;
    border-bottom: 1px solid black;
    border-radius: 0px;
    background: rgba(0, 0, 0, 0);
    margin-bottom: 10px;
    padding-bottom: 10px;
    font-family: montserrat, sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: initial;
    text-transform: uppercase;
    font-weight: 300;
  }
}
@media screen and (max-width: 500px) and (max-width: 1199.98px) {
  .form #mce-EMAIL,
  .form #mce-FNAME,
  .form #mce-LNAME,
  .form #mce-COMPANY,
  .form #mce-POSITION {
    font-size: 24px;
    line-height: 26px;
  }
}
@media screen and (max-width: 500px) and (max-width: 768px) {
  .form #mce-EMAIL,
  .form #mce-FNAME,
  .form #mce-LNAME,
  .form #mce-COMPANY,
  .form #mce-POSITION {
    font-size: 22px;
    line-height: 24px;
  }
}
@media screen and (max-width: 500px) and (max-width: 500px) {
  .form #mce-EMAIL,
  .form #mce-FNAME,
  .form #mce-LNAME,
  .form #mce-COMPANY,
  .form #mce-POSITION {
    font-size: 20px;
    line-height: 22px;
  }
}
@media screen and (max-width: 500px) {
  .form #mce-EMAIL::placeholder,
  .form #mce-FNAME::placeholder,
  .form #mce-LNAME::placeholder,
  .form #mce-COMPANY::placeholder,
  .form #mce-POSITION::placeholder {
    font-size: 18px;
    text-align: center;
    color: black;
  }
}
.form-alert {
  display: none;
  position: relative;
  margin-top: 40px;
  margin-bottom: 40px;
  text-align: center;
  min-height: 20px;
}
.form-alert p {
  font-family: montserrat, sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 18px;
  line-height: initial;
}
@media screen and (max-width: 1199.98px) {
  .form-alert p {
    font-size: 16px;
  }
}
@media screen and (max-width: 500px) {
  .form-alert p {
    font-size: 16px;
  }
}
.form-alert p {
  font-weight: 400;
  white-space: break-spaces;
}
.form-alert .success {
  color: green;
}
.form-alert .fail {
  color: #f20000;
}

.input-error {
  display: none;
  color: #f20000;
  font-size: 14px;
  margin-top: 5px;
  margin-bottom: 10px;
  font-family: montserrat, sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 18px;
  line-height: initial;
}
@media screen and (max-width: 1199.98px) {
  .input-error {
    font-size: 16px;
  }
}
@media screen and (max-width: 500px) {
  .input-error {
    font-size: 16px;
  }
}
.input-error {
  font-weight: 400;
}
.input-error:not(:empty) {
  display: block;
}

.insta-feed {
  display: grid;
  position: relative;
  width: calc(100% - 160px);
  height: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-column-gap: 40px;
  margin: 0 auto;
  margin-bottom: 80px;
}
.insta-feed .insta-item {
  display: block;
  position: relative;
  padding-top: 100%;
  overflow: hidden;
}
.insta-feed .insta-item img, .insta-feed .insta-item video {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  transition: opacity ease-in-out 0.5s;
  object-fit: cover;
}

@media screen and (max-width: 768px) {
  .insta-feed {
    grid-template-columns: 1fr 1fr;
    width: calc(100% - 40px);
    grid-column-gap: 20px;
    margin-bottom: 60px;
  }
  .insta-feed .insta-item:last-of-type {
    display: none;
  }
}
.cookie-banner {
  display: block;
  position: fixed;
  width: calc(100% - 40px);
  height: auto;
  padding: 20px;
  background-color: white;
  bottom: -120px;
  border-top: 1px solid black;
  transition: all 0.5s ease-in-out;
  text-align: center;
}
.cookie-banner .cookie-grid {
  display: grid;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  grid-template-columns: 2fr 1fr;
  grid-column-gap: 20px;
  align-items: center;
}
.cookie-banner p, .cookie-banner a {
  font-family: montserrat, sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 18px;
  line-height: initial;
}
@media screen and (max-width: 1199.98px) {
  .cookie-banner p, .cookie-banner a {
    font-size: 16px;
  }
}
@media screen and (max-width: 500px) {
  .cookie-banner p, .cookie-banner a {
    font-size: 16px;
  }
}
.cookie-banner p, .cookie-banner a {
  font-size: 14px;
  color: black;
  margin: 0;
  justify-self: start;
}
.cookie-banner button {
  display: block;
  position: relative;
  width: 100%;
  max-width: 405px;
  height: 40px;
  margin-top: 0px;
  margin-bottom: 0px;
  font-size: 14px;
  background-color: white;
  border: 1px solid black;
  transition: background-color ease-in-out 400, color ease-in-out 400;
  padding: 0;
  justify-self: end;
  font-family: montserrat, sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 18px;
  line-height: initial;
}
@media screen and (max-width: 1199.98px) {
  .cookie-banner button {
    font-size: 16px;
  }
}
@media screen and (max-width: 500px) {
  .cookie-banner button {
    font-size: 16px;
  }
}
.cookie-banner button:hover {
  background-color: #656565;
  border: 1px solid #656565;
  color: white;
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  .cookie-banner {
    bottom: -160px;
    border-top: 1px solid black;
    text-align: center;
  }
  .cookie-banner .cookie-grid {
    grid-template-columns: 1fr;
    grid-column-gap: 0px;
    align-items: center;
  }
  .cookie-banner p, .cookie-banner a {
    font-size: 14px;
    color: black;
    margin: 0;
    margin-bottom: 20px;
    justify-self: center;
  }
  .cookie-banner button {
    display: block;
    position: relative;
    width: 100%;
    max-width: 485px;
    height: 45px;
    margin-top: 0px;
    margin-bottom: 0px;
    font-size: 14px;
    background-color: white;
    border: 1px solid black;
    padding: 0;
    justify-self: center;
  }
  .cookie-banner button:hover {
    background-color: #656565;
    border: 1px solid #656565;
    color: white;
    cursor: pointer;
  }
}
.comp-form {
  display: block;
  position: relative;
  width: calc(100% - 80px);
  height: auto;
  max-width: 840px;
  margin: 0 auto;
  margin-bottom: 80px;
}
.comp-form p, .comp-form label, .comp-form span, .comp-form th {
  font-family: montserrat, sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 18px;
  line-height: initial;
}
@media screen and (max-width: 1199.98px) {
  .comp-form p, .comp-form label, .comp-form span, .comp-form th {
    font-size: 16px;
  }
}
@media screen and (max-width: 500px) {
  .comp-form p, .comp-form label, .comp-form span, .comp-form th {
    font-size: 16px;
  }
}
.comp-form .form-links {
  display: grid;
  position: relative;
  grid-template-columns: 1fr 1fr;
  text-align: center;
  margin-bottom: 80px;
}
.comp-form .form-links h2 {
  font-family: montserrat, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: initial;
  text-transform: uppercase;
}
@media screen and (max-width: 1199.98px) {
  .comp-form .form-links h2 {
    font-size: 18px;
    line-height: 20px;
  }
}
@media screen and (max-width: 768px) {
  .comp-form .form-links h2 {
    font-size: 18px;
    line-height: 20px;
  }
}
.comp-form .form-links h2 {
  font-size: 24px;
}
.comp-form .form-links h2:hover {
  text-decoration: underline;
}
.comp-form .form-links h2 a {
  color: black;
  text-decoration: none;
}
.comp-form .form-links .underline {
  text-decoration: underline;
}
.comp-form .form-header {
  width: 100%;
  margin-bottom: 40px;
  text-align: center;
}
.comp-form .form-header h1 {
  font-weight: 500;
  font-size: 20px;
}
.comp-form .form-header.questionnaire-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
}
.comp-form .form-header.questionnaire-header h1:first-child {
  text-align: left;
}
.comp-form .form-header.questionnaire-header h1:last-child {
  text-align: right;
}
.comp-form .comp-form-team {
  display: block;
  position: relative;
  margin-bottom: 40px;
}
.comp-form .comp-form-team .row {
  display: grid;
  grid-template-columns: minmax(auto, 180px) minmax(auto, 620px);
  grid-column-gap: 40px;
  margin-bottom: 20px;
}
.comp-form .comp-form-team .row--large-gap {
  margin-bottom: 60px;
}
.comp-form .comp-form-team .row--center-gap {
  grid-template-columns: 50% 50%;
  grid-column-gap: 40px;
  width: calc(100% - 22px);
}
@media screen and (max-width: 768px) {
  .comp-form .comp-form-team .row--center-gap {
    width: 100%;
  }
}
.comp-form .comp-form-team .row p {
  font-weight: 500;
  font-size: 20px;
  align-self: center;
}
@media screen and (max-width: 768px) {
  .comp-form .comp-form-team .row p {
    font-size: 14px;
  }
}
.comp-form .comp-form-team .row .upload-info {
  font-size: 14px;
}
.comp-form .comp-form-team .row label {
  font-weight: 500;
  font-size: 20px;
  margin-bottom: 10px;
  text-transform: uppercase;
}
@media screen and (max-width: 768px) {
  .comp-form .comp-form-team .row label {
    font-size: 14px;
  }
}
.comp-form .comp-form-team .row .form-error {
  font-family: montserrat, sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 18px;
  line-height: initial;
}
@media screen and (max-width: 1199.98px) {
  .comp-form .comp-form-team .row .form-error {
    font-size: 16px;
  }
}
@media screen and (max-width: 500px) {
  .comp-form .comp-form-team .row .form-error {
    font-size: 16px;
  }
}
.comp-form .comp-form-team .row .form-error {
  display: block;
  position: relative;
  font-size: 14px;
  color: red;
  margin-top: 10px;
  padding-left: 10px;
  margin-bottom: 10px;
  min-height: 16px;
}
.comp-form .comp-form-team .row input {
  height: 44px;
  border: 0.5px solid #000000;
  box-sizing: border-box;
  padding-left: 10px;
  font-family: montserrat, sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 18px;
  line-height: initial;
}
@media screen and (max-width: 1199.98px) {
  .comp-form .comp-form-team .row input {
    font-size: 16px;
  }
}
@media screen and (max-width: 500px) {
  .comp-form .comp-form-team .row input {
    font-size: 16px;
  }
}
.comp-form .comp-form-team .row input {
  font-weight: 300;
  font-size: 20px;
}
@media screen and (max-width: 768px) {
  .comp-form .comp-form-team .row input {
    font-size: 14px;
  }
}
.comp-form .comp-form-team .row textarea {
  width: auto;
  height: auto;
  min-height: 200px;
  font-family: montserrat, sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 18px;
  line-height: initial;
}
@media screen and (max-width: 1199.98px) {
  .comp-form .comp-form-team .row textarea {
    font-size: 16px;
  }
}
@media screen and (max-width: 500px) {
  .comp-form .comp-form-team .row textarea {
    font-size: 16px;
  }
}
.comp-form .comp-form-team .row textarea {
  font-weight: 300;
  font-size: 20px;
  padding: 10px;
}
@media screen and (max-width: 768px) {
  .comp-form .comp-form-team .row textarea {
    font-size: 14px;
  }
}
.comp-form .comp-form-team .row .upload-desc {
  font-weight: 300;
}
.comp-form .comp-form-team .row .upload-desc span {
  font-weight: 500;
}
.comp-form .comp-form-team .row .upload-desc .file-upload {
  text-decoration: underline;
  font-weight: 300;
  color: black;
}
.comp-form .comp-form-team .row .upload-desc .file-upload:hover {
  cursor: pointer;
}
.comp-form .comp-form-team .row .upload-zone {
  display: grid;
  position: relative;
  width: calc(100% - 20px);
  height: 84px;
  border: 1px dashed #000000;
  place-items: center;
}
@media screen and (max-width: 768px) {
  .comp-form .comp-form-team .row .upload-zone {
    width: 100%;
  }
}
.comp-form .comp-form-team .row .upload-zone img {
  width: 36px;
  height: 34px;
}
.comp-form .comp-form-team .row .upload-zone:hover {
  cursor: pointer;
}
.comp-form .comp-form-team .row .upload-zone .drop-text {
  display: none;
}
.comp-form .comp-form-team .row .upload-zone p {
  width: 340px;
  text-overflow: ellipsis;
  overflow-x: hidden;
}
@media screen and (max-width: 768px) {
  .comp-form .comp-form-team .row .upload-zone p {
    width: 100%;
  }
}
.comp-form .comp-form-team .row .upload-zone .remove-file {
  display: none;
  position: absolute;
  top: -15px;
  right: -15px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: rgb(238, 238, 238);
  place-content: center;
}
.comp-form .comp-form-team .row .upload-zone .remove-file img {
  width: 20px;
  height: auto;
}
.comp-form .comp-form-team .row .checkbox {
  display: grid;
  position: relative;
  place-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid black;
}
.comp-form .comp-form-team .row .checkbox:hover {
  cursor: pointer;
}
.comp-form .comp-form-team .row .checkbox img {
  display: none;
  width: 25px;
  height: 25px;
}
.comp-form .comp-form-team .row .checkboxes {
  display: grid;
  grid-template-columns: 1fr 10fr 1fr 10fr;
  text-align: left;
  margin-top: 20px;
  row-gap: 20px;
  column-gap: 20px;
}
@media screen and (max-width: 768px) {
  .comp-form .comp-form-team .row .checkboxes {
    grid-template-columns: 1fr 10fr;
    margin-top: 0px;
    row-gap: 10px;
    column-gap: 10px;
    margin-bottom: 20px;
  }
  .comp-form .comp-form-team .row .checkboxes p {
    display: inline-block;
  }
}
.comp-form .comp-form-team .row .checkboxes .checkbox-option {
  display: grid;
  position: relative;
  place-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid black;
}
.comp-form .comp-form-team .row .checkboxes .checkbox-option:hover {
  cursor: pointer;
}
.comp-form .comp-form-team .row .checkboxes .checkbox-option img {
  display: none;
  width: 25px;
  height: 25px;
}
.comp-form .comp-form-team .row .bottle-price {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 32px;
}
@media screen and (max-width: 768px) {
  .comp-form .comp-form-team .row .bottle-price {
    grid-template-columns: 1fr;
    row-gap: 16px;
    margin-bottom: 16px;
  }
}
.comp-form .comp-form-team .row .bottle-price .col {
  display: grid;
  grid-template-columns: 1fr;
}
.comp-form .comp-form-team .row .bottle-price {
  /* For WebKit browsers (Chrome, Safari, Edge) */
}
.comp-form .comp-form-team .row .bottle-price input::-webkit-outer-spin-button,
.comp-form .comp-form-team .row .bottle-price input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.comp-form .comp-form-team .row .bottle-price {
  /* For Firefox */
}
.comp-form .comp-form-team .row .bottle-price input[type=number] {
  -moz-appearance: textfield;
}
.comp-form .comp-form-team .row .input-error {
  color: red;
  font-size: 12px;
  padding-top: 6px;
}
.comp-form .comp-form-team .row .input-spaced {
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .comp-form .comp-form-team .row .input-spaced {
    margin-bottom: 0px;
  }
}
.comp-form .comp-form-team .row-1-col {
  display: grid;
  grid-template-columns: 1fr;
}
.comp-form .comp-form-team .row-2-col {
  display: grid;
  grid-template-columns: 0.4fr 0.6fr;
}
.comp-form .comp-form-team .row-3-col {
  display: grid;
  grid-template-columns: 180px minmax(auto, 280px) minmax(auto, 333px);
  grid-column-gap: 40px;
}
.comp-form .comp-form-team .row-2x2 {
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
}
@media screen and (max-width: 768px) {
  .comp-form .comp-form-team .row-2x2 {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr 1fr 1fr;
  }
  .comp-form .comp-form-team .row-2x2 #label-1 {
    grid-row: 1/1;
    grid-column: 1/1;
  }
  .comp-form .comp-form-team .row-2x2 #label-2 {
    grid-row: 3/3;
    grid-column: 1/1;
  }
  .comp-form .comp-form-team .row-2x2 #input-1 {
    grid-row: 2/2;
    grid-column: 1/1;
  }
  .comp-form .comp-form-team .row-2x2 #input-2 {
    grid-row: 4/4;
    grid-column: 1/1;
  }
}
.comp-form .comp-form-course {
  display: block;
  position: relative;
  margin-bottom: 40px;
}
.comp-form .comp-form-course .row {
  display: grid;
  grid-template-columns: 50% 50%;
  grid-column-gap: 40px;
  width: calc(100% - 22px);
  margin-bottom: 20px;
}
.comp-form .comp-form-course .row p {
  font-weight: 500;
  font-size: 20px;
  align-self: center;
}
.comp-form .comp-form-course .row .upload-info {
  font-weight: 300;
  font-size: 12px;
  text-transform: uppercase;
  margin-top: 5px;
}
.comp-form .comp-form-course .row .dropdown-select {
  display: grid;
  position: relative;
  width: calc(100% - 20px);
  height: 44px;
  place-items: center;
  border: 1px solid black;
}
.comp-form .comp-form-course .row .dropdown-select:hover {
  cursor: pointer;
}
.comp-form .comp-form-course .row .dropdown-select p {
  font-family: montserrat, sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 18px;
  line-height: initial;
}
@media screen and (max-width: 1199.98px) {
  .comp-form .comp-form-course .row .dropdown-select p {
    font-size: 16px;
  }
}
@media screen and (max-width: 500px) {
  .comp-form .comp-form-course .row .dropdown-select p {
    font-size: 16px;
  }
}
.comp-form .comp-form-course .row .dropdown-select p {
  font-weight: 300;
  font-size: 20px;
}
.comp-form .comp-form-course .row .dropdown-select img {
  display: block;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
}
.comp-form .comp-form-course .row .dropdown-select .dropdown {
  display: none;
  position: absolute;
  top: 44px;
  width: calc(100% + 2px);
  text-align: center;
  border-top: 1px solid black;
  z-index: 10;
}
.comp-form .comp-form-course .row .dropdown-select .dropdown p {
  line-height: 44px;
  border-bottom: 1px solid black;
  border-left: 1px solid black;
  border-right: 1px solid black;
  background-color: white;
}
.comp-form .comp-form-course .row .dropdown-select .dropdown p:hover {
  cursor: pointer;
  background-color: #F2F2F2;
  font-weight: 500;
}
.comp-form .comp-form-course .row input {
  height: 44px;
  border: 0.5px solid #000000;
  box-sizing: border-box;
  padding-left: 10px;
  font-family: montserrat, sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 18px;
  line-height: initial;
}
@media screen and (max-width: 1199.98px) {
  .comp-form .comp-form-course .row input {
    font-size: 16px;
  }
}
@media screen and (max-width: 500px) {
  .comp-form .comp-form-course .row input {
    font-size: 16px;
  }
}
.comp-form .comp-form-course .row input {
  font-weight: 300;
  font-size: 20px;
}
.comp-form .comp-form-course .row textarea {
  width: 100%;
  height: auto;
  min-height: 200px;
  font-family: montserrat, sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 18px;
  line-height: initial;
}
@media screen and (max-width: 1199.98px) {
  .comp-form .comp-form-course .row textarea {
    font-size: 16px;
  }
}
@media screen and (max-width: 500px) {
  .comp-form .comp-form-course .row textarea {
    font-size: 16px;
  }
}
.comp-form .comp-form-course .row textarea {
  font-weight: 300;
  font-size: 20px;
  padding: 10px;
}
.comp-form .comp-form-course .row .upload-desc {
  font-weight: 300;
}
.comp-form .comp-form-course .row .upload-desc span {
  font-weight: 500;
}
.comp-form .comp-form-course .row .upload-desc .file-upload {
  text-decoration: underline;
  font-weight: 300;
}
.comp-form .comp-form-course .row .upload-desc .file-upload:hover {
  cursor: pointer;
}
.comp-form .comp-form-course .row .upload-zone {
  display: grid;
  position: relative;
  width: calc(100% - 20px);
  height: 84px;
  border: 1px dashed #000000;
  place-items: center;
}
.comp-form .comp-form-course .row .upload-zone img {
  width: 36px;
  height: 34px;
}
.comp-form .comp-form-course .row .upload-zone:hover {
  cursor: pointer;
}
.comp-form .comp-form-course .row .upload-zone .drop-text {
  display: none;
}
.comp-form .comp-form-course .row .upload-zone p {
  width: 340px;
  text-overflow: ellipsis;
  overflow-x: hidden;
}
@media screen and (max-width: 768px) {
  .comp-form .comp-form-course .row .upload-zone p {
    width: 100%;
  }
}
.comp-form .comp-form-course .row .upload-zone .remove-file {
  display: none;
  position: absolute;
  top: -15px;
  right: -15px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: rgb(238, 238, 238);
  place-content: center;
}
.comp-form .comp-form-course .row .upload-zone .remove-file img {
  width: 20px;
  height: auto;
}
.comp-form .comp-form-course .row-1-col {
  display: grid;
  grid-template-columns: 1fr;
}
.comp-form .comp-form-course .row-2-col {
  display: grid;
  grid-template-columns: 2fr;
}
.comp-form .comp-form-submit {
  display: block;
  position: relative;
  margin-bottom: 40px;
}
.comp-form .comp-form-submit .row {
  display: grid;
  grid-template-columns: 44px 326px minmax(auto, 400px);
  grid-column-gap: 40px;
}
.comp-form .comp-form-submit .row .checkbox {
  display: grid;
  position: relative;
  place-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid black;
}
.comp-form .comp-form-submit .row .checkbox:hover {
  cursor: pointer;
}
.comp-form .comp-form-submit .row .checkbox img {
  display: none;
  width: 25px;
  height: 25px;
}
.comp-form .comp-form-submit .row p, .comp-form .comp-form-submit .row a {
  font-family: montserrat, sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 18px;
  line-height: initial;
}
@media screen and (max-width: 1199.98px) {
  .comp-form .comp-form-submit .row p, .comp-form .comp-form-submit .row a {
    font-size: 16px;
  }
}
@media screen and (max-width: 500px) {
  .comp-form .comp-form-submit .row p, .comp-form .comp-form-submit .row a {
    font-size: 16px;
  }
}
.comp-form .comp-form-submit .row p, .comp-form .comp-form-submit .row a {
  font-weight: 300;
  font-size: 20px;
  color: black;
}
.comp-form .comp-form-submit .row input {
  height: 44px;
  border: 0.5px solid #000000;
  box-sizing: border-box;
  background-color: white;
  font-family: montserrat, sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 18px;
  line-height: initial;
}
@media screen and (max-width: 1199.98px) {
  .comp-form .comp-form-submit .row input {
    font-size: 16px;
  }
}
@media screen and (max-width: 500px) {
  .comp-form .comp-form-submit .row input {
    font-size: 16px;
  }
}
.comp-form .comp-form-submit .row input {
  font-weight: 300;
  font-size: 20px;
}
.comp-form .comp-form-submit .row input:hover {
  cursor: pointer;
  background-color: #F2F2F2;
  font-weight: 500;
}
.comp-form .comp-form-submit .row .form-note {
  text-align: center;
  font-size: 14px;
  text-transform: uppercase;
  margin-top: 20px;
}
.comp-form .comp-form-submit .row-1-col {
  display: grid;
  grid-template-columns: 1fr;
}
.comp-form .form-message {
  display: none;
  position: relative;
  margin-bottom: 40px;
  text-align: center;
}
.comp-form .form-message p, .comp-form .form-message h3 {
  font-family: montserrat, sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 18px;
  line-height: initial;
}
@media screen and (max-width: 1199.98px) {
  .comp-form .form-message p, .comp-form .form-message h3 {
    font-size: 16px;
  }
}
@media screen and (max-width: 500px) {
  .comp-form .form-message p, .comp-form .form-message h3 {
    font-size: 16px;
  }
}
.comp-form .form-message p, .comp-form .form-message h3 {
  font-weight: 300;
  font-size: 20px;
  text-transform: uppercase;
}
.comp-form .form-message progress[value] {
  /* Reset the default appearance */
  -webkit-appearance: none;
  appearance: none;
  display: none;
  width: 50%;
  height: 15px;
  margin-top: 10px;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .comp-form .form-message progress[value] {
    width: 100%;
  }
}
.comp-form .form-message progress[value]::-webkit-progress-bar {
  background-color: rgb(255, 255, 255);
  border: 1px solid black;
}
.comp-form .form-message progress[value]::-webkit-progress-value {
  background-color: rgb(1, 209, 1);
}
.comp-form .comp-popup-background {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 900;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.255);
  cursor: pointer;
}
.comp-form .comp-popup-background .comp-popup {
  display: block;
  position: fixed;
  width: calc(100% - 80px);
  height: auto;
  max-width: 840px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 40px 0px;
  z-index: 1000;
  background-color: white;
  z-index: 1001;
  text-align: center;
}
@media screen and (max-width: 1080px) {
  .comp-form .comp-popup-background .comp-popup {
    width: calc(100% - 40px);
  }
}
@media screen and (max-width: 768px) {
  .comp-form .comp-popup-background .comp-popup {
    width: calc(100% - 40px);
  }
}
.comp-form .comp-popup-background .comp-popup img {
  width: 180px;
  height: auto;
}
.comp-form .comp-popup-background .comp-popup p {
  text-transform: uppercase;
  margin-bottom: 40px;
  font-size: 20px;
  color: black;
}
.comp-form .success {
  display: block;
}
.comp-form .success p, .comp-form .success h3 {
  color: green !important;
}
.comp-form .error {
  display: block;
}
.comp-form .error p, .comp-form .error h3 {
  color: red;
}
.comp-form .loading-questionnaire {
  display: none;
  text-align: center;
  margin-top: 80px;
}
.comp-form .loading-questionnaire img {
  width: 60px;
  height: auto;
}

@media screen and (max-width: 768px) {
  .comp-form .form-links h2 {
    font-size: 16px;
  }
  .comp-form .form-header {
    width: 100%;
    margin-bottom: 40px;
    text-align: center;
  }
  .comp-form .form-header h1 {
    font-size: 16px;
  }
  .comp-form .form-header.questionnaire-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }
  .comp-form .form-header.questionnaire-header h1 {
    font-size: 14px;
  }
  .comp-form .form-header.questionnaire-header h1:first-child {
    text-align: left;
  }
  .comp-form .form-header.questionnaire-header h1:last-child {
    text-align: right;
  }
  .comp-form .comp-form-team {
    display: block;
    position: relative;
    margin-bottom: 40px;
  }
  .comp-form .comp-form-team .row {
    display: grid;
    grid-template-columns: 1fr;
    grid-row-gap: 20px;
    margin-bottom: 20px;
  }
  .comp-form .comp-form-team .row p {
    display: none;
  }
  .comp-form .comp-form-team .row input {
    height: 44px;
    border: 0.5px solid #000000;
    box-sizing: border-box;
    padding-left: 10px;
    font-family: montserrat, sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 18px;
    line-height: initial;
    font-weight: 300;
    font-size: 18px;
  }
}
@media screen and (max-width: 768px) and (max-width: 1199.98px) {
  .comp-form .comp-form-team .row input {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) and (max-width: 500px) {
  .comp-form .comp-form-team .row input {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .comp-form .comp-form-team .form-error {
    display: block;
    position: relative;
    font-size: 14px !important;
    color: red;
    margin-top: 10px;
    padding-left: 10px;
    margin-bottom: 0;
  }
  .comp-form .comp-form-team .row-3-col {
    display: grid;
    grid-template-columns: 1fr;
    grid-row-gap: 20px;
  }
  .comp-form .comp-form-team .upload-desc {
    font-weight: 300;
  }
  .comp-form .comp-form-team .upload-desc span {
    font-weight: 500;
  }
  .comp-form .comp-form-team .upload-desc .file-upload {
    text-decoration: underline;
    font-weight: 300;
  }
  .comp-form .comp-form-team .upload-desc .file-upload:hover {
    cursor: pointer;
  }
  .comp-form .comp-form-team .upload-zone {
    display: grid;
    width: 100%;
    height: auto;
    min-height: 100px;
    border: 1px dashed #000000;
    place-items: center;
    padding-top: 20px;
    padding-bottom: 20px;
    text-align: center;
    margin-bottom: 20px;
    z-index: 10;
    background: transparent;
  }
  .comp-form .comp-form-team .upload-zone .drop-text {
    display: block;
  }
  .comp-form .comp-form-team .upload-zone p {
    display: block;
    font-family: montserrat, sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 18px;
    line-height: initial;
    font-weight: 300;
    font-size: 18px;
  }
}
@media screen and (max-width: 768px) and (max-width: 1199.98px) {
  .comp-form .comp-form-team .upload-zone p {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) and (max-width: 500px) {
  .comp-form .comp-form-team .upload-zone p {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .comp-form .comp-form-team .upload-zone p .file-upload {
    text-decoration: underline;
    color: black;
  }
  .comp-form .comp-form-team .upload-zone p .file-upload:hover {
    cursor: pointer;
  }
  .comp-form .comp-form-team .upload-zone img {
    width: 36px;
    height: 34px;
    margin-bottom: 20px;
  }
  .comp-form .comp-form-team .upload-zone .remove-file img {
    margin: 0;
  }
  .comp-form .comp-form-team .upload-zone:hover {
    cursor: pointer;
  }
  .comp-form .comp-form-team button {
    display: block;
    position: relative;
    width: 100%;
    background-color: white;
    height: 44px;
    border: 1px solid black;
    font-family: montserrat, sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 18px;
    line-height: initial;
    font-weight: 300;
    font-size: 18px;
    justify-content: center;
    align-items: center;
  }
}
@media screen and (max-width: 768px) and (max-width: 1199.98px) {
  .comp-form .comp-form-team button {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) and (max-width: 500px) {
  .comp-form .comp-form-team button {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .comp-form .comp-form-team button:hover {
    cursor: pointer;
    background-color: #F2F2F2;
    font-weight: 500;
  }
  .comp-form .comp-form-course {
    display: block;
    position: relative;
    margin-bottom: 40px;
  }
  .comp-form .comp-form-course .row {
    display: grid;
    grid-template-columns: 1fr;
    grid-column-gap: 40px;
    width: 100%;
    margin-bottom: 20px;
  }
  .comp-form .comp-form-course .row p {
    display: none;
  }
  .comp-form .comp-form-course .row .dropdown-select {
    display: grid;
    position: relative;
    width: 100%;
    height: 44px;
    place-items: center;
    border: 1px solid black;
  }
  .comp-form .comp-form-course .row .dropdown-select:hover {
    cursor: pointer;
  }
  .comp-form .comp-form-course .row .dropdown-select p {
    display: block;
    font-family: montserrat, sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 18px;
    line-height: initial;
    font-weight: 300;
    font-size: 18px;
  }
}
@media screen and (max-width: 768px) and (max-width: 1199.98px) {
  .comp-form .comp-form-course .row .dropdown-select p {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) and (max-width: 500px) {
  .comp-form .comp-form-course .row .dropdown-select p {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .comp-form .comp-form-course .row .dropdown-select .dropdown {
    display: none;
    position: absolute;
    top: 44px;
    width: calc(100% + 2px);
    text-align: center;
    border-top: 1px solid black;
    z-index: 10;
  }
  .comp-form .comp-form-course .row .dropdown-select .dropdown p {
    line-height: 44px;
    border-bottom: 1px solid black;
    border-left: 1px solid black;
    border-right: 1px solid black;
    background-color: white;
  }
  .comp-form .comp-form-course .row .dropdown-select .dropdown p:hover {
    cursor: pointer;
    background-color: #F2F2F2;
    font-weight: 500;
  }
  .comp-form .comp-form-course .row input {
    height: 44px;
    border: 0.5px solid #000000;
    box-sizing: border-box;
    padding-left: 10px;
    font-family: montserrat, sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 18px;
    line-height: initial;
    font-weight: 300;
    font-size: 18px;
  }
}
@media screen and (max-width: 768px) and (max-width: 1199.98px) {
  .comp-form .comp-form-course .row input {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) and (max-width: 500px) {
  .comp-form .comp-form-course .row input {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .comp-form .comp-form-course .row textarea {
    width: calc(100% - 20px);
    height: auto;
    min-height: 200px;
    font-family: montserrat, sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 18px;
    line-height: initial;
    font-weight: 300;
    font-size: 18px;
    padding: 10px;
  }
}
@media screen and (max-width: 768px) and (max-width: 1199.98px) {
  .comp-form .comp-form-course .row textarea {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) and (max-width: 500px) {
  .comp-form .comp-form-course .row textarea {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .comp-form .comp-form-course .row .upload-desc {
    font-weight: 300;
  }
  .comp-form .comp-form-course .row .upload-desc span {
    font-weight: 500;
  }
  .comp-form .comp-form-course .row .upload-desc .file-upload {
    text-decoration: underline;
    font-weight: 300;
  }
  .comp-form .comp-form-course .row .upload-desc .file-upload:hover {
    cursor: pointer;
  }
  .comp-form .comp-form-course .row .upload-zone {
    display: grid;
    width: 100%;
    height: auto;
    min-height: 100px;
    border: 1px dashed #000000;
    place-items: center;
    padding-top: 20px;
    padding-bottom: 20px;
    text-align: center;
    margin-bottom: 20px;
    z-index: 10;
    background: transparent;
  }
  .comp-form .comp-form-course .row .upload-zone .drop-text {
    display: block;
  }
  .comp-form .comp-form-course .row .upload-zone p {
    display: block;
    font-family: montserrat, sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 18px;
    line-height: initial;
    font-weight: 300;
    font-size: 18px;
  }
}
@media screen and (max-width: 768px) and (max-width: 1199.98px) {
  .comp-form .comp-form-course .row .upload-zone p {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) and (max-width: 500px) {
  .comp-form .comp-form-course .row .upload-zone p {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .comp-form .comp-form-course .row .upload-zone p .file-upload {
    text-decoration: underline;
  }
  .comp-form .comp-form-course .row .upload-zone p .file-upload:hover {
    cursor: pointer;
  }
  .comp-form .comp-form-course .row .upload-zone img {
    width: 36px;
    height: 34px;
    margin-bottom: 20px;
  }
  .comp-form .comp-form-course .row .upload-zone .remove-file img {
    margin: 0;
  }
  .comp-form .comp-form-course .row .upload-zone:hover {
    cursor: pointer;
  }
  .comp-form .comp-form-course .row button {
    display: block;
    position: relative;
    width: 100%;
    background-color: white;
    height: 44px;
    border: 1px solid black;
    font-family: montserrat, sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 18px;
    line-height: initial;
    font-weight: 300;
    font-size: 18px;
    justify-content: center;
    align-items: center;
  }
}
@media screen and (max-width: 768px) and (max-width: 1199.98px) {
  .comp-form .comp-form-course .row button {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) and (max-width: 500px) {
  .comp-form .comp-form-course .row button {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .comp-form .comp-form-course .row button:hover {
    cursor: pointer;
    background-color: #F2F2F2;
    font-weight: 500;
  }
  .comp-form .comp-form-course .row-1-col {
    display: grid;
    grid-template-columns: 1fr;
  }
  .comp-form .comp-form-submit {
    display: block;
    position: relative;
    margin-bottom: 40px;
  }
  .comp-form .comp-form-submit .row {
    display: grid;
    grid-template-columns: 44px auto;
    grid-template-rows: 1fr;
    margin-bottom: 20px;
  }
  .comp-form .comp-form-submit .row .checkbox {
    display: grid;
    position: relative;
    place-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid black;
  }
  .comp-form .comp-form-submit .row .checkbox:hover {
    cursor: pointer;
  }
  .comp-form .comp-form-submit .row .checkbox img {
    display: none;
    width: 25px;
    height: 25px;
  }
  .comp-form .comp-form-submit .row p {
    font-family: montserrat, sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 18px;
    line-height: initial;
    font-weight: 300;
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) and (max-width: 1199.98px) {
  .comp-form .comp-form-submit .row p {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) and (max-width: 500px) {
  .comp-form .comp-form-submit .row p {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .comp-form .comp-form-submit .row input {
    height: 44px;
    border: 0.5px solid #000000;
    box-sizing: border-box;
    background-color: white;
    font-family: montserrat, sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 18px;
    line-height: initial;
    font-weight: 300;
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) and (max-width: 1199.98px) {
  .comp-form .comp-form-submit .row input {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) and (max-width: 500px) {
  .comp-form .comp-form-submit .row input {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .comp-form .comp-form-submit .row input:hover {
    cursor: pointer;
    background-color: #F2F2F2;
    font-weight: 500;
  }
  .comp-form .comp-form-submit .row-1-col {
    display: grid;
    grid-template-columns: 1fr;
  }
}
.pagination {
  display: grid;
  position: relative;
  width: auto;
  max-width: calc(100% - 40px);
  height: auto;
  grid-template-columns: 1fr auto 1fr;
  text-align: center;
  margin: 0 auto;
  margin-bottom: 60px;
  margin-top: 60px;
}
.pagination a, .pagination span {
  font-family: montserrat, sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 18px;
  line-height: initial;
}
@media screen and (max-width: 1199.98px) {
  .pagination a, .pagination span {
    font-size: 16px;
  }
}
@media screen and (max-width: 500px) {
  .pagination a, .pagination span {
    font-size: 16px;
  }
}
.pagination a, .pagination span {
  text-decoration: none;
  color: black;
}
.pagination a:hover {
  cursor: pointer;
  text-decoration: underline;
}
.pagination .pages {
  display: block;
  position: relative;
}
.pagination .pages .page-num {
  display: inline-block;
  position: relative;
  width: 30px;
  height: 30px;
}
.pagination .pages .page-num--current {
  background-color: rgb(233, 233, 233);
}
.pagination .pages .page-num a, .pagination .pages .page-num span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.pagination .next img {
  height: 25px;
  transform: rotate(-90deg);
}
.pagination .next #lastUrl img {
  border-bottom: 1px solid black;
}
.pagination .next .inactive {
  opacity: 0.3;
}
.pagination .next .inactive:hover {
  cursor: initial;
}
.pagination .prev img {
  height: 25px;
  transform: rotate(90deg);
}
.pagination .prev #firstUrl img {
  border-bottom: 1px solid black;
}
.pagination .prev .inactive {
  opacity: 0.3;
}
.pagination .prev .inactive:hover {
  cursor: initial;
}

.header {
  display: block;
  position: fixed;
  top: 0;
  width: 100%;
  height: 100px;
  border-bottom: 0.5px solid rgba(191, 191, 191, 0);
  z-index: 100;
}
.header .header-icons {
  display: grid;
  position: absolute;
  top: 50%;
  left: 80px;
  transform: translateY(-50%);
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 30px;
}
.header .header-icons #search-open:hover {
  cursor: pointer;
}
.header .logo {
  display: block;
  position: absolute;
  width: auto;
  height: auto;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.header .logo img {
  width: auto;
  height: 120px;
}
.header .logo-animation-down-desktop {
  display: block;
  position: absolute;
  width: auto;
  height: 100;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.header .logo-animation-down-desktop img {
  width: auto;
  height: 120px;
}
.header .account-icon {
  position: absolute;
  display: block;
  right: 130px;
  top: 50%;
  transform: translate(0, -50%);
  z-index: 10000;
}
.header .account-icon img {
  width: auto;
  height: 24px;
}
.header .account-icon:hover {
  cursor: pointer;
}
.header .hamburger {
  position: absolute;
  display: block;
  right: 80px;
  top: 50%;
  transform: translate(0, -50%);
  z-index: 10000;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.header .hamburger .line {
  width: 54px;
  height: 2px;
  background-color: black;
  border-radius: 8px;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.header .line {
  display: block;
  margin: 10px auto;
}
.header .hamburger:hover {
  cursor: pointer;
}
.header {
  /* ONE */
}
.header .hamburger.is-active .line:nth-child(2) {
  opacity: 0;
}
.header .hamburger.is-active .line:nth-child(1) {
  -webkit-transform: translateY(32px) rotate(45deg);
  -ms-transform: translateY(32px) rotate(45deg);
  -o-transform: translateY(32px) rotate(45deg);
  transform: translateY(22px) rotate(45deg);
}
.header .hamburger.is-active .line:nth-child(3) {
  -webkit-transform: translateY(-10px) rotate(-45deg);
  -ms-transform: translateY(-10px) rotate(-45deg);
  -o-transform: translateY(-10px) rotate(-45deg);
  transform: translateY(-20px) rotate(-45deg);
}

.header-animation-down {
  display: block;
  position: fixed;
  top: 0;
  width: 100%;
  height: 100px;
  border-bottom: 0.5px solid #BFBFBF;
  background-color: rgba(255, 255, 255, 0.75);
  z-index: 100;
}

@media screen and (max-width: 1199.98px) {
  .header .logo {
    height: auto;
  }
  .header .logo img {
    height: 120px;
  }
  .header .header-icons img {
    width: 24px;
  }
  .header .hamburger .line {
    width: 42px;
    height: 2px;
    background-color: black;
    border-radius: 8px;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  .header .line {
    display: block;
    margin: 8px auto;
  }
  .header-animation-down {
    display: block;
    position: fixed;
    top: 0;
    width: 100%;
    height: 120px;
    border-bottom: 0.5px solid #BFBFBF;
    background-color: rgba(255, 255, 255, 0.75);
    z-index: 100;
  }
  .logo-animation-down-desktop {
    display: block;
    position: absolute;
    width: auto;
    height: 70;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  .logo-animation-down-desktop img {
    width: auto;
    height: 70px;
  }
}
@media screen and (max-width: 768px) {
  .header {
    height: 100px;
    border-bottom: 0.5px solid rgba(191, 191, 191, 0);
  }
  .header .header-icons {
    display: grid;
    position: absolute;
    top: 50%;
    left: 40px;
    transform: translateY(-50%);
    width: 24px;
    height: auto;
  }
  .header .header-icons img {
    width: 24px;
    height: auto;
  }
  .header .header-icons {
    grid-template-columns: 1fr;
    grid-column-gap: 0px;
  }
  .header .header-icons #search-open:hover {
    cursor: pointer;
  }
  .header .header-icons #header-insta {
    display: none;
  }
  .header .logo {
    display: block;
    position: absolute;
    width: auto;
    height: 120px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  .header .logo img {
    width: 100%;
    height: 120px;
  }
  .header .account-icon {
    right: 100px;
  }
  .header .account-icon img {
    width: 20px;
  }
  .header .logo-animation-down {
    display: block;
    position: absolute;
    width: auto;
    height: 60px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  .header .logo-animation-down img {
    width: 100%;
    height: 60px;
  }
  .header .hamburger {
    position: absolute;
    display: block;
    right: 40px;
    top: 50%;
    transform: translate(0, -50%);
    z-index: 10000;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  .header .hamburger .line {
    width: 28px;
    height: 1px;
    background-color: black;
    border-radius: 8px;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  .header .line {
    display: block;
    margin: 8px auto;
  }
  .header .hamburger:hover {
    cursor: pointer;
  }
  .header {
    /* ONE */
  }
  .header .hamburger.is-active .line:nth-child(2) {
    opacity: 0;
  }
  .header .hamburger.is-active .line:nth-child(1) {
    -webkit-transform: translateY(32px) rotate(45deg);
    -ms-transform: translateY(32px) rotate(45deg);
    -o-transform: translateY(32px) rotate(45deg);
    transform: translateY(22px) rotate(45deg);
  }
  .header .hamburger.is-active .line:nth-child(3) {
    -webkit-transform: translateY(-10px) rotate(-45deg);
    -ms-transform: translateY(-10px) rotate(-45deg);
    -o-transform: translateY(-10px) rotate(-45deg);
    transform: translateY(-20px) rotate(-45deg);
  }
  .header-animation-down {
    height: 110px;
  }
}
@media screen and (max-width: 500px) {
  .header .header-icons {
    left: 20px;
  }
  .header .account-icon {
    right: 70px;
  }
  .header .hamburger {
    right: 20px;
  }
}
.footer {
  display: block;
  position: relative;
  width: 100%;
  height: auto;
  padding-top: 40px;
  padding-bottom: 40px;
  border-top: 1px solid black;
}
.footer a:hover {
  cursor: pointer;
}
.footer .footer-row {
  display: grid;
  position: relative;
  justify-items: center;
  align-items: center;
  grid-column-gap: 30px;
  width: fit-content;
  margin: 0 auto;
}
.footer .footer-row a {
  font-family: montserrat, sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 18px;
  line-height: initial;
}
@media screen and (max-width: 1199.98px) {
  .footer .footer-row a {
    font-size: 16px;
  }
}
@media screen and (max-width: 500px) {
  .footer .footer-row a {
    font-size: 16px;
  }
}
.footer .footer-row a {
  text-decoration: none;
  text-transform: uppercase;
  color: black;
}
.footer .footer-row-top {
  grid-template-columns: repeat(6, minmax(125px, 1fr));
  margin-bottom: 30px;
}
.footer .footer-row-top a {
  font-weight: 300;
  font-size: 14px;
  line-height: 17px;
}
.footer .footer-row-bottom {
  grid-template-columns: repeat(3, minmax(125px, 1fr));
}
.footer .footer-row-bottom a {
  font-weight: 300;
  font-size: 12px;
  line-height: 15px;
}
.footer #newsletter-popup-btn:hover {
  cursor: pointer;
}

@media screen and (max-width: 1199.98px) {
  .footer {
    display: block;
    position: relative;
    width: 100%;
    height: auto;
    padding-top: 40px;
    padding-bottom: 40px;
    border-top: 1px solid black;
  }
  .footer .footer-row {
    display: grid;
    position: relative;
    justify-items: center;
    align-items: center;
    grid-column-gap: 10px;
    width: fit-content;
    margin: 0 auto;
  }
  .footer .footer-row a {
    font-family: montserrat, sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 18px;
    line-height: initial;
    text-decoration: none;
    text-transform: uppercase;
    color: black;
  }
}
@media screen and (max-width: 1199.98px) and (max-width: 1199.98px) {
  .footer .footer-row a {
    font-size: 16px;
  }
}
@media screen and (max-width: 1199.98px) and (max-width: 500px) {
  .footer .footer-row a {
    font-size: 16px;
  }
}
@media screen and (max-width: 1199.98px) {
  .footer .footer-row-top {
    grid-template-columns: repeat(7, minmax(90px, 1fr));
    margin-bottom: 30px;
  }
  .footer .footer-row-top a {
    font-weight: 300;
    font-size: 12px;
    line-height: 15px;
  }
  .footer .footer-row-bottom {
    grid-template-columns: repeat(3, minmax(90px, 1fr));
  }
  .footer .footer-row-bottom a {
    font-weight: 300;
    font-size: 10px;
    line-height: 13px;
  }
}
@media screen and (max-width: 768px) {
  .footer {
    display: block;
    position: relative;
    width: 100%;
    height: auto;
    padding-top: 40px;
    padding-bottom: 40px;
    border-top: 1px solid black;
  }
  .footer .footer-row {
    display: grid;
    position: relative;
    justify-items: center;
    align-items: center;
    grid-column-gap: 10px;
    margin: 0 auto;
  }
  .footer .footer-row a {
    font-family: montserrat, sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 18px;
    line-height: initial;
    text-decoration: none;
    text-transform: uppercase;
    color: black;
  }
}
@media screen and (max-width: 768px) and (max-width: 1199.98px) {
  .footer .footer-row a {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) and (max-width: 500px) {
  .footer .footer-row a {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .footer .footer-row-top {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-evenly;
    margin-bottom: 30px;
    text-align: center;
    row-gap: 30px;
    width: calc(100% - 40px);
  }
  .footer .footer-row-top .item {
    width: 20%;
  }
  .footer .footer-row-top a {
    font-weight: 300;
    font-size: 12px;
    line-height: 15px;
  }
  .footer .footer-row-bottom {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-evenly;
    text-align: center;
    row-gap: 30px;
    width: calc(100% - 40px);
  }
  .footer .footer-row-bottom .item {
    width: 20%;
  }
  .footer .footer-row-bottom .item:last-of-type {
    text-align: center;
    width: 100%;
  }
  .footer .footer-row-bottom a {
    font-weight: 300;
    font-size: 12px;
    line-height: 13px;
  }
}
@media screen and (max-width: 500px) {
  .footer {
    display: block;
    position: relative;
    width: 100%;
    height: auto;
    padding-top: 40px;
    padding-bottom: 40px;
    border-top: 1px solid black;
  }
  .footer .footer-row {
    display: grid;
    position: relative;
    justify-items: center;
    align-items: center;
    grid-column-gap: 10px;
    margin: 0 auto;
  }
  .footer .footer-row a {
    font-family: montserrat, sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 18px;
    line-height: initial;
    text-decoration: none;
    text-transform: uppercase;
    color: black;
  }
}
@media screen and (max-width: 500px) and (max-width: 1199.98px) {
  .footer .footer-row a {
    font-size: 16px;
  }
}
@media screen and (max-width: 500px) and (max-width: 500px) {
  .footer .footer-row a {
    font-size: 16px;
  }
}
@media screen and (max-width: 500px) {
  .footer .footer-row-top {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-evenly;
    margin-bottom: 30px;
    text-align: center;
    row-gap: 30px;
    width: calc(100% - 40px);
  }
  .footer .footer-row-top .item {
    width: 20%;
  }
  .footer .footer-row-top a {
    font-weight: 300;
    font-size: 10px;
    line-height: initial;
  }
  .footer .footer-row-bottom {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-evenly;
    text-align: center;
    row-gap: 30px;
    width: calc(100% - 40px);
  }
  .footer .footer-row-bottom .item {
    width: 20%;
  }
  .footer .footer-row-bottom .item:last-of-type {
    text-align: center;
    width: 100%;
  }
  .footer .footer-row-bottom a {
    font-weight: 300;
    font-size: 10px;
    line-height: initial;
  }
}
.sidebar {
  display: block;
  position: fixed;
  width: 720px;
  height: 100vh;
  right: -840px;
  top: 0;
  transition: all ease-in-out 0.75s;
  background-color: white;
  box-shadow: 18px 16px 14px 10px black;
  z-index: 200;
  padding: 40px;
  padding-top: 163px;
  overflow-y: auto;
}
.sidebar .close {
  display: block;
  position: absolute;
  margin: 0;
  width: 24px;
  height: 24px;
  text-align: right;
  top: 40px;
  right: 100px;
}
.sidebar .close img {
  width: 24px;
  height: auto;
}
.sidebar .close #sidebar-close:hover {
  cursor: pointer;
}
.sidebar .sidebar-content {
  height: auto;
  padding-bottom: 200px;
}
.sidebar .sidebar-block {
  display: grid;
  position: relative;
  width: auto;
  height: auto;
  padding: 40px 20px;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid black;
  justify-items: left;
  text-transform: uppercase;
}
.sidebar .sidebar-block .right-col {
  display: grid;
  position: relative;
  grid-template-rows: auto;
  grid-row-gap: 20px;
  justify-items: left;
}
.sidebar .sidebar-block p {
  font-family: montserrat, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: initial;
  text-transform: uppercase;
}
@media screen and (max-width: 1199.98px) {
  .sidebar .sidebar-block p {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  .sidebar .sidebar-block p {
    font-size: 18px;
  }
}
.sidebar .sidebar-block p {
  font-size: 16px;
  font-weight: 300;
  max-width: 300px;
}
.sidebar .sidebar-block a {
  font-family: montserrat, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: initial;
  text-transform: uppercase;
}
@media screen and (max-width: 1199.98px) {
  .sidebar .sidebar-block a {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  .sidebar .sidebar-block a {
    font-size: 18px;
  }
}
.sidebar .sidebar-block a {
  font-size: 16px;
  color: black;
  text-decoration: none;
  transition: all ease-in-out 0.75s;
}
.sidebar .sidebar-block a:hover {
  cursor: pointer;
  text-decoration: underline;
}

@media screen and (max-width: 768px) {
  .sidebar {
    width: calc(100% - 80px);
  }
}
@media screen and (max-width: 768px) {
  .sidebar {
    width: calc(100% - 60px);
    right: -100%;
    top: 0;
    transition: all ease-in-out 0.75s;
    background-color: white;
    box-shadow: 18px 16px 14px 10px black;
    z-index: 200;
    padding: 30px;
    padding-top: 110px;
    overflow-y: auto;
  }
  .sidebar .close {
    display: block;
    position: absolute;
    margin: 20px 0;
    width: 100%;
    height: auto;
    text-align: right;
    top: 25px;
    right: 40px;
  }
  .sidebar .close #sidebar-close {
    width: 24px;
  }
  .sidebar .close #sidebar-close:hover {
    cursor: pointer;
  }
  .sidebar .sidebar-content {
    height: auto;
    padding-bottom: 200px;
  }
  .sidebar .sidebar-block {
    display: grid;
    position: relative;
    width: auto;
    height: auto;
    padding: 40px 20px;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid black;
    justify-items: left;
    text-transform: uppercase;
  }
  .sidebar .sidebar-block .right-col {
    display: grid;
    position: relative;
    grid-template-rows: auto;
    grid-row-gap: 20px;
    justify-items: left;
  }
  .sidebar .sidebar-block p {
    font-family: montserrat, sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: initial;
    text-transform: uppercase;
    font-weight: 300;
  }
}
@media screen and (max-width: 768px) and (max-width: 1199.98px) {
  .sidebar .sidebar-block p {
    font-size: 18px;
    line-height: 20px;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .sidebar .sidebar-block p {
    font-size: 18px;
    line-height: 20px;
  }
}
@media screen and (max-width: 768px) {
  .sidebar .sidebar-block a {
    font-family: montserrat, sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: initial;
    text-transform: uppercase;
    color: black;
    text-decoration: none;
    transition: all ease-in-out 0.75s;
  }
}
@media screen and (max-width: 768px) and (max-width: 1199.98px) {
  .sidebar .sidebar-block a {
    font-size: 18px;
    line-height: 20px;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .sidebar .sidebar-block a {
    font-size: 18px;
    line-height: 20px;
  }
}
@media screen and (max-width: 768px) {
  .sidebar .sidebar-block a:hover {
    text-decoration: underline;
  }
}
@media screen and (max-width: 500px) {
  .sidebar {
    width: calc(100% - 40px);
    padding: 20px;
    padding-top: 110px;
  }
  .sidebar .sidebar-block {
    display: grid;
    position: relative;
    width: auto;
    height: auto;
    padding: 40px 20px;
    grid-template-columns: 1fr;
    grid-row-gap: 20px;
    border-top: 1px solid black;
    justify-items: left;
    text-transform: uppercase;
  }
  .sidebar .sidebar-block .right-col {
    display: grid;
    position: relative;
    width: 100%;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    grid-row-gap: 20px;
    justify-items: left;
  }
  .sidebar .sidebar-block p {
    font-size: 15px;
    font-weight: 300;
  }
  .sidebar .sidebar-block a {
    font-size: 15px;
    color: black;
    text-decoration: none;
    transition: all ease-in-out 0.75s;
  }
  .sidebar .sidebar-block a:hover {
    text-decoration: underline;
  }
}
.search {
  display: block;
  position: fixed;
  width: 720px;
  height: 100vh;
  left: -840px;
  top: 0;
  transition: all ease-in-out 0.75s;
  background-color: white;
  box-shadow: 9px 16px 15px -18px black;
  z-index: 200;
  padding: 40px;
  padding-top: 32px;
  overflow-y: auto;
}
.search .close {
  display: block;
  position: relative;
  margin: 20px 0;
  width: 100%;
  height: auto;
}
.search .close h1 {
  font-family: montserrat, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: initial;
  text-transform: uppercase;
}
@media screen and (max-width: 1199.98px) {
  .search .close h1 {
    font-size: 18px;
    line-height: 20px;
  }
}
@media screen and (max-width: 768px) {
  .search .close h1 {
    font-size: 18px;
    line-height: 20px;
  }
}
.search .close h1 {
  display: inline-block;
}
.search .close #search-close {
  float: right;
}
.search .close #search-close:hover {
  cursor: pointer;
}
.search .close #search-icon {
  width: 24px;
  vertical-align: sub;
  margin-left: 10px;
}
.search .search-input {
  margin-bottom: 30px;
}
.search .search-input input {
  margin-left: 0px;
  height: 30px;
  width: 300px;
  border: none;
  outline: none;
  vertical-align: top;
  font-family: montserrat, sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 18px;
  line-height: initial;
}
@media screen and (max-width: 1199.98px) {
  .search .search-input input {
    font-size: 16px;
  }
}
@media screen and (max-width: 500px) {
  .search .search-input input {
    font-size: 16px;
  }
}
.search .search-input input {
  text-align: left;
}
.search .search-input input::placeholder {
  color: #bcbcbc;
}
.search .results {
  display: grid;
  position: relative;
  width: calc(100% - 40px);
  height: auto;
  padding: 40px 20px;
  grid-template-rows: auto;
  border-top: 1px solid black;
  justify-items: left;
  text-transform: uppercase;
}
.search .results .result-item {
  display: grid;
  position: relative;
  width: 100%;
  height: auto;
  grid-template-columns: 2fr 4fr;
  grid-column-gap: 40px;
  margin-bottom: 40px;
}
.search .results .result-item h1 {
  font-family: montserrat, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: initial;
  text-transform: uppercase;
}
@media screen and (max-width: 1199.98px) {
  .search .results .result-item h1 {
    font-size: 24px;
    line-height: 26px;
  }
}
@media screen and (max-width: 768px) {
  .search .results .result-item h1 {
    font-size: 22px;
    line-height: 24px;
  }
}
@media screen and (max-width: 500px) {
  .search .results .result-item h1 {
    font-size: 20px;
    line-height: 22px;
  }
}
.search .results .result-item h1 {
  margin-bottom: 10px;
}
.search .results .result-item p {
  font-family: montserrat, sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 18px;
  line-height: initial;
}
@media screen and (max-width: 1199.98px) {
  .search .results .result-item p {
    font-size: 16px;
  }
}
@media screen and (max-width: 500px) {
  .search .results .result-item p {
    font-size: 16px;
  }
}
.search .results .result-item p {
  text-transform: initial;
  margin-bottom: 30px;
}
.search .results .result-item a {
  font-family: montserrat, sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 18px;
  line-height: initial;
}
@media screen and (max-width: 1199.98px) {
  .search .results .result-item a {
    font-size: 16px;
  }
}
@media screen and (max-width: 500px) {
  .search .results .result-item a {
    font-size: 16px;
  }
}
.search .results .result-item a {
  font-weight: 500;
  font-size: 16px;
  color: black;
  text-decoration: none;
}
.search .results .result-item a:last-of-type {
  text-decoration: underline;
}
.search .results .result-item img {
  width: 100%;
  height: auto;
}
.search .search-empty {
  display: block;
  text-align: center;
}
.search .search-empty h1 {
  font-family: montserrat, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: initial;
  text-transform: uppercase;
}
@media screen and (max-width: 1199.98px) {
  .search .search-empty h1 {
    font-size: 24px;
    line-height: 26px;
  }
}
@media screen and (max-width: 768px) {
  .search .search-empty h1 {
    font-size: 22px;
    line-height: 24px;
  }
}
@media screen and (max-width: 500px) {
  .search .search-empty h1 {
    font-size: 20px;
    line-height: 22px;
  }
}

@media screen and (max-width: 768px) {
  .search {
    width: calc(100% - 80px);
  }
}
@media screen and (max-width: 768px) {
  .search {
    display: block;
    position: fixed;
    width: calc(100% - 40px);
    height: 100vh;
    left: -120%;
    top: 0;
    transition: all ease-in-out 0.75s;
    background-color: white;
    box-shadow: 18px 16px 16px -18px black;
    z-index: 200;
    padding: 20px;
    padding-top: 0px;
  }
  .search .close {
    display: block;
    position: relative;
    margin: 20px 0;
    width: 100%;
    height: auto;
  }
  .search .close h1 {
    font-family: montserrat, sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: initial;
    text-transform: uppercase;
    display: inline-block;
  }
}
@media screen and (max-width: 768px) and (max-width: 1199.98px) {
  .search .close h1 {
    font-size: 24px;
    line-height: 26px;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .search .close h1 {
    font-size: 22px;
    line-height: 24px;
  }
}
@media screen and (max-width: 768px) and (max-width: 500px) {
  .search .close h1 {
    font-size: 20px;
    line-height: 22px;
  }
}
@media screen and (max-width: 768px) {
  .search .close #search-close {
    position: absolute;
    width: 32px;
    right: 0px;
    top: -5px;
  }
  .search .close #search-close:hover {
    cursor: pointer;
  }
  .search .search-input {
    margin-bottom: 20px;
  }
  .search .search-input input {
    margin-left: 20px;
    height: 20px;
    width: 300px;
    border: none;
    outline: none;
    vertical-align: top;
    font-family: montserrat, sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 18px;
    line-height: initial;
    font-size: 24px;
    text-align: left;
    text-transform: uppercase;
  }
}
@media screen and (max-width: 768px) and (max-width: 1199.98px) {
  .search .search-input input {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) and (max-width: 500px) {
  .search .search-input input {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .search .results {
    display: grid;
    position: relative;
    width: 100%;
    height: auto;
    padding: 20px 0px;
    grid-template-rows: auto;
    border-top: 1px solid black;
    justify-items: left;
    text-transform: uppercase;
  }
  .search .results .result-item {
    grid-column-gap: 20px;
  }
  .search .results .result-item h2 {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .search .results .result-item p {
    font-size: 14px;
    margin-bottom: 15px;
  }
  .search .results .result-item a {
    font-size: 12px;
    color: black;
  }
}
@media screen and (max-width: 500px) {
  .results .result-item h2 {
    font-size: 12px;
    margin-bottom: 5px;
  }
  .results .result-item p {
    font-size: 12px;
    margin-bottom: 10px;
  }
  .results .result-item a {
    font-size: 9px;
    color: black;
  }
}

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