/* 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: linear-gradient(149deg, #cfeaf3, #96d5d7);
  position: relative;
}

.geo {
  background: url("../images/geo.png");
  opacity: 0.5;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
}

.dot {
  background: url("../images/dot.svg");
  opacity: 0.1;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
}

.noise {
  background: url("../images/noise.png");
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
}

footer {
  z-index: 999;
  position: relative;
}

.navbar {
  background: transparent !important;
  box-shadow: none !important;
  position: relative !important;
}

.pricing-banner {
  width: 100%;
  height: 500px;
  z-index: 20;
}

.pricing_card_container {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-direction: column;
  z-index: 20;
}

.pricing_card--premium::before, .pricing_card--standard::before, .pricing_card--basic::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1691ba, #158385);
  filter: blur(25px);
  transform: translateY(30px) translateX(20px) scale(0.9);
}

.pricing_card--premium, .pricing_card--standard, .pricing_card--basic {
  position: relative;
  width: 90%;
  background: linear-gradient(135deg, #1691ba, #158385);
  color: white;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.5s;
  margin-bottom: 10%;
  transform-style: preserve-3d;
}

.pricing_card_content {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  height: auto;
  align-items: center;
  flex-direction: column;
  padding: 10% 0 10% 0;
  transform: translateZ(20px);
}
.pricing_card_content .pricing-label {
  font-size: 1.2em;
  font-weight: bold;
}
.pricing_card_content .pricing-price {
  font-size: 2.5em;
  font-weight: bold;
}
.pricing_card_content .pricing-per {
  line-height: 0;
  font-size: 0.8em;
}
.pricing_card_content .pricing-perks {
  font-size: 13px;
}

.review_content {
  position: relative;
  z-index: 20;
}

.heading-color {
  color: #0f7074;
}

.review_card {
  width: 90%;
  height: auto;
  background: red;
  border-radius: 8px;
  position: relative;
  z-index: 20;
  background: linear-gradient(135deg, #fcfeff, #f3fbff);
  box-shadow: 6px 6px 20px rgba(0, 0, 0, 0.3607843137);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 50px 20px 50px;
}

.review_detail {
  font-size: 12px;
  font-style: italic;
  color: #898989;
  padding: 5%;
  text-align: center;
}

.reviewer {
  font-style: italic;
  margin-top: 10px;
}

@media (min-width: 576px) and (max-width: 767.98px) {
  .pricing_card--basic, .pricing_card--standard, .pricing_card--premium {
    width: 350px;
  }

  .pricing_card_content {
    padding: 8% 0 8% 0;
  }
  .pricing_card_content .pricing-label {
    font-size: 1.4em;
  }
  .pricing_card_content .pricing-price {
    font-size: 3em;
  }
  .pricing_card_content .pricing-per {
    font-size: 1em;
  }
  .pricing_card_content .pricing-perks {
    font-size: 14px;
  }

  .review_detail {
    font-size: 13px;
    padding: 5%;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .pricing_card_container {
    flex-direction: row;
  }

  .pricing-banner {
    height: 400px;
  }

  .pricing_card--basic, .pricing_card--standard, .pricing_card--premium {
    width: 200px;
  }

  .pricing_card_content {
    padding: 10% 0 10% 0;
  }
  .pricing_card_content .pricing-label {
    font-size: 0.9em;
  }
  .pricing_card_content .pricing-price {
    font-size: 2.2em;
  }
  .pricing_card_content .pricing-per {
    font-size: 0.7em;
  }
  .pricing_card_content .pricing-perks {
    font-size: 12px;
  }

  .review_detail {
    font-size: 14px;
    padding: 5%;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .pricing_card_container {
    flex-direction: row;
  }

  .pricing-banner {
    height: 400px;
  }

  .pricing_card--basic, .pricing_card--standard, .pricing_card--premium {
    width: 250px;
    margin-bottom: 5%;
  }

  .pricing_card_content {
    padding: 10% 5% 10% 5%;
  }
  .pricing_card_content .pricing-label {
    font-size: 1em;
  }
  .pricing_card_content .pricing-price {
    font-size: 2em;
  }
  .pricing_card_content .pricing-per {
    font-size: 0.7em;
  }
  .pricing_card_content .pricing-perks {
    font-size: 13px;
  }

  .review_card {
    width: 70%;
  }

  .review_detail {
    font-size: 14px;
    padding: 5%;
  }
}
@media (min-width: 1200px) {
  .pricing-banner {
    height: 400px;
  }

  .pricing_card_container {
    flex-direction: row;
    margin: 0 0 100px 0;
  }

  .pricing_card--basic, .pricing_card--standard, .pricing_card--premium {
    width: 350px;
    margin-bottom: 0;
  }

  .pricing_card_content {
    padding: 10%;
  }
  .pricing_card_content .pricing-label {
    font-size: 1.2em;
    font-weight: bold;
  }
  .pricing_card_content .pricing-price {
    font-size: 3em;
    font-weight: bold;
  }
  .pricing_card_content .pricing-perks {
    font-size: 16px;
  }

  .review_card {
    width: 60%;
  }

  .review_detail {
    font-size: 15px;
    padding: 5%;
  }
}