@font-face {
  font-family: "Proxima Nova Regular";
  src: url("/fonts/Proxima Nova Regular.otf");
}

@font-face {
  font-family: "Proxima Nova Thin";
  src: url("/fonts/Proxima Nova Thin.otf");
}

@font-face {
  font-family: "Proxima Nova Bold";
  src: url("/fonts/Proxima Nova Bold.otf");
}

@font-face {
  font-family: "Proxima Nova Extrabold";
  src: url("/fonts/Proxima Nova Extrabold.otf");
}

@font-face {
  font-family: "Proxima Nova Black";
  src: url("/fonts/Proxima Nova Black.otf");
}

@font-face {
  font-family: "Romana BT Regular";
  src: url("/fonts/Romana BT Regular.ttf");
}

@font-face {
  font-family: "Romana BT Light";
  src: url("/fonts/Romana BT Light.otf");
}

@font-face {
  font-family: "Romana BT Bold";
  src: url("/fonts/Romana BT Bold.ttf");
}

@font-face {
  font-family: "TradeGothic";
  src: url("/fonts/TradeGothic.ttf");
}

.animated_fadeIn {
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}

.animFadeIn {
  opacity: 1 !important;
}

.animated_revealFromLeft {
  -webkit-transition: 0.6s all ease-in-out;
  transition: 0.6s all ease-in-out;
  -webkit-clip-path: inset(0px 100% 0px 0px);
          clip-path: inset(0px 100% 0px 0px);
}

.animRevealFromLeft {
  -webkit-clip-path: inset(0px 0% 0px 0px);
          clip-path: inset(0px 0% 0px 0px);
}

.animated_revealFromRight {
  -webkit-transition: 0.6s all ease-in-out;
  transition: 0.6s all ease-in-out;
  -webkit-clip-path: inset(0px 0px 0px 100%);
          clip-path: inset(0px 0px 0px 100%);
}

.animRevealFromRight {
  -webkit-clip-path: inset(0px 0% 0px 0px);
          clip-path: inset(0px 0% 0px 0px);
}

.animated_slideFromRight {
  opacity: 0;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
  -webkit-transition: 0.6s all ease-in-out;
  transition: 0.6s all ease-in-out;
}

.animSlideFromRight {
  opacity: 1 !important;
  -webkit-transform: translateX(0px) !important;
          transform: translateX(0px) !important;
}

.animated_slideFromLeft {
  opacity: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: 0.6s all ease-in-out;
  transition: 0.6s all ease-in-out;
}

.animSlideFromLeft {
  opacity: 1 !important;
  -webkit-transform: translateX(0px) !important;
          transform: translateX(0px) !important;
}

.animated_slideFromTop {
  opacity: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 0.6s all ease-in-out;
  transition: 0.6s all ease-in-out;
}

.animSlideFromTop {
  opacity: 1 !important;
  -webkit-transform: translateX(0px) !important;
          transform: translateX(0px) !important;
}

.animated_slideFromBottom {
  opacity: 0;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
  -webkit-transition: 0.6s all ease-in-out;
  transition: 0.6s all ease-in-out;
}

.animSlideFromBottom {
  opacity: 1 !important;
  -webkit-transform: translateX(0px) !important;
          transform: translateX(0px) !important;
}

.animated_zoomIn {
  opacity: 0;
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
  -webkit-filter: saturate(0);
          filter: saturate(0);
  -webkit-transition: 0.4s all ease-in-out;
  transition: 0.4s all ease-in-out;
}

.animZoomIn {
  opacity: 1 !important;
  -webkit-transform: scale(1) !important;
          transform: scale(1) !important;
  -webkit-filter: none !important;
          filter: none !important;
}

.animated_expandToRight {
  width: 0%;
  -webkit-transition: 0.2s width ease-in-out;
  transition: 0.2s width ease-in-out;
}

.animExpandToRight {
  width: 100% !important;
}

body {
  overflow-x: hidden;
  padding-top: 53px;
}

