/* Default Theme  */
:root {
  --color-primary: #00bf72;
  --color-secondary: #051937;
  --light-blue: #004d7a;
}
html{
  scroll-behavior: smooth;
}

body {
  font-family: "Nunito", sans-serif;
  min-height: 100vh;
  width: 100%;
}
.navbar {
  background: #fff;
  padding: 0;
}
.nav-link {
  font-style: normal;
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 36px;
  color: rgba(0, 0, 0, 0.849) !important;
}
.nav-link::after {
  content: "";
  width: 80%;
  height: 3px;
  background-color: var(--color-primary);
  border-radius: 4px;
  position: absolute;
  left: 10%;
  bottom: 10%;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.nav-link:hover::after {
  transform: scale(1);
}


.back-top {
  display: inline-block;
  background-color: #004d7a;
  width: 50px;
  height: 50px;
  text-align: center;
  border-radius: 4px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  transition: background-color .3s, 
    opacity .5s, visibility .5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
}
.back-top::after {
  content: "\f077";
  font-family: FontAwesome;
  font-weight: normal;
  font-style: normal;
  font-size: 2em;
  line-height: 50px;
  color: #fff;
}
.back-top:hover {
  cursor: pointer;
  background-color: #051937;
}
.back-top:active {
  background-color: #00bf72;
}
.back-top.show {
  opacity: 1;
  visibility: visible;
}
/* Header Styles */

.header {
  background-image: radial-gradient( circle, #051937, #072547, #083258, #063f69, #004d7a );
  padding: 5rem 0 0 0;
  margin: 2rem 0 0 0 ;
  max-width: 100vw;
}
.header h1 {
  font-size: 3.5rem !important;
  font-weight: 600;
  color: #ffffff; text-align:center;
}
.header p {
  padding: 32px 0px 20px 0;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 30px;
  color: rgba(255, 255, 255, 0.514);
}
.circle-grid {
  position: absolute;
  top: 18%;
  left: 15%;
  z-index: 0;
}
.ellipse {
  position: absolute;
  top: 45%;
  right: 10%;
  z-index: 0;
}
.header-image {
  position: relative;
  height: 30rem;
  max-width: 90vw;
  width: auto;
  z-index: 99;
  overflow: hidden;
}
.btn-light {
  margin: 0;
  background-color: var(--color-primary) !important;
  color: #fff;
}
.btn-outline-light {
  margin: 0;
}

/* Features */
.vertical-bar {
  color: var(--color-primary);
  font-size: 4rem;
}
.features h2,
.discover h2 {
  font-weight: 500;
  font-size: 2.5rem; text-align:center;
}

.wrap {
  display: flex;
  background: white;
  padding: 1rem 1rem 1rem 1rem;
  border-radius: 0.5rem;
  box-shadow: 7px 7px 30px -5px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}
.wrap:hover {
  background-image: radial-gradient(
    circle,
    #051937,
    #072547,
    #083258,
    #063f69,
    #004d7a
  );
  color: white;
}

.ico-wrap {
  margin: auto;
}
.text-wrap h4 {
  font-size: 2.4rem;
}
.text-wrap span {
  font-size: 1.6rem;
  color: var(--color-primary);
}

.mbr-iconfont {
  font-size: 4.5rem !important;
  color: #313131;
  margin: 1rem;
  padding-right: 1rem;
}
.vcenter {
  margin: auto;
}

.mbr-section-title3 {
  text-align: left;
}
.features {
  padding: 2rem 0;
}
.features h4 {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}
.display-5 {
  font-size: 1.4rem;
}
.mbr-bold {
  font-weight: 700;
}

.features p {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  line-height: 25px;
}
.display-6 {
  font-size: 1rem;
}

/* Discover Section  */

.discover {
  padding: 2rem 0;
}

.discover-illustration {
  height: 70vh;
  width: auto;
  background-size: cover;
  background-position: center;
  border-radius: 1%;
}
.discover h2 {
  color: #000;
  padding-bottom: 2rem;
}
.discover h3 {
  font-size: 2.6rem;
  letter-spacing: 1.5px;
  font-weight: 600;
  color: var(--color-secondary);
}
.discover p {
  padding: 15px 0px;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 185%;
  color: #051937bb;
}
.discover-text {
  padding: 2rem .5rem;
}
.discover-image {
  padding: 2rem 0;
}
.btn-1 {
  margin: 0;
  background-color: #f96331 !important;
  color: #fff;
}
.btn-1:hover {
  background-color: #fcb900 !important;
  color: #fff;
  box-shadow: none;
}
.btn-2 {
  margin: 0;
  border: 2px solid var(--color-secondary);
  color: #fcb900;
}
.btn-2:hover {
  color: #fcb900;
  box-shadow: none;
}

/* FAQ */

.faq {
  background-image: radial-gradient(
    circle,
    #051937,
    #072547,
    #083258,
    #063f69,
    #004d7a
  );
  padding: 2rem 0;
}
.faq h2 {
  color: #fff;
  font-weight: 600;
}
.faq p {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 300;
}

/* Download Section */
.download-app {
  padding: 2rem 0;
}
.download-app h2 {
  font-weight: 500;
  width: 100%;
  margin: 0.6em 0;
}
.download-app p {
  font-size: 1.3em;
  font-weight: 300;
  line-height: 40px !important;
  margin: 0 0 0.6em 0;
  width: 95%;
  color: #051937e1;
}
.download-play {
  width: 15rem;
  margin-left: -15px;
}
.download-apple {
  width: 12rem;
}
.vertical-bar {
  color: var(--color-primary);
  font-size: inherit;
}
.screenshot {
  z-index: 99;
  height: 40rem;
  max-width: 90vw;
  top: 0;
}
.faq-img {
  padding: 0.5rem;
  height: 25rem;
  max-width: 90vw;
}

.collapsible-link::before {
  content: "";
  width: 14px;
  height: 2px;
  background: #333;
  position: absolute;
  top: calc(50% - 1px);
  right: 1rem;
  display: block;
  transition: all 0.3s;
}

.collapsible-link::after {
  content: "";
  width: 2px;
  height: 14px;
  background: #333;
  position: absolute;
  top: calc(50% - 7px);
  right: calc(1rem + 6px);
  display: block;
  transition: all 0.3s;
}

.collapsible-link[aria-expanded=true]::after {
  transform: rotate(90deg) translateX(-1px);
}

.collapsible-link[aria-expanded=true]::before {
  transform: rotate(180deg);
}
.card-body p {
  line-height: 2rem;
  color: #000;
}

/* Footer */

footer {
    background-color: #003f65; color: #ffffff;
    }

.border {
  border: solid 1px #f9f9f9;
}
.ft_img_mid{position:relative;}
.ft_img_mid img{display:block;justify-content: center;margin-left: auto;
  margin-right: auto;}
.footer-logo {
  padding: 3rem 0;
}
.footer-links {
  padding: 3rem 0;
  text-align: right;
}
.footer-link {
  font-size: 1.2rem;
  margin: 0 0.5rem;
  color: #4985a9;
  font-weight: 400;
}
footer h5 {
  font-weight: 400;
  font-size: 1.2rem;
}
footer .sub-link {
  font-size: 1rem;
  display: block;
  margin: 0.5rem 0.3rem;
  color: #cff; font-weight:bold;
}
.sub-link-a, .sub-link-a a {color: #cff !important; font-weight:bold; }
.sub-link-a, .sub-link-a a:hover, .sub-link:hover, footer h4{color: #ffffff !important;}

footer h4 {
  font-weight: 400;
  font-size: 1.4rem;
}
footer form {
  margin: 1rem 0;
}
.form-group {
  width: 45%;
  display: inline-block !important;
}
footer .btn {
  margin: 0 !important;
}

/* Media Queries */
@media only screen and (max-width: 600px) {
  .navbar-brand {
    padding: 0 0.8rem;
  }
  .nav-link::after {
    width: 15%;
    height: 3px;
    position: absolute;
    left: 5px;
    bottom: 10%;
  }
  .header {
    padding: 2rem 0;
    margin: 4rem 0 0 0 ;
  }
  .btn-outline-light {
    margin: 0.5rem 0;
  }
  .header h1 {
    font-size: 3.5rem !important;
    font-weight: 600;
    color: #fff;
  }
  .header-image,
  .circle-grid,
  .ellipse {
    display: none;
  }
  .features h2,
  .discover h2,
  .faq h2 {
    font-weight: 600;
    font-size: 2.3rem;
  }
  .features {
    padding: 1.5rem 0;
  }
  .discover h3 {
    font-size: 2rem;
    letter-spacing: 1.5px;
    font-weight: 600;
    color: var(--color-secondary);
  }
  .discover-text {
    padding: 1.5rem;
  }
  .discover-image {
    padding: 0;
  }
  .faq {
    padding: 1.5rem 0;
  }
  .download-app {
    padding: 1.5rem 0;
  }
  .download-play {
    width: 12rem;
    margin-left: -15px;
  }
  .download-apple {
    width: 9.5rem;
  }
  .footer-link {
    display: block;
    margin: 1rem 0;
  }
  .footer-logo {
    padding: 2rem 0;
  }
  .footer-links {
    padding: 0.5rem 0;
    text-align: center;
  }
}

@media only screen and (max-width: 992px) {
  .navbar-brand {
    padding: 0 0.8rem;
  }
  .header {
    padding: 2rem 0;
    margin: 4rem 0 0 0 ;
  }
  .btn-outline-light {
    margin: 0.5rem 0;
  }
  .header h1 {
    font-size: 3.5rem !important;
    font-weight: 600;
    color: #fff;
  }
  .header-image,
  .circle-grid,
  .ellipse {
    display: none;
  }
  .faq-img {
    display: none;
  }
  .download-app h2 {
    font-size: 3.2rem;
    margin: 0.3em 0;
  }
  .screenshot {
    height: 32rem;
    max-width: 90vw;
  }
  .download-play {
    width: 12rem;
    margin-left: -15px;
  }
  .download-apple {
    width: 9.5rem;
  }
}