@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 main {
  overflow: hidden;
}

body main #hero-section {
  height: 784px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow: hidden;
  position: relative;
}

body main #hero-section .hero-images {
  height: inherit;
  background: #210309;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

body main #hero-section .hero-images div {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: opacity 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

body main #hero-section .hero-images div.active-image {
  opacity: 1;
  -webkit-transition: opacity 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out;
}

body main #hero-section .hero-dots {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  bottom: 16px;
  height: 16px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

body main #hero-section .hero-dots div {
  width: 10px;
  height: 10px;
  margin: 0 8px;
  background: #96918d;
  border-radius: 50%;
  cursor: pointer;
  -webkit-transition: background 0.2s ease-in-out;
  transition: background 0.2s ease-in-out;
}

body main #hero-section .hero-dots div:hover {
  background: #5f5c59;
}

body main #hero-section .hero-dots div.active-dot {
  background: white;
}

body main #learn-more-section {
  background: url("/assets/background.png");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 104px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

body main #learn-more-section span {
  font-size: 48px;
  line-height: 64px;
  font-family: "Romana BT Light";
  font-weight: 400;
  text-transform: uppercase;
  color: #e8e0d7;
  letter-spacing: 0.04em;
  max-width: 85%;
  opacity: 0.9;
}

body main #learn-more-section a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

body main #learn-more-section button {
  margin-top: 24px;
  line-height: 13.6px;
  letter-spacing: 0.1em;
}

body main #featured-section {
  display: none !important;
  padding: 64px 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #e8e0d7;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

body main #featured-section .featured-section__heading {
  color: #013a46;
  font-family: "Proxima Nova Regular";
  font-style: normal;
  font-weight: 600;
  font-size: 12.8px;
  line-height: 32px;
  text-align: center;
  letter-spacing: 0.2em;
  margin-bottom: 16px;
}

body main #featured-section .featured-section__content {
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 1200px;
  gap: 35px;
}

body main #featured-section .featured-section__content .featured-section__content-box {
  width: 244px;
  height: 244px;
  margin: 14.4x;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

body main #featured-section .featured-section__content .featured-section__content-box .featured-section__content-box-image {
  margin-bottom: -24px;
}

body main #featured-section .featured-section__content .featured-section__content-box .featured-section__content-box-image img {
  width: 244px;
  height: 244px;
}

body main #featured-section .featured-section__content .featured-section__content-box .featured-section__content-box-text {
  width: 100%;
  height: 20px;
  background: #5b6235;
  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;
}

body main #featured-section .featured-section__content .featured-section__content-box .featured-section__content-box-text span {
  font-family: "Romana BT Light";
  font-weight: 320px;
  font-style: normal;
  font-weight: normal;
  font-size: 11.2px;
  line-height: 13.6px;
  text-align: center;
  letter-spacing: 0.02em;
  color: #e8e0d7;
}

body main #news-section {
  padding: 60px;
  padding-bottom: 136px;
  background: #967670;
  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;
}

body main #news-section span {
  font-family: "Proxima Nova Regular";
  font-style: normal;
  font-weight: 600;
  font-size: 12.8px;
  line-height: 32px;
  text-align: center;
  letter-spacing: 0.2em;
  color: #013a46;
}

body main #news-section form {
  margin-top: 40px;
  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;
}

body main #news-section form input {
  width: 240px;
  height: 40px;
  border: none;
  outline: none;
  font-family: "Proxima Nova Regular";
  font-style: normal;
  font-size: 9.6pt;
  line-height: 22.4px;
  text-align: center;
  letter-spacing: 0.05em;
  color: #013a46;
}

body main #news-section form input::-webkit-input-placeholder {
  color: #013a46;
}

body main #news-section form input:-ms-input-placeholder {
  color: #013a46;
}

body main #news-section form input::-ms-input-placeholder {
  color: #013a46;
}

body main #news-section form input::placeholder {
  color: #013a46;
}

body main #news-section form input:focus {
  outline: none;
  border: none;
}

body main #news-section form button {
  width: 120px;
  height: 40px;
  background: #013a46;
  letter-spacing: 0.05em;
  color: #e8e0d7;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

body main #news-section button {
  width: 120px;
  height: 40px;
  background: #013a46;
  letter-spacing: 0.05em;
  color: #e8e0d7;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media only screen and (max-width: 480px) {
  #news-section {
    padding: 16px !important;
  }
  #news-section span {
    margin-top: 12px !important;
  }
  form {
    margin-top: 24px !important;
    margin-bottom: 80px;
  }
  form input {
    max-width: 50vw !important;
  }
  form button {
    min-width: 80px !important;
  }
  .main-content-block div div.events-section__text {
    padding: 32px !important;
  }
  #news-section {
    padding-bottom: 80px !important;
  }
}