header {
  background: #6c3c41;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 12px 32px;
  position: fixed;
  width: 100vw;
  top: 0;
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
          box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
  z-index: 100;
  min-height: 53px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

header .navigation__button {
  width: 200px !important;
  height: 14.4px;
}

header .navigation__button .navigation__button-wrapper {
  height: inherit;
  width: 18.4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  cursor: pointer;
}

header .navigation__button .navigation__button-wrapper div {
  width: 100%;
  height: 1px;
  background: #fffafa;
}

header .navigation__links {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  width: 100%;
}

header .navigation__links > a,
header .navigation__links > div {
  font-family: "Proxima Nova Regular";
  color: #e8e0d7;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.08rem;
  margin-right: 16px;
  display: inline-block;
  position: relative;
  text-decoration: none;
}

header .navigation__links > a:not(.dropdown):hover,
header .navigation__links > div:not(.dropdown):hover {
  color: white;
}

header .navigation__links > a.selected,
header .navigation__links > div.selected {
  color: white;
  font-family: "Proxima Nova Bold";
}

header .navigation__links > a.selected::after,
header .navigation__links > div.selected::after {
  width: 100% !important;
}

header .navigation__links > a:not(.dropdown)::after,
header .navigation__links > div:not(.dropdown)::after {
  -webkit-transition: 0.2s ease-in-out width;
  transition: 0.2s ease-in-out width;
  position: absolute;
  content: "";
  height: 2px;
  width: 0;
  background: #fff;
  top: 100%;
  left: 0;
}

header .navigation__links > div.dropdown {
  padding-right: 15px;
}

header .navigation__links > div.dropdown:hover {
  color: white;
}

header .navigation__links > div.dropdown::after {
  content: "";
  position: absolute;
  top: 4px;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  border-color: #e8e0d7 transparent transparent transparent;
}

header .navigation__links > div.dropdown > div {
  position: absolute;
  background: #6c3c41;
  padding: 10px;
  top: 33px;
  right: -17px;
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 10px;
  padding-right: 31px;
  color: #e8e0d7;
}

header .navigation__links > div.dropdown > div > a {
  padding: 5px 0;
  white-space: nowrap;
}

header .navigation__links > div.dropdown > div > a:hover {
  color: white;
}

header .navigation__links > div.dropdown.dropdown.open > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

header .navigation__links:last-of-type {
  text-align: right;
}

header .navigation__links:last-of-type a,
header .navigation__links:last-of-type div {
  margin-right: 0;
  margin-left: 16px;
}

.header-link-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 0px;
  -webkit-transition: height 0.2s;
  transition: height 0.2s;
  overflow: hidden;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #6c3c41;
}

.header-link-menu .header-mobile-links {
  display: none;
}

.header-link-menu a {
  margin: 0 16px;
  font-family: "Proxima Nova Regular";
  color: #fff;
  position: relative;
  opacity: 0;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}

.header-link-menu a:hover::after {
  width: 100%;
}

.header-link-menu a::after {
  -webkit-transition: 0.2s ease-in-out width;
  transition: 0.2s ease-in-out width;
  position: absolute;
  content: "";
  height: 2px;
  width: 0;
  background: #fff;
  top: 100%;
  left: 0;
}

.header-link-menu.header-link-menu_expanded {
  padding: 12px 32px;
  height: 24px;
}

.header-link-menu.header-link-menu_expanded a {
  opacity: 1;
}

.main-content-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.main-content-block div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.main-content-block div div.events-section__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.main-content-block div div.events-section__text .events-section__text-wrapper {
  width: 100%;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: unset;
}

.main-content-block div div.events-section__text .events-section__text-wrapper span {
  font-family: "Proxima Nova Regular";
  font-style: normal;
  font-size: 14.4px;
  line-height: 32px;
  /* or 250% */
  letter-spacing: 0.2em;
  color: #e8e0d7;
  text-transform: uppercase;
}

.main-content-block div div.events-section__text .events-section__text-wrapper div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: unset;
  width: 100%;
}

.main-content-block div div.events-section__text .events-section__text-wrapper div h1 {
  font-family: "Romana BT Light";
  line-height: 51.2px;
  font-size: 28.8px;
  letter-spacing: 0.03em;
  color: #e8e0d7;
  font-weight: lighter;
  width: 100%;
}

.main-content-block div div.events-section__text .events-section__text-wrapper div h2 {
  font-family: "Romana BT Light";
  line-height: 40px;
  font-size: 17.6px;
  letter-spacing: 0.03em;
  color: #e8e0d7;
  font-weight: lighter;
  width: 100%;
  min-height: 42px;
  margin-top: 5px;
}

.main-content-block div div.events-section__text .events-section__text-wrapper div button {
  line-height: 13.6px;
  letter-spacing: 0.05em;
  margin-top: 32px;
}

