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

a {
  text-decoration: none;
  display: flex;
  align-items: center;
}

ul,
li {
  list-style-type: none;
}

.btn {
  font-family: "Monserrat", sans-serif !important;
  font-size: 20px;
  padding: 20px 40px;
  border-radius: 5px;
  transition: 0.4s ease;
}

.btn-fill {
  color: #ffffff;
  background: #21333d;
  border: 2px solid #21333d;
}
.btn-fill:hover {
  background: #121212;
  border: #121212;
  color: #ffffff;
}

.btn-outline {
  border: 2px solid #21333d;
  color: #21333d;
}
.btn-outline:hover {
  background: #121212;
  color: #ffffff;
  border: none;
}

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

.divider {
  width: 50px;
  background-color: #21333d;
  height: 5px;
  margin: 10px 0;
}

ion-icon {
  margin-right: 10px;
  line-height: 1em;
}

.btn ion-icon {
  margin-left: 10px;
}

.small-caps {
  text-transform: uppercase;
  font-size: 14px;
  color: #21333d;
  letter-spacing: 1px;
  margin: 5px 0;
}

.main-header {
  font-size: 60px;
  font-weight: 300;
  color: #121212;
}

.subheading {
  font-size: 45px;
  font-weight: 400;
  color: #121212;
}

.subtitle {
  font-size: 25px;
  color: #121212;
  font-weight: 400;
}

.paragraph {
  color: #5f6660;
  font-size: 20px;
  line-height: 30px;
  margin-bottom: 15px;
}

.row-flex {
  display: flex;
}

.go-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9;
  background-color: #121212;
  color: #ffffff;
  padding: 5px;
  outline: none;
  border: none;
  border-radius: 5px;
  font-size: 30px;
  font-weight: 300;
  height: 40px;
  width: 40px;
  cursor: pointer;
}
.go-to-top:hover {
  background-color: #21333d;
}
.go-to-top ion-icon {
  line-height: 100%;
  text-align: center;
  margin: 0;
}

@media screen and (max-width: 820px) {
  .btn {
    padding: 15px 20px;
    font-size: 16px;
  }

  .divider {
    height: 3px;
    margin: 5px 0;
  }

  .main-header {
    font-size: 45px;
  }

  .subheading {
    font-size: 25px !important;
  }

  .subtitle {
    font-size: 25px !important;
  }

  .order-1 {
    order: 1;
  }
  .order-2 {
    order: 2;
  }
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden !important;
  box-sizing: border-box;
}

body {
  background-color: #fbfffc;
  font-family: "Lato", sans-serif !important;
  font-size: 16px;
  padding-top: 70px;
  overflow-x: hidden !important;
}

header {
  position: fixed;
  top: 0;
  z-index: 10;
  width: 100%;
  padding: 20px 5%;
  background-color: #effff0;
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  align-items: center;
}

#logo {
  width: 20%;
}

nav {
  width: 50%;
}
nav > ul {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  align-items: center;
}
nav > ul a:hover {
  color: #121212;
  border-bottom: 2px solid #21333d;
  padding-bottom: 5px;
}
nav > ul .has-submenu {
  position: relative;
}
nav > ul .submenu {
  display: none;
  position: absolute;
  top: 60px;
  width: 250px;
  background-color: #ffffff;
  padding: 20px 0;
  z-index: 9;
}
.submenu.active {
  display: block;
}
nav > ul .submenu li {
  padding: 10px 20px;
  overflow: hidden;
}
nav > ul .submenu li:hover {
  background: #21333d;
}
nav > ul .submenu li:hover a {
  color: #ffffff;
}
nav a {
  color: #21333d;
  font-weight: 500;
}

@media screen and (max-width: 820px) {
  header {
    display: none;
  }

  body {
    padding-top: 80px;
  }
}

/* ==== mobile header and navbar ==== */
.mobile-header {
  display: none;
  position: fixed;
  top: 0;
  z-index: 10;
  background-color: #effff0;
  width: 100%;
  padding: 0;
}
.mobile-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 10px 20px;
}
#mobile-logo {
  width: 150px;
}
#mobile-logo img {
  width: 150px;
  max-width: 100%;
}

.burger {
  cursor: pointer;
  height: 30px;
  width: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}

.burger div {
  height: 2px;
  background-color: #21333d;
  transition: 0.4s ease;
}
.burger-line-1 {
  width: 70%;
  margin: 0 0 0 30%;
}
.burger-line-2 {
  width: 100%;
}
.burger-line-3 {
  width: 50%;
  margin: 0 0 0 50%;
}

