* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  overflow-x: hidden;
}

body {
  width: 100%;
  padding: 0;
  overflow-x: hidden;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
}


.navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: bolder;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 80px;
  background: white;
  padding: 0px 5%;
}

.navigation a {
    text-decoration: none;
    color: #670056;
    font-size: 18px;
    margin-left: 35px;
}

    .navigation a:active {
        color: #a10687;
        text-decoration: none;
    }

.navigation .active {
  background-color: #670056;
  padding: 6px 10px;
  color: white;
}

.navigation div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.navigation .menu {
  height: 40px;
  display: none;
}

.mobileNav {
  display: none;
}

.intro {
  position: relative;
  color: white;
  overflow-x: none;
  background-image: url("/Images/Intro/background.png");
  background-size: cover;
  background-position: bottom;
}

#carouselExampleIndicators {
    bottom: -30px;
}

.intro .abstract {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
}

.intro h1 {
  font-size: 48px;
  font-weight: bolder;
  z-index: 10;
}

.intro h5 {
  font-size: 24;
  font-weight: bold;
  margin: 40px 0;
}

.intro a {
  text-decoration: none;
  color: black;
  padding: 15px 15px;
  background-color: ghostwhite;
  font-size: 18px;
}

.intro h2 {
  font-size: 32px;
  font-weight: bold;
  text-align: center !important;
  margin-top: 20px;
}

.intro .row {
  padding: 5%;
}

.wave {
  width: 100vw;
}

.main {
  margin-top: 20px;
}

.main .first h2 {
  font-size: 36px;
  font-weight: bold;
}

.main .first h5 {
  font-size: 22px;
  padding: 0 50px;
}

    .main .second {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        padding: 0px 50px;
        margin-top: 280px;
        background-image: url("/Images/Intro/Frame 325.svg");
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        height: 381px;
    }

.main .second img {
  width: 90%;
}

.main .second .text {
  margin-left: 10px;
  width: 50%;
  scrollbar-width: none;
}

.main .second .text img {
  width: auto !important;
  height: auto;
}

.main .second .text h5 {
  font-size: 24px;
  font-weight: bold;
}

.main .second .text p {
  font-size: 22px;
}

.main .second .text a {
  font-size: 16.8px;
  font-weight: bold;
  color: #670056;
  text-decoration: none;
}

.main .second .text::-webkit-scrollbar {
  width: 0;
}

.main .reverse {
  background-image: url("/Images/Intro/Frame 325(1).svg");
}

.main .reverse .text {
  margin-left: 0;
  margin-right: 10px;
}

.footer {
    width: 100%;
    background-image: url("/Images/Intro/Frame 334.svg");
    background-size: 100% auto;
    margin-top: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    /*display: flex;*/
    height: 84px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: white;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0 50px;
    padding-top: 20px;
    bottom: 0px;
}

.footer div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.footer div img {
  margin-top: -15px;
  margin-right: 10px;
}

.readMore p {
  font-size: 15px !important;
}

.readMore .second img {
  height: inherit;
  border-radius: 20px;
}

.readMore .second .text {
  height: 100%;
  overflow-y: scroll;
}

.getStarted {
  font-size: 14px;
  text-decoration: none;
  color: white;
  padding: 10px 20px;
  background-color: #670056;
}

.carousel {
  width: 100%;
  margin: auto;
  height: 300px;
}

.carousel-item {
  text-align: center;
}

.modal {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 100%;
  z-index: 100;
  background-color: rgba(0, 0, 0, 0.589);
  display: none;
  -webkit-box-pack: center !important;
      -ms-flex-pack: center !important;
          justify-content: center !important;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.modal div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin: 0px auto !important;
}

.modal img {
  width: 80%;
  margin: auto;
}

.modal .close {
  right: 50px;
  width: 50px;
  margin: 0;
  margin-right: 10%;
}

@media only screen and (max-width: 850px) {
  .navigation a {
    display: none;
  }
  .navigation .menu {
    display: block;
    z-index: 10;
    cursor: pointer;
  }
    .mobileNav {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        position: fixed;
        top: 80px;
        right: 0;
        background-color: #9B006E;
        width: 50%;
        z-index: 10;
        height: 100%;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: start;
        padding: 20px;
        display: none;
    }
    .mobileNav a {
        text-decoration: none;
        color: white;
        font-size: 20px;
        margin-bottom: 35px;
        padding: 10px;
        text-align: center;
        border-radius: 8px;
        font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
        /*border: 1px solid rgba(255, 255, 255, 0.534);*/
    }
  .intro h1 {
    font-size: 32px;
  }
  .intro h5 {
    margin: 20px 0;
    font-size: 15px;
  }
  .intro a {
    font-size: 15px;
    padding: 10px;
  }
  .intro h2 {
    font-size: 17px;
    margin-top: 25px;
    text-align: left;
  }
  .intro .background {
    -webkit-transform: scale(1.3);
            transform: scale(1.3);
  }
  .intro .abstract {
    display: none;
  }
  .main .first h2 {
    font-size: 30px;
  }
  .main .second {
    padding: 0 10px;
    height: 400px;
  }
  .main .second img {
    width: 300px;
    height: auto;
  }
  .main .second .text {
    padding: 10px;
    width: 100%;
  }
  .main .second .text p {
    font-size: 15px;
  }
  .main .second .text img {
    width: auto;
    height: auto;
  }
}

@media only screen and (max-width: 500px) {
  .abstract {
    display: none;
  }
  .intro {
    color: white;
    background-color: #670056;
  }
  .intro .col-8 {
    width: 100%;
  }
  .intro h1 {
    font-size: 20px;
  }
  .intro h2 {
    font-size: 15px;
  }
  .signUp {
    margin-left: 30px;
  }
  .main {
    margin: 0;
    margin-top: 20px;
    padding: 0 20px;
  }
  .main .first {
    padding: 0;
  }
  .main .first h2 {
    font-size: 20px;
    margin: 20px;
  }
  .main .first h5 {
    font-size: 15px;
    padding: 0;
  }
  .main .second {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    padding: 0;
    height: auto;
    background-size: cover;
    margin-top: 20px;
    text-align: center;
  }
  .main .second img {
    width: 90%;
    height: auto;
  }
  .main .second .text {
    padding: 5px !important;
    width: 100%;
    margin: auto 0;
  }
  .reverse {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 80px;
    font-size: 15px;
    height: auto;
    text-align: center;
    background-size: cover;
  }
    .carousel {
        height: 220px;
    }
}
/*# sourceMappingURL=style.css.map */