.main-content-block div div.events-section__image {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.main-content-block div:nth-child(odd) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.main-content-block div:nth-child(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

footer {
  position: relative;
  background: #013a46;
  padding: 84px 76px;
}

footer .bb-footer-logo {
  top: -23%;
  left: 65%;
  position: absolute;
  width: 250px;
}

footer .footer-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 104px;
}

footer .footer-links a {
  font-weight: lighter;
  letter-spacing: 1px;
}

footer .footer-links a:hover {
  text-decoration: underline;
}

footer .footer-links .footer-links__social img {
  margin-right: 12px;
}

footer .footer-links .footer-links__redirect {
  color: #e8e0d7;
}

footer .footer-links .footer-links__redirect span {
  cursor: pointer;
  margin-right: 16px;
  font-family: "Proxima Nova Regular";
  font-style: normal;
  font-weight: 600;
  font-size: 14.4px;
  line-height: 13.6px;
  text-align: center;
}

footer .footer-links .footer-links__redirect span:nth-child(1) {
  margin-left: 8px;
}

footer .footer-copyright {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: "TradeGothic";
  font-size: 9px;
  line-height: 11px;
  text-align: center;
  letter-spacing: 0.05em;
  font-weight: 200;
  color: #e8e0d7;
}

* {
  margin: 0;
  padding: 0;
  outline: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  color: #013a46;
  background: #e8e0d7;
  font-style: normal;
  height: 36px;
  padding: 0 25px;
  outline: none;
  letter-spacing: 2px;
  border: none;
  text-transform: uppercase;
  font-family: "Proxima Nova Regular";
  font-size: 9.6pt;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: unset !important;
  -webkit-transition: -webkit-filter 0.3s;
  transition: -webkit-filter 0.3s;
  transition: filter 0.3s;
  transition: filter 0.3s, -webkit-filter 0.3s;
}

button:hover {
  -webkit-filter: brightness(1.1) contrast(1.1);
          filter: brightness(1.1) contrast(1.1);
}

.main-container {
  height: 752px;
  max-height: calc(800px - 144px);
  width: 50%;
  padding: 72px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media only screen and (max-width: 980px) {
  header .navigation__links > a,
  header .navigation__links > div {
    font-size: 10px;
    letter-spacing: 0;
  }
  .main-container {
    height: 440px !important;
  }
  #learn-more-section {
    padding: 32px !important;
  }
  #learn-more-section span {
    font-size: 19.2pt !important;
    line-height: 34.4px !important;
  }
  .main-content-block div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
    width: 100% !important;
  }
  .main-content-block div div {
    width: calc(100% - 46px) !important;
  }
  .main-content-block div div.events-section__text {
    padding: 48px;
  }
  .main-content-block div h1 {
    font-size: 20px !important;
    line-height: 34.4px !important;
  }
  .main-content-block div .events-section__text-wrapper {
    width: 100% !important;
  }
}

@media only screen and (max-width: 980px) {
  footer .bb-footer-logo {
    left: 50% !important;
    -webkit-transform: translateX(-50%) !important;
            transform: translateX(-50%) !important;
  }
}

@media only screen and (max-width: 480px) {
  #hero-section {
    height: 400px !important;
  }
  .main-container {
    height: 720px !important;
  }
  header {
    min-height: 53px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  header .navigation__links {
    width: 100px;
  }
  header .navigation__links a {
    display: none;
  }
  header .navigation__links > div.dropdown {
    display: none;
  }
  header .navigation__logo {
    position: absolute;
    left: 50vw;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    top: 13px;
  }
  .header-link-menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: fixed;
    top: 53px;
    z-index: 100;
    width: 100vw;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.5);
            box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.5);
  }
  .header-link-menu .header-mobile-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    border-top: 1px solid #e8e0d7;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 80px;
    margin-top: 8px;
    padding: 8px 0;
  }
  .header-link-menu a {
    margin: 8px 0;
  }
  .header-link-menu.header-link-menu_expanded {
    height: 296px;
  }
  .header-link-menu.header-link-menu_expanded a {
    white-space: nowrap;
  }
  footer .bb-footer-logo {
    left: 50% !important;
    top: -9%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 150px;
  }
  footer .footer-links {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
    margin-bottom: 80px !important;
  }
  footer .footer-links .footer-links__social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  footer .footer-links .footer-links__social a {
    margin: 8px 0;
  }
  footer .footer-links .footer-links__social a img {
    margin: 0 !important;
  }
  footer .footer-links .footer-links__redirect {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  footer .footer-links .footer-links__redirect span {
    margin: 8px 0;
  }
  footer .footer-copyright {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