.burger.active .burger-line-2 {
  display: none;
}
.burger.active .burger-line-1 {
  transform: rotate(45deg) translate(1px, 11px);
  width: 80%;
}
.burger.active .burger-line-3 {
  transform: rotate(-45deg) translate(-7px, -11px);
  width: 80%;
}

.mobile-navbar {
  width: 100%;
  height: 100vh;
  margin: 0;
  padding: 20px;
  position: fixed;
  top: 55px;
  z-index: 9;
  background-color: #effff0;
  transform: translateY(-120%);
  transition: 0.4s ease;
}
.mobile-navbar.active {
  transform: translateY(0);
}
.mobile-navbar li {
  padding: 10px 0;
}
.mobile-navbar a,
.mobile-navbar span {
  font-size: 30px;
  color: #121212;
}
.mobile-submenu {
  padding-left: 30px;
  height: 0;
  overflow: hidden;
  transition: 0.4s ease;
}
.mobile-submenu.active {
  height: auto;
  overflow: visible;
}
.mobile-submenu a {
  font-size: 20px;
}

@media screen and (max-width: 820px) {
  .mobile-header {
    display: block;
  }
}

.hero {
  padding: 50px 0;
  width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  align-items: center;
}
.hero-text-container,
.hero-image-container {
  width: 50%;
  overflow: hidden;
}
.hero .hero-text-container p {
  color: #5f6660;
  font-size: 20px;
  line-height: 30px;
}
.hero .hero-buttons {
  display: flex;
  justify-content: flex-start;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  margin: 20px 0;
}
.hero .hero-image-container img {
  width: 500px;
  display: block;
  margin: 0 auto;
  max-width: 100%;
}

@media screen and (max-width: 820px) {
  .hero {
    flex-direction: column;
    width: 95%;
  }

  .hero-text-container,
  .hero-image-container {
    width: 100%;
  }

  .hero .hero-image-container img {
    width: 350px;
  }
}

@media screen and (max-width: 450px) {
  .hero {
    flex-direction: column;
    width: 100%;
    padding: 0 20px;
    margin-bottom: 50px;
  }
}

#about {
  margin-bottom: 50px !important;
  background: url("/assets/blob_1.svg");
  background-attachment: fixed;
  width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  align-items: center;
}
#about .about-image-container {
  width: 35%;
}
#about .about-image-container img {
  width: 500px;
  max-width: 100%;
}
#about .about-text-container {
  width: 60%;
}

.about-subsection {
  display: flex;
  justify-content: space-between;
  width: 90%;
  margin: 0 auto 50px;
}

.about-subsection .row-flex {
  width: 35%;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 20px;
  margin: 0;
}
#about .about-text-container .row-flex .split-3 {
  width: 50%;
}

.about-subsection-image {
  width: 60%;
}
.about-subsection-image img {
  width: 500px;
  max-width: 100%;
  margin: 0 auto;
  display: block;
}

@media screen and (max-width: 820px) {
  #about {
    width: 95%;
    flex-direction: column;
  }

  #about .about-image-container,
  #about .about-text-container {
    width: 100%;
  }

  #about .about-image-container {
    display: none;
  }

  .about-subsection {
    width: 100%;
    margin-bottom: 10px;
    padding: 0 20px;
    flex-direction: column;
  }

  .about-subsection .row-flex,
  .about-subsection-image {
    width: 100%;
  }

  .about-subsection-image {
    order: 1;
    margin-bottom: 20px;
    width: 250px;
  }

  .about-subsection .row-flex {
    order: 2;
  }
}

@media screen and (max-width: 450px) {
  #about {
    width: 100%;
    padding: 0 20px;
  }

  .row-flex {
    flex-direction: column;
  }

  #about .about-text-container .row-flex .split-3 {
    width: 100%;
  }
}

#statistics {
  width: 100%;
  padding: 50px 0;
  margin-bottom: 50px;
  background-color: #fffbfe;
  text-align: center;
}
#statistics .counter-container {
  width: 60%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  align-items: center;
}
#statistics .counter-container div {
  padding: 20px 0;
}
#statistics .counter-container span {
  display: block;
}
#statistics .counter-container .counter {
  font-size: 45px;
}

.cta {
  padding: 100px 20px;
  height: 350px;
  text-align: center;
  background: #effff0;
  color: #121212;
  margin-bottom: 50px;
}
.cta a {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 20px auto;
  text-align: center;
}

.slider {
  width: 600%;
  display: flex;
  justify-content: space-between;
}

.slide {
  width: 100%;
}

