.logo {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 150px;
  height: 100%;
  padding-top: 0px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.navbar {
  position: fixed;
  left: auto;
  top: 0%;
  right: 0%;
  bottom: auto;
  width: 100%;
  height: 90px;
  padding: 0px 30px;
  background-color: #fff;
  font-family: Ongea-Font, sans-serif;
}

.navlink {
  margin-right: 40px;
  margin-left: 40px;
  padding: 10px 15px;
  border-radius: 10px;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  letter-spacing: -0.5px;
}

.navlink:hover {
  background-color: rgba(38, 155, 110, 0.3);
  color: #269b6e;
}

.cta-btn {
  display: inline-block;
  padding-top: 10px;
  padding-bottom: 10px;
  border-radius: 10px;
  background-color: #269b6e;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  letter-spacing: -0.5px;
}

.cta-btn:hover {
  background-color: #111;
}

.navmenu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  padding-top: 0px;
  padding-bottom: 0px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.featured-section {
  min-height: 80vh;
  font-size: 16px;
  line-height: 17px;
}

.featured-container {
  margin-top: 20vh;
}

.featured-title {
  max-width: 500px;
  margin-right: auto;
  margin-left: auto;
  font-family: Ongea-Font, sans-serif;
  color: #000;
  font-size: 72px;
  line-height: 65px;
  font-weight: 900;
  text-align: center;
  letter-spacing: -3px;
}

.featured-title.wider {
  max-width: 700px;
}

.body {
  padding-bottom: 20vh;
  font-family: Ongea-Font, sans-serif;
}

.featured-p {
  max-width: 350px;
  margin: 40px auto 20px;
  color: #999;
  font-size: 20px;
  line-height: 24px;
  font-weight: 400;
  text-align: center;
  letter-spacing: -0.5px;
}

.featured-p.wider {
  max-width: 400px;
}

.featured-date {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 60px;
  height: 25px;
  margin-right: auto;
  margin-left: auto;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 10px;
  background-color: rgba(38, 155, 110, 0.15);
}

.featured-date-text {
  color: #269b6e;
  font-weight: 700;
}

.featured-image-wrapper {
  position: relative;
  width: 720px;
  height: 600px;
  margin-top: 30px;
  margin-right: auto;
  margin-left: auto;
  background-color: #fafafa;
}

.notification-wrapper {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.8);
}

.notification-text {
  color: #fff;
  font-size: 18px;
  line-height: 24px;
  text-align: center;
  letter-spacing: -0.5px;
}

.featured-image-img {
  position: absolute;
  left: 0%;
  top: 0%;
  right: auto;
  bottom: auto;
  z-index: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: 50% 50%;
  object-position: 50% 50%;
}

.featured-image-img.left {
  -o-object-position: 0% 0%;
  object-position: 0% 0%;
}

.pre-footer {
  position: fixed;
  left: 0%;
  top: auto;
  right: auto;
  bottom: 0%;
  z-index: 30;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 80px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #fafafa;
}

.prefooter-txt {
  max-width: 800px;
  margin-right: auto;
  margin-left: auto;
  font-size: 18px;
  text-align: center;
  letter-spacing: -0.5px;
}

.footerlink {
  color: #269b6e;
  font-weight: 500;
  text-decoration: none;
}

@media screen and (max-width: 991px) {
  .navbar {
    display: block;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .navlink {
    display: none;
  }
  .featured-title {
    font-size: 65px;
    line-height: 60px;
  }
  .featured-title.wider {
    max-width: 600px;
  }
  .featured-image-wrapper {
    width: 80%;
    height: 500px;
  }
  .menu-btn {
    padding: 0px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .menu-icon {
    padding: 10px;
  }
  .icon-wrapper {
    display: block;
    width: 30px;
    height: 100%;
    float: right;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .icon-wrapper-inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

@media screen and (max-width: 767px) {
  .navbar {
    padding-left: 10px;
  }
  .featured-title {
    max-width: 300px;
    font-size: 45px;
    line-height: 40px;
  }
  .featured-title.wider {
    max-width: 400px;
  }
  .pre-footer {
    height: 120px;
  }
  .prefooter-txt {
    max-width: 400px;
    font-size: 16px;
  }
}

@media screen and (max-width: 479px) {
  .logo {
    width: 100px;
  }
  .cta-btn {
    padding: 10px 15px;
    font-size: 16px;
    line-height: 18px;
  }
  .featured-title {
    max-width: 250px;
    font-size: 35px;
    line-height: 30px;
  }
  .featured-title.wider {
    max-width: 85%;
  }
  .featured-p {
    max-width: 90%;
    margin-top: 20px;
    padding-right: 0px;
    padding-left: 0px;
    font-size: 17px;
    line-height: 20px;
  }
  .featured-p.wider {
    max-width: 90%;
  }
  .featured-image-wrapper {
    width: 90%;
    height: 300px;
  }
  .prefooter-txt {
    max-width: 95%;
    padding-right: 20px;
    padding-left: 20px;
    font-size: 14px;
    line-height: 16px;
  }
}

@font-face {
  font-family: 'Ongea-Font';
  src: url('../fonts/CircularStd-BoldItalic.woff2') format('woff2'), url('../fonts/CircularStd-BoldItalic.eot') format('embedded-opentype'), url('../fonts/CircularStd-BoldItalic.woff') format('woff'), url('../fonts/CircularStd-BoldItalic.ttf') format('truetype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Ongea-Font';
  src: url('../fonts/CircularStd-Book.woff2') format('woff2'), url('../fonts/CircularStd-Book.eot') format('embedded-opentype'), url('../fonts/CircularStd-Book.woff') format('woff'), url('../fonts/CircularStd-Book.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Ongea-Font';
  src: url('../fonts/CircularStd-Black.woff2') format('woff2'), url('../fonts/CircularStd-Black.eot') format('embedded-opentype'), url('../fonts/CircularStd-Black.woff') format('woff'), url('../fonts/CircularStd-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Ongea-Font';
  src: url('../fonts/CircularStd-BlackItalic.woff2') format('woff2'), url('../fonts/CircularStd-BlackItalic.eot') format('embedded-opentype'), url('../fonts/CircularStd-BlackItalic.woff') format('woff'), url('../fonts/CircularStd-BlackItalic.ttf') format('truetype');
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Ongea-Font';
  src: url('../fonts/CircularStd-Bold.woff2') format('woff2'), url('../fonts/CircularStd-Bold.eot') format('embedded-opentype'), url('../fonts/CircularStd-Bold.woff') format('woff'), url('../fonts/CircularStd-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Ongea-Font';
  src: url('../fonts/CircularStd-BookItalic.woff2') format('woff2'), url('../fonts/CircularStd-BookItalic.eot') format('embedded-opentype'), url('../fonts/CircularStd-BookItalic.woff') format('woff'), url('../fonts/CircularStd-BookItalic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Ongea-Font';
  src: url('../fonts/CircularStd-Medium.woff2') format('woff2'), url('../fonts/CircularStd-Medium.eot') format('embedded-opentype'), url('../fonts/CircularStd-Medium.woff') format('woff'), url('../fonts/CircularStd-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Ongea-Font';
  src: url('../fonts/CircularStd-MediumItalic.woff2') format('woff2'), url('../fonts/CircularStd-MediumItalic.eot') format('embedded-opentype'), url('../fonts/CircularStd-MediumItalic.woff') format('woff'), url('../fonts/CircularStd-MediumItalic.ttf') format('truetype');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}