/* Custom Colors */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700&display=swap");
.text-black {
  color: #606161;
}

.text-blue {
  color: #1f7a85;
}

.text-gray {
  color: #878f8f;
}

/* Mediascreens */
/* Main font family */
html,
body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
  overflow-x: hidden;
  height: auto;
  color: #606161;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow: hidden;
}

.z-1 {
  z-index: 1;
}

.z-2 {
  z-index: 2;
}

.z-3 {
  z-index: 3;
}

.z-4 {
  z-index: 4;
}

.z-5 {
  z-index: 5;
}

.website__logo {
  width: auto;
  height: 100px;
}

.navbar .navbar-collapse {
  text-align: center;
}

.navbar {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding-top: 18px;
  padding-bottom: 18px;
  box-shadow: 0 10px 20px 10px rgba(90, 97, 98, 0.1882352941);
  z-index: 599;
}
.navbar .active {
  border-bottom: 2px solid #1f7a85;
  color: #1f7a85 !important;
}
.navbar .website__logo {
  height: 70px;
  transition: height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.navbar.scrolled {
  padding-top: 6px;
  padding-bottom: 6px;
  box-shadow: 0 2px 8px 0 rgba(90, 97, 98, 0.1882352941);
}
.navbar.scrolled .website__logo {
  height: 40px;
}

.feature {
  scroll-margin-top: 80px;
}

.navbar-brand {
  font-weight: 600;
  color: #1f7a85 !important;
}

.nav-item {
  margin-left: 10px;
  margin-right: 10px;
}

.nav-item:hover {
  border-bottom: 2px solid #1f7a85;
}

.popup_nav {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #e2e7eb;
  z-index: 1000;
  display: none;
}
.popup_nav .closing {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 40px;
  margin: 40px 40px;
  cursor: pointer;
  z-index: 90;
}
.popup_nav ul {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin: 0;
  padding: 0;
  z-index: 80;
}
.popup_nav ul li {
  list-style: none;
}
.popup_nav ul li a {
  color: #1f7a85;
  text-align: center;
  font-size: 1.2rem;
}
.popup_nav ul li a:hover {
  color: #35696e;
}

footer {
  width: 100vw;
  height: auto;
  background: #e5e7e8;
}
footer .footer_bk_logo {
  width: 60%;
}
footer .links_container {
  color: #606161;
  padding: 24px 0 12px 0;
}
footer .links_container .section {
  text-align: left;
  margin-bottom: 16px;
}
footer .links_container .section h5 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 1px;
}
footer .links_container .section a {
  text-decoration: none;
  color: #1f7a85;
  font-weight: 500;
  display: block;
  margin-bottom: 6px;
  transition: color 0.2s;
  font-size: 1rem;
}
footer .links_container .section a:hover {
  color: #15545c;
  text-decoration: underline;
}
footer .links_container .section .light_link {
  font-weight: 400;
  display: block;
  color: #606161;
  font-size: 0.95rem;
  margin-top: 8px;
}
footer .links_container .section p {
  margin-bottom: 6px;
}
footer .sub_footer {
  width: 100%;
  height: auto;
}
footer .sub_footer .footer_logo {
  width: auto;
  height: 60px;
  background-image: url("../images/ledger.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  margin-bottom: 10px;
}
footer .sub_footer .remarks {
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  background-color: #4B4545;
  color: white;
  text-align: center;
  font-weight: bold;
}
footer .sub_footer .remarks span {
  margin: 0 20px 0 20px;
  padding: 10px 0 10px 0;
}
footer .social-icons a {
  color: #1f7a85;
  font-size: 1.1rem;
  transition: color 0.2s;
}
footer .social-icons a:hover {
  color: #15545c;
}
footer .social-icons .mb-2 {
  margin-bottom: 8px;
}
footer .social-icons-table {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
footer .social-icons-table .social-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
footer .social-icons-table .icon {
  width: 28px;
  text-align: center;
  font-size: 1.3rem;
}
footer .social-icons-table .handle a {
  color: #1f7a85;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}
footer .social-icons-table .handle a:hover {
  color: #15545c;
  text-decoration: underline;
}
@media (min-width: 1200px) {
  footer .footer_bk_logo {
    width: 100%;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  footer .footer_bk_logo {
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  footer .footer_bk_logo {
    width: 100%;
  }
  footer .popup_nav ul li a {
    font-size: 1.5rem;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  footer .sub_footer .remarks {
    font-size: 10px;
  }
}
@media (min-width: 320px) and (max-width: 575.98px) {
  footer .sub_footer .footer_logo {
    width: 250px;
    height: 70px;
  }
  footer .sub_footer .remarks {
    font-size: 9px;
  }
  footer .sub_footer .remarks span {
    margin: 0 5px 0 5px;
  }
}

body {
  background: url("../images/noise.png");
}

.landing {
  width: 100%;
  height: auto;
  min-height: 90vh;
  background-image: url("../images/landing.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  background-attachment: fixed;
  overflow: hidden;
  display: flex;
  justify-content: center;
}
.landing .landing__tagline {
  font-size: 29px;
  color: #1f7a85;
  text-align: center;
}
.landing .tagline1 {
  margin-top: 107.55px;
}
.landing .overlay_bg {
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  position: absolute;
  background: linear-gradient(to right, rgba(255, 243, 243, 0.84), rgba(255, 255, 255, 0.65));
}
.landing .landing__btn {
  background: #1f7a85;
  border: 0;
  color: white;
  padding: 12px 0 12px 0;
  font-size: 19px;
  box-shadow: 5px 5px 20px #ada4a4;
  width: 150px;
  text-decoration: none;
  text-align: center;
}

.border-top {
  border-top: 5px solid #1f7a85;
}

.banner {
  width: 100%;
  height: 10vh;
  background: #1f7a85;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 14px;
}
.banner a {
  color: white;
}

.inclusion__image__fg--d, .inclusion__image__fg--c, .inclusion__image__fg--b, .inclusion__image__fg--a {
  width: 80%;
  height: 100%;
  box-shadow: 10px 10px 20px rgba(128, 128, 128, 0.568627451);
  position: absolute;
}

.section__inclusion {
  width: 100%;
  height: auto;
  padding: 20px 0 20px 0;
}

.inclusion {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.inclusion__margin {
  margin: 60px 0 60px 0;
}
.inclusion__title {
  font-size: 25px;
  color: #1f7a85;
  font-weight: 500;
  text-align: center;
}
.inclusion__detail {
  text-align: center;
  width: 90%;
  margin-top: 10px;
  color: #606161;
}
.inclusion__image {
  position: relative;
  width: 100%;
  height: 200px;
  display: flex;
  justify-content: center;
}
.inclusion__image__bg {
  width: 150px;
  height: 150px;
  background: url("../images/dot.svg");
  position: absolute;
  left: 0;
  bottom: 0;
}
.inclusion__image__fg--a {
  background: url("../images/image_1.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top;
}
.inclusion__image__fg--b {
  background: url("../images/image_2.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.inclusion__image__fg--c {
  background: url("../images/image_3.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.inclusion__image__fg--d {
  background: url("../images/image_4.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

@media (min-width: 576px) and (max-width: 767.98px) {
  .landing .landing__tagline {
    font-size: 36px;
  }

  .banner {
    font-size: 15px;
  }

  .inclusion__margin {
    margin: 80px 0 80px 0;
  }
  .inclusion__title {
    font-size: 26px;
  }
  .inclusion__detail {
    width: 90%;
    margin-top: 10px;
    font-size: 17px;
  }
  .inclusion__image {
    height: 250px;
    margin-bottom: 10px;
  }
  .inclusion__image__bg {
    left: 20px;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .landing .landing__tagline {
    font-size: 40px;
    text-align: left;
  }
  .landing .landing__btn {
    width: 200px;
  }

  .banner {
    font-size: 16px;
  }

  .inclusion__image__fg--a, .inclusion__image__fg--b, .inclusion__image__fg--c, .inclusion__image__fg--d {
    width: 90%;
    height: 200px;
  }

  .inclusion {
    align-items: flex-start;
  }
  .inclusion__margin {
    margin: 100px 0 100px 0;
  }
  .inclusion__title {
    font-size: 30px;
    text-align: left;
  }
  .inclusion__detail {
    width: 90%;
    margin-top: 10px;
    text-align: left;
  }
  .inclusion__image {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
  }
  .inclusion__image__bg {
    left: -20px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .landing .landing__tagline {
    font-size: 41px;
    text-align: left;
  }
  .landing .landing__btn {
    width: 200px;
  }

  .banner {
    font-size: 16px;
  }

  .description {
    font-size: 17px;
  }

  .inclusion {
    align-items: flex-start;
  }
  .inclusion__margin {
    margin: 150px 0 150px 0;
  }
  .inclusion__title {
    font-size: 35px;
    text-align: left;
  }
  .inclusion__detail {
    width: 90%;
    margin-top: 10px;
    text-align: left;
    font-size: 17px;
  }
  .inclusion__image {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
  }
  .inclusion__image__bg {
    left: -20px;
    width: 200px;
    height: 200px;
  }

  .inclusion__margin:nth-child(1) {
    margin-top: 50px;
  }
}
@media (min-width: 1200px) {
  .landing .landing__tagline {
    font-size: 45px;
    text-align: left;
  }
  .landing .landing__btn {
    width: 200px;
  }

  .banner {
    font-size: 18px;
  }

  .description {
    font-size: 18px;
  }

  .inclusion {
    align-items: flex-start;
  }
  .inclusion__margin {
    margin: 200px 0 200px 0;
  }
  .inclusion__title {
    font-size: 35px;
    text-align: left;
  }
  .inclusion__detail {
    width: 90%;
    margin-top: 10px;
    text-align: left;
    font-size: 17px;
  }
  .inclusion__image {
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
  }
  .inclusion__image__bg {
    left: -20px;
    width: 300px;
    height: 300px;
  }

  .inclusion__margin:nth-child(1) {
    margin-top: 100px;
  }

  .inclusion__margin:nth-child(4) {
    margin-bottom: 100px;
  }
}