#testimonial-container {
  background-color: #21333d;
  width: 100%;
  padding: 50px 0;
  margin-bottom: 50px;
  color: #ffffff;
}
#testimonial-container h2 {
  color: #ffffff;
}
#testimonial-container .slider-container {
  width: 100%;
  position: relative;
}
#testimonial-container .slider-container ion-icon {
  font-size: 90px;
  font-weight: 300;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  height: 100%;
}
#testimonial-container .slider-container .next {
  margin: 0;
  right: 0;
}
#testimonial-container .slider-container .prev {
  left: 0;
  margin: 0;
}
#testimonial-container .testimonial {
  background: #ffffff;
  color: #121212;
  border-radius: 8px;
  padding: 20px;
  width: 50%;
  margin: 20px auto;
  position: relative;
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  align-items: center;
}
#testimonial-container .testimonial .testimonial-image-container {
  width: 30%;
}
#testimonial-container .testimonial .testimonial-image-container img {
  width: 100px;
  max-width: 100%;
}
#testimonial-container .testimonial .testimonial-text-container {
  width: 70%;
}
#testimonial-container .testimonial .testimonial-text-container .testimony {
  font-size: 25px;
  font-weight: 300;
  color: #5f6660;
  margin-bottom: 20px;
}

@media screen and (max-width: 820px) {
  #statistics .counter-container {
    width: 90%;
    justify-content: center;
    gap: 50px;
  }

  #testimonial-container .slider-container ion-icon {
    font-size: 60px;
  }

  #testimonial-container .testimonial {
    width: 80%;
    margin: 0 auto;
  }

  #testimonial-container .testimonial .testimonial-text-container .testimony {
    font-weight: 400;
  }
}

@media screen and (max-width: 450px) {
  #statistics {
    padding: 50px 20px;
  }

  #statistics .counter-container {
    width: 100%;
    flex-direction: column;
    gap: 20px;
    margin: 20px 0 0;
  }

  #statistics .counter-container div {
    padding: 0;
    width: 100%;
  }

  #statistics .counter-container .counter {
    font-size: 30px;
    margin-bottom: 10px;
  }

  .cta {
    padding: 50px 20px;
    height: auto;
  }

  #testimonial-container h2 {
    padding: 0 20px;
    margin-bottom: 20px;
  }

  #testimonial-container .testimonial {
    padding: 10px;
    margin: 0 auto;
    width: 85%;
  }

  #testimonial-container .testimonial .testimonial-image-container {
    width: 25%;
  }
  #testimonial-container .testimonial .testimonial-image-container img {
    width: 200px;
    max-width: 100%;
  }
  #testimonial-container .testimonial .testimonial-text-container {
    width: 70%;
  }
  #testimonial-container .testimonial .testimonial-text-container .testimony {
    font-size: 16px;
    margin-bottom: 10px;
  }
  #testimonial-container .testimonial::after {
    display: none;
  }
  #testimonial-container .slider-container ion-icon {
    font-size: 35px;
  }
}

footer {
  background-color: #effff0;
  color: #5f6660;
  padding: 50px 5%;
  margin-top: 100px;
  font-size: 16px;
}
footer .footer-split {
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  align-items: top;
}
footer .subtitle {
  font-size: 30px;
  margin-bottom: 10px;
}
footer li {
  margin-bottom: 10px;
}
footer li a {
  color: #5f6660;
}
footer .split-3 {
  width: 32%;
}
footer .split-3 p {
  margin-bottom: 10px;
}
footer .newsletter,
footer input {
  width: 100%;
}
footer .newsletter input {
  padding: 20px 10px;
  border-radius: 5px;
  outline: none;
  border: none;
  font-size: 16px;
  margin-bottom: 10px;
}
footer .newsletter label {
  margin-bottom: 10px;
  display: block;
}
footer .newsletter input[type="email"] {
  background-color: #fffbfe;
  border: 1px solid #21333d;
}
footer .newsletter input[type="submit"] {
  background-color: #21333d;
  color: #ffffff;
  cursor: pointer;
}
footer .newsletter input[type="submit"]:hover {
  background-color: #121212;
}
footer .copyright {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  align-items: center;
}
footer .copyright a {
  display: inline;
}

@media screen and (max-width: 450px) {
  footer {
    padding: 50px 20px;
  }
  footer .footer-split {
    flex-direction: column;
  }
  footer .split-3 {
    width: 100%;
    margin-bottom: 20px;
  }
  footer .copyright {
    flex-direction: column;
    justify-content: center;
  }
}

/*# sourceMappingURL=style.css.map */
